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

Unified Diff: master/templates/waterfall.html

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Address comment Created 6 years, 2 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 | « master/templates/layout.html ('k') | master/webstatus/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: master/templates/waterfall.html
diff --git a/master/templates/waterfall.html b/master/templates/waterfall.html
deleted file mode 100644
index 10b1d451e6e39bca0ed6c501018e9cbd5da17967..0000000000000000000000000000000000000000
--- a/master/templates/waterfall.html
+++ /dev/null
@@ -1,66 +0,0 @@
-{% extends "layout.html" %}
-{% from "box_macros.html" import box %}
-
-{% block content %}
-
-<div>
- <h1 style="display: inline;">{{ title }}</h1>
- <a style="float: right;" href="{{ help_url }}">waterfall help</a>
-</div>
-
-<table border="0" cellspacing="0">
-
-<tr class="LastBuild">
- <td align="right" colspan="2" class="Project">
- last build
- </td>
-
-{% for b in builders %}
- <td align="center" class="{{ b.top_class }}" id="commentIndicator_{{ b.name }}" onmouseover="showBuilderTooltip('{{ b.name }}', event)" onmouseout="hideBuilderTooltip(event)">
- <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 %}
-
-{% if no_reload_page %}
- <a href="{{ no_reload_page }}">Stop Reloading</a>
-{% endif %}
-
-{% endblock %}
« no previous file with comments | « master/templates/layout.html ('k') | master/webstatus/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698