From e39a1db4115cfd721fa65c746e7699e79cda87ae Mon Sep 17 00:00:00 2001 From: "ghendricks%novell.com" <> Date: Wed, 20 May 2009 23:09:55 +0000 Subject: Bug 493090 - Product disallownew should be converted to isactive patch by ghendricks r=mkanat a=mkanat --- contrib/gnats2bz.pl | 4 ++-- contrib/gnatsparse/gnatsparse.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'contrib') diff --git a/contrib/gnats2bz.pl b/contrib/gnats2bz.pl index 95ae32ad9..0cd6a3258 100644 --- a/contrib/gnats2bz.pl +++ b/contrib/gnats2bz.pl @@ -780,10 +780,10 @@ sub write_non_bugs_tables { print DATA "\ninsert into products (\n"; print DATA - " product, description, milestoneurl, disallownew\n"; + " product, description, milestoneurl, isactive\n"; print DATA ") values (\n"; print DATA - " $product, $description, '', 0\n"; + " $product, $description, '', 1\n"; print DATA ");\n"; print DATA "\ninsert into components (\n"; diff --git a/contrib/gnatsparse/gnatsparse.py b/contrib/gnatsparse/gnatsparse.py index c70993493..21ec7a840 100755 --- a/contrib/gnatsparse/gnatsparse.py +++ b/contrib/gnatsparse/gnatsparse.py @@ -144,9 +144,9 @@ def write_non_bug_tables(): # Insert the products print >>outfile, "\ninsert into products (" - print >>outfile, " product, description, milestoneurl, disallownew," + print >>outfile, " product, description, milestoneurl, isactive," print >>outfile, " defaultmilestone, votestoconfirm) values (" - print >>outfile, " '%s', '%s', '%s', 0, '%s', 1);" % (product, + print >>outfile, " '%s', '%s', '%s', 1, '%s', 1);" % (product, productdesc, milestoneurl, defaultmilestone) -- cgit v1.2.3-24-g4f1b