Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9344428
urls.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
urls.py
View Options
# Copyright (C) 2018-2022 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU Affero General Public License version 3, or any later version
# See top-level LICENSE file for more information
from
django.urls
import
re_path
as
url
from
swh.web.config
import
get_config
from
swh.web.tests.views
import
(
get_content_code_data_all_exts
,
get_content_code_data_all_filenames
,
get_content_code_data_by_ext
,
get_content_code_data_by_filename
,
get_content_other_data_by_ext
,
)
urlpatterns
=
[]
# when running end to end tests through cypress, declare some extra
# endpoints to provide input data for some of those tests
if
get_config
()[
"e2e_tests_mode"
]:
urlpatterns
=
[
url
(
r"^tests/data/content/code/extension/(?P<ext>.+)/$"
,
get_content_code_data_by_ext
,
name
=
"tests-content-code-extension"
,
),
url
(
r"^tests/data/content/other/extension/(?P<ext>.+)/$"
,
get_content_other_data_by_ext
,
name
=
"tests-content-other-extension"
,
),
url
(
r"^tests/data/content/code/extensions/$"
,
get_content_code_data_all_exts
,
name
=
"tests-content-code-extensions"
,
),
url
(
r"^tests/data/content/code/filename/(?P<filename>.+)/$"
,
get_content_code_data_by_filename
,
name
=
"tests-content-code-filename"
,
),
url
(
r"^tests/data/content/code/filenames/$"
,
get_content_code_data_all_filenames
,
name
=
"tests-content-code-filenames"
,
),
]
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Fri, Jul 4, 2:26 PM (2 d, 2 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3315485
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment