2011-07-11 01:49:03 +01:00
|
|
|
from django.conf import settings
|
2020-06-22 00:03:23 +01:00
|
|
|
from django.conf.urls import url, include
|
2021-03-21 01:37:52 +00:00
|
|
|
from django.views.generic.base import RedirectView
|
2020-05-28 01:38:35 +01:00
|
|
|
from django.views.generic.edit import UpdateView
|
|
|
|
from django.views.generic.list import ListView
|
|
|
|
from django.contrib import admin
|
2021-04-06 00:49:09 +01:00
|
|
|
from django.contrib import auth
|
2020-06-18 21:50:16 +01:00
|
|
|
from django.urls import reverse, resolve
|
2020-06-22 00:03:23 +01:00
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
from troggle.core.views import surveys, other, caves, statistics, survex
|
2021-03-31 21:51:17 +01:00
|
|
|
from troggle.core.views.other import troggle404, frontpage
|
2021-04-16 03:05:39 +01:00
|
|
|
from troggle.core.views.caves import ent, cavepage
|
2021-04-16 21:28:44 +01:00
|
|
|
from troggle.core.views.logbooks import get_logbook_entries, logbookentry, logbookSearch
|
|
|
|
from troggle.core.views.logbooks import personindex, person, get_people
|
|
|
|
from troggle.core.views.logbooks import expedition, personexpedition, Expeditions_tsvListView, Expeditions_jsonListView
|
|
|
|
from troggle.core.views.prospect import prospecting_image
|
|
|
|
from troggle.core.views.prospect import prospecting
|
2021-04-11 20:00:09 +01:00
|
|
|
from troggle.core.views.statistics import pathsreport, stats, dataissues
|
2021-04-16 21:28:44 +01:00
|
|
|
from troggle.core.views.expo import expofiles_redirect, expofilessingle, expopage, editexpopage, mediapage, map, mapfile
|
2021-03-31 21:51:17 +01:00
|
|
|
from troggle.core.views.survex import survexcaveslist, survexcavesingle, svx
|
2021-04-06 00:49:09 +01:00
|
|
|
from troggle.core.views.auth import expologin, expologout
|
2021-03-28 03:48:04 +01:00
|
|
|
"""This sets the actualurlpatterns[] and urlpatterns[] lists which django uses
|
2021-03-21 01:37:52 +00:00
|
|
|
to resolve urls - in both directions as these are declarative.
|
2020-05-28 01:38:35 +01:00
|
|
|
|
2020-07-18 16:23:54 +01:00
|
|
|
HOW THIS WORKS
|
|
|
|
This is a "url dispatcher" - something needed by every web framework.
|
|
|
|
url( <regular expression that matches the thing in the web browser>,
|
|
|
|
<reference to python function in 'core' folder>, <optional name>)
|
2011-07-11 01:49:03 +01:00
|
|
|
|
2020-07-18 16:23:54 +01:00
|
|
|
Django also provides the reverse function: given an an object, provide the URL
|
|
|
|
which is vital to writing code for the webapp. So the URL dispatch is declarative.
|
2020-07-28 01:22:06 +01:00
|
|
|
|
|
|
|
The API urls return TSV or JSON and are new in July 2020.
|
2020-07-18 16:23:54 +01:00
|
|
|
"""
|
2021-03-21 01:37:52 +00:00
|
|
|
|
2021-03-31 21:51:17 +01:00
|
|
|
#handler404 = 'troggle.core.views.other.troggle404' # can't get this to work. but 404.html is default anyway
|
2019-02-26 00:17:11 +00:00
|
|
|
|
2020-07-18 16:23:54 +01:00
|
|
|
# Many of these patterns do not work because troggle spent many years broken and we have
|
|
|
|
# not yet restored all the functions. Some may have never been fully implemented in
|
|
|
|
# the first place and what they were intended to provide is obscure.
|
2020-06-22 00:03:23 +01:00
|
|
|
|
2021-03-26 13:51:00 +00:00
|
|
|
if settings.EXPOFILESREMOTE:
|
|
|
|
expofilesurls = [
|
2021-04-02 19:22:53 +01:00
|
|
|
url(r'^(?P<path>.*)$', expofiles_redirect, name="expofiles_redirect"), # to http://expo.survex.com/expofiles
|
2021-03-26 13:51:00 +00:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
expofilesurls = [
|
2021-03-31 16:14:36 +01:00
|
|
|
url(r'^(?P<filepath>.*)$', expofilessingle, name="single"), # local copy of EXPOFILES
|
2021-03-26 13:51:00 +00:00
|
|
|
]
|
2021-04-06 00:49:09 +01:00
|
|
|
|
|
|
|
# The URLs provided by include('django.contrib.auth.urls') are:
|
|
|
|
|
|
|
|
# accounts/login/ [name='login']
|
|
|
|
# accounts/logout/ [name='logout']
|
|
|
|
# accounts/password_change/ [name='password_change']
|
|
|
|
# accounts/password_change/done/ [name='password_change_done']
|
|
|
|
# accounts/password_reset/ [name='password_reset']
|
|
|
|
# accounts/password_reset/done/ [name='password_reset_done']
|
|
|
|
# accounts/reset/<uidb64>/<token>/ [name='password_reset_confirm']
|
|
|
|
# accounts/reset/done/ [name='password_reset_complete']
|
2021-03-31 23:41:46 +01:00
|
|
|
|
2021-03-31 16:14:36 +01:00
|
|
|
trogglepatterns = [
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^expofiles/', include(expofilesurls)),
|
2021-03-26 13:51:00 +00:00
|
|
|
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^troggle$', other.frontpage, name="frontpage"), # control panel. Shows recent actions.
|
|
|
|
url(r'^caves$', caves.caveindex, name="caveindex"),
|
|
|
|
url(r'^indxal.htm$', caves.caveindex, name="caveindex"), # ~420 hrefs to this url in expoweb files
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^people/?$', personindex, name="personindex"),
|
2011-07-11 01:49:03 +01:00
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^admin/doc/', include('django.contrib.admindocs.urls')), # needs docutils Python module (http://docutils.sf.net/).
|
|
|
|
url(r'^admin/', admin.site.urls), # includes admin login & logout urls
|
2021-03-27 18:22:07 +00:00
|
|
|
|
2021-04-11 03:02:06 +01:00
|
|
|
# setting LOGIN_URL = '/accounts/login/' is default
|
|
|
|
# url ENDS WITH this string
|
2021-04-06 00:49:09 +01:00
|
|
|
url(r'logout/$', expologout, name='expologout'), # higher precedence than /accounts/logout
|
|
|
|
url(r'login/$', expologin, name='expologin'), # higher precedence than /accounts/login
|
|
|
|
#url(r'^accounts/', include('django.contrib.auth.urls')), # from Dj3.0, see site-packages\registration\auth_urls_classes.py
|
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
# Persons - nasty surname recognition logic fails for 19 people!
|
|
|
|
# url(r'^person/(?P<person_id>\d*)/?$', person), makes Ruairidh MacLeod work but kills MacLean
|
2021-03-31 21:51:17 +01:00
|
|
|
# url(r'^person/(\w+_\w+)$', logbooks.person, name="person"),
|
2021-04-16 21:28:44 +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\-&;]*)/?', person, name="person"),
|
|
|
|
url(r'^personexpedition/(?P<first_name>[A-Z]*[a-z&;]*)[^a-zA-Z]*(?P<last_name>[A-Z]*[a-zA-Z&;]*)/(?P<year>\d+)/?$', personexpedition, name="personexpedition"),
|
2020-06-18 15:54:40 +01:00
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
# Expedition master page
|
|
|
|
url(r'^expedition/(\d+)$', expedition, name="expedition"),
|
|
|
|
url(r'^api/expeditions_tsv$', Expeditions_tsvListView.as_view()),
|
|
|
|
url(r'^api/expeditions_json$', Expeditions_jsonListView.as_view()),
|
2021-04-11 03:02:06 +01:00
|
|
|
|
|
|
|
# Logbook entries
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^logbookentry/(?P<date>.*)/(?P<slug>.*)/?$', logbookentry,name="logbookentry"),
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^newfile', other.newFile, name="newFile"), # oddly broken, needs investigating more
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^logbooksearch/(.*)/?$', logbookSearch),
|
2021-04-11 03:02:06 +01:00
|
|
|
url(r'^logbook(?P<year>\d\d\d\d)\.(?P<extension>.*)/?$', other.downloadLogbook),
|
|
|
|
url(r'^logbook/?$', other.downloadLogbook, name="downloadlogbook"),
|
2021-04-16 21:28:44 +01:00
|
|
|
|
|
|
|
# Internal. editfile.html template uses these internally
|
|
|
|
url(r'^getPeople/(?P<expeditionslug>.*)', get_people, name = "get_people"),
|
|
|
|
url(r'^getLogBookEntries/(?P<expeditionslug>.*)', get_logbook_entries, name = "get_logbook_entries"),
|
|
|
|
url(r'^getQMs/(?P<caveslug>.*)', caves.get_qms, name = "get_qms"),
|
|
|
|
url(r'^getEntrances/(?P<caveslug>.*)', caves.get_entrances, name = "get_entrances"),
|
|
|
|
|
2021-04-11 03:02:06 +01:00
|
|
|
# Cave description pages
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^cave/new/$', caves.edit_cave, name="newcave"),
|
2021-04-03 20:52:35 +01:00
|
|
|
url(r'^cave/3d/(?P<cave_id>[^/]+)$', caves.cave3d, name="cave3d"),
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/?$', caves.cave, name="cave"),
|
2021-03-30 21:05:27 +01:00
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/?(?P<ent_letter>[^/])$', ent), # view_caves.ent
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^cave/(?P<slug>[^/]+)/edit/$', caves.edit_cave, name="edit_cave"),
|
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^cave/entrance/([^/]+)/?$', caves.caveEntrance),
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^cave/description/([^/]+)/?$', caves.caveDescription),
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^cave/logbook/([^/]+)/?$', caves.caveLogbook),
|
2021-04-17 23:59:11 +01:00
|
|
|
url(r'^(?P<karea>\d\d\d\d)(?P<subpath>.*)$', cavepage, name="cavepage"), # shorthand /1623/264 BUT url links may break
|
|
|
|
# Note that urls eg '1623/161/l/rl89a.htm' are handled by cavepage which redirects them to 'expopage'
|
2021-03-31 21:51:17 +01:00
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
# Entrances
|
2021-04-17 01:41:06 +01:00
|
|
|
url(r'^entrance/(?P<caveslug>[^/]+)/(?P<slug>[^/]+)/edit/', caves.edit_entrance, name = "editentrance"),
|
2021-04-17 23:59:11 +01:00
|
|
|
url(r'^entrance/new/(?P<caveslug>[^/]+)$', caves.edit_entrance, name = "newentrance"),
|
|
|
|
|
2011-07-11 01:49:03 +01:00
|
|
|
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^statistics/?$', statistics.stats, name="stats"),
|
2021-04-11 20:00:09 +01:00
|
|
|
url(r'^stats/?$', statistics.stats, name="stats"),
|
|
|
|
url(r'^pathsreport.*$', statistics.pathsreport, name="pathsreport"),
|
|
|
|
url(r'^dataissues/?$', statistics.dataissues, name="dataissues"),
|
2020-06-04 21:57:04 +01:00
|
|
|
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^controlpanel/?$', other.controlPanel, name="controlpanel"),
|
2011-07-11 01:49:03 +01:00
|
|
|
|
2021-04-11 03:02:06 +01:00
|
|
|
# The survexfile pages
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.svx$', survex.svx, name="svx"),
|
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.3d$', survex.threed, name="threed"),
|
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.log$', survex.svxraw),
|
|
|
|
url(r'^survexfile/(?P<survex_file>.*?)\.err$', survex.err),
|
2020-06-04 21:57:04 +01:00
|
|
|
|
2021-04-02 19:22:53 +01:00
|
|
|
url(r'^survexfile/caves/$', survex.survexcaveslist, name="survexcaveslist"),
|
2021-04-05 14:01:15 +01:00
|
|
|
url(r'^survexfile/caves$', survex.survexcaveslist, name="survexcaveslist"), # auto slash not working
|
2021-04-02 19:22:53 +01:00
|
|
|
url(r'^survexfile/(?P<survex_cave>.*)$', survex.survexcavesingle, name="survexcavessingle"),
|
2020-06-04 21:57:04 +01:00
|
|
|
|
2021-03-31 21:51:17 +01:00
|
|
|
url(r'^survey_scans/$', surveys.surveyscansfolders, name="surveyscansfolders"),
|
|
|
|
url(r'^survey_scans/(?P<path>[^/]+)/$', surveys.surveyscansfolder, name="surveyscansfolder"),
|
2020-06-18 21:50:16 +01:00
|
|
|
url(r'^survey_scans/(?P<path>[^/]+)/(?P<file>[^/]+)$',
|
2021-03-31 21:51:17 +01:00
|
|
|
surveys.surveyscansingle, name="surveyscansingle"),
|
2020-06-04 21:57:04 +01:00
|
|
|
|
2021-04-11 03:02:06 +01:00
|
|
|
# The tunnel and therion drawings files pages
|
2021-04-08 01:09:06 +01:00
|
|
|
url(r'^tunneldata/$', surveys.tunneldata, name="tunneldata"),
|
|
|
|
url(r'^tunneldataraw/(?P<path>.+?\.xml)$', surveys.dwgfilesingle, name="dwgfilesingle"),
|
|
|
|
url(r'^tunneldataraw/(?P<path>.+?\.th)$', surveys.dwgfilesingle, name="dwgfilesingle"),
|
|
|
|
url(r'^tunneldataraw/(?P<path>.+?\.th2)$', surveys.dwgfilesingle, name="dwgfilesingle"),
|
|
|
|
# url(r'^tunneldatainfo/(?P<path>.+?\.xml)$', surveys.tunnelfileinfo, name="tunnelfileinfo"), # parses tunnel for info
|
|
|
|
url(r'^tunneldataraw/(?P<path>.+?\.xml)/upload$', surveys.tunnelfileupload, name="tunnelfileupload"),
|
2011-07-11 01:49:03 +01:00
|
|
|
|
2021-04-17 23:59:11 +01:00
|
|
|
|
|
|
|
# QMs pages - must precede other /caves pages
|
|
|
|
url(r'^cave/qms/([^/]+)/?$', caves.caveQMs), # blank page usually
|
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/(?P<year>\d\d\d\d)-(?P<qm_id>\d*)(?P<grade>[ABCDX]?)?$', caves.qm, name="qm"),
|
|
|
|
url(r'^cave/(?P<cave_id>[^/]+)/qm\.csv/?$', other.downloadQMs, name="downloadqms"),
|
|
|
|
url(r'^newqmnumber/?$', other.ajax_QM_number, ), # blank page if no ch given
|
|
|
|
# url(r'^downloadqms$', other.downloadQMs), # MultiValueDictKeyError
|
|
|
|
|
2021-04-16 21:28:44 +01:00
|
|
|
# Prospecting Guide document
|
|
|
|
url(r'^prospecting_guide/$', prospecting),
|
|
|
|
url(r'^prospecting/(?P<name>[^.]+).png$', prospecting_image, name="prospecting_image"),
|
|
|
|
|
2021-04-11 03:02:06 +01:00
|
|
|
# This next set are all intercepted by Apache, if it is running.
|
2021-03-31 23:19:48 +01:00
|
|
|
url(r'^photos/(?P<subpath>.*)$', mediapage, {'doc_root': settings.PHOTOS_ROOT}, name="mediapage"), # photo galleries
|
|
|
|
url(r'^site_media/(?P<subpath>.*)$', mediapage, {'doc_root': settings.MEDIA_ROOT}, name="mediapage"), # MEDIA_ROOT: CSS and JS
|
2021-04-01 02:50:30 +01:00
|
|
|
url(r'^static/(?P<subpath>.*)$', mediapage, {'doc_root': settings.MEDIA_ROOT}, name="mediapage"), # STATIC is in MEDIA now!
|
2021-04-02 19:22:53 +01:00
|
|
|
url(r'^javascript/(?P<subpath>.*)$', mediapage, {'doc_root': settings.JSLIB_ROOT}, name="mediapage"), # JSLIB_URL
|
2021-04-03 20:52:35 +01:00
|
|
|
url(r'^expowebcache/3d/(?P<subpath>.*)$', mediapage, {'doc_root': settings.THREEDCACHEDIR}, name="mediapage"),
|
2021-04-16 21:28:44 +01:00
|
|
|
url(r'^map/map.html', map, name="map"), # Redirects to OpenStreetMap JavaScript
|
|
|
|
url(r'^map/(?P<path>.*)$', mapfile, name="mapfile"), # css, js, gpx
|
2020-06-20 23:08:34 +01:00
|
|
|
|
2021-04-11 03:02:06 +01:00
|
|
|
# Final catchall which also serves expoweb handbook pages and images
|
2021-03-31 16:14:36 +01:00
|
|
|
url(r'^(.*)_edit$', editexpopage, name="editexpopage"),
|
2021-04-02 19:22:53 +01:00
|
|
|
url(r'^(.*)$', expopage, name="expopage"), # CATCHALL assumed relative to EXPOWEB
|
2020-06-17 22:55:51 +01:00
|
|
|
]
|
2011-07-11 01:49:03 +01:00
|
|
|
|
2021-03-31 16:14:36 +01:00
|
|
|
# do not allow DIR_ROOT prefix to all urls
|
2020-06-17 22:55:51 +01:00
|
|
|
urlpatterns = [
|
2021-03-31 16:14:36 +01:00
|
|
|
# url('^%s' % settings.DIR_ROOT, include(trogglepatterns))
|
|
|
|
url('', include(trogglepatterns))
|
2020-06-17 22:55:51 +01:00
|
|
|
]
|
2021-03-25 16:15:26 +00:00
|
|
|
|
2021-03-21 01:37:52 +00:00
|
|
|
# When apache is running these prempt Django so Django never sees them.
|
2021-04-10 15:30:29 +01:00
|
|
|
# NB apache has its own ideas about mimetypes, so behaviour may not be identical for .xml files by troggle
|
2021-03-21 01:37:52 +00:00
|
|
|
|
2021-04-02 19:22:53 +01:00
|
|
|
# NEW apache configurations suggested as of 2 April 2021:
|
2021-03-21 01:37:52 +00:00
|
|
|
# Alias /site-media/ /home/expo/troggle/media/
|
|
|
|
# Alias /robots.txt /home/expo/troggle/media/robots.txt
|
|
|
|
# Alias /favicon.ico /home/expo/troggle/media/favicon.ico # comes from /expoweb/* when running runserver
|
2021-04-02 19:22:53 +01:00
|
|
|
# Alias /javascript /home/expo/troggle/media/jslib # empty
|
2021-03-21 01:37:52 +00:00
|
|
|
|
|
|
|
# Copy of old standard apache configurations:
|
|
|
|
# Alias /expofiles /home/expo/expofiles
|
|
|
|
# Alias /photos /home/expo/webphotos
|
|
|
|
# Alias /map /home/expo/expoweb/map
|
|
|
|
# Alias /javascript /usr/share/javascript # to be changed
|
|
|
|
# Alias /robots.txt /home/expo/static/robots.txt # to be changed
|
|
|
|
# Alias /favicon.ico /home/expo/static/favicon.ico # to be changed
|
|
|
|
# Alias /static/ /home/expo/static/
|
|
|
|
|
|
|
|
# ScriptAlias /repositories /home/expo/config/apache/services/hgweb/hgweb.cgi
|
|
|
|
# ScriptAlias /boe /home/expo/boe/boc/boc.pl
|
|
|
|
# ScriptAlias /boe-lastyear /home/expo/boe/boc-previous/boc.pl
|