diff options
author | terry%netscape.com <> | 1998-10-07 06:44:40 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-10-07 06:44:40 +0200 |
commit | ef330148fc297f5219600f8c62c532c048ea8e19 (patch) | |
tree | 6d6a08a4b52d576d9684704a48ddece1209787df | |
parent | 5e9f3b19b20c731d302e06b432ac105ca515aa02 (diff) | |
download | bugzilla-ef330148fc297f5219600f8c62c532c048ea8e19.tar.gz bugzilla-ef330148fc297f5219600f8c62c532c048ea8e19.tar.xz |
Added new "Webtools" product.
-rwxr-xr-x | makecomponenttable.sh | 3 | ||||
-rwxr-xr-x | makeproducttable.sh | 6 | ||||
-rwxr-xr-x | makeversiontable.sh | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/makecomponenttable.sh b/makecomponenttable.sh index 1a8f85cd7..4cef54e00 100755 --- a/makecomponenttable.sh +++ b/makecomponenttable.sh @@ -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; diff --git a/makeproducttable.sh b/makeproducttable.sh index f23a70140..5e478134d 100755 --- a/makeproducttable.sh +++ b/makeproducttable.sh @@ -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>.'); + diff --git a/makeversiontable.sh b/makeversiontable.sh index 2e8654779..98e0b52b8 100755 --- a/makeversiontable.sh +++ b/makeversiontable.sh @@ -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; |