diff options
author | terry%netscape.com <> | 1998-11-10 05:22:52 +0100 |
---|---|---|
committer | terry%netscape.com <> | 1998-11-10 05:22:52 +0100 |
commit | 0e520819b8244fbaa7d3c31f04b81616aae0f83b (patch) | |
tree | 0891bb3e4653a9f2e30b801ffc37597e5c5bc806 | |
parent | 20e43ca7ef4f828223af00f23edbcb2068a78b5d (diff) | |
download | bugzilla-0e520819b8244fbaa7d3c31f04b81616aae0f83b.tar.gz bugzilla-0e520819b8244fbaa7d3c31f04b81616aae0f83b.tar.xz |
Add Directory LDAP stuff.
-rwxr-xr-x | makecomponenttable.sh | 5 | ||||
-rwxr-xr-x | makeproducttable.sh | 1 | ||||
-rwxr-xr-x | makeversiontable.sh | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/makecomponenttable.sh b/makecomponenttable.sh index ef6b03979..e9282aabd 100755 --- a/makecomponenttable.sh +++ b/makecomponenttable.sh @@ -44,6 +44,11 @@ insert into components (value, program, initialowner) values ("UI", "Calendar", insert into components (value, program, initialowner) values ("Test", "Calendar", "sman@netscape.com"); insert into components (value, program, initialowner) values ("Install", "Calendar", "sman@netscape.com"); +insert into components (value, program, initialowner) values ("LDAP C SDK", "Directory", "chuckb@netscape.com"); +insert into components (value, program, initialowner) values ("LDAP Java SDK", "Directory", "chuckb@netscape.com"); +insert into components (value, program, initialowner) values ("PerLDAP", "Directory", "leif@netscape.com"); +insert into components (value, program, initialowner) values ("LDAP Tools", "Directory", "chuckb@netscape.com"); + insert into components (value, program, initialowner) values ("Macintosh FE", "Mozilla", "sdagley@netscape.com"); insert into components (value, program, initialowner) values ("Windows FE", "Mozilla", "blythe@netscape.com"); diff --git a/makeproducttable.sh b/makeproducttable.sh index 6b4d1ac1e..fc3d2be04 100755 --- a/makeproducttable.sh +++ b/makeproducttable.sh @@ -34,6 +34,7 @@ description mediumtext insert into products (product, description) values ("Calendar", 'For bugs about the <a href="http://www.mozilla.org/projects/calendar">Calendar</a> project'); +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 ("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 e050baf21..c51750f79 100755 --- a/makeversiontable.sh +++ b/makeversiontable.sh @@ -35,6 +35,7 @@ program tinytext insert into versions (value, program) values ("other", "Calendar"); +insert into versions (value, program) values ("other", "Directory"); insert into versions (value, program) values ("other", "Mozilla"); insert into versions (value, program) values ("1998-03-31", "Mozilla"); insert into versions (value, program) values ("1998-04-08", "Mozilla"); |