From: yomguy Date: Tue, 15 Mar 2011 11:37:25 +0000 (+0100) Subject: fix marker url X-Git-Tag: 1.1~384 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=9ff3fb23c84d81844d64d30eb6be1c9219ce47a4;p=telemeta.git fix marker url --- diff --git a/telemeta/urls.py b/telemeta/urls.py index 792dd9e7..f2109633 100644 --- a/telemeta/urls.py +++ b/telemeta/urls.py @@ -64,7 +64,7 @@ urlpatterns = patterns('', name="telemeta-items"), url(r'^items/(?P[A-Za-z0-9._-]+)/$', web_view.item_detail, name="telemeta-item-detail"), - url(r'^items/(?P[A-Za-z0-9._-]+)/marker/(?P)$', web_view.item_detail, + url(r'^items/(?P[A-Za-z0-9._-]+)/marker/(?P[A-Za-z0-9]+)/$', web_view.item_detail, name="telemeta-item-detail"), url(r'^items/(?P[A-Za-z0-9._-]+)/dc/$', web_view.item_detail, {'template': 'telemeta/mediaitem_detail_dc.html'},