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

Side by Side Diff: appengine/findit/main.py

Issue 1949763002: [Findit] Adding try job dashboard (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fixing bug where fields are missing from data Created 4 years, 7 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import endpoints 5 import endpoints
6 import webapp2 6 import webapp2
7 7
8 from common.pipeline_wrapper import pipeline_handlers 8 from common.pipeline_wrapper import pipeline_handlers
9 from common.pipeline_wrapper import pipeline_status_ui 9 from common.pipeline_wrapper import pipeline_status_ui
10 from findit_api import FindItApi 10 from findit_api import FindItApi
11 from handlers import build_failure 11 from handlers import build_failure
12 from handlers import check_duplicate_failures 12 from handlers import check_duplicate_failures
13 from handlers import config 13 from handlers import config
14 from handlers import failure_log 14 from handlers import failure_log
15 from handlers import help_triage 15 from handlers import help_triage
16 from handlers import list_analyses 16 from handlers import list_analyses
17 from handlers import monitor_alerts 17 from handlers import monitor_alerts
18 from handlers import swarming_task 18 from handlers import swarming_task
19 from handlers import triage_analysis 19 from handlers import triage_analysis
20 from handlers import trigger_analyses 20 from handlers import trigger_analyses
21 from handlers import try_job 21 from handlers import try_job
22 from handlers import try_job_dashboard
22 from handlers import try_job_result 23 from handlers import try_job_result
23 from handlers import verify_analysis 24 from handlers import verify_analysis
24 from handlers import version 25 from handlers import version
25 from handlers.crash import crash_config 26 from handlers.crash import crash_config
26 from handlers.crash import fracas_crash 27 from handlers.crash import fracas_crash
27 28
28 29
29 # Default module. 30 # Default module.
30 default_web_pages_handler_mappings = [ 31 default_web_pages_handler_mappings = [
31 ('/version', version.Version), 32 ('/version', version.Version),
(...skipping 30 matching lines...) Expand all
62 check_duplicate_failures.CheckDuplicateFailures), 63 check_duplicate_failures.CheckDuplicateFailures),
63 ('/waterfall/config', config.Configuration), 64 ('/waterfall/config', config.Configuration),
64 ('/waterfall/failure-log', failure_log.FailureLog), 65 ('/waterfall/failure-log', failure_log.FailureLog),
65 ('/waterfall/help-triage', help_triage.HelpTriage), 66 ('/waterfall/help-triage', help_triage.HelpTriage),
66 ('/waterfall/list-analyses', list_analyses.ListAnalyses), 67 ('/waterfall/list-analyses', list_analyses.ListAnalyses),
67 ('/waterfall/monitor-alerts', monitor_alerts.MonitorAlerts), 68 ('/waterfall/monitor-alerts', monitor_alerts.MonitorAlerts),
68 ('/waterfall/swarming-task', swarming_task.SwarmingTask), 69 ('/waterfall/swarming-task', swarming_task.SwarmingTask),
69 ('/waterfall/triage-analysis', triage_analysis.TriageAnalysis), 70 ('/waterfall/triage-analysis', triage_analysis.TriageAnalysis),
70 ('/waterfall/try-job', try_job.TryJob), 71 ('/waterfall/try-job', try_job.TryJob),
71 ('/waterfall/try-job-result', try_job_result.TryJobResult), 72 ('/waterfall/try-job-result', try_job_result.TryJobResult),
73 ('/waterfall/try-job-dashboard', try_job_dashboard.TryJobDashboard),
stgao 2016/05/04 00:00:53 nit: ordering.
lijeffrey 2016/05/04 20:20:17 Done.
72 ('/waterfall/verify-analysis', verify_analysis.VerifyAnalysis), 74 ('/waterfall/verify-analysis', verify_analysis.VerifyAnalysis),
73 ] 75 ]
74 waterfall_frontend_web_application = webapp2.WSGIApplication( 76 waterfall_frontend_web_application = webapp2.WSGIApplication(
75 waterfall_frontend_web_pages_handler_mappings, debug=False) 77 waterfall_frontend_web_pages_handler_mappings, debug=False)
76 78
77 79
78 # "waterfall-backend" module. 80 # "waterfall-backend" module.
79 waterfall_backend_web_pages_handler_mappings = [ 81 waterfall_backend_web_pages_handler_mappings = [
80 ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses), 82 ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses),
81 ] 83 ]
82 waterfall_backend_web_application = webapp2.WSGIApplication( 84 waterfall_backend_web_application = webapp2.WSGIApplication(
83 waterfall_backend_web_pages_handler_mappings, debug=False) 85 waterfall_backend_web_pages_handler_mappings, debug=False)
84 86
85 87
86 # "crash-frontend" module. 88 # "crash-frontend" module.
87 crash_frontend_web_pages_handler_mappings = [ 89 crash_frontend_web_pages_handler_mappings = [
88 ('/crash/config', crash_config.CrashConfig), 90 ('/crash/config', crash_config.CrashConfig),
89 ('/crash/fracas', fracas_crash.FracasCrash), 91 ('/crash/fracas', fracas_crash.FracasCrash),
90 ] 92 ]
91 crash_frontend_web_application = webapp2.WSGIApplication( 93 crash_frontend_web_application = webapp2.WSGIApplication(
92 crash_frontend_web_pages_handler_mappings, debug=False) 94 crash_frontend_web_pages_handler_mappings, debug=False)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698