From 36e08e4e9d175bf8a4d76b6b1664e2a711d6bdb8 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 29 Nov 2010 02:08:21 +0100 Subject: [PATCH] welcome html5 history.push() --- pandora/urls.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pandora/urls.py b/pandora/urls.py index 09f978c..a837da8 100644 --- a/pandora/urls.py +++ b/pandora/urls.py @@ -20,18 +20,14 @@ urlpatterns = patterns('', (r'^ajax_filtered_fields/', include('ajax_filtered_fields.urls')), (r'^api/upload/$', 'archive.views.firefogg_upload'), (r'^site.json$', 'app.views.site_json'), - (r'^$', 'app.views.intro'), - (r'^ra$', 'app.views.index'), (r'^timeline$', 'app.views.timeline'), (r'^file/(?P.*)$', 'archive.views.lookup_file'), - (r'^r/(?P.*)$', 'user.views.recover'), (r'^api/$', include('api.urls')), (r'', include('item.urls')), (r'^robots.txt$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'robots.txt'), 'content_type': 'text/plain'}), (r'^favicon.ico$', serve_static_file, {'location': os.path.join(settings.STATIC_ROOT, 'png/icon.16.png'), 'content_type': 'image/x-icon'}), ) - if settings.DEBUG: urlpatterns += patterns('', (r'^data/(?P.*)$', 'django.views.static.serve', @@ -41,4 +37,7 @@ if settings.DEBUG: (r'^tests/(?P.*)$', 'django.views.static.serve', {'document_root': settings.TESTS_ROOT}), ) +urlpatterns += patterns('', + (r'.*', 'app.views.index'), +)