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

Unified Diff: masters/master.client.dart.fyi/templates/waterfall.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/templates/stats.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.client.dart.fyi/templates/waterfall.html
===================================================================
--- masters/master.client.dart.fyi/templates/waterfall.html (revision 0)
+++ masters/master.client.dart.fyi/templates/waterfall.html (revision 0)
@@ -0,0 +1,63 @@
+{% extends "announce.html" %}
+{% from "box_macros.html" import box %}
+
+{% block content %}
+
+<table border="0" cellspacing="0">
+
+<tr class="LastBuild">
+ <td align="right" colspan="2" class="Project">
+ <a href="http://www.chromium.org">Chromium</a><br/>
+ last build
+ </td>
+
+{% for b in builders %}
+ <td align="center" class="{{ b.top_class }}">
+ <a href="{{ b.url }}">{{ b.name }}</a><br/>
+ {{ " ".join(b.top) }}
+ </td>
+{% endfor %}
+</tr>
+
+<tr class="Activity">
+<td align="right" colspan="2">current activity</td>
+
+{% for b in builders %}
+ <td align="center" class="{{ b.status_class }}">
+ {{ "<br/>".join(b.status) }}
+ </td>
+{% endfor %}
+</tr>
+
+<tr>
+<td align="center" class="Time">{{ tz }}</td>
+<td align="center" class="Change"><a href="{{ changes_url }}">changes</a></td>
+
+{% for b in builders %}
+ <td align="center" class="Builder"><a href="{{ b.url }}">{{ b.name }}</a></td>
+{% endfor %}
+</tr>
+
+{# waterfall contents goes here #}
+{% for i in range(gridlen) -%}
+ <tr>
+ {% for strip in grid -%}
+ {%- if strip[i] -%}{{ box(**strip[i]) }}
+ {%- elif no_bubble -%}{{ box() }}
+ {%- endif -%}
+ {%- endfor -%}
+ </tr>
+{% endfor %}
+
+</table>
+
+{% if nextpage %}
+[ <a href="{{ nextpage }}">next page</a> ]
+{% endif %}
+[ <a href="waterfall/help">help</a> ]
+
+{% if no_reload_page %}
+ <a href="{{ no_reload_page }}">Stop Reloading</a>
+{% endif %}
+
+{% endblock %}
Property changes on: masters/master.client.dart.fyi/templates/waterfall.html
___________________________________________________________________
Added: svn:mime-type
+ text/html
Added: svn:eol-style
+ LF
« no previous file with comments | « masters/master.client.dart.fyi/templates/stats.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698