pandora/pandora/urls.py

59 lines
2 KiB
Python
Raw Normal View History

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 *
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()
2011-11-04 18:10:48 +00:00
import monkey_patch.models
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)),
2010-08-07 14:31:20 +00:00
(r'^api/upload/$', 'archive.views.firefogg_upload'),
(r'^url=(?P<url>.*)$', 'app.views.redirect_url'),
2010-09-14 14:10:37 +00:00
(r'^file/(?P<oshash>.*)$', 'archive.views.lookup_file'),
2011-11-09 22:32:54 +00:00
(r'^api$', include('api.urls')),
2010-11-08 16:34:25 +00:00
(r'^api/$', include('api.urls')),
2011-10-21 18:36:21 +00:00
(r'^resetUI$', 'user.views.reset_ui'),
2010-11-08 16:34:25 +00:00
(r'', include('item.urls')),
2011-09-29 13:05:34 +00:00
(r'^list/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'itemlist.views.icon'),
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
)
#if settings.DEBUG:
#sould this not be enabled by default? nginx should handle those
urlpatterns += patterns('',
(r'^data/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT}),
(r'^static/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.STATIC_ROOT}),
)
2011-01-04 06:03:00 +00:00
2011-02-22 16:52:03 +00:00
urlpatterns += patterns('',
(r'^(V[a-z0-9]*)$', 'urlalias.views.padma_video'),
(r'^(V[a-z0-9]*/.*)$', 'urlalias.views.padma_video'),
)
2010-11-29 01:08:21 +00:00
urlpatterns += patterns('',
2011-10-22 11:24:26 +00:00
(r'^(?P<id>[A-Z0-9].+)/embed', 'app.views.embed'),
2010-11-30 21:03:37 +00:00
(r'^[A-Z0-9].*$', 'app.views.index'),
2011-01-21 19:10:42 +00:00
(r'^[a-z0-9].+$', 'app.views.index'),
2010-11-30 23:40:31 +00:00
(r'^$', 'app.views.index'),
(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': '/'}),
)