From ac905a580c68bcf9b4ddaaff636969575aab4c64 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Wed, 30 Sep 2009 08:55:03 +0000 Subject: Bug 488931: Change the default priority values to be human-readable words instead of P1, P2, etc. Patch by Max Kanat-Alexander r=dkl, a=mkanat --- contrib/bugzilla-submit/bugzilla-submit | 2 +- contrib/gnats2bz.pl | 14 +++++++------- contrib/gnatsparse/gnatsparse.py | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) mode change 100644 => 100755 contrib/gnats2bz.pl (limited to 'contrib') 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 old mode 100644 new mode 100755 index 0cd6a3258..27f3ad84a --- 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: -- cgit v1.2.3-24-g4f1b