aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/forms.html
blob: 133c465a4a0dba37d59d6fcc4a12dbf263f0c51a (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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
{% macro cancel_pending_build(cancel_url, authz, short=False, id='all') %}
  <form method="post" name="cancel" action="{{ cancel_url }}" class='command cancelbuild'
             {{ 'style="display:inline"' if short else '' }}>
    {% if not short %}
      {% if id == 'all' %}
        <p>To cancel all builds, push the 'Cancel' button</p>
        <p>To cancel individual builds, click the 'Cancel' buttons above.</p>
      {% else %}
        <p>To cancel this build, push the 'Cancel' button</p>
      {% endif %}
    {% endif %}
    <input type="hidden" name="id" value="{{ id }}" />
    <input type="submit" value="Cancel" />
  </form>
{% endmacro %}

{% macro stop_change_builds(stopchange_url, changenum, authz) %}
  {% if not changenum  %}
    <form method="post" action="{{ stopchange_url }}" class='command stopchange'>
      {% if changenum %}
        <p>To cancel all builds for this change, push the 'Cancel' button</p>
      {% else %}
        <p>To cancel builds for this builder for a given change, fill out the
          following field and push the 'Cancel' button</p>
      {% endif %}

      {% if changenum %}
        <input type="hidden" name="change" value="{{ changenum }}" />
      {% else %}
        <div class="row">
          <span class="label">Change #:</span>
          <input type="text" name="change"/>
        </div>
      {% endif %}
      <input type="submit" value="Cancel" />
    </form>
  {% endif %}
{% endmacro %}

{% macro stop_build(stop_url, authz, on_all=False, on_selected=False, builders=[], short=False, label="Build") %}
  {% if not short %}
    <form method="post" name="stop_build" action="{{ stop_url }}" class='command stopbuild'
               {{ 'style="display:inline"' if short else '' }}>
      {% if not short %}
        {% if on_all %}
          <p>To stop all builds, fill out the following field and
          push the <i>Stop {{ label }}</i> button</p>
        {% elif on_selected %}
          <p>To stop selected builds, select the builders, fill out the
          following field and push the <i>Stop {{ label }}</i> button</p>
          <table>
          {% for b in builders %}
            <tr>
              <td align="center"><input type="checkbox" name="selected" value="{{ b.name }}"></td>
              <td class="box"><a href="{{ b.link }}">{{ b.name|e }}</a></td>
            </tr>
          {% endfor %}
          </table>

        {% else %}
          <p>To stop this build, fill out the following field and
          push the <i>Stop {{ label }}</i> button</p>
        {% endif %}
      {% endif %}

      {% if not short %}
        <div class="row">
          <span class="label">Reason:</span>
          <input type="text" name="comments"/>
        </div>
      {% endif %}

      <input type="submit" value="Stop {{ label }}" />
    </form>
  {% endif %}
{% endmacro %}

{% macro cancel_build(cancel_url, authz, on_all=False, on_selected=False, builders=[], short=False, label="Build") %}
  {% if not short %}
    <form method="post" name="cancel_build" action="{{ cancel_url }}" class='command cancelbuild'
               {{ 'style="display:inline"' if short else '' }}>
      {% if not short %}
        {% if on_all %}
          <p>To cancel all pending builds, fill out the following field and
          push the <i>Cancel {{ label }}</i> button</p>
        {% elif on_selected %}
          <p>To cancel selected pending builds, select the builders, fill out the
          following field and push the <i>Cancel {{ label }}</i> button</p>
          <table>
          {% for b in builders %}
            <tr>
              <td align="center"><input type="checkbox" name="selected" value="{{ b.name }}"></td>
              <td class="box"><a href="{{ b.link }}">{{ b.name|e }}</a></td>
            </tr>
          {% endfor %}
          </table>

        {% else %}
          <p>To cancel this pending build, fill out the following field and
          push the <i>Cancel {{ label }}</i> button</p>
        {% endif %}
      {% endif %}

      {% if not short %}
        <div class="row">
          <span class="label">Reason:</span>
          <input type="text" name="comments"/>
        </div>
      {% endif %}

      <input type="submit" value="Cancel {{ label }}" />
    </form>
  {% endif %}
{% endmacro %}

{% macro force_build_scheduler_parameter(f, authz, request, sch, default_props) %}
    {% if f and not f.hide and (f.fullName != "username" or not authz.authenticated(request)) %}
    <div class="row{% for subtype in f.type %} force-{{subtype}}{%endfor%}"{% if f.name %} id="force-{{sch.name}}-{{f.fullName}}"{% endif %}>
    {% if 'text' in f.type or 'int' in f.type %}
       <span class="label">{{f.label}}</span>
       <input type='text' size='{{f.size}}' name='{{f.fullName}}' value='{{default_props[sch.name+"."+f.fullName]}}' />
    {% elif 'bool' in f.type%}
       <input type='checkbox' name='checkbox' value='{{f.fullName}}' {{default_props[sch.name+"."+f.fullName]}} />
       <span class="label">{{f.label}}</span>
    {% elif 'textarea' in f.type %}
       <span class="label">{{f.label}}</span>
       <textarea name='{{f.fullName}}' rows={{f.rows}} cols={{f.cols}}>{{default_props[sch.name+"."+f.fullName]}}</textarea>
    {% elif 'list' in f.type %}
       <span class="label">{{f.label}}</span>
       <span class="select">
       <select name='{{f.fullName}}' {{ f.multiple and "multiple" or ""}}>
         {% for c in default_props[sch.name+"."+f.fullName+".choices"] %}
           <option {{(c in default_props[sch.name+"."+f.fullName]) and "selected" or ""}}>{{c}}</option>
         {% endfor %}
       </select>
       </span>
    {% elif 'nested' in f.type %}
      {% if f.label %}<span class="label">{{f.label}}</span>{% endif %}
      {% for subfield in f.fields %}
        {{ force_build_scheduler_parameter(subfield, authz, request, sch, default_props) }}
      {% endfor %}
    {% endif %}
    </div>
  {% endif %}
{% endmacro %}

{% macro force_build_one_scheduler(force_url, authz, request, on_all, on_selected, builders, sch, default_props) %}
 <form method="post" name="force_build" action="{{ force_url }}" class="command_forcebuild">

  <h3>{{ sch.name|e }}</h3>
  {% if on_all %}
     <p>To force a build on <strong>all Builders</strong>, fill out the following fields
          and push the 'Force Build' button</p>
  {% elif on_selected %}
     <p>To force a build on <strong>certain Builders</strong>, select the
        builders, fill out the following fields and push the
        'Force Build' button</p>

     <table>
     {% for b in builders %}
     {% if b.name in sch.builderNames %}
       <tr>
         <td align="center"><input type="checkbox" name="selected" value="{{ b.name }}"></td>
         <td class="box"><a href="{{ b.link }}">{{ b.name|e }}</a></td>
       </tr>
       {% endif %}
     {% endfor %}
     </table>

  {% else %}
     <p>To force a build, fill out the following fields and
        push the 'Force Build' button</p>
  {% endif %}
  <input type='hidden' name='forcescheduler' value='{{sch.name}}' />
  <p>  
  <hr />
  {% if "nightly" in sch.builderNames %}
    Set up branch values for Poky branch: <select id ="select_release"
        name="build_release" onchange="updateFormBranchInputs(this.value)">
      <option value="master" selected>master</option>
      <option value="rocko">rocko</option>
      <option value="pyro">pyro</option>
      <option value="morty">morty</option>
      <option value="krogoth">krogoth</option>
    </select>
    <hr/>
  {% endif %}

  {% for f in sch.all_fields %}
    {{ force_build_scheduler_parameter(f, authz, request, sch, default_props) }}
  {% endfor %}

  <input type="submit" value="Force Build" />
 </form>
{% endmacro %}
{% macro force_build(force_url, authz, request, on_all=False, on_selected=False, builders=[], force_schedulers={},default_props={}) %}
  {% for name, sch in force_schedulers.items() | sort %}
    {{ force_build_one_scheduler(force_url, authz, request, on_all, on_selected, builders, sch, default_props=default_props) }}
  {% endfor %}

{% endmacro %}

{% macro graceful_shutdown(shutdown_url, authz) %}
  <form method="post" action="{{ shutdown_url }}" class='command graceful_shutdown'>

  <p>To cause this slave to shut down gracefully when it is idle,
    push the 'Graceful Shutdown' button</p>
  <input type="submit" value="Graceful Shutdown" />
 </form>
{% endmacro %}

{% macro pause_slave(pause_url, authz, paused) %}
  <form method="post" action="{{ pause_url }}" class='command pause_slave'>

  {% if paused %}
    <p>To cause this slave to start running new builds again,
      push the 'Unpause Slave' button</p>
  {% else %}
    <p>To cause this slave to stop running new builds,
      push the 'Pause Slave' button</p>
  {% endif %}

  {% if paused %}
      <input type="submit" value="Unpause Slave" />
  {% else %}
      <input type="submit" value="Pause Slave" />
  {% endif %}
 </form>
{% endmacro %}

{% macro clean_shutdown(shutdown_url, authz) %}
  <form method="post" action="{{ shutdown_url }}" class='command clean_shutdown'>
  <p>To cause this master to shut down cleanly, push the 'Clean Shutdown' button.</p>
  <p>No other builds will be started on this master, and the master will
  stop once all current builds are finished.</p>

  <input type="submit" value="Clean Shutdown" />
 </form>
{% endmacro %}

{% macro cancel_clean_shutdown(cancel_shutdown_url, authz) %}
  <form method="post" action="{{ cancel_shutdown_url }}" class='command cancel_clean_shutdown'>
  <p>To cancel a previously initiated shutdown, push the 'Cancel Shutdown' button.</p>

  <input type="submit" value="Cancel Shutdown" />
 </form>
{% endmacro %}

{% macro ping_builder(ping_url, authz) %}
  <form method="post" action="{{ ping_url }}" class='command ping_builder'>
    <p>To ping the buildslave(s), push the 'Ping' button</p>
    <input type="submit" value="Ping Builder" />
  </form>
{% endmacro %}

{% macro rebuild_build(rebuild_url, authz, ss) %}
 <form method="post" action="{{ rebuild_url }}" class="command rebuild">

  {% if on_all %}
     <p>To force a build on <strong>all Builders</strong>, fill out the following fields
          and push the 'Force Build' button</p>
  {% else %}
     <p>To force a build, fill out the following fields and
        push the 'Force Build' button</p>
  {% endif %}
   <div class="row">
     <span class="label">Reason for re-running build:</span>
     <input type='text' name='comments' />
   </div>
   <div class="row">
     Rebuild using:
     <select name="useSourcestamp">
        <option value='exact' selected>Exact same revisions</option>
        <option value='updated'>Same sourcestamps (ignoring 'got revision')</option>
     </select>
   </div>
   <input type="submit" value="Rebuild" />
 </form>
{% endmacro %}

{% macro show_users(users_url, authz) %}
  <form method="post" action="{{ users_url }}" class='command show_users'>
    <p>To show users, press the 'Show Users' button</p>

    <input type="submit" value="Show Users" />
  </form>
{% endmacro %}