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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tryconsole/templates/chrome_frame.html ('k') | tryconsole/tryconsole.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Trybot Console</title>
5 <link rel="stylesheet" type="text/css" href="/static/tryconsole.css"/>
6 </head>
7 <body>
8 <script src="/static/http.js"></script>
9 <script src="/static/graph.js"></script>
10 <script src="/static/builds.js"></script>
11 <p>
12 <img id="perf1" class="graph">
13 <img id="perf2" class="graph">
14 <img id="perf3" class="graph">
15 </p>
16 Limit to: <input id="limit1" width="30" autofocus>
17 <div id="builds1">
18 </div>
19 <script>
20 graph.setup('perf1', {}, 86400);
21 graph.setup('perf2', {}, 1800);
22 graph.setup('perf3', {}, 60);
23 builds.setup('builds1', 'limit1', {});
24 // Reload the page every hour (in case something changes).
25 setInterval(function() {
26 window.location.reload();
27 }, 3600000);
28 </script>
29 </body>
30 </html>
OLDNEW
« 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