[svn r8180] Julian playing with the logbooks and expoyears

This commit is contained in:
julian
2009-01-18 16:59:37 +01:00
parent 76f6ad97c9
commit 918dbf3250
14 changed files with 507 additions and 220 deletions

View File

@@ -21,11 +21,13 @@ urlpatterns = patterns('',
(r'^survex/(?P<survex_file>.*)\.err$', err),
url(r'^personindex$', personindex, name="personindex"),
(r'^person/(?P<person_id>\d*)(?P<first_name>[a-zA-Z]*)[-_/\.\s(\%20)]*(?P<last_name>[a-zA-Z]*)/?$', person),
url(r'^person/(.+)$', person, name="person"),
(r'^logbookentry/(.*)/?$', logbookentry),
url(r'^logbookentry/(\d+)$', logbookentry, name="logbookentry"),
url(r'^logbooksearch/(.*)/?$', logbookSearch),
url(r'^expedition/(\d+)$', expedition, name="expedition"),
url(r'^statistics/?$', stats, name="stats"),
(r'^survey/?$', surveyindex),