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

Unified Diff: masters/master.client.dart.fyi/templates/announce.html

Issue 10053007: Initial dart FYI buildbot setup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 8 years, 8 months 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 | « masters/master.client.dart.fyi/slaves.cfg ('k') | masters/master.client.dart.fyi/templates/build_line.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.client.dart.fyi/templates/announce.html
===================================================================
--- masters/master.client.dart.fyi/templates/announce.html (revision 0)
+++ masters/master.client.dart.fyi/templates/announce.html (revision 0)
@@ -0,0 +1,98 @@
+
+{% extends "layout.html" %}
+
+{% block header -%}
+{{ super() }}
+<hr/>
+<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">
+
+<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="one_line_per_build">manage all</a>
+ </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> |
+ <a href="./waterfall">waterfall</a> |
+ <a href="./waterfall?show_events=true&failures_only=true">failures</a> |
+ <a href="./console">console</a>
+ </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 = [
+ ];
+ var flavors = [];
+ for(var i in raw_flavors) {
+ var row = Array();
+ for(var j in raw_flavors[i][1]) {
+ row.push("builder=" + raw_flavors[i][1][j]);
+ }
+ flavors.push([raw_flavors[i][0], row.join("&")]);
+ }
+
+ var bar = "./horizontal_one_box_per_builder"
+ var waterfall = "./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></tr></table>
+ </td>
+ <td width="3%">
+ </td>
+ </tr>
+ </table>
+</center>
+
+</div>
+{% endblock header %}
+
+{% block footer %}
+
+{{ super() }}
+{# <p>Debug info: {{ debuginfo }}</p> #}
+{% endblock %}
Property changes on: masters/master.client.dart.fyi/templates/announce.html
___________________________________________________________________
Added: svn:mime-type
+ text/html
Added: svn:eol-style
+ LF
« no previous file with comments | « masters/master.client.dart.fyi/slaves.cfg ('k') | masters/master.client.dart.fyi/templates/build_line.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698