summaryrefslogtreecommitdiffstats
path: root/makeproducttable.sh
diff options
context:
space:
mode:
authorterry%netscape.com <>1998-10-07 06:44:40 +0200
committerterry%netscape.com <>1998-10-07 06:44:40 +0200
commitef330148fc297f5219600f8c62c532c048ea8e19 (patch)
tree6d6a08a4b52d576d9684704a48ddece1209787df /makeproducttable.sh
parent5e9f3b19b20c731d302e06b432ac105ca515aa02 (diff)
downloadbugzilla-ef330148fc297f5219600f8c62c532c048ea8e19.tar.gz
bugzilla-ef330148fc297f5219600f8c62c532c048ea8e19.tar.xz
Added new "Webtools" product.
Diffstat (limited to 'makeproducttable.sh')
-rwxr-xr-xmakeproducttable.sh6
1 files changed, 4 insertions, 2 deletions
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>.');
+