summaryrefslogtreecommitdiff
path: root/nop/urls.py
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-05-27 15:07:58 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-05-27 15:07:58 (GMT)
commitd8933e35a6bfbba12a40d100db56700fd381a968 (patch)
treea8cd9899ebf0329e260aa9c8798074bcec26f289 /nop/urls.py
parent302a5db65edffda5d366c3077c6690d06e2edd49 (diff)
integration of nowplaying into plone
Diffstat (limited to 'nop/urls.py')
-rw-r--r--nop/urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/nop/urls.py b/nop/urls.py
index caa6898..63c183c 100644
--- a/nop/urls.py
+++ b/nop/urls.py
@@ -6,8 +6,8 @@ NOP_STATIC_DIR = os.path.join(os.path.dirname(__file__), 'site_media')
urlpatterns = patterns('',
- url(r'^get_current/?$', get_current),
- url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<hour>\d{1,2})/(?P<minute>\d{1,2})/?$', get),
- url(r'^$', nop_form),
- url(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': NOP_STATIC_DIR}),
+ url(r'^/get_current/?$', get_current),
+ url(r'^/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<hour>\d{1,2})/(?P<minute>\d{1,2})/?$', get),
+ url(r'^/?$', nop_form),
+ url(r'^/static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': NOP_STATIC_DIR}),
)