fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update editor
[redakcja.git]
/
apps
/
wiki
/
urls.py
diff --git
a/apps/wiki/urls.py
b/apps/wiki/urls.py
index
211bb3a
..
6947210
100644
(file)
--- a/
apps/wiki/urls.py
+++ b/
apps/wiki/urls.py
@@
-1,31
+1,23
@@
# -*- coding: utf-8
# -*- coding: utf-8
-from django.conf.urls
.defaults import *
+from django.conf.urls
import patterns, url
-urlpatterns = patterns('wiki.views',
- url(r'^edit/(?P<slug>[^/]+)/(?:(?P<chunk>[^/]+)/)?$',
+urlpatterns = patterns(
+ 'wiki.views',
+ url(r'^edit/(?P<pk>[^/]+)/$',
'editor', name="wiki_editor"),
'editor', name="wiki_editor"),
- url(r'^readonly/(?P<slug>[^/]+)/(?:(?P<chunk>[^/]+)/)?$',
- 'editor_readonly', name="wiki_editor_readonly"),
-
url(r'^gallery/(?P<directory>[^/]+)/$',
'gallery', name="wiki_gallery"),
url(r'^gallery/(?P<directory>[^/]+)/$',
'gallery', name="wiki_gallery"),
- url(r'^history/(?P<
chunk
_id>\d+)/$',
+ url(r'^history/(?P<
doc
_id>\d+)/$',
'history', name="wiki_history"),
'history', name="wiki_history"),
- url(r'^rev/(?P<chunk_id>\d+)/$',
- 'revision', name="wiki_revision"),
-
- url(r'^text/(?P<chunk_id>\d+)/$',
+ url(r'^text/(?P<doc_id>\d+)/$',
'text', name="wiki_text"),
'text', name="wiki_text"),
- url(r'^revert/(?P<
chunk
_id>\d+)/$',
+ url(r'^revert/(?P<
doc
_id>\d+)/$',
'revert', name='wiki_revert'),
'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'^themes$', 'themes', name="themes"),
+ url(r'^diff/(?P<doc_id>\d+)/$', 'diff', name="wiki_diff"),
)
)