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

Side by Side Diff: appengine/swarming/elements/res/imp/common/swarming-app.html

Issue 2204483002: Add UI to new botlist to show summary (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@bot-summary-api
Patch Set: Add docs Created 4 years, 4 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/swarming/elements/res/imp/common/sort-toggle.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2016 The LUCI Authors. All rights reserved. 2 Copyright 2016 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0 3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file. 4 that can be found in the LICENSE file.
5 5
6 This in an HTML Import-able file that contains the definition 6 This in an HTML Import-able file that contains the definition
7 of the following elements: 7 of the following elements:
8 8
9 <swarming-app> 9 <swarming-app>
10 10
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 <div class="title left">[[name]]</div> 79 <div class="title left">[[name]]</div>
80 <paper-spinner-lite class="left" active="[[busy]]"></paper-spinner-lit e> 80 <paper-spinner-lite class="left" active="[[busy]]"></paper-spinner-lit e>
81 81
82 <a class="left" href="/newui/">Home</a> 82 <a class="left" href="/newui/">Home</a>
83 <a class="left" href="/newui/botlist">Bot List</a> 83 <a class="left" href="/newui/botlist">Bot List</a>
84 <div class="flex"></div> 84 <div class="flex"></div>
85 <!-- TODO(kjlubick) Remove this hard-coded client-id.--> 85 <!-- TODO(kjlubick) Remove this hard-coded client-id.-->
86 <auth-signin 86 <auth-signin
87 class="right" 87 class="right"
88 client-id="20770472288-t5smpbpjptka4nd888fv0ctd23ftba2o.apps.googl eusercontent.com" 88 client-id="20770472288-t5smpbpjptka4nd888fv0ctd23ftba2o.apps.googl eusercontent.com"
89 auth-headers="{{auth_headers}}"> 89 auth-headers="{{auth_headers}}"
90 signed-in="{{signed_in}}">
90 </auth-signin> 91 </auth-signin>
91 </app-toolbar> 92 </app-toolbar>
92 </app-header> 93 </app-header>
93 <div class="main-content"> 94 <div class="main-content">
94 <content></content> 95 <content></content>
95 </div> 96 </div>
96 </app-header-layout> 97 </app-header-layout>
97 98
98 </template> 99 </template>
99 <script> 100 <script>
100 Polymer({ 101 Polymer({
101 is: 'swarming-app', 102 is: 'swarming-app',
102 properties: { 103 properties: {
103 auth_headers: { 104 auth_headers: {
104 type: Object, 105 type: Object,
105 notify: true, 106 notify: true,
106 }, 107 },
108 signed_in: {
109 type: Boolean,
110 value: false,
111 notify:true,
112 },
113
107 busy: { 114 busy: {
108 type: Boolean, 115 type: Boolean,
109 }, 116 },
110 name: { 117 name: {
111 type: String, 118 type: String,
112 }, 119 },
113 }, 120 },
114 121
115 }); 122 });
116 </script> 123 </script>
117 </dom-module> 124 </dom-module>
118 125
119 <dom-module id="swarming-app-style"> 126 <dom-module id="swarming-app-style">
120 <style> 127 <style>
121 * { 128 * {
122 font-family: sans-serif; 129 font-family: sans-serif;
123 } 130 }
124 /* Only style anchor tags that are actually linking somewhere.*/ 131 /* Only style anchor tags that are actually linking somewhere.*/
125 a[href] { 132 a[href] {
126 color: #1F78B4; 133 color: #1F78B4;
127 } 134 }
128 </style> 135 </style>
129 </dom-module> 136 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/elements/res/imp/common/sort-toggle.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698