X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/babe7f68fcbb8f7e73f9b62d611715ca28b4c4e6..aa48ae37a4a0c49642ca4f21c809099c05c79865:/apps/wiki/urls.py diff --git a/apps/wiki/urls.py b/apps/wiki/urls.py index 0c73aed9..ee13b850 100644 --- a/apps/wiki/urls.py +++ b/apps/wiki/urls.py @@ -3,29 +3,26 @@ 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"), )