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

Unified Diff: master.nacl.sdk/public_html/announce.html

Issue 5329006: Delete obsolete masters from tools/buildbot (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/buildbot/
Patch Set: Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « master.nacl.sdk/master.cfg ('k') | master.nacl.sdk/public_html/buildbot.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: master.nacl.sdk/public_html/announce.html
===================================================================
--- master.nacl.sdk/public_html/announce.html (revision 67605)
+++ master.nacl.sdk/public_html/announce.html (working copy)
@@ -1,138 +0,0 @@
-<script>
- function autoLink(className) {
- var comments = document.querySelectorAll(className);
- for(var i = 0; i < comments.length; i++) {
- comments[i].innerHTML = comments[i].innerHTML.replace(/http:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>');
- }
- }
-
- window.onload = function() {
- autoLink('.DevComment');
- }
-</script>
-
-<div class="Announcement">
-
-<iframe width="100%" height="44" frameborder="0" scrolling="no" src="http://naclsdk-status.appspot.com/current"></iframe>
-
-<center style="padding: 0 7px">
- <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-bottom-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-bottom-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2px 6px rgba(0,0,0,0.6); -moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);">
- <tr>
- <td width="23%">
- <table valign="top" width="100%">
- <tr>
- <td style="text-align: right;">
- <b>Controls:</b>
- </td>
- <td>
- <a href="http://naclsdk-status.appspot.com">tree status</a> |
- <a href="one_line_per_build">manage all</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Development:</b>
- </td>
- <td>
- <a href="http://code.google.com/p/nativeclient-sdk/source/browse/#svn/trunk/nacl">source</a> |
- <a href="http://codereview.chromium.org/">reviews</a> |
- <a href="http://code.google.com/p/nativeclient-sdk/issues/list">bugs</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>NativeClient:</b>
- </td>
- <td>
- <a href="http://code.google.com/p/nativeclient-sdk">www</a>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Sheriffs:</b>
- </td>
- <td>
- <script src='./sheriff.js'></script>
- </td>
- </tr>
- <tr>
- <td style="text-align: right;">
- <b>Navigate:</b>
- </td>
- <td colspan="2">
- <a href="http://dev.chromium.org/developers/testing/chromium-build-infrastructure/tour-of-the-chromium-buildbot">about</a> |
- <a href="./waterfall/help">customize</a> |
- <script>
- if (document.location.port == 8022) {
- document.write('<a href="http://' + document.location.hostname + ':8022/waterfall">waterfall</a> | ');
- document.write('<a href="http://' + document.location.hostname + ':8022/console">console</a>');
- } else {
- document.write('<a href="../nacl-sdk/waterfall">waterfall</a> | ');
- document.write('<a href="../nacl-sdk/console">console</a>');
- }
- </script>
- </td>
- </tr>
- </table>
- </td>
- <td width="1" bgcolor="#CCCCCC">
- </td>
- <td width="2%">
- </td>
- <td width="72%">
- <table width="100%">
- <script language="javascript">
- var raw_flavors = [
- ["SDK", ["windows-sdk",
- "mac-sdk",
- "linux-sdk"]],
- ];
- var flavors = [];
- for(var i in raw_flavors) {
- var row = Array();
- for(var j in raw_flavors[i][1]) {
- if(raw_flavors[i][0] == "SDK" ||
- raw_flavors[i][0] == "Tarballs" ||
- raw_flavors[i][0] == "Integration" ||
- raw_flavors[i][0] == "Packages") {
- row.push("builder=" + raw_flavors[i][1][j]);
- } else {
- row.push("builder=" + raw_flavors[i][1][j] + "-dbg");
- row.push("builder=" + raw_flavors[i][1][j] + "-opt");
- }
- }
- flavors.push([raw_flavors[i][0], row.join("&")]);
- }
-
- var bar = "./horizontal_one_box_per_builder"
- var waterfall = "./waterfall"
-
- if (document.location.port == 8022) {
- bar = 'http://' + document.location.hostname + ':8022/' + bar
- waterfall = 'http://' + document.location.hostname + ':8022/' + waterfall
- } else {
- bar = '../nacl-sdk/' + bar
- waterfall = '../nacl-sdk/' + waterfall
- }
-
- function GetUrl(type, content) {
- return type + "?" + content + "&reload=30";
- }
-
- function DisplayBar(content, name) {
- document.write("<tr><td><a href='" + GetUrl(waterfall, content) + "'>" + name + "</a></td><td width='99%'><iframe width='100%' height='20' frameborder='0' scrolling='no' src='" + GetUrl(bar, content) + "'></iframe></td></tr>\n");
- }
-
- for(var i in flavors) {
- DisplayBar(flavors[i][1], flavors[i][0]);
- }
- </script>
- </table>
- </td>
- <td width="3%">
- </td>
- </tr>
- </table>
-</center>
-
-</div>
« no previous file with comments | « master.nacl.sdk/master.cfg ('k') | master.nacl.sdk/public_html/buildbot.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698