| OLD | NEW |
| 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 <bot-list> | 9 <bot-list> |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 None. | 21 None. |
| 22 | 22 |
| 23 Events: | 23 Events: |
| 24 None. | 24 None. |
| 25 --> | 25 --> |
| 26 | 26 |
| 27 <link rel="import" href="/res/imp/bower_components/iron-flex-layout/iron-flex-la
yout-classes.html"> | 27 <link rel="import" href="/res/imp/bower_components/iron-flex-layout/iron-flex-la
yout-classes.html"> |
| 28 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html"> | 28 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html"> |
| 29 | 29 |
| 30 <link rel="import" href="/res/imp/common/dynamic-table-behavior.html"> | 30 <link rel="import" href="/res/imp/common/dynamic-table-behavior.html"> |
| 31 <link rel="import" href="/res/imp/common/error-toast.html"> |
| 31 <link rel="import" href="/res/imp/common/sort-toggle.html"> | 32 <link rel="import" href="/res/imp/common/sort-toggle.html"> |
| 32 <link rel="import" href="/res/imp/common/swarming-app.html"> | 33 <link rel="import" href="/res/imp/common/swarming-app.html"> |
| 33 <link rel="import" href="/res/imp/common/url-param.html"> | 34 <link rel="import" href="/res/imp/common/url-param.html"> |
| 34 | 35 |
| 35 <link rel="import" href="bot-filters.html"> | 36 <link rel="import" href="bot-filters.html"> |
| 36 <link rel="import" href="bot-list-data.html"> | 37 <link rel="import" href="bot-list-data.html"> |
| 37 <link rel="import" href="bot-list-shared-behavior.html"> | 38 <link rel="import" href="bot-list-shared-behavior.html"> |
| 38 <link rel="import" href="bot-list-summary.html"> | 39 <link rel="import" href="bot-list-summary.html"> |
| 39 | 40 |
| 40 <dom-module id="bot-list"> | 41 <dom-module id="bot-list"> |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 [[_deviceColumn(c, device, _verbose)]] | 201 [[_deviceColumn(c, device, _verbose)]] |
| 201 </td> | 202 </td> |
| 202 </template> | 203 </template> |
| 203 </tr> | 204 </tr> |
| 204 </template> <!--devices repeat--> | 205 </template> <!--devices repeat--> |
| 205 </template> <!--bot-table repeat--> | 206 </template> <!--bot-table repeat--> |
| 206 </tbody> | 207 </tbody> |
| 207 </table> | 208 </table> |
| 208 </div> | 209 </div> |
| 209 | 210 |
| 211 <error-toast></error-toast> |
| 210 </swarming-app> | 212 </swarming-app> |
| 211 | 213 |
| 212 </template> | 214 </template> |
| 213 <script> | 215 <script> |
| 214 (function(){ | 216 (function(){ |
| 215 var UNKNOWN = "unknown"; | 217 var UNKNOWN = "unknown"; |
| 216 // see dynamic-table for more information on specialColumns, headerMap, | 218 // see dynamic-table for more information on specialColumns, headerMap, |
| 217 // columnMap, and specialSort | 219 // columnMap, and specialSort |
| 218 var specialColumns = ["id", "task"]; | 220 var specialColumns = ["id", "task"]; |
| 219 | 221 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 if (!device.okay) { | 509 if (!device.okay) { |
| 508 return "bad-device"; | 510 return "bad-device"; |
| 509 } | 511 } |
| 510 return ""; | 512 return ""; |
| 511 }, | 513 }, |
| 512 | 514 |
| 513 }); | 515 }); |
| 514 })(); | 516 })(); |
| 515 </script> | 517 </script> |
| 516 </dom-module> | 518 </dom-module> |
| OLD | NEW |