Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Side by Side Diff: dashboard/dashboard/dispatcher.py

Issue 3016673002: Dashboard - Add pinpoint-perf-job-dialog for perf try jobs.
Patch Set: . Created 3 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | dashboard/dashboard/elements/bisect-button.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_histograms 9 from dashboard import add_histograms
10 from dashboard import add_histograms_queue 10 from dashboard import add_histograms_queue
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 ('/group_report', group_report.GroupReportHandler), 105 ('/group_report', group_report.GroupReportHandler),
106 ('/list_monitored_tests', list_monitored_tests.ListMonitoredTestsHandler), 106 ('/list_monitored_tests', list_monitored_tests.ListMonitoredTestsHandler),
107 ('/list_tests', list_tests.ListTestsHandler), 107 ('/list_tests', list_tests.ListTestsHandler),
108 ('/load_from_prod', load_from_prod.LoadFromProdHandler), 108 ('/load_from_prod', load_from_prod.LoadFromProdHandler),
109 ('/', main.MainHandler), 109 ('/', main.MainHandler),
110 ('/memory_report', memory_report.MemoryReportHandler), 110 ('/memory_report', memory_report.MemoryReportHandler),
111 ('/migrate_test_names', migrate_test_names.MigrateTestNamesHandler), 111 ('/migrate_test_names', migrate_test_names.MigrateTestNamesHandler),
112 ('/deprecate_tests', deprecate_tests.DeprecateTestsHandler), 112 ('/deprecate_tests', deprecate_tests.DeprecateTestsHandler),
113 ('/navbar', navbar.NavbarHandler), 113 ('/navbar', navbar.NavbarHandler),
114 ('/new_points', new_points.NewPointsHandler), 114 ('/new_points', new_points.NewPointsHandler),
115 ('/pinpoint/new', pinpoint_request.PinpointNewRequestHandler), 115 ('/pinpoint/new/bisect',
116 pinpoint_request.PinpointNewBisectRequestHandler),
117 ('/pinpoint/new/perf_try',
118 pinpoint_request.PinpointNewPerfTryRequestHandler),
116 ('/pinpoint/new/prefill', 119 ('/pinpoint/new/prefill',
117 pinpoint_request.PinpointNewPrefillRequestHandler), 120 pinpoint_request.PinpointNewPrefillRequestHandler),
118 ('/post_bisect_results', post_bisect_results.PostBisectResultsHandler), 121 ('/post_bisect_results', post_bisect_results.PostBisectResultsHandler),
119 ('/put_entities_task', put_entities_task.PutEntitiesTaskHandler), 122 ('/put_entities_task', put_entities_task.PutEntitiesTaskHandler),
120 ('/report', report.ReportHandler), 123 ('/report', report.ReportHandler),
121 ('/set_warning_message', set_warning_message.SetWarningMessageHandler), 124 ('/set_warning_message', set_warning_message.SetWarningMessageHandler),
122 ('/short_uri', short_uri.ShortUriHandler), 125 ('/short_uri', short_uri.ShortUriHandler),
123 (r'/speed_releasing/(.*)', 126 (r'/speed_releasing/(.*)',
124 speed_releasing.SpeedReleasingHandler), 127 speed_releasing.SpeedReleasingHandler),
125 ('/speed_releasing', speed_releasing.SpeedReleasingHandler), 128 ('/speed_releasing', speed_releasing.SpeedReleasingHandler),
126 ('/start_try_job', start_try_job.StartBisectHandler), 129 ('/start_try_job', start_try_job.StartBisectHandler),
127 ('/test_buildbucket', test_buildbucket.TestBuildbucketHandler), 130 ('/test_buildbucket', test_buildbucket.TestBuildbucketHandler),
128 ('/update_bug_with_results', 131 ('/update_bug_with_results',
129 update_bug_with_results.UpdateBugWithResultsHandler), 132 update_bug_with_results.UpdateBugWithResultsHandler),
130 ('/update_test_suites', update_test_suites.UpdateTestSuitesHandler), 133 ('/update_test_suites', update_test_suites.UpdateTestSuitesHandler),
131 (oauth2_decorator.DECORATOR.callback_path, 134 (oauth2_decorator.DECORATOR.callback_path,
132 oauth2_decorator.DECORATOR.callback_handler()) 135 oauth2_decorator.DECORATOR.callback_handler())
133 ] 136 ]
134 137
135 APP = webapp2.WSGIApplication(_URL_MAPPING, debug=False) 138 APP = webapp2.WSGIApplication(_URL_MAPPING, debug=False)
OLDNEW
« no previous file with comments | « no previous file | dashboard/dashboard/elements/bisect-button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698