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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « masters/master.chromiumos/templates/builder.html ('k') | scripts/common/cros_chromite.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromiumos/templates/waterfall.html
diff --git a/masters/master.client.dart/templates/waterfall.html b/masters/master.chromiumos/templates/waterfall.html
similarity index 62%
copy from masters/master.client.dart/templates/waterfall.html
copy to masters/master.chromiumos/templates/waterfall.html
index 89a30354000736029eed56a5e05161126d445f88..a4f9256784fde2d3be28ee036b01de89757819a1 100644
--- a/masters/master.client.dart/templates/waterfall.html
+++ b/masters/master.chromiumos/templates/waterfall.html
@@ -13,7 +13,21 @@
{% for b in builders %}
<td align="center" class="{{ b.top_class }}">
- <a href="{{ b.url }}">{{ b.name }}</a><br/>
+ <span>
+ <a href="{{ b.url }}">{{ b.name }}</a>
+ {%- if cros_builder_experimental and cros_builder_experimental(b.name) -%}
+ &nbsp;(experimental)
+ {%- endif -%}
+ <br/>
+ {%- if cros_builder_doc -%}
+ {% set builder_doc = cros_builder_doc(b.name) %}
+ {%- if builder_doc -%}
+ <a href="{{ builder_doc.url }}" target="_blank">
+ <img src="document-icon.png" width="12px" height="12px"></img>
+ </a>
+ {%- endif -%}
+ {%- endif -%}
+ </span>
{{ " ".join(b.top) }}
</td>
{% endfor %}
@@ -22,7 +36,7 @@
<tr class="Activity">
<td align="right" colspan="2">current activity</td>
-{% for b in builders %}
+{% for b in builders %}
<td align="center" class="{{ b.status_class }}">
{{ "<br/>".join(b.status) }}
</td>
@@ -34,14 +48,16 @@
<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>
+ <td align="center" class="Builder">
+ <a href="{{ b.url }}">{{ b.name }}</a>
+ </td>
{% endfor %}
</tr>
-{# waterfall contents goes here #}
+{# waterfall contents goes here #}
{% for i in range(gridlen) -%}
<tr>
- {% for strip in grid -%}
+ {% for strip in grid -%}
{%- if strip[i] -%}{{ box(**strip[i]) }}
{%- elif no_bubble -%}{{ box() }}
{%- endif -%}
« 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