# Chris Yeh <cyeh@bluemartini.com>
# Bradley Baetz <bbaetz@acm.org>
# Dave Miller <justdave@bugzilla.org>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
# Frédéric Buclin <LpSolit@gmail.com>
package Bugzilla::Bug;
# Bradley Baetz <bbaetz@student.usyd.edu.au>
# Christopher Aillon <christopher@aillon.com>
# Shane H. W. Travis <travis@sedsystems.ca>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::Constants;
use strict;
# Bradley Baetz <bbaetz@student.usyd.edu.au>
# Christopher Aillon <christopher@aillon.com>
# Tomas Kopal <Tomas.Kopal@altap.cz>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::DB;
# Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
# Dave Lawrence <dkl@redhat.com>
# Tomas Kopal <Tomas.Kopal@altap.cz>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
=head1 NAME
# Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
# Dave Lawrence <dkl@redhat.com>
# Tomas Kopal <Tomas.Kopal@altap.cz>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
=head1 NAME
#
# Contributor(s): Andrew Dunstan <andrew@dunslane.net>,
# Edward J. Sabol <edwardjsabol@iname.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::DB::Schema;
#
# Contributor(s): Andrew Dunstan <andrew@dunslane.net>,
# Edward J. Sabol <edwardjsabol@iname.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::DB::Schema::Mysql;
#
# Contributor(s): Andrew Dunstan <andrew@dunslane.net>,
# Edward J. Sabol <edwardjsabol@iname.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::DB::Schema::Pg;
# Andreas Franke <afranke@mathweb.org>
# Myk Melez <myk@mozilla.org>
# Michael Schindler <michael@compressconsult.com>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
use strict;
# Christopher Aillon <christopher@aillon.com>
# Tobias Burnus <burnus@net-b.de>
# Myk Melez <myk@mozilla.org>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::Template;
# Joel Peshkin <bugreport@peshkin.net>
# Byron Jones <bugzilla@glob.com.au>
# Shane H. W. Travis <travis@sedsystems.ca>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
# Gervase Markham <gerv@gerv.net>
################################################################################
# The Original Code is the Bugzilla Bug Tracking System.
#
# Contributor(s): Shane H. W. Travis <travis@sedsystems.ca>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
#
# Jacob Steenhagen <jake@bugzilla.org>
# Bradley Baetz <bbaetz@student.usyd.edu.au>
# Christopher Aillon <christopher@aillon.com>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
package Bugzilla::Util;
# Stephan Niemz <st.n@gmx.net>
# Andreas Franke <afranke@mathweb.org>
# Myk Melez <myk@mozilla.org>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
################################################################################
# Script Initialization
# Gervase Markham <gerv@gerv.net>
# Erik Stambaugh <erik@dasbistro.com>
# Dave Lawrence <dkl@redhat.com>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
#
#
#
my $my_index_html = ${*{$main::{'index_html'}}{SCALAR}};
my $my_create_htaccess = ${*{$main::{'create_htaccess'}}{SCALAR}};
my $my_webservergroup = ${*{$main::{'webservergroup'}}{SCALAR}};
-# mkanat@kerio.com - bug 17453
+# mkanat@bugzilla.org - bug 17453
# The following values have been removed from localconfig.
# However, if we are upgrading from a Bugzilla with enums to a
# Bugzilla without enums, we use these values one more time so
# Detect changed local settings
###########################################################################
-# mkanat@kerio.com - bug 17453
+# mkanat@bugzilla.org - bug 17453
# Create the values for the tables that hold what used to be enum types.
# Don't populate the tables if the table isn't empty.
sub PopulateEnumTable ($@) {
}
}
-# mkanat@kerio.com - bug 17453
+# mkanat@bugzilla.org - bug 17453
# Set default values for what used to be the enum types.
# These values are no longer stored in localconfig.
# However, if we are upgrading from a Bugzilla with enums to a
$dbh->bz_add_column('whine_schedules', 'mailto_type',
{TYPE => 'INT2', NOTNULL => 1, DEFAULT => '0'});
-# 2005-01-29 - mkanat@kerio.com
+# 2005-01-29 - mkanat@bugzilla.org
if (!$dbh->bz_column_info('longdescs', 'already_wrapped')) {
# Old, pre-wrapped comments should not be auto-wrapped
$dbh->bz_add_column('longdescs', 'already_wrapped',
# The Initial Developer of the Original Code is Albert Ting
#
# Contributor(s): Albert Ting <alt@sonic.net>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
#
# Direct any questions on this source code to mozilla.org
#
# The Original Code is the Bugzilla Bug Tracking System.
#
-# Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
# This is a script to edit the values of fields that have drop-down
# or select boxes. It is largely a copy of editmilestones.cgi, but
# Christopher Aillon <christopher@aillon.com>
# Joel Peshkin <bugreport@peshkin.net>
# Dave Lawrence <dkl@redhat.com>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
# Contains some global variables and routines used throughout bugzilla.
# Matthias Radestock <matthias@sorted.org>
# Gervase Markham <gerv@gerv.net>
# Byron Jones <bugzilla@glob.com.au>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
use strict;
use lib ".";
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Matthew Tuck <matty@chariot.net.au>
-# Max Kanat-Alexander <mkanat@kerio.com>
+# Max Kanat-Alexander <mkanat@bugzilla.org>
use strict;
["flaginclusions", "product_id", "type_id"],
["flagexclusions", "product_id", "type_id"]);
-# Check the former enum types -mkanat@kerio.com
+# Check the former enum types -mkanat@bugzilla.org
CrossCheck("bug_status", "value",
["bugs", "bug_status"]);
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#
#%]
#
# The Original Code is the Bugzilla Bug Tracking System.
#
- # Contributor(s): Max Kanat-Alexander <mkanat@kerio.com>
+ # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
[%# INTERFACE:
# Rights Reserved.
#
# Contributor(s): Gervase Markham <gerv@gerv.net>
- # Maxwell Kanat-Alexander <mkanat@kerio.com>
+ # Max Kanat-Alexander <mkanat@bugzilla.org>
# Shane H. W. Travis <travis@sedsystems.ca>
#%]