aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/root.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/root.html')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/root.html61
1 files changed, 0 insertions, 61 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/root.html b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/root.html
deleted file mode 100644
index 561973e4..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/root.html
+++ /dev/null
@@ -1,61 +0,0 @@
-{% extends 'layout.html' %}
-{% import 'forms.html' as forms %}
-
-{% block content %}
-
-<h1>Welcome to the Buildbot
-{%- if title -%}
- &nbsp;for the&nbsp;
- {%- if title_url -%}
- <a href="{{ title_url }}">{{ title }}</a>
- {%- else -%}
- {{ title }}
- {%- endif -%}
-&nbsp;project
-{%- endif -%}
-!
-</h1>
-
-<div class="column">
-
-<ul>
- {% set item_class=cycler('alt', '') %}
-
- <li class="{{ item_class.next() }}">The <a href="waterfall">Waterfall Display</a> will give you a
- time-oriented summary of recent buildbot activity. <a href="waterfall/help">Waterfall Help.</a></li>
-
- <li class="{{ item_class.next() }}">The <a href="grid">Grid Display</a> will give you a
- developer-oriented summary of recent buildbot activity.</li>
-
- <li class="{{ item_class.next() }}">The <a href="tgrid">Transposed Grid Display</a> presents
- the same information as the grid, but lists the revisions down the side.</li>
-
- <li class="{{ item_class.next() }}">The <a href="console">Console</a> presents
- a user-oriented status page.</li>
-
- <li class="{{ item_class.next() }}">The <a href="builders">Builders</a> and their most recent builds are
- here.</li>
-
- <li class="{{ item_class.next() }}"><a href="one_line_per_build">Recent Builds</a> are summarized here, one
- per line.</li>
-
- <li class="{{ item_class.next() }}"><a href="buildslaves">Buildslave</a> information</li>
- <li class="{{ item_class.next() }}"><a href="changes">Changesource</a> information.</li>
-
- <li class="{{ item_class.next() }}"><a href="about">About</a> this Buildbot</li>
-</ul>
-
-{%- if authz.advertiseAction('cleanShutdown', request) -%}
-{%- if shutting_down -%}
-Master is shutting down<br/>
-{{ forms.cancel_clean_shutdown(cancel_shutdown_url, authz) }}
-{%- else -%}
-{{ forms.clean_shutdown(shutdown_url, authz) }}
-{%- endif -%}
-{%- endif -%}
-
-<p><i>This and other pages can be overridden and customized.</i></p>
-
-</div>
-
-{% endblock %}