fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Switch scss compilers; add none to user assign menu.
[redakcja.git]
/
src
/
wiki
/
urls.py
diff --git
a/src/wiki/urls.py
b/src/wiki/urls.py
index
0c73aed
..
f1a4508
100644
(file)
--- a/
src/wiki/urls.py
+++ b/
src/wiki/urls.py
@@
-1,31
+1,37
@@
-# -*- coding: utf-8
-from django.conf.urls import patterns, url
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.conf.urls import url
+from . import views
-urlpatterns =
patterns('wiki.views',
+urlpatterns =
[
url(r'^edit/(?P<slug>[^/]+)/(?:(?P<chunk>[^/]+)/)?$',
url(r'^edit/(?P<slug>[^/]+)/(?:(?P<chunk>[^/]+)/)?$',
-
'editor'
, name="wiki_editor"),
+
views.editor
, name="wiki_editor"),
url(r'^readonly/(?P<slug>[^/]+)/(?:(?P<chunk>[^/]+)/)?$',
url(r'^readonly/(?P<slug>[^/]+)/(?:(?P<chunk>[^/]+)/)?$',
-
'editor_readonly'
, name="wiki_editor_readonly"),
+
views.editor_readonly
, name="wiki_editor_readonly"),
url(r'^gallery/(?P<directory>[^/]+)/$',
url(r'^gallery/(?P<directory>[^/]+)/$',
-
'gallery'
, name="wiki_gallery"),
+
views.gallery
, name="wiki_gallery"),
url(r'^history/(?P<chunk_id>\d+)/$',
url(r'^history/(?P<chunk_id>\d+)/$',
-
'history'
, name="wiki_history"),
+
views.history
, name="wiki_history"),
url(r'^rev/(?P<chunk_id>\d+)/$',
url(r'^rev/(?P<chunk_id>\d+)/$',
-
'revision'
, name="wiki_revision"),
+
views.revision
, name="wiki_revision"),
url(r'^text/(?P<chunk_id>\d+)/$',
url(r'^text/(?P<chunk_id>\d+)/$',
-
'text'
, name="wiki_text"),
+
views.text
, name="wiki_text"),
url(r'^revert/(?P<chunk_id>\d+)/$',
url(r'^revert/(?P<chunk_id>\d+)/$',
-
'revert'
, name='wiki_revert'),
+
views.revert
, name='wiki_revert'),
- url(r'^diff/(?P<chunk_id>\d+)/$',
'diff'
, name="wiki_diff"),
- url(r'^pubmark/(?P<chunk_id>\d+)/$',
'pubmark'
, name="wiki_pubmark"),
+ url(r'^diff/(?P<chunk_id>\d+)/$',
views.diff
, name="wiki_diff"),
+ url(r'^pubmark/(?P<chunk_id>\d+)/$',
views.pubmark
, name="wiki_pubmark"),
- url(r'^themes$', 'themes', name="themes"),
-)
+ url(r'^themes$', views.themes, name="themes"),
+
+ url(r'^back/$', views.back),
+ url(r'^editor-user-area/$', views.editor_user_area),
+]