summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorgoatchurch <devnull@localhost>2009-08-01 07:31:27 +0100
committergoatchurch <devnull@localhost>2009-08-01 07:31:27 +0100
commit60dcb82ef6ca4faf4b7e2e5cb2d407961af5ea3f (patch)
treed8fa1d3e8bb222e4068b694df0dc42ce3aa9980f /urls.py
parentb135ab64e7873169e8a3c973f3ea9d0fbb18e319 (diff)
downloadtroggle-60dcb82ef6ca4faf4b7e2e5cb2d407961af5ea3f.tar.gz
troggle-60dcb82ef6ca4faf4b7e2e5cb2d407961af5ea3f.tar.bz2
troggle-60dcb82ef6ca4faf4b7e2e5cb2d407961af5ea3f.zip
[svn] now with ability to make new svx file
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 85a78a1..b4f2ebc 100644
--- a/urls.py
+++ b/urls.py
@@ -81,7 +81,10 @@ urlpatterns = patterns('',
url(r'^survexblock/(.+)$', views_caves.survexblock, name="survexblock"),
url(r'^survexfile/(?P<survex_file>.*?)\.svx$', views_survex.svx, name="svx"),
url(r'^survexfile/(?P<survex_file>.*)\.3d$', views_survex.threed, name="threed"),
- url(r'^survexfile/caves$', views_survex.survexcaveslist,name="survexcaveslist"),
+ url(r'^survexfile/caves$', views_survex.survexcaveslist, name="survexcaveslist"),
+ url(r'^survexfile/caves/(?P<survex_cave>.*)$', views_survex.survexcavesingle, name="survexcavessingle"),
+ url(r'^survexfileraw/(?P<survex_file>.*?)\.svx$', views_survex.svxraw, name="svxraw"),
+
(r'^survex/(?P<survex_file>.*)\.log$', log),
(r'^survex/(?P<survex_file>.*)\.err$', err),