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

Side by Side Diff: appengine/swarming/ui/res/imp/botlist/bot-list.html

Issue 2991303002: Add in OAuth authentication to Isolate Polymer UI (Closed)
Patch Set: Fix GET request for server_details Created 3 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
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 <bot-list> 9 <bot-list>
10 10
(...skipping 11 matching lines...) Expand all
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/paper-dialog/paper-dialog.htm l"> 28 <link rel="import" href="/res/imp/bower_components/paper-dialog/paper-dialog.htm l">
29 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html"> 29 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html">
30 30
31 <link rel="import" href="/res/imp/common/dynamic-table-behavior.html"> 31 <link rel="import" href="/res/imp/common/dynamic-table-behavior.html">
32 <link rel="import" href="/res/imp/common/sort-toggle.html"> 32 <link rel="import" href="/res/imp/common/pageable-data.html">
33 <link rel="import" href="/res/imp/common/swarming-app.html"> 33 <link rel="import" href="/res/imp/common/swarming-app.html">
34 <link rel="import" href="/res/imp/common/url-param.html"> 34 <link rel="import" href="/res/imp/shared/sort-toggle.html">
35 <link rel="import" href="/res/imp/common/pageable-data.html"> 35 <link rel="import" href="/res/imp/shared/url-param.html">
36 36
37 <link rel="import" href="bot-filters.html"> 37 <link rel="import" href="bot-filters.html">
38 <link rel="import" href="bot-list-data.html"> 38 <link rel="import" href="bot-list-data.html">
39 <link rel="import" href="bot-list-shared-behavior.html"> 39 <link rel="import" href="bot-list-shared-behavior.html">
40 <link rel="import" href="bot-list-summary.html"> 40 <link rel="import" href="bot-list-summary.html">
41 <link rel="import" href="bot-mass-delete.html"> 41 <link rel="import" href="bot-mass-delete.html">
42 42
43 <dom-module id="bot-list"> 43 <dom-module id="bot-list">
44 <template> 44 <template>
45 <style include="iron-flex iron-flex-alignment iron-positioning swarming-app- style dynamic-table-style"> 45 <style include="iron-flex iron-flex-alignment iron-positioning swarming-app- style dynamic-table-style">
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 return; 742 return;
743 } 743 }
744 var url = "/api/swarming/v1/bots/list?" + sk.query.fromParamSet(this._qu ery_params); 744 var url = "/api/swarming/v1/bots/list?" + sk.query.fromParamSet(this._qu ery_params);
745 this.$.page_bots.load(url,this._auth_headers); 745 this.$.page_bots.load(url,this._auth_headers);
746 } 746 }
747 747
748 }); 748 });
749 })(); 749 })();
750 </script> 750 </script>
751 </dom-module> 751 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/ui/res/imp/botlist/bot-filters.html ('k') | appengine/swarming/ui/res/imp/botpage/bot-page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698