aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/git_wiki/urls.py')
-rw-r--r--bn_django/git_wiki/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bn_django/git_wiki/urls.py b/bn_django/git_wiki/urls.py
index 0cd2031..2570f05 100644
--- a/bn_django/git_wiki/urls.py
+++ b/bn_django/git_wiki/urls.py
@@ -19,5 +19,11 @@ urlpatterns = patterns('bn_django.git_wiki.views',
(r'^(?P<reqslug>[\w\-\_\/]*)/log/$', 'tree',),
(r'^(?P<reqslug>[\w\-\_\/]*)/edit/$', 'tree',),
(r'^(?P<reqslug>[\w\-\_\/]*)/pdf/$', 'tree',),
+ (r'^(?P<reqslug>[\w\-\_\/]*)/raw/$', 'rawitem',),
+ (r'^(?P<reqslug>[\w\-\_\/]*)/latex/$', 'latexitem',),
+ (r'^(?P<reqslug>[\w\-\_\/]*\.png/?)$', 'figure',),
+ (r'^(?P<reqslug>[\w\-\_\/]*\.gif/?)$', 'figure',),
+ (r'^(?P<reqslug>[\w\-\_\/]*\.jpg/?)$', 'figure',),
+ (r'^(?P<reqslug>[\w\-\_\/]*\.jpeg/?)$', 'figure',),
(r'^(?P<reqslug>[\w\-\_\/]*)$', 'tree',),
)