| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 # for details. All rights reserved. Use of this source code is governed by a | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import cgi | |
| 6 | |
| 7 from google.appengine.ext import webapp | |
| 8 from google.appengine.ext.webapp.util import run_wsgi_app | |
| 9 | |
| 10 class MainPage(webapp.RequestHandler): | |
| 11 def get(self): | |
| 12 self.redirect('/samples/isolate/isolate_sample.html') | |
| 13 | |
| 14 application = webapp.WSGIApplication( [('/', MainPage)], debug=True) | |
| 15 | |
| 16 def main(): | |
| 17 run_wsgi_app(application) | |
| 18 | |
| 19 if __name__ == "__main__": | |
| 20 main() | |
| OLD | NEW |