X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/91f30681b6687ac513f304a8827d1391236c00c3..aa48ae37a4a0c49642ca4f21c809099c05c79865:/apps/wiki/urls.py diff --git a/apps/wiki/urls.py b/apps/wiki/urls.py index 211bb3a7..ee13b850 100644 --- a/apps/wiki/urls.py +++ b/apps/wiki/urls.py @@ -1,31 +1,28 @@ # -*- coding: utf-8 -from django.conf.urls.defaults import * +from django.conf.urls import patterns, url urlpatterns = patterns('wiki.views', - url(r'^edit/(?P[^/]+)/(?:(?P[^/]+)/)?$', + url(r'^edit/(?P[^/]+)/$', 'editor', name="wiki_editor"), - url(r'^readonly/(?P[^/]+)/(?:(?P[^/]+)/)?$', + url(r'^readonly/(?P[^/]+)/$', 'editor_readonly', name="wiki_editor_readonly"), url(r'^gallery/(?P[^/]+)/$', 'gallery', name="wiki_gallery"), - url(r'^history/(?P\d+)/$', + url(r'^history/(?P\d+)/$', 'history', name="wiki_history"), url(r'^rev/(?P\d+)/$', 'revision', name="wiki_revision"), - url(r'^text/(?P\d+)/$', + url(r'^text/(?P\d+)/$', 'text', name="wiki_text"), - url(r'^revert/(?P\d+)/$', + url(r'^revert/(?P\d+)/$', 'revert', name='wiki_revert'), - url(r'^diff/(?P\d+)/$', 'diff', name="wiki_diff"), - url(r'^pubmark/(?P\d+)/$', 'pubmark', name="wiki_pubmark"), - - url(r'^themes$', 'themes', name="themes"), + url(r'^diff/(?P\d+)/$', 'diff', name="wiki_diff"), )