show_bug.html.tmpl 14.5 KB
Newer Older
1
<!-- 1.0@bugzilla.org -->
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
[%# 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): Gervase Markham <gerv@gerv.net>
  #%]

22
[% filtered_desc = bug.short_desc FILTER html %]
23 24 25 26
[% UNLESS header_done %]
  [% INCLUDE global/header 
    title = "Bug $bug.bug_id - $bug.short_desc"
    h1 = "Bugzilla Bug $bug.bug_id"
27
    h2 = filtered_desc
28
    extra = navigation_links()
29
   %]
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
[% END %]

[% PROCESS show/navigate.html.tmpl %]

<hr>

<form name="changeform" method="post" action="process_bug.cgi">

  <input type="hidden" name="delta_ts" value="[% bug.delta_ts %]">
  <input type="hidden" name="longdesclength" value="[% bug.longdesclength %]">
  <input type="hidden" name="id" value="[% bug.bug_id %]">

[%# *** Platform Reporter Product OS AddCC *** %]

  <table cellspacing="1" cellpadding="1" border="0">
    <tr>      
      <td align="right">
        <b>Bug#:</b>
      </td>
      <td>
50
        <a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]">
51 52 53 54 55 56 57 58 59 60 61 62 63 64
          [% bug.bug_id %]</a>
      </td>
      
      <td>&nbsp;</td>

      <td align="right">
        <b>Platform:</b>
      </td>
      [% PROCESS select selname = "rep_platform" %]
      
      <td align="right">
        <b>Reporter:</b>
      </td>
      <td>
65
        [% bug.reporter FILTER html %]
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
      </td>    
    </tr>
    
    <tr>
      <td align="right">
        <b>Product:</b>
      </td>
      [% PROCESS select selname => "product" %]
      
      <td align="right">
        <b>OS:</b>
      </td>
      [% PROCESS select selname => "op_sys" %]

      <td align="right">
        <b>Add&nbsp;CC:</b>
      </td>
      <td>
        <input name="newcc" size="30" value="">
      </td>
    </tr>

[%# *** Component Version CC Priority Severity AssignedTo Milestone *** %]    

    <tr>
      <td align="right">
        <b>
93
          <a href="describecomponents.cgi?product=[% bug.product FILTER uri %]">
94 95 96 97 98 99
            Component</a>:
        </b>
      </td>
      <td>
        <select name="component">
          [% FOREACH x = component_ %]
100
            <option value="[% x FILTER html %]"
101 102
              [% " selected" IF x == bug.component %]>[% x FILTER html %]
            </option>
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
          [% END %]
        </select>
      </td>

      <td>&nbsp;</td>
      
      <td align="right">
        <b>Version:</b>
      </td>
      [% PROCESS select selname => "version"  %]
      
      <td rowspan="4" align="right" valign="top">
        <b>CC:</b>
      </td>
      <td rowspan="4" valign="top"> 
      [% IF bug.cc %]
        <select name="cc" multiple size="5">
        [% FOREACH c = bug.cc %]
121
          <option value="[% c FILTER html %]">[% c FILTER html %]</option>
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
        [% END %]
        </select>
        <br>
        <input type="checkbox" name="removecc">Remove selected CCs
        <br>
      [% ELSE %]
        <input type="hidden" name="cc" value="">
      [% END %]
      </td>
    </tr>
    
    <tr>
      <td align="right">
        <b>
          <a href="bug_status.html">Status</a>:
        </b>
      </td>
139
      <td>[% bug.bug_status FILTER html %]</td>      
140 141 142 143 144 145 146 147 148 149 150 151 152 153
      <td>&nbsp;</td>
      
      <td align="right">
        <b><a href="bug_status.html#priority">Priority</a>:</b>
      </td>
      [% PROCESS select selname => "priority" %]
    </tr>
    
    <tr>
      <td align="right">
        <b>
          <a href="bug_status.html">Resolution</a>:
        </b>
      </td>
154
      <td>[% bug.resolution FILTER html %]</td>      
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
      <td>&nbsp;</td>
      
      <td align="right">
        <b><a href="bug_status.html#severity">Severity</a>:</b>
      </td>
      [% PROCESS select selname = "bug_severity" %]
      
    </tr>
    
    <tr>
      <td align="right">
        <b>
          <a href="bug_status.html#assigned_to">Assigned&nbsp;To</a>:
        </b>
      </td>
170
      <td>[% bug.assigned_to FILTER html %]</td>
171 172 173 174 175
      <td>&nbsp;</td>
 
      [% IF Param("usetargetmilestone") && bug.target_milestone %]
        <td align="right">
          <b>
176
            <a href="[% bug.milestoneurl FILTER uri %]">Target Milestone</a>:
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
          </b>
        </td>
        [% PROCESS select selname = "target_milestone" %]
      [% ELSE %]
        <td colspan="3">&nbsp;</td>
      [% END %]
    </tr>

[%# *** QAContact URL Summary Whiteboard Keywords *** %]

   [% IF Param('useqacontact') %]
     <tr>
       <td align="right">
       <b>QA Contact:</b>
       </td>
       <td colspan="7">
193 194
         <input name="qa_contact" 
                value="[% bug.qa_contact FILTER html %]" size="60">
195 196 197 198 199 200 201
       </td>
     </tr>
   [% END %]

  <tr>
    <td align="right">
      <b>
202
        [% IF bug.bug_file_loc %]
203 204 205 206 207
          <a href="[% bug.bug_file_loc FILTER uri %]">URL:</a>
        [% ELSE %]
          URL:
        [% END %]
      </b>
208 209
    </td>
    <td colspan="7">
210 211
      <input name="bug_file_loc" 
             value="[% bug.bug_file_loc FILTER html %]" size="60">
212 213 214 215 216 217 218 219
    </td>
  </tr>
  
  <tr>
    <td align="right">
      <b>Summary:</b>
    </td>
    <td colspan="7">
220 221
      <input name="short_desc" 
             value="[% bug.short_desc FILTER html %]" size="60">
222 223 224 225 226 227 228 229 230
    </td>
  </tr>

  [% IF Param('usestatuswhiteboard') %] 
    <tr>
      <td align="right">
        <b>Status Whiteboard:</b>
      </td>
      <td colspan="7">
231 232
        <input name="status_whiteboard" 
               value="[% bug.status_whiteboard FILTER html %]" size="60">
233 234 235 236 237 238
      </td>
    </tr>
  [% END %]

  [% IF use_keywords %]
    <tr>
239
      <td align="right">
240
        <b>
241
          <a href="describekeywords.cgi">Keywords:</a>
242 243
        </b>
      <td colspan="7">
244 245
        <input name="keywords" 
               value="[% bug.keywords.join(', ') FILTER html %]" size="60">
246 247 248 249 250 251 252 253
      </td>
    </tr> 
  [% END %]
  </table>
  
[%# *** Attachments *** %]

  [% INCLUDE attachment/list.atml 
254 255
     attachments = bug.attachments 
     bugid = bug.bug_id %]
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

[%# *** Dependencies Votes *** %]

  [% IF Param('usedependencies') %]
  <table>
    <tr>
    [% PROCESS dependencies 
       dep = { title => "depends on", fieldname => "dependson" } %]
      <td rowspan="2">
        <a href="showdependencytree.cgi?id=[% bug.bug_id %]">Show 
        dependency tree</a>  

        [% IF Param('webdotbase') %]  
          <br>
          <a href="showdependencygraph.cgi?id=[% bug.bug_id %]">Show 
          dependency graph</a>
        [% END %]
      </td>
    </tr>

    <tr>
    [% PROCESS dependencies 
       dep = { title => "blocks", fieldname => "blocked" } %]
    </tr>
  </table>
  [% END %]

  [% IF use_votes %]
  <table>
    <tr>
      <th>
        <a href="votehelp.html">Votes:</a>
      </th>
      <td>
        [% bug.votes %]&nbsp;&nbsp;&nbsp;
291 292 293 294
        <a href="votes.cgi?action=show_bug&bug_id=[% bug.bug_id %]">Show 
        votes for this bug</a>&nbsp;&nbsp;&nbsp;
        <a href="votes.cgi?action=show_user&bug_id=[% bug.bug_id %]">Vote 
        for this bug</a>
295 296 297 298 299 300 301 302 303 304 305 306 307 308
      </td>
    </tr>
  </table>
  [% END %]

[%# *** Comments Groups *** %]

  <br>
  <b>Additional Comments:</b>
  <br>
  <textarea wrap="hard" name="comment" rows="10" cols="80"
            accesskey="c"></textarea>
  <br>

309
  [% IF groups.size > 0 %]
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
    <br>
    <b>Only users in the selected groups can view this bug:</b>
    <br>
    <font size="-1">(Unchecking all boxes makes this a public bug.)</font>
    <br>
    <br>

    [% FOREACH group = groups %]
      &nbsp;&nbsp;&nbsp;&nbsp;
      <input type="checkbox" name="bit-[% group.bit %]" value="1" 
        [% " checked='checked'" IF group.ison %]
        [% " disabled='disabled'" IF NOT group.ingroup %]>
      [% group.description %]
      <br>
    [% END %]

    [% IF NOT user.inallgroups %]
      <b>
        Only members of a group can change the visibility of a bug for 
        that group
      </b>
    <br>
    [% END %]

    [% IF bug.inagroup %]
      <p>
        <b>But users in the roles selected below can always view this bug:</b>
        <br>
        <small>
          (The assignee                                                
          [% IF (Param('useqacontact')) %]
341
             and QA contact
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
          [% END %]
          can always see a bug, and this section does not take effect unless 
          the bug is restricted to at least one group.)
        </small>
      </p>

      <p>
        <input type="checkbox" name="reporter_accessible" value="1"
          [% " checked" IF bug.reporter_accessible %]>Reporter
        <input type="checkbox" name="cclist_accessible" value="1"
          [% " checked" IF bug.cclist_accessible %]>CC List
      </p>  
    [% END %]
  [% END %]

[%# *** Knob *** %]

  <br>
  <input type="radio" name="knob" value="none" checked>
361 362
  Leave as <b>[% bug.bug_status FILTER html %]&nbsp;
              [% bug.resolution FILTER html %]</b>
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
  <br>

  [% knum = 1 %]

  [% IF bug.bug_status == "UNCONFIRMED" && 
        (user.canedit || user.canconfirm) %]
    <input type="radio" name="knob" value="confirm">
    Confirm bug (change status to <b>NEW</b>)
    <br>
    [% knum = knum + 1 %]
  [% END %]

  [% IF user.canedit %]
    [% IF bug.isopened %]
      [% IF bug.bug_status != "ASSIGNED" %]
        <input type="radio" name="knob" value="accept">
        Accept bug (
        [% "confirm bug, " IF bug.isunconfirmed %]change
        status to <b>ASSIGNED</b>)
        <br>
        [% knum = knum + 1 %]
      [% END %]

      [% IF bug.resolution %]
        <input type="radio" name="knob" value="clearresolution">
        Clear the resolution (remove the current resolution of
389
        <b>[% bug.resolution FILTER html %]</b>)<br>      
390 391 392 393
        [% knum = knum + 1 %]
      [% END %]

      <input type="radio" name="knob" value="resolve">
394
      Resolve bug, changing <a href="bug_status.html">resolution</a> to
395 396 397
      <select name="resolution" 
              onchange="document.changeform.knob[[% knum %]].checked=true">
      [% FOREACH r = resolution %]
398
        <option value="[% r FILTER html %]">[% r FILTER html %]</option>
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
      [% END %]
      </select>
      <br>
      [% knum = knum + 1 %]

      <input type="radio" name="knob" value="duplicate">
      Resolve bug, mark it as duplicate of bug # 
      <input name="dup_id" size="6" 
             onchange="if (this.value != '')
                       {document.changeform.knob[[% knum %]].checked=true}">
      <br>
      [% knum = knum + 1 %]

      <input type="radio" name="knob" value="reassign"> 
      <a href="bug_status.html#assigned_to">Reassign</A> bug to
      <input name="assigned_to" size="32" 
415
             onchange="if ((this.value != '[% bug.assigned_to_email FILTER js %]') && 
416 417 418
                            (this.value != '')) {
                         document.changeform.knob[[% knum %]].checked=true; 
                       }"  
419
             value="[% bug.assigned_to_email FILTER html %]">
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
      <br>
      [% IF bug.isunconfirmed %]
        &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" name="andconfirm">
        and confirm bug (change status to <b>NEW</b>)
        <br>
      [% END %]
      [% knum = knum + 1 %]

      <input type="radio" name="knob" value="reassignbycomponent">
      Reassign bug to owner
      [% "and QA contact" IF useqacontact %]
      of selected component
      <br>
      [% IF bug.isunconfirmed %]
        &nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" name="andconfirm">
        and confirm bug (change status to <b>NEW</b>)
        <br>
      [% END %]
      [% knum = knum + 1 %]
    [% ELSE %]
      [% IF bug.resolution != "MOVED" ||
           (bug.resolution == "MOVED" && user.canmove) %]  
        <input type="radio" name="knob" value="reopen"> Reopen bug
        <br>
        [% knum = knum + 1 %]
      [% END %]
      [% IF bug.bug_status == "RESOLVED" %]
        <input type="radio" name="knob" value="verify">
        Mark bug as <b>VERIFIED</b><br>
        [% knum = knum + 1 %]
      [% END %]
      [% IF bug.bug_status != "CLOSED" %]
        <input type="radio" name="knob" value="close">
        Mark bug as <b>CLOSED</b><br>
        [% knum = knum + 1 %]
      [% END %]
    [% END %]
  [% END %]  
  
  <input type="submit" value="Commit">
  <input type="hidden" name="form_name" value="process_bug">
  <p>
    <font size="+1">
      <b>
464
        <a href="show_activity.cgi?id=[% bug.bug_id %]">View Bug Activity</a>
465
        &nbsp; | &nbsp;
466
        <a href="long_list.cgi?buglist=[% bug.bug_id %]">Format For Printing</a>
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
      </b>
    </font>

    [% IF user.canmove %]
      &nbsp; <font size="+1"><b> | </b></font> &nbsp;
      <input type="submit" name="action" 
             value="[% Param("move-button-text") %]">
    [% END %]
  </p>  
</form>

[%# *** Additional Comments *** %]

<table>
  <tr>
    <td align="left">
      <b>
        <a name="c0" href="#c0">Description</a>:
      </b>
    </td>
    <td align="right" width="100%">
      Opened: [% bug.creation_ts %]
    </td>
  </tr>
</table>
<hr>

494 495 496
[% PROCESS show/comments.tmpl 
   comments = bug.comments 
 %]
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
  
<hr>

[% PROCESS show/navigate.html.tmpl %]

<br>

[% INCLUDE global/footer %]


[%############################################################################%]
[%# Block for dependencies                                                   #%]
[%############################################################################%]

[% BLOCK dependencies %]
  <th align="right">Bug [% bug.bug_id %] [%+ dep.title %]:</th>
  <td>
  [% FOREACH depbug = bug.${dep.fieldname} %]
    [% GetBugLink(depbug, depbug) %][% " " %]
  [% END %]
  </td>
  <td>
    <input name="[% dep.fieldname %]" 
           value="[% bug.${dep.fieldname}.join(', ') %]">
  </td>
[% END %]


[%############################################################################%]
[%# Block for SELECT fields                                                  #%]
[%############################################################################%]

[% BLOCK select %]  
  <td>
    <select name="[% selname %]">
      [% FOREACH x = ${selname} %]
533 534 535
        <option value="[% x FILTER html %]"
          [% " selected" IF x == bug.${selname} %]>[% x FILTER html %]
        </option>
536 537 538 539 540
      [% END %]
    </select>
  </td>
  <td>&nbsp;</td>
[% END %]