Sha256: 95e2625b513dcc6107ebcc03edae2e84e3d2a8ebd6d170da6f6c04ec6aa12696

Contents?: true

Size: 1.25 KB

Versions: 45

Compression:

Stored size: 1.25 KB

Contents

{% extends "layouts/base.html" %}
{% from "macros/box.html" import box %}

{% block content %}
<p>
  This is the Waterfall page. It shows the status of various builders in
  reverse chronological order. This allows you to see the most recent builds
  and their current status. You can additionally see the commits as they come
  in to the project.
</p>

<table class="bordered-table Module waterfall">
  <thead>
    <tr>
      <th colspan="2">Builder</th>
      {% for b in builders %}
      <th class="{{ b.top_class }}">
        <a href="{{ b.url }}">{{ b.name }}</a><br />
        {{ " ".join(b.top) }}
      </th>
      {% endfor %}
    </tr>
  </thead>
  <tbody>
    <tr>
      <th colspan="2">Current Activity</th>
      {% for b in builders %}
      <td class="{{ b.status_class }}">
        {{ "<br />".join(b.status) }}
      </td>
      {% endfor %}
    </tr>

    <tr>
      <th>Time ({{ tz }})</th>
      <th>Changes</th>
      {% for b in builders %}
      <td>&nbsp;</td>
      {% endfor %}
    </tr>

    {% for i in range(gridlen) -%}
    <tr>
      {% for strip in grid -%}
      {%- if strip[i] -%}{{ box(**strip[i]) }}
      {%- elif no_bubble -%}{{ box() }}
      {%- endif -%}
      {%- endfor -%}
    </tr>
    {% endfor %}
  </tbody>
</table>
{% endblock %}

Version data entries

45 entries across 45 versions & 6 rubygems

Version Path
bmhatfield-vagrant-1.0.10 test/buildbot/master/templates/waterfall.html
bmhatfield-vagrant-1.0.9 test/buildbot/master/templates/waterfall.html
bmhatfield-vagrant-1.0.8 test/buildbot/master/templates/waterfall.html
bmhatfield-vagrant-1.0.7 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.7 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.6 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.5 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.4 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.3 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.2 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.1 test/buildbot/master/templates/waterfall.html
vagrantup-1.0.0 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.99.2 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.99.1 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.7 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.6 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.5 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.4 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.3 test/buildbot/master/templates/waterfall.html
vagrantup-0.9.2 test/buildbot/master/templates/waterfall.html