~ubuntu-branches/ubuntu/hardy/bugzilla/hardy-security

« back to all changes in this revision

Viewing changes to template/en/default/bug/process/midair.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Rémi Perrot
  • Date: 2004-04-02 01:13:32 UTC
  • Revision ID: james.westby@ubuntu.com-20040402011332-hxrg0n2szimd7d25
Tags: upstream-2.16.5
Import upstream version 2.16.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- 1.0@bugzilla.org -->
 
2
[%# The contents of this file are subject to the Mozilla Public
 
3
  # License Version 1.1 (the "License"); you may not use this file
 
4
  # except in compliance with the License. You may obtain a copy of
 
5
  # the License at http://www.mozilla.org/MPL/
 
6
  #
 
7
  # Software distributed under the License is distributed on an "AS
 
8
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
  # implied. See the License for the specific language governing
 
10
  # rights and limitations under the License.
 
11
  #
 
12
  # The Original Code is the Bugzilla Bug Tracking System.
 
13
  #
 
14
  # The Initial Developer of the Original Code is Netscape Communications
 
15
  # Corporation. Portions created by Netscape are
 
16
  # Copyright (C) 1998 Netscape Communications Corporation. All
 
17
  # Rights Reserved.
 
18
  #
 
19
  # Contributor(s): Myk Melez <myk@mozilla.org>
 
20
  #%]
 
21
 
 
22
[%# INTERFACE:
 
23
  # form: hash; the form values submitted to the script
 
24
  # mform: hash; the form multi-values submitted to the script
 
25
  # operations: array; bug activity since the user last displayed the bug form,
 
26
  #   used by bug/activity/table.html.tmpl to display recent changes that will
 
27
  #   be overwritten if the user submits these changes.  See that template
 
28
  #   for further documentation.
 
29
  # start_at: number; the comment at which show/comments.tmpl should begin
 
30
  #   displaying comments, either the index of the last comment (if the user
 
31
  #   entered a comment along with their change) or a number less than that
 
32
  #   (if they didn't), in which case no comments are displayed.
 
33
  # comments: array; all the comments on the bug.
 
34
  # bug_id: number; the ID of the bug being changed.
 
35
  #%]
 
36
 
 
37
<h1>Mid-air collision detected!</h1>
 
38
 
 
39
<p>
 
40
  Someone else has made changes to this bug at the same time you were trying to.
 
41
  The changes made were:
 
42
</p>
 
43
 
 
44
<p>
 
45
  [% PROCESS "bug/activity/table.html.tmpl" incomplete_data=0 %]
 
46
</p>
 
47
          
 
48
[% IF comments.size > start_at %]
 
49
<p>
 
50
  Added comments:
 
51
  <blockquote>
 
52
    [% PROCESS "bug/comments.html.tmpl" %]
 
53
  </blockquote>
 
54
</p>
 
55
[% END %]
 
56
 
 
57
<p>
 
58
You have the following choices:
 
59
</p>
 
60
 
 
61
<ul>
 
62
  <li>
 
63
    <form method="post">
 
64
      [% PROCESS "global/hidden-fields.html.tmpl" exclude="^(Bugzilla|LDAP)_(login|password)$" %]
 
65
      <input type="submit" value="Submit my changes anyway">
 
66
        This will cause all of the above changes to be overwritten
 
67
        [% ", except for the added comment(s)" IF comments.size > start_at %].
 
68
    </form>
 
69
  </li>
 
70
  <li>
 
71
    <a href="show_bug.cgi?id=[% bug_id %]">Throw away my changes, 
 
72
      and revisit bug [% bug_id %]</a>
 
73
  </li>
 
74
</ul>
 
75
 
 
76
[% PROCESS global/footer.html.tmpl %]