Sha256: bd01a67423d73642f2fffa141da1ec686a6beb793bb81b781c9f8d6eb7866c7a

Contents?: true

Size: 1.05 KB

Versions: 45

Compression:

Stored size: 1.05 KB

Contents

{% 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) -%}
  {%- 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 %}

Version data entries

45 entries across 45 versions & 6 rubygems

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