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

Unified Diff: appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/templates/build_details.html

Issue 774323002: Moved trooper_o_matic to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/templates/build_details.html
diff --git a/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/templates/build_details.html b/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/templates/build_details.html
deleted file mode 100644
index 604476e24d36c2326d3334d111b22acda3334621..0000000000000000000000000000000000000000
--- a/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/templates/build_details.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!-- Copyright (c) 2014 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file. -->
-<!doctype html>
-<html>
- <head>
- <title>Build Details</title>
- <link href='//fonts.googleapis.com/css?family=RobotoDraft:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'>
- <script src="../bower_components/platform/platform.js"></script>
- <script src="../bower_components/sugar/release/sugar.min.js"></script>
- <link rel="import" href="../ui/build-table.html">
- <script>
- var BUILD_DATA = {{ builds|safe }};
- </script>
- <style type="text/css">
- body {
- font-family: 'RobotoDraft';
- }
- .chart {
- margin-bottom: 40px;
- }
- </style>
- </head>
- <body>
- <script>
- var el = document.createElement('build-table');
- el.builds = BUILD_DATA;
- document.body.appendChild(el);
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698