2009-05-13 05:13:38 +01:00
|
|
|
from django.conf.urls.defaults import *
|
2009-05-13 05:22:14 +01:00
|
|
|
import troggle.settings as settings
|
2009-05-13 05:48:47 +01:00
|
|
|
|
|
|
|
from expo.views import * # flat import
|
|
|
|
from expo.views_caves import *
|
|
|
|
from expo.views_survex import *
|
|
|
|
|
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:48:47 +01:00
|
|
|
url(r'^$', views_other.frontpage, name="frontpage"),
|
|
|
|
|
2009-05-13 05:55:00 +01:00
|
|
|
url(r'^caveindex/?$', views_caves.caveindex, name="caveindex"),
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^personindex$', views_logbooks.personindex, name="personindex"),
|
2009-05-13 05:46:12 +01:00
|
|
|
|
2009-05-13 05:52:15 +01:00
|
|
|
|
|
|
|
#(r'^person/(?P<person_id>\d*)/?$', views_logbooks.person),
|
2009-05-13 05:55:00 +01:00
|
|
|
url(r'^person/(?P<first_name>[A-Z]*[a-z\-\']*)[^a-zA-Z]*(?P<last_name>[A-Z]*[a-z\-]*)/?', views_logbooks.person, name="person"),
|
2009-05-13 05:52:15 +01:00
|
|
|
#url(r'^person/(\w+_\w+)$', views_logbooks.person, name="person"),
|
2009-05-13 05:58:18 +01:00
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^expedition/(\d+)$', views_logbooks.expedition, name="expedition"),
|
2009-05-13 05:58:58 +01:00
|
|
|
#url(r'^personexpedition/(?P<first_name>[A-Z]*[a-z]*)[^a-zA-Z]*(?P<last_name>[A-Z]*[a-z]*)/(?P<year>\d+)/?$', views_logbooks.personexpedition, name="personexpedition"),
|
|
|
|
url(r'^personexpedition/(.+?)/(\d+)$', views_logbooks.personexpedition, name="personexpedition"),
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^logbookentry/(.+)$', views_logbooks.logbookentry,name="logbookentry"),
|
2009-05-13 05:45:01 +01:00
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^survexblock/(.+)$', views_caves.survexblock, name="survexblock"),
|
|
|
|
url(r'^cavehref/(.+)$', views_caves.cavehref, name="cave"),
|
2009-05-13 05:59:40 +01:00
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^jgtfile/(.*)$', view_surveys.jgtfile, name="jgtfile"),
|
|
|
|
url(r'^jgtuploadfile$', view_surveys.jgtuploadfile, name="jgtuploadfile"),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-05-13 05:56:56 +01:00
|
|
|
url(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:56:56 +01:00
|
|
|
#(r'^cavesearch', caveSearch),
|
2009-05-13 05:45:26 +01:00
|
|
|
url(r'^cavearea', caveArea, name="caveArea"),
|
2009-05-13 05:34:33 +01:00
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^survex/(.*?)\.index$', views_survex.index, name="survexindex"),
|
2009-05-13 05:59:40 +01:00
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/?$', views_caves.cavehref),
|
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/(?P<year>\d\d\d\d)-(?P<qm_id>\d\d)?$', views_caves.qm),
|
2009-05-13 05:20:53 +01:00
|
|
|
(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:22:14 +01:00
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^logbooksearch/(.*)/?$', views_logbooks.logbookSearch),
|
2009-05-13 05:39:52 +01:00
|
|
|
|
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^statistics/?$', views_other.stats, name="stats"),
|
2009-05-13 05:15:49 +01:00
|
|
|
|
2009-05-13 05:52:15 +01:00
|
|
|
url(r'^calendar/(?P<year>\d\d\d\d)/?$', views_other.calendar, name="calendar"),
|
2009-05-13 05:44:01 +01:00
|
|
|
|
2009-05-13 05:40:35 +01:00
|
|
|
url(r'^survey/?$', surveyindex, name="survey"),
|
2009-05-13 05:52:59 +01:00
|
|
|
url(r'^survey/(?P<year>\d\d\d\d)\#(?P<wallet_number>\d*)$', survey, name="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:48:10 +01:00
|
|
|
(r'^accounts/', include('registration.urls')),
|
|
|
|
(r'^profiles/', include('profiles.urls')),
|
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
# (r'^personform/(.*)$', personForm),
|
2009-05-13 05:48:10 +01:00
|
|
|
|
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:34:33 +01:00
|
|
|
(r'^survey_files/listdir/(?P<path>.*)$', view_surveys.listdir),
|
|
|
|
(r'^survey_files/download/(?P<path>.*)$', view_surveys.download),
|
|
|
|
#(r'^survey_files/upload/(?P<path>.*)$', view_surveys.upload),
|
|
|
|
|
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:53:37 +01:00
|
|
|
(r'^photos/(?P<path>.*)$', 'django.views.static.serve',
|
2009-05-13 05:58:18 +01:00
|
|
|
{'document_root': settings.PHOTOS_ROOT, 'show_indexes':True}),
|
2009-05-13 05:13:38 +01:00
|
|
|
)
|