Author: Antonio Cuni <[email protected]>
Branch: 0.8.4-compat
Changeset: r563:2f627822aaa9
Date: 2011-08-07 18:02 +0200
http://bitbucket.org/pypy/buildbot/changeset/2f627822aaa9/

Log:    add some pypy specific items to the main page

diff --git a/master/templates/root.html b/master/templates/root.html
new file mode 100644
--- /dev/null
+++ b/master/templates/root.html
@@ -0,0 +1,87 @@
+{% 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', '') %}
+
+  <!-- PyPy specific items -->
+  <li class="{{ item_class.next() }}">
+    The <a href="http://speed.pypy.org/";>Performance Plots</a> will give you
+      an overview of performance for recent revisions.
+  </li>
+  
+  <li class="{{ item_class.next() }}">
+    The <a href="summary?branch=&lt;trunk&gt;">Summary Display
+    &lt;trunk&gt;</a> will give you a failure-oriented summary for recent
+    revisions (&lt;trunk&gt; only).
+  </li>
+
+  <li class="{{ item_class.next() }}">
+    The <a href="summary">Summary Display</a> will give you a failure-oriented
+    summary for recent revisions (all branches).
+  </li>
+
+  <li class="{{ item_class.next() }}">
+    The <a href="nightly/">Nightly Build</a> page contains precompiled PyPy
+    binaries.
+  </li>
+  <!-- end of PyPy specific items -->
+
+  <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>
+
+<!-- PyPy specific: comment out the clean shutdown button
+{%- if authz.advertiseAction('cleanShutdown') -%}
+{%- 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 %}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to