OLD | NEW |
1 <head> | 1 <head> |
2 <script> | 2 <script> |
3 var botRoot = "http://build.chromium.org/buildbot"; | 3 var botRoot = "http://build.chromium.org/p/chromium"; |
4 //var botRoot = "http://chrome-buildbot.corp.google.com:8010"; | |
5 var waterfallURL = botRoot + "/waterfall/bot_status.json?json=1"; | 4 var waterfallURL = botRoot + "/waterfall/bot_status.json?json=1"; |
6 var botList; | 5 var botList; |
7 var checkinResults; | 6 var checkinResults; |
8 var bots; | 7 var bots; |
9 var failures; | 8 var failures; |
10 | 9 |
11 function updateBotList(text) { | 10 function updateBotList(text) { |
12 var results = (new RegExp('(.*)<\/body>', 'g')).exec(text); | 11 var results = (new RegExp('(.*)<\/body>', 'g')).exec(text); |
13 if (!results || results.index < 0) { | 12 if (!results || results.index < 0) { |
14 console.log("Error: couldn't find bot JSON"); | 13 console.log("Error: couldn't find bot JSON"); |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 </style> | 232 </style> |
234 </head> | 233 </head> |
235 <body onclick="toggle_size()"> | 234 <body onclick="toggle_size()"> |
236 <div id="links"> | 235 <div id="links"> |
237 <a href="" onclick='showConsole()'>console</a> - | 236 <a href="" onclick='showConsole()'>console</a> - |
238 <a href="" onclick='showTry()'>try</a> - | 237 <a href="" onclick='showTry()'>try</a> - |
239 <a href="" onclick='showFyi()'>fyi</a> | 238 <a href="" onclick='showFyi()'>fyi</a> |
240 </div> | 239 </div> |
241 <div id="bots">Loading....</div> | 240 <div id="bots">Loading....</div> |
242 </body> | 241 </body> |
OLD | NEW |