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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « masters/master.client.dart.fyi/templates/stats.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mime-type
+ text/html
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 {% extends "announce.html" %}
2 {% from "box_macros.html" import box %}
3
4 {% block content %}
5
6 <table border="0" cellspacing="0">
7
8 <tr class="LastBuild">
9 <td align="right" colspan="2" class="Project">
10 <a href="http://www.chromium.org">Chromium</a><br/>
11 last build
12 </td>
13
14 {% for b in builders %}
15 <td align="center" class="{{ b.top_class }}">
16 <a href="{{ b.url }}">{{ b.name }}</a><br/>
17 {{ " ".join(b.top) }}
18 </td>
19 {% endfor %}
20 </tr>
21
22 <tr class="Activity">
23 <td align="right" colspan="2">current activity</td>
24
25 {% for b in builders %}
26 <td align="center" class="{{ b.status_class }}">
27 {{ "<br/>".join(b.status) }}
28 </td>
29 {% endfor %}
30 </tr>
31
32 <tr>
33 <td align="center" class="Time">{{ tz }}</td>
34 <td align="center" class="Change"><a href="{{ changes_url }}">changes</a></td>
35
36 {% for b in builders %}
37 <td align="center" class="Builder"><a href="{{ b.url }}">{{ b.name }}</a></td>
38 {% endfor %}
39 </tr>
40
41 {# waterfall contents goes here #}
42 {% for i in range(gridlen) -%}
43 <tr>
44 {% for strip in grid -%}
45 {%- if strip[i] -%}{{ box(**strip[i]) }}
46 {%- elif no_bubble -%}{{ box() }}
47 {%- endif -%}
48 {%- endfor -%}
49 </tr>
50 {% endfor %}
51
52 </table>
53
54 {% if nextpage %}
55 [ <a href="{{ nextpage }}">next page</a> ]
56 {% endif %}
57 [ <a href="waterfall/help">help</a> ]
58
59 {% if no_reload_page %}
60 <a href="{{ no_reload_page }}">Stop Reloading</a>
61 {% endif %}
62
63 {% endblock %}
OLDNEW
« 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