Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
2d2a9e0e
Commit
2d2a9e0e
authored
Apr 17, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correcting my email address in the comments
parent
5cf2e3d7
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
14 deletions
+14
-14
RelationSet.pm
Bugzilla/RelationSet.pm
+1
-1
RelationSet.pm
RelationSet.pm
+1
-1
bug_form.pl
bug_form.pl
+1
-1
checksetup.pl
checksetup.pl
+6
-6
editgroups.cgi
editgroups.cgi
+1
-1
editusers.cgi
editusers.cgi
+1
-1
enter_bug.cgi
enter_bug.cgi
+1
-1
process_bug.cgi
process_bug.cgi
+1
-1
userprefs.cgi
userprefs.cgi
+1
-1
No files found.
Bugzilla/RelationSet.pm
View file @
2d2a9e0e
...
...
@@ -18,7 +18,7 @@
#
# Contributor(s): Dan Mosedale <dmose@mozilla.org>
# Terry Weissman <terry@mozilla.org>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
# This object models a set of relations between one item and a group
# of other items. An example is the set of relations between one bug
...
...
RelationSet.pm
View file @
2d2a9e0e
...
...
@@ -18,7 +18,7 @@
#
# Contributor(s): Dan Mosedale <dmose@mozilla.org>
# Terry Weissman <terry@mozilla.org>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
# This object models a set of relations between one item and a group
# of other items. An example is the set of relations between one bug
...
...
bug_form.pl
View file @
2d2a9e0e
...
...
@@ -18,7 +18,7 @@
# Rights Reserved.
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
use
diagnostics
;
use
strict
;
...
...
checksetup.pl
View file @
2d2a9e0e
...
...
@@ -21,7 +21,7 @@
# Contributor(s): Holger Schurig <holgerschurig@nikocity.de>
# Terry Weissman <terry@mozilla.org>
# Dan Mosedale <dmose@mozilla.org>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
#
#
# Direct any questions on this source code to
...
...
@@ -101,8 +101,8 @@ use strict;
# This are the --LOCAL-- variables defined in 'localconfig'
#
# 12/17/00
dave@intrec.com - removed declarations of the localconfig variables
# from this location. We don't want these declared here. They'll
# 12/17/00
justdave@syndicomm.com - removed declarations of the localconfig
#
variables
from this location. We don't want these declared here. They'll
# automatically get declared in the process of reading in localconfig, and
# this way we can look in the symbol table to see if they've been declared
# yet or not.
...
...
@@ -420,7 +420,7 @@ if ($newstuff ne "") {
exit
;
}
# 2000-Dec-18 -
dave@intrec
.com - see Bug 52921
# 2000-Dec-18 -
justdave@syndicomm
.com - see Bug 52921
# This is a hack to read in the values defined in localconfig without getting
# them predeclared at compile time if they're missing from localconfig.
# Ideas swiped from pp. 281-282, O'Reilly's "Programming Perl 2nd Edition"
...
...
@@ -575,8 +575,8 @@ if ($my_db_check) {
# original DSN line was:
# my $dsn = "DBI:$db_base:$my_db_name;$my_db_host;$my_db_port";
# removed the $db_name because we don't know it exists yet, and this will
#
fail if we request it here and it doesn't. - dave@intrec
.com 2000/09/16
# removed the $db_name because we don't know it exists yet, and this will
fail
#
if we request it here and it doesn't. - justdave@syndicomm
.com 2000/09/16
my
$dsn
=
"DBI:$db_base:;$my_db_host;$my_db_port"
;
my
$dbh
=
DBI
->
connect
(
$dsn
,
$my_db_user
,
$my_db_pass
);
printf
(
"Checking for %15s %-9s "
,
"MySQL Server"
,
"(v$sql_want)"
);
...
...
editgroups.cgi
View file @
2d2a9e0e
...
...
@@ -18,7 +18,7 @@
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Dave Miller <
dave@intrec
.com>
# Contributor(s): Dave Miller <
justdave@syndicomm
.com>
# Code derived from editowners.cgi and editusers.cgi
...
...
editusers.cgi
View file @
2d2a9e0e
...
...
@@ -19,7 +19,7 @@
# Rights Reserved.
#
# Contributor(s): Holger Schurig <holgerschurig@nikocity.de>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
# Joe Robins <jmrobins@tgix.com>
# Dan Mosedale <dmose@mozilla.org>
#
...
...
enter_bug.cgi
View file @
2d2a9e0e
...
...
@@ -18,7 +18,7 @@
# Netscape Communications Corporation. All Rights Reserved.
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
# Joe Robins <jmrobins@tgix.com>
...
...
process_bug.cgi
View file @
2d2a9e0e
...
...
@@ -20,7 +20,7 @@
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dan Mosedale <dmose@mozilla.org>
# Dave Miller <
dave@intrec
.com>
# Dave Miller <
justdave@syndicomm
.com>
use
diagnostics
;
use
strict
;
...
...
userprefs.cgi
View file @
2d2a9e0e
...
...
@@ -16,7 +16,7 @@
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dan Mosedale <dmose@mozilla.org>
# Alan Raetz <al_raetz@yahoo.com>
# David Miller <
dave@intrec
.com>
# David Miller <
justdave@syndicomm
.com>
#
use
diagnostics
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment