summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/new_bug.html.tmpl
blob: 9e0b2c1ab8553bfb0725d6be064c6000e5d4e7c3 (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
[%# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.%]

[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Enter [% terms.Bug %] [% END %]
[% PROCESS bug_modal/common_header.html.tmpl 
    title = title
    jquery = [ "selectize" ]
    jquery_css = [ "js/jquery/plugins/selectize/selectize.bootstrap3.css" ]
    javascript_urls = ['extensions/BugModal/web/new_bug.js']
    style_urls = ['extensions/BugModal/web/new_bug.css']
%]
[% PROCESS global/header.html.tmpl %]

<div style="display: none" id="xhr-error"></div>
<form name="newbugform" id="newbugform" method="post" action="new_bug.cgi" enctype="multipart/form-data">
  <input type="hidden" value="[% issue_hash_token(['new_bug']) FILTER html %]" name="token">
  <div class="new-bug-container">
    <div class="new-bug">
      <div class="new-bug-pad">
      </div>
      <div class="new-bug-title">
        <h2>Create New [% terms.Bug %]</h2>
        <p>
          Before reporting a [% terms.bug %], make sure you've read our
          <a href="[% terms.BugWritingGuidelinesURL %]">
          [% terms.bug %] writing guidelines</a> and double checked that your [% terms.bug %] hasn't already
          been reported. Consult our list of <a href="duplicates.cgi">
          most frequently reported [% terms.bugs %]</a> and <a href="query.cgi">
          search through descriptions</a> of previously reported [% terms.bugs %].
        </p>
      </div>
      <div class="new-bug-pad">
      </div>
    </div>
    <div class="new-bug">
      <div class="new-bug-pad">
      </div>
      <div class="new-bug-split-2">
        [% WRAPPER bug_modal/module.html.tmpl title = "" %]
        [%# summary %]
        [% INCLUDE bug_modal/field.html.tmpl
            field = bug_fields.short_desc
            field_type = constants.FIELD_TYPE_FREETEXT
            edit_only = 1
            editable = 1
            required = 1
            help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#short_desc"
        %]

        [% INCLUDE new_comment %]
        <input name="groups" value="core-security" id="group_core-security" type="checkbox"> Many users could be harmed by this security problem:
        it should be kept hidden from the public until it is resolved <br>
        [% END %]
        [% WRAPPER bug_modal/module.html.tmpl title = "Attach a File" collapsed = 1 %]
        <div class="file-container">
          <input type="file" style="display: inline-block;" id="data" name="data" size="50">
          <button id="reset" style="display: none;">Reset</button>
        </div>
          <label for="description" style="display: inline-block;">Description:</label>
          <input type="text" id="description" name="description" class="required"
         size="60" maxlength="200" style="display: inline-block;">
         <input type="radio" id="autodetect"
     name="contenttypemethod" value="autodetect" checked="checked" style="display:none">
        [% END %]
        <button type="submit" id="create-btn" class="create-btn major">Submit</button>
      </div>
      <div class="new-bug-split-1">
        [% WRAPPER bug_modal/module.html.tmpl title = "Status" %]
          [% can_edit_product   = bug.check_can_change_field("product", 0, 1) %]
          [% filtered_product   = bug.product_obj.name FILTER uri %]
          [% filtered_component = bug.component_obj.name FILTER uri %]
          <div id="product_wrap">
          [% WRAPPER bug_modal/field.html.tmpl
              field        = bug_fields.product
              field_type   = constants.FIELD_TYPE_SINGLE_SELECT
              edit_only = 1
              editable = 1
              help         = "describecomponents.cgi?product=$filtered_product"
          %]
          
            <span aria-owns="product-name product-latch">
              <span role="button" aria-label="show product information" aria-expanded="false" tabindex="0"
                    class="spin-latch" id="product-latch" data-latch="product" data-for="product">&#9656;</span>
              <div title="show product information" tabindex="0" class="spin-toggle"
                  id="product-name" data-latch="product" data-for="product">
                [% bug.product FILTER html %]
              </div>
              <div id="product-info" style="display:none">
                [% bug.product_obj.description FILTER html_light %]
              </div>
            </span>
          [% END %]
          </div>
          [% INCLUDE bug_modal/field.html.tmpl
              field          = bug_fields.product
              field_type     = constants.FIELD_TYPE_SINGLE_SELECT
              hide_on_view   = 1
              hide_on_edit   = !can_edit_product
              append_content = 1
              help           = "describecomponents.cgi?product=$filtered_product" %]

          [%# component %]
          [% WRAPPER bug_modal/field.html.tmpl
              field      = bug_fields.component
              field_type = constants.FIELD_TYPE_SINGLE_SELECT
              help       = "describecomponents.cgi?product=$filtered_product&component=$filtered_component#$filtered_component"
              edit_only = 1
              editable = 1
          %]
            <span aria-owns="component-name component-latch">
              <span role="button" aria-label="show component description" aria-expanded="false" tabindex="0"
                    class="spin-latch" id="component-latch" data-latch="component" data-for="component">&#9656;</span>
              <div title="show component information" tabindex="0" class="spin-toggle" id="component-name"
                  data-latch="#component-latch" data-for="component">
                  [% bug.component FILTER html %]
              </div>
              <div id="component-info" style="display:none">
                <div>[% bug.component_obj.description FILTER html_light %]</div>
                <a href="buglist.cgi?component=[% bug.component FILTER uri %]&amp;
                        [%~ %]product=[% bug.product FILTER uri %]&amp;
                        [%~ %]bug_status=__open__" target="_blank">Other [% terms.Bugs %]</a>
              </div>
            </span>
          [% END %]

          [% INCLUDE bug_modal/field.html.tmpl
            field = bug_fields.version
            field_type = constants.FIELD_TYPE_SINGLE_SELECT
            help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#version"
            edit_only = 1
            editable = 1
          %]
        [% END %]
        [% WRAPPER bug_modal/module.html.tmpl title = "Tracking" %]
          [%# keywords %]
          [% INCLUDE bug_modal/field.html.tmpl
              field = bug_fields.keywords
              field_type = constants.FIELD_TYPE_MULTI_SELECT
              edit_only = 1
              editable = 1
              help = "describekeywords.cgi"
          %]

          [% WRAPPER bug_modal/field.html.tmpl
              field = bug_fields.status_whiteboard
              field_type = constants.FIELD_TYPE_FREETEXT
              help = "https://wiki.mozilla.org/BMO/UserGuide/Whiteboard"
              edit_only = 1
              editable = 1
          %]
            [% bug.status_whiteboard == "" ? "---" : bug.status_whiteboard FILTER html %]
          [% END %]
        [% END %]

          [% WRAPPER bug_modal/module.html.tmpl
            title = "People"
            collapsed = 1
          %]
            [%# people %]
            [% INCLUDE bug_modal/field.html.tmpl
                field = bug_fields.assigned_to
                field_type = constants.FIELD_TYPE_USER
                edit_only = 1
                editable = 1
                help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#assigned_to"
            %]
            [% INCLUDE bug_modal/field.html.tmpl
                field = bug_fields.bug_mentor
                field_type = constants.FIELD_TYPE_USERS
                name = "bug_mentors"
                label = "Mentors"
                edit_only = 1
                editable = 1
                help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#bug_mentor"
            %]
            [% INCLUDE bug_modal/field.html.tmpl
                field = bug_fields.cc
                field_type = constants.FIELD_TYPE_USERS
                name = "cc"
                label = "CC"
                edit_only = 1
                editable = 1
                help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#cc"
            %]
          [% END %]

          [% WRAPPER bug_modal/module.html.tmpl
            title = "Dependency Tree"
            collapsed = 1
          %]
          [%# depends on %]
          [% INCLUDE bug_modal/field.html.tmpl
              field = bug_fields.dependson
              field_type = constants.FIELD_TYPE_FREETEXT
              edit_only = 1
              editable = 1
              help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#dependson"
          %]

          [%# blocks %]
          [% INCLUDE bug_modal/field.html.tmpl
              field = bug_fields.blocked
              field_type = constants.FIELD_TYPE_FREETEXT
              edit_only = 1
              editable = 1
              help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#blocks"
          %]
          [% END %]
        </div>
        <div class="new-bug-pad">
        </div>
      </div>
    </div>
  </div>
</form>

[% PROCESS global/footer.html.tmpl %]

[% BLOCK fields_lhs %]
    <div class="fields-lhs">[% content FILTER none %]</div>
[% END %]

[% BLOCK fields_rhs %]
    <div class="fields-rhs">[% content FILTER none %]</div>
[% END %]

[% BLOCK new_comment %]
<div id="add-comment">
  <ul id="comment-tabs" role="tablist">
    <li id="comment-edit-tab" data-focus="comment" role="tab" tabindex="0" aria-controls="comment-edit-tabpanel" aria-selected="true">
      Description
    </li>
    <li id="comment-preview-tab" role="tab" tabindex="-1" aria-controls="comment-preview-tabpanel" aria-selected="false">
      Preview
      <img id="preview-throbber" src="extensions/BugModal/web/throbber.gif" width="16" height="11" style="display:none">
    </li>
  </ul>
  <div id="comment-edit-tabpanel" class="comment-tabpanel" role="tabpanel" aria-labelledby="comment-edit-tab">
    <textarea rows="5" name="comment" id="comment" aria-labelledby="comment-edit-tab"></textarea>
  </div>
  <div id="comment-preview-tabpanel" class="comment-tabpanel" role="tabpanel" aria-labelledby="comment-preview-tab" style="display:none">
    <pre id="comment-preview" class="comment-text"></pre>
  </div>
</div>
[% END %]