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

Unified Diff: Tools/GardeningServer/ui/ct-builder-status.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/ui/ct-builder-grid.html ('k') | Tools/GardeningServer/ui/ct-button.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-builder-status.html
diff --git a/Tools/GardeningServer/ui/ct-builder-status.html b/Tools/GardeningServer/ui/ct-builder-status.html
deleted file mode 100644
index b617642e900ce3faee358cf4fe17051d979672f1..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/ui/ct-builder-status.html
+++ /dev/null
@@ -1,77 +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.
--->
-
-<link href="../model/ct-builder-status.html" rel="import">
-
-<polymer-element name="ct-builder-status">
- <template>
- <style>
- li > a { display: inline-block; width: 40ex; }
- li > span { display: inline-block; width: 20ex;}
- .groups {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .groups > li {
- margin-bottom: 5px;
- padding: 5px;
- border-top: 1px solid lightgrey;
- }
- h2 {
- font-size: 100%;
- padding: 0 5px;
- margin: 0;
- }
- p {
- padding: 0 5px;
- margin: 0;
- }
- </style>
-
- <template if="{{ errorMessage }}">
- <h2>Failed to load and/or parse data.</h2>
- <p>{{ errorMessage }}</p>
- </template>
-
- <template if="{{ groups.length && !errorMessage }}">
- <ul class="groups">
- <template repeat="{{ group in groups }}">
- <li>
- <h2>{{ group.name }}</h2>
- <ul class="builds">
- <template repeat="{{ builder in group.builders }}">
- <li>
- <a href="{{builder.uri}}">{{ builder.name }}</a>
- <template repeat="{{ repository in builder.repositories }}">
- <span>
- {{ repository.name }}:
- <template if="{{ repository.uri }}">
- <a href="{{repository.uri}}">{{ repository.revision }}</a>
- </template>
- <template if="{{ !repository.uri }}">
- {{ repository.revision }}
- </template>
- </span>
- </template>
- </li>
- </template>
- </ul>
- </li>
- </template>
- </ul>
- </template>
- </template>
-
- <script>
- Polymer('ct-builder-status', {
- ready: function() {
- this.groups = [];
- this.errorMessage = '';
- }
- });
- </script>
-</polymer-element>
« no previous file with comments | « Tools/GardeningServer/ui/ct-builder-grid.html ('k') | Tools/GardeningServer/ui/ct-button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698