[svn r8277]

This commit is contained in:
aaron 2009-03-14 17:09:41 +01:00
parent 330ff681aa
commit 288df22e31

View File

@ -1,5 +1,5 @@
from django.conf.urls.defaults import *
from django.conf import settings
import troggle.settings as settings
from expo.views import * # flat import
from expo.views_caves import *
@ -77,5 +77,5 @@ urlpatterns = patterns('',
{'document_root': settings.SURVEYS, 'show_indexes':True}),
(r'^photos/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.PHOTOS, 'show_indexes':True}),
{'document_root': settings.PHOTO_ROOT, 'show_indexes':True}),
)