forked from expo/troggle
29984ff15a
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8081 by aaron @ 12/8/2008 4:28 AM
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from django.conf.urls.defaults import *
|
|
from expo.views import *
|
|
import troggle.settings as settings
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
# Example:
|
|
(r'^cave/$', caveindex),
|
|
(r'^cave/(?P<cave_id>[^/]+)/$', cave),
|
|
(r'^cave/(?P<cave_id>[^/]+)/(?P<ent_letter>[^/]?)$', ent),
|
|
(r'^cave/(?P<cave_id>[^/]+)/edit/$', edit_cave),
|
|
(r'^cavesearch/$', caveSearch),
|
|
|
|
(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),
|
|
|
|
(r'^person/$', personindex),
|
|
(r'^person/(.*)$', person),
|
|
|
|
(r'^logbookentry/(.*)$', logbookentry),
|
|
(r'^logbooksearch/(.*)$', logbookSearch),
|
|
|
|
(r'^troggle/statistics/$', stats),
|
|
|
|
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
(r'^admin/(.*)', admin.site.root),
|
|
|
|
(r'^troggle/site_media/(?P<path>.*)$', 'django.views.static.serve',
|
|
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
|
|
|
|
)
|