gonacl.py 768 B

12345678910111213141516
  1. # Copyright (c) 2013 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import webapp2
  5. application = webapp2.WSGIApplication([
  6. webapp2.Route('/', webapp2.RedirectHandler, defaults={
  7. '_uri': 'http://developer.chrome.com/native-client'}),
  8. webapp2.Route('/fire', webapp2.RedirectHandler, defaults={
  9. '_uri': 'http://developer.chrome.com/native-client/cds2014'}),
  10. webapp2.Route('/magic', webapp2.RedirectHandler, defaults={
  11. '_uri':
  12. 'https://flagxor-html5devconf2015.storage.googleapis.com/index.html'}),
  13. webapp2.Route('/reportissue', webapp2.RedirectHandler, defaults={
  14. '_uri': 'https://code.google.com/p/nativeclient/issues/entry'}),
  15. ], debug=True)