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

Side by Side Diff: masters/master.chromiumos/templates/builder.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
OLDNEW
1 {% from 'build_line.html' import build_table %} 1 {% from 'build_line.html' import build_table %}
2 {% import 'forms.html' as forms %} 2 {% import 'forms.html' as forms %}
3 3
4 {% extends "layout.html" %} 4 {% extends "layout.html" %}
5 {%- block header %} 5 {%- block header %}
6 <a href="http://www.chromium.org">Chromium</a><br/> 6 <a href="http://www.chromium.org">Chromium</a><br/>
7 {% endblock header -%} 7 {% endblock header -%}
8 {% block content %} 8 {% block content %}
9 9
10 <h1><a href="{{ path_to_root }}waterfall?show={{ name }}">Builder: {{ name }}</a > 10 <h1>
11 <a href="{{ path_to_root }}stats/{{ name }}"> (stats) </a></h1> 11 <a href="{{ path_to_root }}waterfall?show={{ name }}">Builder: {{ name }}</a>
12 {%- if cros_builder_experimental and cros_builder_experimental(name) -%}
13 &nbsp;(experimental)
14 {%- endif -%}
15 {%- if cros_builder_doc -%}
16 {% set builder_doc = cros_builder_doc(name) %}
17 {%- if builder_doc -%}
18 <a href="{{ builder_doc.url }}" target="_blank">
19 <img src="../document-icon.png" width="20px" height="20px"></img>
20 </a>
21 {%- endif -%}
22 {%- endif -%}
23 </h1>
12 24
13 <div class="column"> 25 <div class="column">
14 26
15 {% if current %} 27 {% if current %}
16 <h2>Currently Building:</h2> 28 <h2>Currently Building:</h2>
17 <ul> 29 <ul>
18 {% for b in current %} 30 {% for b in current %}
19 <li><a href="{{ b.link }}">{{ b.num }}</a> 31 <li><a href="{{ b.link }}">{{ b.num }}</a>
20 {% if b.when %} 32 {% if b.when %}
21 ETA: {{ b.when_time }} [{{ b.when }}] 33 ETA: {{ b.when_time }} [{{ b.when }}]
22 {% endif %} 34 {% endif %}
23 {% if b.delay %}
24 [Running for: {{ b.delay }}]
25 {% endif %}
26 35
27 {{ b.current_step }} 36 {{ b.current_step }}
28 37
29 {% if authz.advertiseAction('stopBuild') %} 38 {% if authz.advertiseAction('stopBuild') %}
30 {{ forms.stop_build(b.stop_url, authz, on_all=False, short=True, label='Bu ild') }} 39 {{ forms.stop_build(b.stop_url, authz, on_all=False, short=True, label='Bu ild') }}
31 {% endif %} 40 {% endif %}
32 </li> 41 </li>
33 {% endfor %} 42 {% endfor %}
34 </ul> 43 </ul>
35 {% else %} 44 {% else %}
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 {% endif %} 113 {% endif %}
105 114
106 {% if authz.advertiseAction('forceBuild') %} 115 {% if authz.advertiseAction('forceBuild') %}
107 <h2>Force build</h2> 116 <h2>Force build</h2>
108 {{ forms.force_build(builder_url+"/force", authz, False) }} 117 {{ forms.force_build(builder_url+"/force", authz, False) }}
109 {% endif %} 118 {% endif %}
110 119
111 </div> 120 </div>
112 121
113 {% endblock %} 122 {% endblock %}
OLDNEW
« no previous file with comments | « masters/master.chromiumos/templates/announce.html ('k') | masters/master.chromiumos/templates/waterfall.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698