]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Added new "Webtools" product.
authorterry%netscape.com <>
Wed, 7 Oct 1998 04:44:40 +0000 (04:44 +0000)
committerterry%netscape.com <>
Wed, 7 Oct 1998 04:44:40 +0000 (04:44 +0000)
makecomponenttable.sh
makeproducttable.sh
makeversiontable.sh

index 1a8f85cd72180bdd4aee91397c4540734b84ea5d..4cef54e00ca49448d6883371f0c34910dd0aa9fa 100755 (executable)
@@ -118,6 +118,9 @@ insert into components (value, program, initialowner) values ("Viewer App", "NGL
 insert into components (value, program, initialowner) values ("Widget Set", "NGLayout", "kmcclusk@netscape.com");
 insert into components (value, program, initialowner) values ("XPCOM", "NGLayout", "scullin@netscape.com");
 
+insert into components (value, program, initialowner) values ("Bonsai", "Webtools", "terry@mozilla.org");
+insert into components (value, program, initialowner) values ("Bugzilla", "Webtools", "terry@mozilla.org");
+insert into components (value, program, initialowner) values ("Tinderbox", "Webtools", "terry@mozilla.org");
 
 
 select * from components;
index f23a701408f441f0a093706447e5922fd2262e19..5e478134d68120b4b8f3a61700bbeca1859dff98 100755 (executable)
@@ -29,10 +29,12 @@ mysql << OK_ALL_DONE
 use bugs;
 create table products (
 product tinytext,
-description tinytext
+description mediumtext
 );
 
 
-insert into products (product, description) values ("Bugzilla", "Use this to describe a problem you're having with the bug system itself");
+insert into products (product, description) values ("Bugzilla", "Please don't use this!  This product is going away very very soon. Please use 'Webtools' instead.");
 insert into products (product, description) values ("Mozilla", "For bugs about the Mozilla web browser");
 insert into products (product, description) values ("NGLayout", 'For bugs about the <a href="http://www.mozilla.org/newlayout/">New Layout</a> project');
+insert into products (product, description) values ("Webtools", 'For bugs about the web-based tools that mozilla.org uses.  This include Bugzilla (problems you are having with this bug system itself), <a href="http://www.mozilla.org/bonsai.html">Bonsai</a>, and <a href="http://www.mozilla.org/tinderbox.html">Tinderbox</a>.');
+
index 2e86547791bbb6dcaa8ef2346d6aba99385d5aae..98e0b52b8a88a2a2d8c0693fe73fd62466ae328b 100755 (executable)
@@ -44,6 +44,7 @@ insert into versions (value, program) values ("1998-09-04", "Mozilla");
 insert into versions (value, program) values ("1.0", "Bugzilla");
 insert into versions (value, program) values ("other", "Bugzilla");
 insert into versions (value, program) values ("other", "NGLayout");
+insert into versions (value, program) values ("other", "Webtools");
 
 select * from versions;