2009-05-13 05:13:38 +01:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
from expo.views import *
|
2009-05-13 05:22:14 +01:00
|
|
|
import troggle.settings as settings
|
2009-05-13 05:13:38 +01:00
|
|
|
from django.contrib import admin
|
|
|
|
admin.autodiscover()
|
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
2009-05-13 05:30:59 +01:00
|
|
|
|
2009-05-13 05:31:44 +01:00
|
|
|
(r'^$', frontPage),
|
2009-05-13 05:24:37 +01:00
|
|
|
(r'^cave/?$', caveindex),
|
|
|
|
(r'^cave/(?P<cave_id>[^/]+)/?$', cave),
|
|
|
|
(r'^cave/(?P<cave_id>[^/]+)/?(?P<ent_letter>[^/])$', ent),
|
2009-05-13 05:22:26 +01:00
|
|
|
#(r'^cave/(?P<cave_id>[^/]+)/edit/$', edit_cave),
|
2009-05-13 05:24:37 +01:00
|
|
|
(r'^cavesearch', caveSearch),
|
2009-05-13 05:14:28 +01:00
|
|
|
|
2009-05-13 05:20:53 +01:00
|
|
|
(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),
|
2009-05-13 05:14:28 +01:00
|
|
|
|
2009-05-13 05:33:29 +01:00
|
|
|
url(r'^personindex$', personindex, name="personindex"),
|
2009-05-13 05:24:37 +01:00
|
|
|
(r'^person/(?P<person_id>\d*)(?P<first_name>[a-zA-Z]*)[-_/\.\s(\%20)]*(?P<last_name>[a-zA-Z]*)/?$', person),
|
2009-05-13 05:14:28 +01:00
|
|
|
|
2009-05-13 05:24:37 +01:00
|
|
|
(r'^logbookentry/(.*)/?$', logbookentry),
|
2009-05-13 05:33:29 +01:00
|
|
|
url(r'^logbooksearch/(.*)/?$', logbookSearch),
|
2009-05-13 05:22:14 +01:00
|
|
|
|
2009-05-13 05:33:29 +01:00
|
|
|
url(r'^statistics/?$', stats, name="stats"),
|
2009-05-13 05:15:49 +01:00
|
|
|
|
2009-05-13 05:27:43 +01:00
|
|
|
(r'^survey/?$', surveyindex),
|
2009-05-13 05:31:21 +01:00
|
|
|
(r'^survey/(?P<year>\d\d\d\d)\#(?P<wallet_number>\d*)$', survey),
|
2009-05-13 05:27:43 +01:00
|
|
|
|
2009-05-13 05:24:37 +01:00
|
|
|
(r'^admin/doc/?', include('django.contrib.admindocs.urls')),
|
2009-05-13 05:13:38 +01:00
|
|
|
(r'^admin/(.*)', admin.site.root),
|
|
|
|
|
2009-05-13 05:24:21 +01:00
|
|
|
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
|
2009-05-13 05:22:14 +01:00
|
|
|
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
|
2009-05-13 05:13:38 +01:00
|
|
|
|
2009-05-13 05:27:43 +01:00
|
|
|
(r'^survey_scans/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': settings.SURVEYS, 'show_indexes':True}),
|
|
|
|
|
|
|
|
|
2009-05-13 05:13:38 +01:00
|
|
|
)
|