aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/box_macros.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/box_macros.html')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/box_macros.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/box_macros.html b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/box_macros.html
deleted file mode 100644
index ec5b80b6..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/box_macros.html
+++ /dev/null
@@ -1,37 +0,0 @@
-{% macro box(text=[], comment=None) -%}
-
-{%- if comment -%}<!-- {{ comment }} -->{%- endif -%}
- <td class="{{ kwargs.class or kwargs.class_ or "" }}"
- {%- for prop in ("align", "colspan", "rowspan", "border", "valign", "halign") -%}
- {%- if prop in kwargs %} {{ prop }}="{{ kwargs[prop] }}"{% endif -%}
- {%- endfor -%}>
-
- {%- if text is string -%}
- {{ text }}
- {%- else -%}
- {{- text|join("<br/>") -}}
- {%- endif -%}
- </td>
-{% endmacro %}
-
-{# this is currently just the text part of the boxes #}
-
-{% macro build_box(reason, url, number) -%}
- <a title="Reason: {{ reason|e }}" href="{{ url }}">Build {{ number }}</a>
-{%- endmacro %}
-
-{% macro step_box(text, logs, urls, stepinfo) -%}
- {%- if text is string -%}
- {{ text }}
- {%- else -%}
- {{- text|join("<br/>") -}}
- {%- endif -%}
- <br/>
- {%- for l in logs %}
- <a {% if l.url %}href="{{ l.url }}"{% endif %}>{{ l.name|e }}</a><br/>
- {%- endfor -%}
-
- {%- for u in urls %}
- [<a href="{{ u.link }}" class="BuildStep external">{{ u.name|e }}</a>]<br/>
- {%- endfor -%}
-{%- endmacro %}