From 9bf496b8cf1dcd539f2cb916a62056619d58ddac Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 7 Sep 2012 22:38:27 +0100 Subject: [PATCH] Transmogrifying - sequence five initiated. --- dss/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dss/urls.py b/dss/urls.py index b642718..4d51839 100644 --- a/dss/urls.py +++ b/dss/urls.py @@ -14,10 +14,10 @@ urlpatterns = patterns('', (r'^favicon\.ico$', 'django.views.generic.simple.redirect_to', {'url': '/static/img/favicon.ico'}), (r'^channel\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/fb_channel.html'}), (r'^privacy\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/privacy.html'}), - (r'^robots\.txt$', lambda r: HttpResponse("User-agent: *\nDisallow: /", mimetype="text/plain")), + (r'^robots\.txt$', 'django.views.defaults.server_error'), (r'^tos\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/tos.html'}), (r'^test\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/test.html'}), - (r'^505', lambda r: HttpResponse("User-agent: *\nDisallow: /", mimetype="text/plain")), + (r'^500', lambda r: HttpResponse("User-agent: *\nDisallow: /", mimetype="text/plain")), url(r'^', include('spa.urls')), (r'^grappelli/', include('grappelli.urls')), url(r'^accounts/', include('allauth.urls')),