aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/revmacros.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/revmacros.html')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/revmacros.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/revmacros.html b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/revmacros.html
deleted file mode 100644
index 87a87a02..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/revmacros.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{# both macro pairs must have the same signature #}
-
-{% macro id_replace(rev, url) -%}
- <span class="revision" title="Revision {{ rev }}"><a href="{{ url }}">
- {%- if rev|length > 40 %}{{ rev[:40] }}...
- {%- else %}{{ rev }}
- {%- endif -%}
- </a></span>
-{%- endmacro %}
-
-{% macro shorten_replace(short, rev, url) %}
- <div class="revision">
- <div class="short" title="Revision {{ rev }}">
- <a href="{{ url }}">{{ short }}...</a>
- </div>
- <div class="full">
- <a href="{{ url }}">{{ rev }}</a>
- </div>
- </div>
-{% endmacro %}
-
-{% macro id(rev, url) -%}
- <span class="revision" title="Revision {{ rev }}">
- {%- if rev|length > 40 %}{{ rev[:40] }}...
- {%- else %}{{ rev }}
- {%- endif -%}
- </span>
-{%- endmacro %}
-
-{% macro shorten(short, rev, url) %}
- <div class="revision">
- <div class="short" title="Revision {{ rev }}">{{ short }}...</div>
- <div class="full">{{ rev }}</div>
- </div>
-{% endmacro %}