summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/field.html.tmpl
blob: d15a6ea60a61d619dc8e49492c35d0c47fd66b2f (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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
[%# The contents of this file are subject to the Mozilla Public
  # License Version 1.1 (the "License"); you may not use this file
  # except in compliance with the License. You may obtain a copy of
  # the License at http://www.mozilla.org/MPL/
  #
  # Software distributed under the License is distributed on an "AS
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  # implied. See the License for the specific language governing
  # rights and limitations under the License.
  #
  # The Original Code is the Bugzilla Bug Tracking System.
  #
  # The Initial Developer of the Original Code is Netscape Communications
  # Corporation. Portions created by Netscape are
  # Copyright (C) 1998 Netscape Communications Corporation. All
  # Rights Reserved.
  #
  # Contributor(s): Myk Melez <myk@mozilla.org>
  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
  #                 Elliotte Martin <elliotte_martin@yahoo.com>
  #                 Guy Pyrzak <guy.pyrzak@gmail.com>
  #                 Reed Loden <reed@reedloden.com>
  #%]

[%# INTERFACE:
  #   field: a Bugzilla::Field object
  #   value: The value of the field for this bug.
  #   override_legal_values (optional): The list of legal values, for select fields.
  #   editable: Whether the field should be displayed as an editable
  #             <input> or as just the plain text of its value.
  #   allow_dont_change: display the --do_not_change-- option for select fields.
  #   value_span: A colspan for the table cell containing
  #               the field value.
  #   no_tds: boolean; if true, don't display the label <th> or the
  #           wrapping <td> for the field.
  #   bug (optional): The current Bugzilla::Bug being displayed, or a hash
  #                   with default field values being displayed on a page.
  #%]

[% SET hidden = 0 %]
[% IF bug AND !field.is_visible_on_bug(bug) %]
  [% SET hidden = 1 %]
[% END %]

[% IF NOT no_tds %]
  [% PROCESS "bug/field-label.html.tmpl" %]
  <td class="field_value [% ' bz_hidden_field' IF hidden %]"
      id="field_container_[% field.name FILTER html %]"
      [% " colspan=\"$value_span\"" FILTER none IF value_span %]>
[% END %]
[% Hook.process('start_field_column') %]
[% IF editable %]
  [% SWITCH field.type %]
    [% CASE [ constants.FIELD_TYPE_FREETEXT
              constants.FIELD_TYPE_INTEGER ] %]
        <input id="[% field.name FILTER html %]" class="text_input"
               name="[% field.name FILTER html %]"
               value="[% value FILTER html %]" size="40"
               maxlength="[% constants.MAX_FREETEXT_LENGTH FILTER none %]"
               [% IF field.type == constants.FIELD_TYPE_INTEGER %] pattern="\d+[% IF dontchange %]|[% dontchange FILTER html %][% END %]" [% END %]
               [% ' aria-required="true"' IF field.is_mandatory %]>
    [% CASE [constants.FIELD_TYPE_DATETIME, constants.FIELD_TYPE_DATE] %]
      [% size = (field.type == constants.FIELD_TYPE_DATE) ? 10 : 20 %]
      <input name="[% field.name FILTER html %]" size="[% size FILTER none %]"
             id="[% field.name FILTER html %]"
             value="[% value FILTER html %]"
             [% ' aria-required="true"' IF field.is_mandatory %]
             onchange="updateCalendarFromField(this)">
      <button type="button" class="calendar_button"
              id="button_calendar_[% field.name FILTER html %]"
              onclick="showCalendar('[% field.name FILTER js %]')">
        <span>Calendar</span>
      </button>

      <div id="con_calendar_[% field.name FILTER html %]"></div>

      <script [% script_nonce FILTER none %]>
        createCalendar('[% field.name FILTER js %]')
      </script>
    [% CASE constants.FIELD_TYPE_BUG_ID %]
        <span id="[% field.name FILTER html %]_input_area">
          <input name="[% field.name FILTER html %]" id="[% field.name FILTER html %]"
                 value="[% value FILTER html %]" size="7"
                 [% ' aria-required="true"' IF field.is_mandatory %]>

        </span>

        [% IF value %]
          [% value FILTER bug_link(value, use_alias => 1) FILTER none %]
        [% END %]
        <span id="[% field.name FILTER html %]_edit_container" class="edit_me bz_default_hidden">
          (<a href="#" id="[% field.name FILTER html %]_edit_action">edit</a>)
        </span>
        <script [% script_nonce FILTER none %]>
        hideEditableField('[% field.name FILTER js %]_edit_container',
                          '[% field.name FILTER js %]_input_area',
                          '[% field.name FILTER js %]_edit_action',
                          '[% field.name FILTER js %]',
                          "[% value FILTER js %]");
        </script>
    [% CASE [ constants.FIELD_TYPE_SINGLE_SELECT
              constants.FIELD_TYPE_MULTI_SELECT ] %]
        <input type="hidden" id="[% field.name FILTER html %]_dirty">
        <select id="[% field.name FILTER html %]"
                name="[% field.name FILTER html %]"
                [% IF field.type == constants.FIELD_TYPE_MULTI_SELECT %]
                    [% SET field_size = 5 %]
                    [% IF field.legal_values.size < 5 %]
                        [% SET field_size = field.legal_values.size %]
                    [% END %]
                    size="[% field_size FILTER html %]" multiple="multiple"
                    [% ' aria-required="true"' IF field.is_mandatory %]
                [% END %]
                >
          [% IF allow_dont_change %]
            <option value="[% dontchange FILTER html %]"
                   [% ' selected="selected"' IF value == dontchange %]>
              [% dontchange FILTER html %]
            </option>
          [% END %]
          [% IF override_legal_values %]
            [% legal_values = override_legal_values %]
          [% ELSE %]
            [% legal_values = field.legal_values %]
          [% END %]
          [% FOREACH legal_value = legal_values %]
            [% NEXT IF NOT legal_value.is_active AND NOT value.contains(legal_value.name).size %]

            [%# Purpose: hide field values from those who can't change them %]
            [% IF field.name.match("^cf_blocking_") OR
                  field.name.match("^cf_status_") OR
                  field.name.match("^cf_tracking_") OR
                  field.name == "cf_cab_review" OR
                  field.name == "resolution" %]
              [% NEXT UNLESS bug.check_can_change_field(field.name, '---', legal_value.name) OR
                             value.contains(legal_value.name).size %]
            [% END %]

            [% IF field.name == "resolution" &&
               legal_value.name != bug.resolution %]
              [% r = legal_value.name %]
              [% IF bug.user.canconfirm &&
                    !(bug.user.canedit || bug.user.isreporter) %]
                [% NEXT IF r != "WORKSFORME" && r != "INCOMPLETE" && r != "DUPLICATE" %]
              [% END %]
              [% IF bug.user.isreporter &&
                    !(bug.user.canconfirm || bug.user.canedit) %]
                [% NEXT IF r == "INCOMPLETE" %]
              [% END %]
              [% NEXT IF r == "EXPIRED" %]
            [% END %]

            <option value="[% legal_value.name FILTER html %]"
                    id="v[% legal_value.id FILTER html %]_
                        [%- field.name FILTER html %]"
              [%# We always show selected values, even if they should be
                # hidden %]
              [% IF value.contains(legal_value.name).size %]
                selected="selected"
              [% ELSIF bug AND !legal_value.is_visible_on_bug(bug) %]
                class="bz_hidden_option" disabled="disabled"
              [% END %]>
              [%- display_value(field.name, legal_value.name) FILTER html ~%]
            </option>
          [% END %]
        </select>
        [%# When you pass an empty multi-select in the web interface,
          # it doesn't appear at all in the CGI object. Instead of
          # forcing all users of process_bug to always specify every
          # multi-select, we have this field defined if the multi-select
          # field is defined, and then if this is passed but the multi-select
          # isn't, we know that the multi-select was emptied.
        %]
        [% IF field.type == constants.FIELD_TYPE_MULTI_SELECT %]
          <input type="hidden" name="defined_[% field.name FILTER html %]">
        [% END %]

        <script [% script_nonce FILTER none %]>
        <!--
          initHidingOptionsForIE('[% field.name FILTER js %]');
          [%+ INCLUDE "bug/field-events.js.tmpl"
                      field = field, product = bug.product_obj %]
        //-->
        </script>

     [% CASE constants.FIELD_TYPE_TEXTAREA %]
       <div id="[% field.name FILTER html %]_edit_container" class="bz_default_hidden">
         <div>
             (<a href="#" id="[% field.name FILTER html %]_edit_action">edit</a>)
         </div>
         [% IF value %]
           <pre class="field_textarea_readonly">[% value FILTER html %]</pre>
         [% END %]
       </div>
       <div id="[% field.name FILTER html %]_input">
         [% INCLUDE global/textarea.html.tmpl
            id = field.name name = field.name minrows = 4 maxrows = 8
            cols = 60 defaultcontent = value mandatory = field.is_mandatory %]
       </div>
       <script [% script_nonce FILTER none %]>
         hideEditableField('[% field.name FILTER js %]_edit_container',
                           '[% field.name FILTER js %]_input',
                           '[% field.name FILTER js %]_edit_action',
                           '[% field.name FILTER js %]',
                           '[% value FILTER js %]',
                           '',
                           true);
       </script>
     [% CASE constants.FIELD_TYPE_BUG_URLS %]
       [% IF bug.id && value.size %]
         <ul class="bug_urls">
         [% FOREACH bug_url = value %]
           <li>
             [% PROCESS bug_url_link bug_url = bug_url %]
             <label><input type="checkbox" value="[% bug_url.name FILTER html %]"
                           name="remove_[% field.name FILTER html %]">
               Remove</label>
           </li>
         [% END %]
         </ul>
       [% END %]
       [% IF Param('use_see_also') %]
         <span id="container_showhide_[% field.name FILTER html %]"
               class="bz_default_hidden">
           (<a href="#" id="showhide_[% field.name FILTER html %]">add</a>)
         </span>
         <div id="container_[% field.name FILTER html %]">
           <input type="text" id="[% field.name FILTER html %]" size="40"
                  class="text_input" name="[% field.name FILTER html %]"
                  [% IF !bug.id %]value="[% value FILTER html %]"[% END %]>
         </div>
         [% IF bug.id %]
           <script [% script_nonce FILTER none %]>
             setupEditLink('[% field.name FILTER js %]');
           </script>
         [% END %]
       [% END %]
     [% CASE constants.FIELD_TYPE_KEYWORDS %]
       <input type="text" id="[% field.name FILTER html %]" size="40"
              class="text_input bz_autocomplete_values"
              name="[% field.name FILTER html %]"
              data-values="[% field.name FILTER html %]"
              value="[% value FILTER html %]">
       <script [% script_nonce FILTER none %]>
          if (typeof BUGZILLA.autocomplete_values === 'undefined')
            BUGZILLA.autocomplete_values = [];
          BUGZILLA.autocomplete_values['[% field.name FILTER js %]'] = [
            [%- FOREACH keyword = active_keywords %]
              [%- %]"[% keyword.name FILTER js %]"
              [%- "," IF NOT loop.last %][% END %]];
       </script>
     [% CASE constants.FIELD_TYPE_EXTENSION %]
       [% Hook.process('editable') %]
  [% END %]
[% ELSE %]
  [% SWITCH field.type %]
    [% CASE constants.FIELD_TYPE_TEXTAREA %]
      <div class="uneditable_textarea">[% value FILTER html %]</div>
    [% CASE constants.FIELD_TYPE_BUG_ID %]
      [% IF value %]
          [% value FILTER bug_link(value, use_alias => 1) FILTER none %]
      [% END %]
    [% CASE [ constants.FIELD_TYPE_SINGLE_SELECT
              constants.FIELD_TYPE_MULTI_SELECT ] %]
      [% FOREACH val = value %]
        [% display_value(field.name, val) FILTER html %]
        [% ', ' UNLESS loop.last() %]
      [% END %]
    [% CASE constants.FIELD_TYPE_BUG_URLS %]
      [% '<ul class="bug_urls">' IF value.size %]
        [% FOREACH bug_url = value %]
          <li>
            [% PROCESS bug_url_link bug_url = bug_url %]
          </li>
        [% END %]
      [% '</ul>' IF value.size %]
    [% CASE constants.FIELD_TYPE_EXTENSION %]
      [% Hook.process('non_editable') %]
    [% CASE %]
      [% value.join(', ') FILTER html %]
  [% END %]
[% END %]

[% IF bug && field.name == 'component' %]
  (<a href="buglist.cgi?component=[% bug.component FILTER uri %]&amp;product=[% bug.product FILTER uri %]&amp;bug_status=__open__"
      target="_blank">show other [% terms.bugs %]</a>)
[% END %]

[% Hook.process('end_field_column') %]
[% '</td>' IF NOT no_tds %]

[%# for reverse relationships, we show this pseudo-field after the main field %]
[% IF bug.id && field.is_relationship %]
    [% extra_field_item = {} %]
    [% extra_field_item.header = field.reverse_desc _ ":" FILTER html %]
    [% extra_field_item.data = BLOCK %]
        [% FOREACH depbug = bug.related_bugs(field) %]
            [% depbug.id FILTER bug_link(depbug, use_alias => 1) FILTER none %][% " " %]
        [% END %]
    [% END %]
[% ELSE %]
    [% extra_field_item = '' %]
[% END %]

[% BLOCK bug_url_link %]
  [% IF bug_url.isa('Bugzilla::BugUrl::Bugzilla::Local') %]
    [% bug_url.target_bug_id FILTER bug_link(bug_url.target_bug_id, use_alias => 1) FILTER none %]
  [% ELSE %]
    <a href="[% bug_url.name FILTER html %]">
      [% bug_url.name FILTER html %]</a>
  [% END %]
[% END %]