summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorgoatchurch <goatchurch@ubuntu.clocksoft.dom>2009-09-13 17:27:46 +0100
committergoatchurch <goatchurch@ubuntu.clocksoft.dom>2009-09-13 17:27:46 +0100
commit517d29163669de836f631fa17855a0b5cd914660 (patch)
tree76f89ac86e61547b52793719f236fa0da9bab792 /urls.py
parent12cf3a6d534e5038b5d78b11a03cef2b81f5f852 (diff)
downloadtroggle-517d29163669de836f631fa17855a0b5cd914660.tar.gz
troggle-517d29163669de836f631fa17855a0b5cd914660.tar.bz2
troggle-517d29163669de836f631fa17855a0b5cd914660.zip
able to save sketches up from tunnel
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 20f5ca4..bdaabb3 100644
--- a/urls.py
+++ b/urls.py
@@ -108,7 +108,10 @@ urlpatterns = patterns('',
url(r'^survey_scans/(?P<path>[^/]+)/$', view_surveys.surveyscansfolder, name="surveyscansfolder"),
url(r'^survey_scans/(?P<path>[^/]+)/(?P<file>[^/]+(?:png|jpg))$',
view_surveys.surveyscansingle, name="surveyscansingle"),
+
url(r'^tunneldata/$', view_surveys.tunneldata, name="tunneldata"),
+ url(r'^tunneldataraw/(?P<path>.+?\.xml)$', view_surveys.tunnelfile, name="tunnelfile"),
+ #url(r'^tunneldatainfo/(?P<path>.+?\.xml)$', view_surveys.tunnelfileinfo, name="tunnelfileinfo"),
(r'^photos/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.PHOTOS_ROOT, 'show_indexes':True}),