mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
c6cce8d2fe
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8152 by aaron @ 1/15/2009 6:22 AM
44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
from django.conf.urls.defaults import *
|
|
from expo.views import *
|
|
import troggle.settings as settings
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
# Example:
|
|
(r'^$', frontPage),
|
|
(r'^cave/?$', caveindex),
|
|
(r'^cave/(?P<cave_id>[^/]+)/?$', cave),
|
|
(r'^cave/(?P<cave_id>[^/]+)/?(?P<ent_letter>[^/])$', ent),
|
|
#(r'^cave/(?P<cave_id>[^/]+)/edit/$', edit_cave),
|
|
(r'^cavesearch', caveSearch),
|
|
|
|
(r'^survex/(?P<survex_file>.*)\.index$', index),
|
|
(r'^survex/(?P<survex_file>.*)\.svx$', svx),
|
|
(r'^survex/(?P<survex_file>.*)\.3d$', threed),
|
|
(r'^survex/(?P<survex_file>.*)\.log$', log),
|
|
(r'^survex/(?P<survex_file>.*)\.err$', err),
|
|
|
|
(r'^person/?$', personindex),
|
|
(r'^person/(?P<person_id>\d*)(?P<first_name>[a-zA-Z]*)[-_/\.\s(\%20)]*(?P<last_name>[a-zA-Z]*)/?$', person),
|
|
|
|
(r'^logbookentry/(.*)/?$', logbookentry),
|
|
(r'^logbooksearch/(.*)/?$', logbookSearch),
|
|
|
|
(r'^statistics/?$', stats),
|
|
|
|
(r'^survey/?$', surveyindex),
|
|
(r'^survey/(?P<survey_id>.*)$', survey),
|
|
|
|
(r'^admin/doc/?', include('django.contrib.admindocs.urls')),
|
|
(r'^admin/(.*)', admin.site.root),
|
|
|
|
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
|
|
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
|
|
|
|
(r'^survey_scans/(?P<path>.*)$', 'django.views.static.serve',
|
|
{'document_root': settings.SURVEYS, 'show_indexes':True}),
|
|
|
|
|
|
)
|