Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8394154
identifiers.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
811 B
Subscribers
None
identifiers.py
View Options
# Copyright (C) 2017-2020 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.shortcuts
import
redirect
from
swh.web.common.exc
import
handle_view_exception
from
swh.web.common.identifiers
import
resolve_swhid
def
swhid_browse
(
request
,
swhid
):
"""
Django view enabling to browse the archive using :ref:`<persistent-identifiers>`.
The url that points to it is :http:get:`/(swhid)/`.
"""
try
:
swhid_resolved
=
resolve_swhid
(
swhid
,
query_params
=
request
.
GET
)
except
Exception
as
exc
:
return
handle_view_exception
(
request
,
exc
)
return
redirect
(
swhid_resolved
[
"browse_url"
])
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Wed, Jun 4, 7:22 PM (5 d, 2 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3346377
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment