| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 special_columns="[[_specialColumns]]" | 90 special_columns="[[_specialColumns]]" |
| 91 | 91 |
| 92 columns="{{_columns}}" | 92 columns="{{_columns}}" |
| 93 query_params="{{_query_params}}" | 93 query_params="{{_query_params}}" |
| 94 filter="{{_filter}}" | 94 filter="{{_filter}}" |
| 95 verbose="{{_verbose}}"> | 95 verbose="{{_verbose}}"> |
| 96 </bot-filters> | 96 </bot-filters> |
| 97 | 97 |
| 98 <bot-list-summary | 98 <bot-list-summary |
| 99 auth_headers="[[_auth_headers]]" | 99 auth_headers="[[_auth_headers]]" |
| 100 busy="{{_busy3}}" | |
| 101 columns="[[_columns]]" | 100 columns="[[_columns]]" |
| 102 count_params="[[_query_params]]" | 101 count_params="[[_query_params]]" |
| 103 fleet="[[_fleet]]" | 102 fleet="[[_fleet]]" |
| 104 filtered_bots="[[_filteredSortedItems]]" | 103 num_bots="[[_filteredSortedItems.length]]" |
| 105 sort="[[_sortstr]]" | 104 sort="[[_sortstr]]" |
| 106 verbose="[[_verbose]]"> | 105 verbose="[[_verbose]]" |
| 106 |
| 107 busy="{{_busy3}}"> |
| 107 </bot-list-summary> | 108 </bot-list-summary> |
| 108 | 109 |
| 109 </div> | 110 </div> |
| 110 | 111 |
| 111 <bot-list-data | 112 <bot-list-data |
| 112 id="data" | 113 id="data" |
| 113 auth_headers="[[_auth_headers]]" | 114 auth_headers="[[_auth_headers]]" |
| 114 query_params="[[_query_params]]" | 115 query_params="[[_query_params]]" |
| 115 | 116 |
| 116 busy="{{_busy1}}" | 117 busy="{{_busy1}}" |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 return; | 687 return; |
| 687 } | 688 } |
| 688 var url = "/api/swarming/v1/bots/list?" + sk.query.fromParamSet(this._qu
ery_params); | 689 var url = "/api/swarming/v1/bots/list?" + sk.query.fromParamSet(this._qu
ery_params); |
| 689 this.$.page_bots.load(url,this._auth_headers); | 690 this.$.page_bots.load(url,this._auth_headers); |
| 690 } | 691 } |
| 691 | 692 |
| 692 }); | 693 }); |
| 693 })(); | 694 })(); |
| 694 </script> | 695 </script> |
| 695 </dom-module> | 696 </dom-module> |
| OLD | NEW |