summaryrefslogtreecommitdiffstats
path: root/makeproducttable.sh
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-02-03 11:46:50 +0100
committerterry%netscape.com <>1999-02-03 11:46:50 +0100
commit5ac3c944912d06910b0273dc801b04b981245ba3 (patch)
tree03d977fa86224dfce6481c003e8f9f775c0e66da /makeproducttable.sh
parent45bdc539bf1ab07333502d1ab63ae5c44dd05ddb (diff)
downloadbugzilla-5ac3c944912d06910b0273dc801b04b981245ba3.tar.gz
bugzilla-5ac3c944912d06910b0273dc801b04b981245ba3.tar.xz
Added support for URLs that describe the milestones for various projects.
Diffstat (limited to 'makeproducttable.sh')
-rwxr-xr-xmakeproducttable.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/makeproducttable.sh b/makeproducttable.sh
index 3a4f4d6a2..e9d8fc244 100755
--- a/makeproducttable.sh
+++ b/makeproducttable.sh
@@ -29,7 +29,8 @@ mysql << OK_ALL_DONE
use bugs;
create table products (
product tinytext,
-description mediumtext
+description mediumtext,
+milestoneurl tinytext not null
);
@@ -38,6 +39,6 @@ insert into products (product, description) values ("CCK", 'For bugs about the <
insert into products (product, description) values ("Directory", 'For bugs about the <a href="http://www.mozilla.org/directory">Directory (LDAP)</a> project');
insert into products (product, description) values ("MailNews", 'For bugs about the <a href="http://www.mozilla.org/mailnews/index.html">Mozilla Mail/News</a> project');
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, milestoneurl) values ("NGLayout", 'For bugs about the <a href="http://www.mozilla.org/newlayout/">New Layout</a> project', 'http://www.mozilla.org/projects/seamonkey/milestones');
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>.');