summaryrefslogtreecommitdiffstats
path: root/public/views.py
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-12-22 18:38:58 -0500
committereliott <eliott@cactuswax.net>2007-12-22 18:38:58 -0500
commit131e70b24706680aa14117d5d1e29332a1565a06 (patch)
tree3f5b88393a344c55964c68cc39d952c5938c743b /public/views.py
parentf8b4c01daf355809cb1c497fd6bc44c2931fb3e7 (diff)
downloadarchweb-131e70b24706680aa14117d5d1e29332a1565a06.tar.gz
archweb-131e70b24706680aa14117d5d1e29332a1565a06.zip
added robots.txt
Diffstat (limited to 'public/views.py')
-rw-r--r--public/views.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/public/views.py b/public/views.py
index 9b7e4ce9..63dda5ef 100644
--- a/public/views.py
+++ b/public/views.py
@@ -52,5 +52,8 @@ def press(request):
def projects(request):
return render_template('public/projects.html', request)
+def robots(request):
+ return HttpResponse("User-agent: *\nDisallow: /\n", mimetype="text/plain")
+
def denied(request):
return render_template('public/denied.html', request)