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

Unified Diff: tryconsole/templates/status.html

Issue 517046: Initial check-in of tryconsole. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: '' Created 10 years, 11 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 | « tryconsole/templates/chrome_frame.html ('k') | tryconsole/tryconsole.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tryconsole/templates/status.html
===================================================================
--- tryconsole/templates/status.html (revision 0)
+++ tryconsole/templates/status.html (revision 0)
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Trybot Console</title>
+ <link rel="stylesheet" type="text/css" href="/static/tryconsole.css"/>
+ </head>
+ <body>
+ <script src="/static/http.js"></script>
+ <script src="/static/graph.js"></script>
+ <script src="/static/builds.js"></script>
+ <p>
+ <img id="perf1" class="graph">
+ <img id="perf2" class="graph">
+ <img id="perf3" class="graph">
+ </p>
+ Limit to: <input id="limit1" width="30" autofocus>
+ <div id="builds1">
+ </div>
+ <script>
+ graph.setup('perf1', {}, 86400);
+ graph.setup('perf2', {}, 1800);
+ graph.setup('perf3', {}, 60);
+ builds.setup('builds1', 'limit1', {});
+ // Reload the page every hour (in case something changes).
+ setInterval(function() {
+ window.location.reload();
+ }, 3600000);
+ </script>
+ </body>
+</html>
« no previous file with comments | « tryconsole/templates/chrome_frame.html ('k') | tryconsole/tryconsole.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698