2009-05-13 05:13:38 +01:00
|
|
|
from django.conf.urls.defaults import *
|
2009-07-04 08:27:49 +01:00
|
|
|
from django.conf import settings
|
2009-05-13 05:48:47 +01:00
|
|
|
|
2009-07-02 20:43:18 +01:00
|
|
|
from core.views import * # flat import
|
2009-07-06 08:31:24 +01:00
|
|
|
from core.views_other import *
|
2009-07-02 20:43:18 +01:00
|
|
|
from core.views_caves import *
|
|
|
|
from core.views_survex import *
|
|
|
|
from core.models import *
|
2009-05-13 06:08:04 +01:00
|
|
|
from django.views.generic.create_update import create_object
|
2009-05-13 05:13:38 +01:00
|
|
|
from django.contrib import admin
|
2009-05-15 03:29:19 +01:00
|
|
|
from django.views.generic.list_detail import object_list
|
2009-08-29 17:30:07 +01:00
|
|
|
from django.contrib import admin
|
2009-05-13 05:13:38 +01:00
|
|
|
admin.autodiscover()
|
|
|
|
|
2009-09-10 22:07:31 +01:00
|
|
|
|
|
|
|
# type url probably means it's used.
|
|
|
|
|
2011-05-02 02:37:33 +01:00
|
|
|
actualurlpatterns = 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 06:19:45 +01:00
|
|
|
url(r'^todo/$', views_other.todo, name="todo"),
|
2009-05-13 05:48:47 +01:00
|
|
|
|
2009-05-15 03:29:19 +01:00
|
|
|
url(r'^caves/?$', views_caves.caveindex, name="caveindex"),
|
|
|
|
url(r'^people/?$', views_logbooks.personindex, name="personindex"),
|
2009-07-06 08:31:24 +01:00
|
|
|
|
2009-07-04 08:27:49 +01:00
|
|
|
url(r'^newqmnumber/?$', views_other.ajax_QM_number, ),
|
2009-07-06 08:31:24 +01:00
|
|
|
url(r'^lbo_suggestions/?$', logbook_entry_suggestions),
|
2009-05-13 05:52:15 +01:00
|
|
|
#(r'^person/(?P<person_id>\d*)/?$', views_logbooks.person),
|
2009-05-13 06:02:42 +01:00
|
|
|
url(r'^person/(?P<first_name>[A-Z]*[a-z\-\']*)[^a-zA-Z]*(?P<last_name>[a-z\-\']*[^a-zA-Z]*[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 06:02:42 +01:00
|
|
|
|
2009-05-13 05:48:47 +01:00
|
|
|
url(r'^expedition/(\d+)$', views_logbooks.expedition, name="expedition"),
|
2009-05-19 06:32:42 +01:00
|
|
|
url(r'^expeditions/?$', object_list, {'queryset':Expedition.objects.all(),'template_name':'object_list.html'},name="expeditions"),
|
2009-05-13 06:02:42 +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"),
|
2009-05-13 06:09:55 +01:00
|
|
|
url(r'^logbookentry/(?P<date>.*)/(?P<slug>.*)/?$', views_logbooks.logbookentry,name="logbookentry"),
|
2011-05-01 19:32:41 +01:00
|
|
|
url(r'^newlogbookentry/(?P<expeditionyear>.*)$', views_logbooks.newLogbookEntry, name="newLogBookEntry"),
|
|
|
|
url(r'^editlogbookentry/(?P<expeditionyear>[^/]*)/(?P<pdate>[^/]*)/(?P<pslug>[^/]*)/$', views_logbooks.newLogbookEntry, name="editLogBookEntry"),
|
|
|
|
url(r'^deletelogbookentry/(?P<expeditionyear>[^/]*)/(?P<date>[^/]*)/(?P<slug>[^/]*)/$', views_logbooks.deleteLogbookEntry, name="deleteLogBookEntry"),
|
2011-06-02 19:16:16 +01:00
|
|
|
url(r'^newfile', views_other.newFile, name="newFile"),
|
|
|
|
|
|
|
|
url(r'^getEntrances/(?P<caveslug>.*)', views_caves.get_entrances, name = "get_entrances"),
|
|
|
|
url(r'^getQMs/(?P<caveslug>.*)', views_caves.get_qms, name = "get_qms"),
|
|
|
|
url(r'^getPeople/(?P<expeditionslug>.*)', views_logbooks.get_people, name = "get_people"),
|
|
|
|
url(r'^getLogBookEntries/(?P<expeditionslug>.*)', views_logbooks.get_logbook_entries, name = "get_logbook_entries"),
|
2009-07-04 18:11:20 +01:00
|
|
|
|
2009-05-13 06:12:54 +01:00
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/?$', views_caves.cave, name="cave"),
|
2011-07-10 23:48:13 +01:00
|
|
|
url(r'^caveslug/([^/]+)/?$', views_caves.caveSlug, name="caveSlug"),
|
2011-07-11 00:50:07 +01:00
|
|
|
url(r'^cave/entrance/([^/]+)/?$', views_caves.caveEntrance),
|
|
|
|
url(r'^cave/description/([^/]+)/?$', views_caves.caveDescription),
|
|
|
|
url(r'^cave/qms/([^/]+)/?$', views_caves.caveQMs),
|
|
|
|
url(r'^cave/logbook/([^/]+)/?$', views_caves.caveLogbook),
|
|
|
|
#url(r'^cavedescription/(?P<cavedescription_name>[^/]+)/?$', views_caves.cave_description, name="cavedescription"),
|
|
|
|
#url(r'^cavedescription/?$', object_list, {'queryset':CaveDescription.objects.all(),'template_name':'object_list.html'}, name="cavedescriptions"),
|
2009-05-13 06:15:48 +01:00
|
|
|
#url(r'^cavehref/(.+)$', views_caves.cave, name="cave"),url(r'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-07-04 18:11:20 +01:00
|
|
|
|
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:34:33 +01:00
|
|
|
|
2009-05-13 06:12:54 +01:00
|
|
|
|
2009-06-10 05:37:53 +01:00
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/(?P<year>\d\d\d\d)-(?P<qm_id>\d*)(?P<grade>[ABCDX]?)?$', views_caves.qm, name="qm"),
|
2009-06-09 18:59:54 +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: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 06:15:48 +01:00
|
|
|
|
2009-05-13 06:19:45 +01:00
|
|
|
url(r'^controlpanel/?$', views_other.controlPanel, name="controlpanel"),
|
2009-05-17 04:31:23 +01:00
|
|
|
url(r'^CAVETAB2\.CSV/?$', views_other.downloadCavetab, name="downloadcavetab"),
|
2009-06-18 06:53:52 +01:00
|
|
|
url(r'^Surveys\.csv/?$', views_other.downloadSurveys, name="downloadsurveys"),
|
|
|
|
url(r'^logbook(?P<year>\d\d\d\d)\.(?P<extension>.*)/?$',views_other.downloadLogbook),
|
|
|
|
url(r'^logbook/?$',views_other.downloadLogbook, name="downloadlogbook"),
|
2009-05-17 04:31:23 +01:00
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/qm\.csv/?$', views_other.downloadQMs, name="downloadqms"),
|
2009-06-28 19:33:24 +01:00
|
|
|
(r'^downloadqms$', views_other.downloadQMs),
|
2009-07-04 19:26:51 +01:00
|
|
|
|
2009-06-28 19:33:24 +01:00
|
|
|
url(r'^eyecandy$', views_other.eyecandy),
|
2009-05-13 06:15:48 +01:00
|
|
|
|
2009-05-13 05:24:37 +01:00
|
|
|
(r'^admin/doc/?', include('django.contrib.admindocs.urls')),
|
2009-08-29 17:30:07 +01:00
|
|
|
url(r'^admin/(.*)', admin.site.root, name="admin"),
|
2009-08-29 18:08:55 +01:00
|
|
|
|
|
|
|
# don't know why this needs troggle/ in here. nice to get it out
|
|
|
|
url(r'^troggle/media-admin/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ADMIN_DIR, 'show_indexes':True}),
|
|
|
|
|
2009-05-13 05:13:38 +01:00
|
|
|
|
2009-05-13 05:48:10 +01:00
|
|
|
(r'^accounts/', include('registration.urls')),
|
|
|
|
(r'^profiles/', include('profiles.urls')),
|
2009-06-28 19:33:24 +01:00
|
|
|
|
2009-08-05 11:58:36 +01:00
|
|
|
|
2009-05-19 06:32:42 +01:00
|
|
|
# (r'^personform/(.*)$', personForm),
|
2009-05-13 06:23:57 +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}),
|
2011-05-01 19:32:41 +01:00
|
|
|
(r'^tinymce_media/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': settings.TINY_MCE_MEDIA_ROOT, 'show_indexes': True}),
|
2009-08-05 11:58:36 +01:00
|
|
|
|
2009-07-27 13:43:43 +01:00
|
|
|
|
|
|
|
url(r'^survexblock/(.+)$', views_caves.survexblock, name="survexblock"),
|
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.svx$', views_survex.svx, name="svx"),
|
2009-09-10 22:07:31 +01:00
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.3d$', views_survex.threed, name="threed"),
|
2009-08-05 11:58:36 +01:00
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.log$', views_survex.svxraw),
|
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.err$', views_survex.err),
|
|
|
|
|
|
|
|
|
|
|
|
url(r'^survexfile/caves/$', views_survex.survexcaveslist, name="survexcaveslist"),
|
2009-09-10 22:07:31 +01:00
|
|
|
url(r'^survexfile/caves/(?P<survex_cave>.*)$', views_survex.survexcavesingle, name="survexcavessingle"),
|
|
|
|
url(r'^survexfileraw/(?P<survex_file>.*?)\.svx$', views_survex.svxraw, name="svxraw"),
|
2009-08-01 07:31:27 +01:00
|
|
|
|
2009-07-27 13:43:43 +01:00
|
|
|
|
|
|
|
(r'^survey_files/listdir/(?P<path>.*)$', view_surveys.listdir),
|
|
|
|
(r'^survey_files/download/(?P<path>.*)$', view_surveys.download),
|
2009-05-13 05:34:33 +01:00
|
|
|
#(r'^survey_files/upload/(?P<path>.*)$', view_surveys.upload),
|
|
|
|
|
2009-07-27 13:43:43 +01:00
|
|
|
|
|
|
|
|
2009-09-10 22:07:31 +01:00
|
|
|
#(r'^survey_scans/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.SURVEY_SCANS, 'show_indexes':True}),
|
|
|
|
url(r'^survey_scans/$', view_surveys.surveyscansfolders, name="surveyscansfolders"),
|
|
|
|
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"),
|
2009-09-13 17:27:46 +01:00
|
|
|
|
2009-09-11 23:56:47 +01:00
|
|
|
url(r'^tunneldata/$', view_surveys.tunneldata, name="tunneldata"),
|
2009-09-13 17:27:46 +01:00
|
|
|
url(r'^tunneldataraw/(?P<path>.+?\.xml)$', view_surveys.tunnelfile, name="tunnelfile"),
|
2009-09-14 22:52:46 +01:00
|
|
|
url(r'^tunneldataraw/(?P<path>.+?\.xml)/upload$',view_surveys.tunnelfileupload, name="tunnelfileupload"),
|
|
|
|
|
2009-09-13 17:27:46 +01:00
|
|
|
#url(r'^tunneldatainfo/(?P<path>.+?\.xml)$', view_surveys.tunnelfileinfo, name="tunnelfileinfo"),
|
2009-09-11 23:56:47 +01:00
|
|
|
|
2009-05-13 05:53:37 +01:00
|
|
|
(r'^photos/(?P<path>.*)$', 'django.views.static.serve',
|
2009-05-13 06:05:02 +01:00
|
|
|
{'document_root': settings.PHOTOS_ROOT, 'show_indexes':True}),
|
2009-05-13 06:12:54 +01:00
|
|
|
|
2009-08-05 11:58:36 +01:00
|
|
|
# for those silly ideas
|
|
|
|
url(r'^experimental.*$', views_logbooks.experimental, name="experimental"),
|
|
|
|
|
|
|
|
#url(r'^trip_report/?$',views_other.tripreport,name="trip_report")
|
2011-06-02 19:16:16 +01:00
|
|
|
|
|
|
|
url(r'^(.*)_edit$', 'flatpages.views.editflatpage', name="editflatpage"),
|
|
|
|
url(r'^(.*)$', 'flatpages.views.flatpage', name="flatpage"),
|
2009-05-13 05:13:38 +01:00
|
|
|
)
|
2011-05-02 02:37:33 +01:00
|
|
|
|
|
|
|
#Allow prefix to all urls
|
|
|
|
urlpatterns = patterns ('',
|
|
|
|
('^%s' % settings.DIR_ROOT, include(actualurlpatterns))
|
|
|
|
)
|