Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Dispatches requests to request handler classes.""" | 5 """Dispatches requests to request handler classes.""" |
| 6 | 6 |
| 7 import webapp2 | 7 import webapp2 |
| 8 | 8 |
| 9 from dashboard import add_point | 9 from dashboard import add_point |
| 10 from dashboard import add_point_queue | 10 from dashboard import add_point_queue |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 ('/mr_deprecate_tests', mr.MRDeprecateTestsHandler), | 94 ('/mr_deprecate_tests', mr.MRDeprecateTestsHandler), |
| 95 ('/navbar', navbar.NavbarHandler), | 95 ('/navbar', navbar.NavbarHandler), |
| 96 ('/new_points', new_points.NewPointsHandler), | 96 ('/new_points', new_points.NewPointsHandler), |
| 97 ('/post_bisect_results', post_bisect_results.PostBisectResultsHandler), | 97 ('/post_bisect_results', post_bisect_results.PostBisectResultsHandler), |
| 98 ('/put_entities_task', put_entities_task.PutEntitiesTaskHandler), | 98 ('/put_entities_task', put_entities_task.PutEntitiesTaskHandler), |
| 99 ('/report', report.ReportHandler), | 99 ('/report', report.ReportHandler), |
| 100 ('/send_stoppage_alert_emails', | 100 ('/send_stoppage_alert_emails', |
| 101 send_stoppage_alert_emails.SendStoppageAlertEmailsHandler), | 101 send_stoppage_alert_emails.SendStoppageAlertEmailsHandler), |
| 102 ('/set_warning_message', set_warning_message.SetWarningMessageHandler), | 102 ('/set_warning_message', set_warning_message.SetWarningMessageHandler), |
| 103 ('/short_uri', short_uri.ShortUriHandler), | 103 ('/short_uri', short_uri.ShortUriHandler), |
| 104 ('/speed_releasing', speed_releasing.SpeedReleasingHandler), | 104 (r'/speed_releasing/(*)', |
|
eakuefner
2017/01/11 20:12:54
.*, right?
| |
| 105 speed_releasing.SpeedReleasingHandler), | |
| 105 ('/start_try_job', start_try_job.StartBisectHandler), | 106 ('/start_try_job', start_try_job.StartBisectHandler), |
| 106 ('/test_buildbucket', test_buildbucket.TestBuildbucketHandler), | 107 ('/test_buildbucket', test_buildbucket.TestBuildbucketHandler), |
| 107 ('/update_bug_with_results', | 108 ('/update_bug_with_results', |
| 108 update_bug_with_results.UpdateBugWithResultsHandler), | 109 update_bug_with_results.UpdateBugWithResultsHandler), |
| 109 ('/update_test_suites', update_test_suites.UpdateTestSuitesHandler), | 110 ('/update_test_suites', update_test_suites.UpdateTestSuitesHandler), |
| 110 (oauth2_decorator.DECORATOR.callback_path, | 111 (oauth2_decorator.DECORATOR.callback_path, |
| 111 oauth2_decorator.DECORATOR.callback_handler()) | 112 oauth2_decorator.DECORATOR.callback_handler()) |
| 112 ] | 113 ] |
| 113 | 114 |
| 114 APP = webapp2.WSGIApplication(_URL_MAPPING, debug=False) | 115 APP = webapp2.WSGIApplication(_URL_MAPPING, debug=False) |
| OLD | NEW |