X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/fdd62169ba22c4c1be2f2306b5339eadd74ffb6d..92adaf4060fa5f65bfd8022ec03ebe94311f4552:/apps/wiki/urls.py diff --git a/apps/wiki/urls.py b/apps/wiki/urls.py index dc866cd5..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[^/]+)/(?:(?P[^/]+)/)?$', + url(r'^history/(?P\d+)/$', 'history', name="wiki_history"), - url(r'^rev/(?P[^/]+)/(?:(?P[^/]+)/)?$', + url(r'^rev/(?P\d+)/$', 'revision', name="wiki_revision"), - url(r'^text/(?P[^/]+)/(?:(?P[^/]+)/)?$', + url(r'^text/(?P\d+)/$', 'text', name="wiki_text"), - url(r'^revert/(?P[^/]+)/(?:(?P[^/]+)/)?$', + url(r'^revert/(?P\d+)/$', 'revert', name='wiki_revert'), - url(r'^diff/(?P[^/]+)/(?:(?P[^/]+)/)?$', 'diff', name="wiki_diff"), - url(r'^pubmark/(?P[^/]+)/(?:(?P[^/]+)/)?$', 'pubmark', name="wiki_pubmark"), - - url(r'^themes$', 'themes', name="themes"), + url(r'^diff/(?P\d+)/$', 'diff', name="wiki_diff"), )