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

Unified Diff: appengine/swarming/elements/res/imp/tasklist/task-list-demo.html

Issue 2258853002: Midway through extracting filters (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@tasklist
Patch Set: Revert gpu stuff and tidy up 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/elements/res/imp/tasklist/task-list-data.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/elements/res/imp/tasklist/task-list-demo.html
diff --git a/appengine/swarming/elements/res/imp/tasklist/task-list-demo.html b/appengine/swarming/elements/res/imp/tasklist/task-list-demo.html
index e4cc61e90a773613858afc0704cb0b83e843b817..6d0f4cf0b33a4091c2573546a529c4b41f1439c3 100644
--- a/appengine/swarming/elements/res/imp/tasklist/task-list-demo.html
+++ b/appengine/swarming/elements/res/imp/tasklist/task-list-demo.html
@@ -17,6 +17,10 @@
<script src="../../../node_modules/sinon/pkg/sinon-1.17.5.js"></script>
<!-- Makes a var called list-->
<script type="text/javascript" src="task-list-demo.json"></script>
+ <!-- Makes a var called tags-->
+ <script type="text/javascript" src="task-tags-demo.json"></script>
+ <!-- Makes a var called fleetData-->
+ <script type="text/javascript" src="task-list-fleet-data-demo.json"></script>
<script type="text/javascript" charset="utf-8">
sinon.format = function(object) {return JSON.stringify(object);}
@@ -39,6 +43,11 @@
server.respondWith("GET", /^\/api\/swarming\/v1\/tasks\/list.*/, respond);
server.respondWith("GET", /^\/_ah\/api\/swarming\/v1\/tasks\/list.*/, respond);
+ server.respondWith("GET", /^\/_ah\/api\/swarming\/v1\/tasks\/tags/, JSON.stringify(tags));
+ server.respondWith("GET", /^\/api\/swarming\/v1\/tasks\/tags/, JSON.stringify(tags));
+
+ server.respondWith("GET", /^\/_ah\/api\/swarming\/v1\/bots\/dimensions/, JSON.stringify(fleetData));
+ server.respondWith("GET", /^\/api\/swarming\/v1\/bots\/dimensions/, JSON.stringify(fleetData));
</script>
<link rel="import" href="task-list.html">
« no previous file with comments | « appengine/swarming/elements/res/imp/tasklist/task-list-data.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698