| OLD | NEW |
| (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> |
| OLD | NEW |