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

Side by Side Diff: masters/master.chromiumos/templates/waterfall.html

Issue 1068263003: CrOS: Update public waterfall to auto-configure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Added experimental/documentation annotations to web UI. Created 5 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.chromiumos/templates/builder.html ('k') | scripts/common/cros_chromite.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 {% extends "announce.html" %} 1 {% extends "announce.html" %}
2 {% from "box_macros.html" import box %} 2 {% from "box_macros.html" import box %}
3 3
4 {% block content %} 4 {% block content %}
5 5
6 <table border="0" cellspacing="0"> 6 <table border="0" cellspacing="0">
7 7
8 <tr class="LastBuild"> 8 <tr class="LastBuild">
9 <td align="right" colspan="2" class="Project"> 9 <td align="right" colspan="2" class="Project">
10 <a href="http://www.chromium.org">Chromium</a><br/> 10 <a href="http://www.chromium.org">Chromium</a><br/>
11 last build 11 last build
12 </td> 12 </td>
13 13
14 {% for b in builders %} 14 {% for b in builders %}
15 <td align="center" class="{{ b.top_class }}"> 15 <td align="center" class="{{ b.top_class }}">
16 <a href="{{ b.url }}">{{ b.name }}</a><br/> 16 <span>
17 <a href="{{ b.url }}">{{ b.name }}</a>
18 {%- if cros_builder_experimental and cros_builder_experimental(b.name) -%}
19 &nbsp;(experimental)
20 {%- endif -%}
21 <br/>
22 {%- if cros_builder_doc -%}
23 {% set builder_doc = cros_builder_doc(b.name) %}
24 {%- if builder_doc -%}
25 <a href="{{ builder_doc.url }}" target="_blank">
26 <img src="document-icon.png" width="12px" height="12px"></img>
27 </a>
28 {%- endif -%}
29 {%- endif -%}
30 </span>
17 {{ " ".join(b.top) }} 31 {{ " ".join(b.top) }}
18 </td> 32 </td>
19 {% endfor %} 33 {% endfor %}
20 </tr> 34 </tr>
21 35
22 <tr class="Activity"> 36 <tr class="Activity">
23 <td align="right" colspan="2">current activity</td> 37 <td align="right" colspan="2">current activity</td>
24 38
25 {% for b in builders %} 39 {% for b in builders %}
26 <td align="center" class="{{ b.status_class }}"> 40 <td align="center" class="{{ b.status_class }}">
27 {{ "<br/>".join(b.status) }} 41 {{ "<br/>".join(b.status) }}
28 </td> 42 </td>
29 {% endfor %} 43 {% endfor %}
30 </tr> 44 </tr>
31 45
32 <tr> 46 <tr>
33 <td align="center" class="Time">{{ tz }}</td> 47 <td align="center" class="Time">{{ tz }}</td>
34 <td align="center" class="Change"><a href="{{ changes_url }}">changes</a></td> 48 <td align="center" class="Change"><a href="{{ changes_url }}">changes</a></td>
35 49
36 {% for b in builders %} 50 {% for b in builders %}
37 <td align="center" class="Builder"><a href="{{ b.url }}">{{ b.name }}</a></td> 51 <td align="center" class="Builder">
52 <a href="{{ b.url }}">{{ b.name }}</a>
53 </td>
38 {% endfor %} 54 {% endfor %}
39 </tr> 55 </tr>
40 56
41 {# waterfall contents goes here #} 57 {# waterfall contents goes here #}
42 {% for i in range(gridlen) -%} 58 {% for i in range(gridlen) -%}
43 <tr> 59 <tr>
44 {% for strip in grid -%} 60 {% for strip in grid -%}
45 {%- if strip[i] -%}{{ box(**strip[i]) }} 61 {%- if strip[i] -%}{{ box(**strip[i]) }}
46 {%- elif no_bubble -%}{{ box() }} 62 {%- elif no_bubble -%}{{ box() }}
47 {%- endif -%} 63 {%- endif -%}
48 {%- endfor -%} 64 {%- endfor -%}
49 </tr> 65 </tr>
50 {% endfor %} 66 {% endfor %}
51 67
52 </table> 68 </table>
53 69
54 {% if nextpage %} 70 {% if nextpage %}
55 [ <a href="{{ nextpage }}">next page</a> ] 71 [ <a href="{{ nextpage }}">next page</a> ]
56 {% endif %} 72 {% endif %}
57 [ <a href="waterfall/help">help</a> ] 73 [ <a href="waterfall/help">help</a> ]
58 74
59 {% if no_reload_page %} 75 {% if no_reload_page %}
60 <a href="{{ no_reload_page }}">Stop Reloading</a> 76 <a href="{{ no_reload_page }}">Stop Reloading</a>
61 {% endif %} 77 {% endif %}
62 78
63 {% endblock %} 79 {% endblock %}
OLDNEW
« no previous file with comments | « masters/master.chromiumos/templates/builder.html ('k') | scripts/common/cros_chromite.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698