~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

Viewing changes to Bugzilla/Config/BugChange.pm

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Mode: perl; indent-tabs-mode: nil -*-
2
 
#
3
 
# The contents of this file are subject to the Mozilla Public
4
 
# License Version 1.1 (the "License"); you may not use this file
5
 
# except in compliance with the License. You may obtain a copy of
6
 
# the License at http://www.mozilla.org/MPL/
7
 
#
8
 
# Software distributed under the License is distributed on an "AS
9
 
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10
 
# implied. See the License for the specific language governing
11
 
# rights and limitations under the License.
12
 
#
13
 
# The Original Code is the Bugzilla Bug Tracking System.
14
 
#
15
 
# The Initial Developer of the Original Code is Netscape Communications
16
 
# Corporation. Portions created by Netscape are
17
 
# Copyright (C) 1998 Netscape Communications Corporation. All
18
 
# Rights Reserved.
19
 
#
20
 
# Contributor(s): Terry Weissman <terry@mozilla.org>
21
 
#                 Dawn Endico <endico@mozilla.org>
22
 
#                 Dan Mosedale <dmose@mozilla.org>
23
 
#                 Joe Robins <jmrobins@tgix.com>
24
 
#                 Jacob Steenhagen <jake@bugzilla.org>
25
 
#                 J. Paul Reed <preed@sigkill.com>
26
 
#                 Bradley Baetz <bbaetz@student.usyd.edu.au>
27
 
#                 Joseph Heenan <joseph@heenan.me.uk>
28
 
#                 Erik Stambaugh <erik@dasbistro.com>
29
 
#                 Frédéric Buclin <LpSolit@gmail.com>
30
 
#
31
 
 
32
 
package Bugzilla::Config::BugChange;
33
 
 
34
 
use strict;
35
 
 
36
 
use Bugzilla::Config::Common;
37
 
 
38
 
$Bugzilla::Config::BugChange::sortkey = "03";
39
 
 
40
 
sub get_param_list {
41
 
  my $class = shift;
42
 
  my @param_list = (
43
 
  {
44
 
   name => 'letsubmitterchoosepriority',
45
 
   type => 'b',
46
 
   default => 1
47
 
  },
48
 
 
49
 
  {
50
 
   name => 'letsubmitterchoosemilestone',
51
 
   type => 'b',
52
 
   default => 1
53
 
  },
54
 
 
55
 
  {
56
 
   name => 'musthavemilestoneonaccept',
57
 
   type => 'b',
58
 
   default => 0
59
 
  },
60
 
 
61
 
  {
62
 
   name => 'commentoncreate',
63
 
   type => 'b',
64
 
   default => 0
65
 
  },
66
 
 
67
 
  {
68
 
   name => 'commentonaccept',
69
 
   type => 'b',
70
 
   default => 0
71
 
  },
72
 
 
73
 
  {
74
 
   name => 'commentonclearresolution',
75
 
   type => 'b',
76
 
   default => 0
77
 
  },
78
 
 
79
 
  {
80
 
   name => 'commentonconfirm',
81
 
   type => 'b',
82
 
   default => 0
83
 
  },
84
 
 
85
 
  {
86
 
   name => 'commentonresolve',
87
 
   type => 'b',
88
 
   default => 0
89
 
  },
90
 
 
91
 
  {
92
 
   name => 'commentonreassign',
93
 
   type => 'b',
94
 
   default => 0
95
 
  },
96
 
 
97
 
  {
98
 
   name => 'commentonreassignbycomponent',
99
 
   type => 'b',
100
 
   default => 0
101
 
  },
102
 
 
103
 
  {
104
 
   name => 'commentonreopen',
105
 
   type => 'b',
106
 
   default => 0
107
 
  },
108
 
 
109
 
  {
110
 
   name => 'commentonverify',
111
 
   type => 'b',
112
 
   default => 0
113
 
  },
114
 
 
115
 
  {
116
 
   name => 'commentonclose',
117
 
   type => 'b',
118
 
   default => 0
119
 
  },
120
 
 
121
 
  {
122
 
   name => 'commentonduplicate',
123
 
   type => 'b',
124
 
   default => 0
125
 
  },
126
 
 
127
 
  {
128
 
   name    => 'noresolveonopenblockers',
129
 
   type    => 'b',
130
 
   default => 0,
131
 
  } );
132
 
  return @param_list;
133
 
}
134
 
 
135
 
1;