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

Side by Side Diff: chrome/common/extensions/docs/examples/extensions/buildbot/popup.html

Issue 5961009: Convert build.chromium.org URLs to new URL format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update to tools/bisect-builds.py move Created 10 years 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 | « PRESUBMIT.py ('k') | tools/bisect-builds.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | tools/bisect-builds.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698