aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/build_line.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/build_line.html')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/build_line.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/build_line.html b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/build_line.html
deleted file mode 100644
index fc08b9dc..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/build_line.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{% macro build_line(b, include_builder=False) %}
- <small>({{ b.time }})</small>
- Rev: {{ b.rev|shortrev(b.rev_repo) }}
- <span class="{{ b.class }}">{{ b.results }}</span>
- {% if include_builder %}
- <a href="{{ b.builderurl }}">{{ b.builder_name }}</a>
- {% endif %}
- <a href="{{ b.buildurl }}">#{{ b.buildnum }}</a> -
- {{ b.text|capitalize }}
-{% endmacro %}
-
-{% macro build_tr(b, include_builder=False, loop=None) %}
- <tr class="{{ loop.cycle('alt', '') if loop }}">
- <td>{{ b.time }}</td>
- <td>{{ b.rev|shortrev(b.rev_repo) }}</td>
- <td class="{{ b.class }}">{{ b.results }}</td>
- {%- if include_builder %}
- <td><a href="{{ b.builderurl }}">{{ b.builder_name }}</a></td>
- {% endif %}
- <td><a href="{{ b.buildurl }}">#{{ b.buildnum }}</a></td>
- <td class="left">{{ b.text|capitalize }}</td>
- </tr>
-{% endmacro %}
-
-{% macro build_table(builds, include_builder=False) %}
-{% if builds %}
-<table class="info">
- <tr>
- <th>Time</th>
- <th>Revision</th>
- <th>Result</th>
- {%- if include_builder %}
- <th>Builder</th>
- {% endif %}
- <th>Build #</th>
- <th>Info</th>
- </tr>
- {% for b in builds %}
- {{ build_tr(b, include_builder, loop) }}
- {% endfor %}
-</table>
-{% else %}
- No matching builds found
-{% endif %}
-{% endmacro %}