diff options
author | mkanat%bugzilla.org <> | 2009-09-30 10:55:03 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-09-30 10:55:03 +0200 |
commit | ac905a580c68bcf9b4ddaaff636969575aab4c64 (patch) | |
tree | ab9fe5dd41311b851148b0e5b85886e306b29cd5 /contrib | |
parent | dc4608b97cec3af3c7028717da291cd5e238a8d4 (diff) | |
download | bugzilla-ac905a580c68bcf9b4ddaaff636969575aab4c64.tar.gz bugzilla-ac905a580c68bcf9b4ddaaff636969575aab4c64.tar.xz |
Bug 488931: Change the default priority values to be human-readable words instead of P1, P2, etc.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/bugzilla-submit/bugzilla-submit | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | contrib/gnats2bz.pl | 14 | ||||
-rwxr-xr-x | contrib/gnatsparse/gnatsparse.py | 12 |
3 files changed, 14 insertions, 14 deletions
diff --git a/contrib/bugzilla-submit/bugzilla-submit b/contrib/bugzilla-submit/bugzilla-submit index 47c94b275..e1e9b64d8 100755 --- a/contrib/bugzilla-submit/bugzilla-submit +++ b/contrib/bugzilla-submit/bugzilla-submit @@ -158,7 +158,7 @@ def ensure_defaults(data): if 'bug_file_loc' not in data: data['bug_file_loc'] = 'http://' # Yes, Bugzilla needs this if 'priority' not in data: - data['priority'] = 'P2' + data['priority'] = 'Normal' def validate_fields(data): # Fields for validation diff --git a/contrib/gnats2bz.pl b/contrib/gnats2bz.pl index 0cd6a3258..27f3ad84a 100644..100755 --- a/contrib/gnats2bz.pl +++ b/contrib/gnats2bz.pl @@ -606,25 +606,25 @@ sub write_bugs { # Mapping from Severity,Priority to priority # At our site, the Severity,Priority fields have degenerated # into a 9-level priority field. - my($priority) = "P1"; + my($priority) = "Highest"; if (defined($pr_data{"Severity"}) && defined($pr_data{"Severity"})) { if ($pr_data{"Severity"} eq "critical") { if ($pr_data{"Priority"} eq "high") { - $priority = "P1"; + $priority = "Highest"; } else { - $priority = "P2"; + $priority = "High"; } } elsif ($pr_data{"Severity"} eq "serious") { if ($pr_data{"Priority"} eq "low") { - $priority = "P4"; + $priority = "Low"; } else { - $priority = "P3"; + $priority = "Normal"; } } else { if ($pr_data{"Priority"} eq "high") { - $priority = "P4"; + $priority = "Low"; } else { - $priority = "P5"; + $priority = "Lowest"; } } } diff --git a/contrib/gnatsparse/gnatsparse.py b/contrib/gnatsparse/gnatsparse.py index 21ec7a840..9eef18b89 100755 --- a/contrib/gnatsparse/gnatsparse.py +++ b/contrib/gnatsparse/gnatsparse.py @@ -552,19 +552,19 @@ class Bugzillabug(object): priority = self.fields["Priority"] if severity == "critical": if priority == "high": - self.fields["priority"] = "P1" + self.fields["priority"] = "Highest" else: - self.fields["priority"] = "P2" + self.fields["priority"] = "High" elif severity == "serious": if priority == "low": - self.fields["priority"] = "P4" + self.fields["priority"] = "Low" else: - self.fields["priority"] = "P3" + self.fields["priority"] = "Normal" else: if priority == "high": - self.fields["priority"] = "P4" + self.fields["priority"] = "Low" else: - self.fields["priority"] = "P5" + self.fields["priority"] = "Lowest" self.fields["priority"] = SqlQuote(self.fields["priority"]) state = self.fields["State"] if (state == "open" or state == "analyzed") and self.fields["userid"] != 3: |