| Index: appengine/findit/main.py
|
| diff --git a/appengine/findit/main.py b/appengine/findit/main.py
|
| index e89d8048211a92a18f59798abc390e4a5d76b490..a8bdee800f80827e6d8e26688e04138e9cf9b5d9 100644
|
| --- a/appengine/findit/main.py
|
| +++ b/appengine/findit/main.py
|
| @@ -20,10 +20,12 @@ from handlers import try_job
|
| from handlers import try_job_result
|
| from handlers import verify_analysis
|
| from handlers import version
|
| +from handlers.crash import crash_config
|
| +from handlers.crash import fracas_crash
|
| from pipeline_wrapper import pipeline_status_ui
|
|
|
|
|
| -# This is for the default module.
|
| +# Default module.
|
| default_web_pages_handler_mappings = [
|
| ('/version', version.Version),
|
| ]
|
| @@ -31,11 +33,11 @@ default_web_application = webapp2.WSGIApplication(
|
| default_web_pages_handler_mappings, debug=False)
|
|
|
|
|
| -# This is for Cloud Endpoint apis in the default module.
|
| +# Cloud Endpoint apis in the default module.
|
| api_application = endpoints.api_server([FindItApi])
|
|
|
|
|
| -# This is for appengine pipeline status pages in the default module.
|
| +# App Engine pipeline status pages in the default module.
|
| pipeline_status_handler_mappings = [
|
| ('/_ah/pipeline/rpc/tree', pipeline_status_ui._TreeStatusHandler),
|
| ('/_ah/pipeline/rpc/class_paths', pipeline_status_ui._ClassPathListHandler),
|
| @@ -46,7 +48,7 @@ pipeline_status_application = webapp2.WSGIApplication(
|
| pipeline_status_handler_mappings, debug=False)
|
|
|
|
|
| -# This is for the "waterfall-frontend" module.
|
| +# "waterfall-frontend" module.
|
| waterfall_frontend_web_pages_handler_mappings = [
|
| ('/build-failure', build_failure.BuildFailure),
|
| ('/list-analyses', list_analyses.ListAnalyses),
|
| @@ -68,9 +70,17 @@ waterfall_frontend_web_application = webapp2.WSGIApplication(
|
| waterfall_frontend_web_pages_handler_mappings, debug=False)
|
|
|
|
|
| -# This is for the "waterfall-backend" module.
|
| +# "waterfall-backend" module.
|
| waterfall_backend_web_pages_handler_mappings = [
|
| ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses),
|
| ]
|
| waterfall_backend_web_application = webapp2.WSGIApplication(
|
| waterfall_backend_web_pages_handler_mappings, debug=False)
|
| +
|
| +# "crash-frontend" module.
|
| +crash_frontend_web_pages_handler_mappings = [
|
| + ('/crash/config', crash_config.CrashConfig),
|
| + ('/crash/fracas', fracas_crash.FracasCrash),
|
| +]
|
| +crash_frontend_web_application = webapp2.WSGIApplication(
|
| + crash_frontend_web_pages_handler_mappings, debug=False)
|
|
|