aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/main.py
diff options
context:
space:
mode:
authorIgor Minar2012-11-08 22:15:06 +0100
committerIgor Minar2012-11-08 22:18:34 +0100
commit6d940213ac7ad12b5c64799fe740b74cee13676d (patch)
treea4a269b07b019f691483c008e516cb58588d1af5 /docs/src/templates/main.py
parent494b527fa7dac9e60f0fd9d29f2f957720a6d69c (diff)
downloadangular.js-6d940213ac7ad12b5c64799fe740b74cee13676d.tar.bz2
chore(docs): remove obsolete gae files
Diffstat (limited to 'docs/src/templates/main.py')
-rw-r--r--docs/src/templates/main.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/src/templates/main.py b/docs/src/templates/main.py
deleted file mode 100644
index e31697d2..00000000
--- a/docs/src/templates/main.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import webapp2
-from google.appengine.ext.webapp import template
-
-
-class IndexHandler(webapp2.RequestHandler):
- def get(self):
- fragment = self.request.get('_escaped_fragment_')
-
- if fragment:
- fragment = '/partials' + fragment + '.html'
- self.redirect(fragment, permanent=True)
- else:
- self.response.headers['Content-Type'] = 'text/html'
- self.response.out.write(template.render('index-nocache.html', None))
-
-
-app = webapp2.WSGIApplication([('/', IndexHandler)])
-