thirdparty/google_appengine/lib/django/examples/views.py
changeset 2866 a04b1e4126c4
parent 2864 2e0b0af889be
child 2868 9f7f269383f7
--- a/thirdparty/google_appengine/lib/django/examples/views.py	Sun Sep 06 23:31:53 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-from django import http
-
-def index(request):
-    r = http.HttpResponse('<h1>Django examples</h1><ul>')
-    r.write('<li><a href="hello/html/">Hello world (HTML)</a></li>')
-    r.write('<li><a href="hello/text/">Hello world (text)</a></li>')
-    r.write('<li><a href="hello/write/">HttpResponse objects are file-like objects</a></li>')
-    r.write('<li><a href="hello/metadata/">Displaying request metadata</a></li>')
-    r.write('<li><a href="hello/getdata/">Displaying GET data</a></li>')
-    r.write('<li><a href="hello/postdata/">Displaying POST data</a></li>')
-    r.write('</ul>')
-    return r