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

Unified Diff: Tools/GardeningServer/revisions.html

Issue 728023004: Remove GardeningServer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Tools/GardeningServer/polymer-load-warning.html ('k') | Tools/GardeningServer/scripts/results.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/revisions.html
diff --git a/Tools/GardeningServer/revisions.html b/Tools/GardeningServer/revisions.html
deleted file mode 100644
index 04b7ef291e985fd8601c7c998c3895feb09a784e..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/revisions.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!--
-Copyright 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>Builder Revisions</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, user-scalable=no">
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700">
- <style>
- html, body {
- height: 100%;
- }
- body {
- font-family: 'Open Sans';
- font-size: 14px;
- margin: 0px;
- }
- header {
- -webkit-user-select: none;
- background-color: #212121;
- color: white;
- cursor: default;
- justify-content: space-between;
- font-size: 1.1em;
- padding: 0 5px;
- }
- header span {
- color: white;
- display: inline-block;
- padding: 0.25em 4px;
- text-decoration: none;
- }
- div {
- padding: 0 5px;
- }
- </style>
- <script src="bower_components/platform/platform.js"></script>
- <link rel="import" href="bower_components/polymer/polymer.html">
- <link rel="import" href="ui/ct-builder-status.html">
- <link rel="import" href="lib/revisions.html">
- </head>
- <body>
- <header>
- <div>
- <img src="favicon.ico"> <span>Builder Revisions</span>
- </div>
- </header>
- <div>
- Latest revision processed by each bot.
- </div>
- <ct-builder-status></ct-builder-status>
- <script>
- document.addEventListener('DOMContentLoaded', function() {
- var el = document.querySelector('ct-builder-status');
- revisions.load().
- then(function(model) { el.groups = model.groups; }).
- catch(function(error) { el.errorMessage = error; });
- });
- </script>
- </body>
-</html>
« no previous file with comments | « Tools/GardeningServer/polymer-load-warning.html ('k') | Tools/GardeningServer/scripts/results.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698