| 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>
|
|
|