X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/c16a4ce964e291edc7fd10dcd12a489a17b9f8d6..8132fc186eb0c5fd02c86828c3a4735754296d02:/apps/wiki/urls.py diff --git a/apps/wiki/urls.py b/apps/wiki/urls.py index bfc799f5..0c73aed9 100644 --- a/apps/wiki/urls.py +++ b/apps/wiki/urls.py @@ -1,29 +1,31 @@ -from django.conf.urls.defaults import * +# -*- coding: utf-8 +from django.conf.urls import patterns, url + urlpatterns = patterns('wiki.views', - url(r'^$', - 'document_list', name='wiki_doclist'), - - url(r'^create/(?P[^/]+)', - 'document_create_missing', name='wiki_create_missing'), - - url(r'^gallery/(?P[^/]+)$', - 'document_gallery', name="wiki_gallery"), - url(r'^(?P[^/]+)/history$', - 'document_history', name="wiki_history"), - url(r'^(?P[^/]+)/text$', - 'document_text', name="wiki_text"), - url(r'^(?P[^/]+)/publish/(?P\d+)$', - 'document_publish', name="wiki_publish"), - url(r'^(?P[^/]+)/diff$', - 'document_diff', name="wiki_diff"), - url(r'^(?P[^/]+)/tags$', - 'document_add_tag', name="wiki_add_tag"), - url(r'^(?P[^/]+)/publish$', 'document_publish'), - - url(r'^(?P[^/]+)/readonly$', - 'document_detail_readonly', name="wiki_details_readonly"), - - url(r'^(?P[^/]+)$', - 'document_detail', name="wiki_details"), + url(r'^edit/(?P[^/]+)/(?:(?P[^/]+)/)?$', + 'editor', name="wiki_editor"), + + url(r'^readonly/(?P[^/]+)/(?:(?P[^/]+)/)?$', + 'editor_readonly', name="wiki_editor_readonly"), + + url(r'^gallery/(?P[^/]+)/$', + 'gallery', name="wiki_gallery"), + + url(r'^history/(?P\d+)/$', + 'history', name="wiki_history"), + + url(r'^rev/(?P\d+)/$', + 'revision', name="wiki_revision"), + + url(r'^text/(?P\d+)/$', + 'text', name="wiki_text"), + + 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"), )