2010-09-15 16:25:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
import os
|
|
|
|
|
2009-06-08 16:08:59 +00:00
|
|
|
from django.conf.urls.defaults import *
|
2010-11-23 09:53:12 +00:00
|
|
|
from ox.django.http import HttpFileResponse
|
2009-06-08 16:08:59 +00:00
|
|
|
|
2009-08-16 12:23:29 +00:00
|
|
|
from django.conf import settings
|
|
|
|
|
2009-06-08 16:08:59 +00:00
|
|
|
# Uncomment the next two lines to enable the admin:
|
2009-08-16 12:23:29 +00:00
|
|
|
from django.contrib import admin
|
|
|
|
admin.autodiscover()
|
|
|
|
|
2010-12-22 15:17:38 +00:00
|
|
|
from api import actions
|
|
|
|
actions.autodiscover()
|
2010-11-25 15:21:23 +00:00
|
|
|
|
2010-09-15 16:25:54 +00:00
|
|
|
def serve_static_file(path, location, content_type):
|
|
|
|
return HttpFileResponse(location, content_type=content_type)
|
2009-06-08 16:08:59 +00:00
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
2010-11-25 15:21:23 +00:00
|
|
|
(r'^admin/', include(admin.site.urls)),
|
2009-12-31 15:04:32 +00:00
|
|
|
(r'^ajax_filtered_fields/', include('ajax_filtered_fields.urls')),
|
2010-08-07 14:31:20 +00:00
|
|
|
(r'^api/upload/$', 'archive.views.firefogg_upload'),
|
2010-11-06 16:18:12 +00:00
|
|
|
(r'^site.json$', 'app.views.site_json'),
|
2010-09-08 11:56:58 +00:00
|
|
|
(r'^timeline$', 'app.views.timeline'),
|
2010-09-14 14:10:37 +00:00
|
|
|
(r'^file/(?P<oshash>.*)$', 'archive.views.lookup_file'),
|
2010-11-08 16:34:25 +00:00
|
|
|
(r'^api/$', include('api.urls')),
|
|
|
|
(r'', include('item.urls')),
|
2010-09-15 16:25:54 +00:00
|
|
|
(r'^robots.txt$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'robots.txt'), 'content_type': 'text/plain'}),
|
2010-09-15 16:40:39 +00:00
|
|
|
(r'^favicon.ico$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'png/icon.16.png'), 'content_type': 'image/x-icon'}),
|
2009-06-08 16:08:59 +00:00
|
|
|
)
|
2009-08-16 12:23:29 +00:00
|
|
|
if settings.DEBUG:
|
|
|
|
urlpatterns += patterns('',
|
2010-11-06 16:14:40 +00:00
|
|
|
(r'^data/(?P<path>.*)$', 'django.views.static.serve',
|
2009-08-16 12:23:29 +00:00
|
|
|
{'document_root': settings.MEDIA_ROOT}),
|
|
|
|
(r'^static/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': settings.STATIC_ROOT}),
|
2009-10-04 22:00:08 +00:00
|
|
|
(r'^tests/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': settings.TESTS_ROOT}),
|
2009-08-16 12:23:29 +00:00
|
|
|
)
|
2011-01-04 06:03:00 +00:00
|
|
|
|
2010-11-29 01:08:21 +00:00
|
|
|
urlpatterns += patterns('',
|
2011-01-04 06:03:00 +00:00
|
|
|
(r'^.*?embed$', 'app.views.embed'),
|
2010-11-30 21:03:37 +00:00
|
|
|
(r'^[A-Z0-9].*$', 'app.views.index'),
|
2010-11-30 23:40:31 +00:00
|
|
|
(r'^$', 'app.views.index'),
|
2010-11-29 01:08:21 +00:00
|
|
|
)
|
2009-08-16 12:23:29 +00:00
|
|
|
|
2010-12-07 19:10:16 +00:00
|
|
|
urlpatterns += patterns('django.views.generic.simple',
|
2010-12-07 18:56:12 +00:00
|
|
|
('^ra$', 'redirect_to', {'url': '/'}),
|
|
|
|
)
|