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

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

Issue 2361583002: [Findit] UI change and triage change for cl level trige. (Closed)
Patch Set: . Created 4 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 | « appengine/findit/index.yaml ('k') | appengine/findit/model/suspected_cl_confidence.py » ('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 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 culprit 14 from handlers import culprit
15 from handlers import failure_log 15 from handlers import failure_log
16 from handlers import help_triage 16 from handlers import help_triage
17 from handlers import list_analyses 17 from handlers import list_analyses
18 from handlers import monitor_alerts 18 from handlers import monitor_alerts
19 from handlers import swarming_task 19 from handlers import swarming_task
20 from handlers import triage_analysis 20 from handlers import triage_analysis
21 from handlers import triage_suspected_cl
21 from handlers import trigger_analyses 22 from handlers import trigger_analyses
22 from handlers import try_job 23 from handlers import try_job
23 from handlers import try_job_dashboard 24 from handlers import try_job_dashboard
24 from handlers import try_job_result 25 from handlers import try_job_result
25 from handlers import verify_analysis 26 from handlers import verify_analysis
26 from handlers import version 27 from handlers import version
27 from handlers.crash import crash_config 28 from handlers.crash import crash_config
28 from handlers.crash import crash_handler 29 from handlers.crash import crash_handler
29 from handlers.crash import fracas_dashboard 30 from handlers.crash import fracas_dashboard
30 from handlers.crash import fracas_result_feedback 31 from handlers.crash import fracas_result_feedback
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ('/waterfall/check-flake', check_flake.CheckFlake), 70 ('/waterfall/check-flake', check_flake.CheckFlake),
70 ('/waterfall/config', config.Configuration), 71 ('/waterfall/config', config.Configuration),
71 ('/waterfall/culprit', culprit.Culprit), 72 ('/waterfall/culprit', culprit.Culprit),
72 ('/waterfall/failure-log', failure_log.FailureLog), 73 ('/waterfall/failure-log', failure_log.FailureLog),
73 ('/waterfall/list-flakes', list_flakes.ListFlakes), 74 ('/waterfall/list-flakes', list_flakes.ListFlakes),
74 ('/waterfall/help-triage', help_triage.HelpTriage), 75 ('/waterfall/help-triage', help_triage.HelpTriage),
75 ('/waterfall/list-analyses', list_analyses.ListAnalyses), 76 ('/waterfall/list-analyses', list_analyses.ListAnalyses),
76 ('/waterfall/monitor-alerts', monitor_alerts.MonitorAlerts), 77 ('/waterfall/monitor-alerts', monitor_alerts.MonitorAlerts),
77 ('/waterfall/swarming-task', swarming_task.SwarmingTask), 78 ('/waterfall/swarming-task', swarming_task.SwarmingTask),
78 ('/waterfall/triage-analysis', triage_analysis.TriageAnalysis), 79 ('/waterfall/triage-analysis', triage_analysis.TriageAnalysis),
80 ('/waterfall/triage-suspected-cl', triage_suspected_cl.TriageSuspectedCl),
79 ('/waterfall/try-job', try_job.TryJob), 81 ('/waterfall/try-job', try_job.TryJob),
80 ('/waterfall/try-job-dashboard', try_job_dashboard.TryJobDashboard), 82 ('/waterfall/try-job-dashboard', try_job_dashboard.TryJobDashboard),
81 ('/waterfall/try-job-result', try_job_result.TryJobResult), 83 ('/waterfall/try-job-result', try_job_result.TryJobResult),
82 ('/waterfall/verify-analysis', verify_analysis.VerifyAnalysis), 84 ('/waterfall/verify-analysis', verify_analysis.VerifyAnalysis),
83 ] 85 ]
84 waterfall_frontend_web_application = webapp2.WSGIApplication( 86 waterfall_frontend_web_application = webapp2.WSGIApplication(
85 waterfall_frontend_web_pages_handler_mappings, debug=False) 87 waterfall_frontend_web_pages_handler_mappings, debug=False)
86 88
87 89
88 # "waterfall-backend" module. 90 # "waterfall-backend" module.
(...skipping 10 matching lines...) Expand all
99 ('/crash/fracas-dashboard', fracas_dashboard.FracasDashBoard), 101 ('/crash/fracas-dashboard', fracas_dashboard.FracasDashBoard),
100 ('/crash/fracas-result-feedback', 102 ('/crash/fracas-result-feedback',
101 fracas_result_feedback.FracasResultFeedback), 103 fracas_result_feedback.FracasResultFeedback),
102 ('/crash/triage-fracas-analysis', 104 ('/crash/triage-fracas-analysis',
103 triage_fracas_analysis.TriageFracasAnalysis), 105 triage_fracas_analysis.TriageFracasAnalysis),
104 ('/_ah/push-handlers/crash/fracas', crash_handler.CrashHandler), 106 ('/_ah/push-handlers/crash/fracas', crash_handler.CrashHandler),
105 ('/_ah/push-handlers/crash/cracas', crash_handler.CrashHandler), 107 ('/_ah/push-handlers/crash/cracas', crash_handler.CrashHandler),
106 ] 108 ]
107 crash_frontend_web_application = webapp2.WSGIApplication( 109 crash_frontend_web_application = webapp2.WSGIApplication(
108 crash_frontend_web_pages_handler_mappings, debug=False) 110 crash_frontend_web_pages_handler_mappings, debug=False)
OLDNEW
« no previous file with comments | « appengine/findit/index.yaml ('k') | appengine/findit/model/suspected_cl_confidence.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698