diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-22 21:57:02 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-22 21:57:02 -0500 |
commit | f545de301a3188eefffb79de018d5fda2f03946d (patch) | |
tree | c30c10c3cef88d84a6e38a43b63ddf5c4f83d2f5 /mirrors/urls.py | |
parent | 2e634dc457a35d06ec83409da3d6006107495569 (diff) | |
parent | 2bfec5b17ca3ee3ea3b347c029b9d8dad3c5b4d0 (diff) |
Merge branch 'archweb-generic' into master-nomake
Conflicts:
README.md
Diffstat (limited to 'mirrors/urls.py')
-rw-r--r-- | mirrors/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mirrors/urls.py b/mirrors/urls.py index 7cf76aa1..b1054380 100644 --- a/mirrors/urls.py +++ b/mirrors/urls.py @@ -9,6 +9,7 @@ urlpatterns = patterns('mirrors.views', (r'^locations/json/$', 'locations_json', {}, 'mirror-locations-json'), (r'^(?P<name>[\.\-\w]+)/$', 'mirror_details'), (r'^(?P<name>[\.\-\w]+)/json/$', 'mirror_details_json'), + (r'^(?P<name>[\.\-\w]+)/(?P<url_id>\d+)/$', 'url_details'), ) # vim: set ts=4 sw=4 et: |