2008-10-26 21:04:06 +00:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
from expo.views import *
|
2008-12-08 04:28:03 +00:00
|
|
|
import troggle.settings as settings
|
2008-10-26 21:04:06 +00:00
|
|
|
from django.contrib import admin
|
|
|
|
admin.autodiscover()
|
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
# Example:
|
2008-12-31 02:59:15 +00:00
|
|
|
(r'^$', frontPage),
|
2008-12-13 23:17:33 +00:00
|
|
|
(r'^cave/?$', caveindex),
|
|
|
|
(r'^cave/(?P<cave_id>[^/]+)/?$', cave),
|
|
|
|
(r'^cave/(?P<cave_id>[^/]+)/?(?P<ent_letter>[^/])$', ent),
|
2008-12-08 05:10:45 +00:00
|
|
|
#(r'^cave/(?P<cave_id>[^/]+)/edit/$', edit_cave),
|
2008-12-13 23:17:33 +00:00
|
|
|
(r'^cavesearch', caveSearch),
|
2008-10-27 00:36:06 +00:00
|
|
|
|
2008-11-08 15:37:12 +00: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),
|
2008-10-27 00:36:06 +00:00
|
|
|
|
2008-12-13 23:17:33 +00:00
|
|
|
(r'^person/?$', personindex),
|
|
|
|
(r'^person/(?P<person_id>\d*)(?P<first_name>[a-zA-Z]*)[-_/\.\s(\%20)]*(?P<last_name>[a-zA-Z]*)/?$', person),
|
2008-10-27 00:36:06 +00:00
|
|
|
|
2008-12-13 23:17:33 +00:00
|
|
|
(r'^logbookentry/(.*)/?$', logbookentry),
|
|
|
|
(r'^logbooksearch/(.*)/?$', logbookSearch),
|
2008-12-08 04:28:03 +00:00
|
|
|
|
2008-12-13 23:17:33 +00:00
|
|
|
(r'^statistics/?$', stats),
|
2008-10-30 13:13:35 +00:00
|
|
|
|
2008-12-13 23:17:33 +00:00
|
|
|
(r'^admin/doc/?', include('django.contrib.admindocs.urls')),
|
2008-10-26 21:04:06 +00:00
|
|
|
(r'^admin/(.*)', admin.site.root),
|
|
|
|
|
2008-12-09 18:58:32 +00:00
|
|
|
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
|
2008-12-08 04:28:03 +00:00
|
|
|
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
|
2008-10-26 21:04:06 +00:00
|
|
|
|
|
|
|
)
|