summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server/templates/invocations.html
blob: 606098803b46f9a252482760902f34dc3e44a226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{% extends "base.html" %}
{% block heading %}
Recent Invocations
{% endblock %}

{% block content %}
{% if filter_info %}
<h1>Invocations filtered by {{ filter_info | e }}</h1>

<a href="/">(all invocations)</a>
{% else %}
<h1>Recent Invocations</h1>
Filter by:
  <a href="/filterinvocations/noncached">only not fully cached</a>
  {% if context_filters %}
  <details>
    <summary>Context</summary>
    {% for entry in context_filters %}
      <tt>{{ entry.key | e }}</tt>:
      {% for value in entry["values"] %}
        {% if loop.index > 1 %}
        ,
        {% endif %}
        <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ value["value_hex"] | e }}"><tt>{{ value["value"] | e }}</tt></a>
      {% endfor %}<br>
    {% endfor %}
  </details>
  {% endif %}
  {% if remote_props_filters %}
  <details>
    <summary>Remote properties</summary>
    {% for entry in remote_props_filters %}
      <tt>{{ entry.key | e }}</tt>:
      {% for value in entry["values"] %}
        {% if loop.index > 1 %}
        ,
        {% endif %}
        <a href="/filterinvocations/remote/prop/{{ entry["key_hex"] | e }}/{{ value["value_hex"] | e }}"><tt>{{ value["value"] | e }}</tt></a>
      {% endfor %}<br>
    {% endfor %}
  </details>
  {% endif %}
  {% if remote_address_filters %}
  <details>
    <summary>Remote address</summary>
    {% for entry in remote_address_filters %}
      {% if loop.index > 1 %}
      ,
      {% endif %}
      <a href="/filterinvocations/remote/address/{{ entry["value_hex"] | e }}"><tt>{{ entry["value"] | e }}</tt></a>
    {% endfor %}
  </details>
  {% endif %}
  {% if target_filters %}
  <details>
    <summary>Target</summary>
    {% for entry in target_filters %}
      {% if loop.index > 1 %}
      ,
      {% endif %}
      <a href="/filterinvocations/target/{{ entry["value_hex"] | e }}"><tt>{{ entry["value"] | e }}</tt></a>
    {% endfor %}
  </details>
  {% endif %}
{% endif %}
{% if full_invocations %}
<div id="invocation-list">
<ul>
  {% for invocation in full_invocations %}
  <li> <a href="/invocations/{{invocation.name |e}}"><tt>{{ invocation.name | e }}</tt></a>
    {% if invocation.subcommand %}
    <span id="invocation-verb"><tt>{{ invocation.subcommand | e }}</tt></span>
    {% endif %}
    {% if invocation.target %}
    <span id="invocation-target"><tt>{{ invocation.target | e}}</tt></span>
    {% endif %}
    {% if invocation.build_wall_clock_time %}
    <tt>{{ invocation.build_wall_clock_time | e}}</tt>
    {% endif %}
    {% if invocation.exit_code != 0 %}
    <span id="invocation-failure"><b>
      {% if invocation.exit_code == 1 %}
      build failed
      {% elif invocation.exit_code == 2 %}
      failed
      {% elif invocation.exit_code == 8 %}
      analysis failure
      {% elif invocation.exit_code == 16 %}
      build-environment failure
      {% elif invocation.exit_code == 32 %}
      syntax/invocation error
      {% else %}
      exit code {{ invocation.exit_code | e }}
      {% endif %}
    </b></span>
    {% endif %}
    <ul>
      {% if invocation.remote_address %}
      <li>
        Remote: <tt>{{ invocation.remote_address | e }}@{{ invocation.remote_props | e }}</tt>
      </li>
      {% endif %}
      {% if invocation.config %}
      <li>
        Configuration: <tt>{{ invocation.config | e}}</tt>
      </li>
      {% endif %}
      {% if invocation.context %}
      <li>
        Context: <tt>{{ invocation.context | e }}</tt>
      </li>
      {% endif %}
    </ul>
  </li>
  {% endfor %}
  {% if reduced_invocations %}
  <li>
    <details>
      <summary>{{ reduced_invocations_count | e }} more</summary>
      <ul>
        {% for invocation in reduced_invocations %}
        <li>
          <a href="/invocations/{{invocation.name |e}}"><tt>{{ invocation.name | e }}</tt></a>
          {% if invocation.context %}
          Context: <tt>{{ invocation.context | e }}</tt>
          {% endif %}
        </li>
        {% endfor %}
      </ul>
    </details>
  </li>
  {% endif %}
</ul>
</div>
{% else %}
<i>(none)</i>
{% endif %}
{% endblock %}