Bug 40933

Merge Bugzilla 3.2.3 into our trunk


git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@164 6955db30-a419-402b-8a0d-67ecbb4d7f56
custis
svnuser 2009-05-19 14:26:10 +00:00
parent 25390b88aa
commit 42b5147d15
120 changed files with 590 additions and 382 deletions

View File

@ -76,7 +76,7 @@ sub get_param_list {
name => 'maxattachmentsize', name => 'maxattachmentsize',
type => 't', type => 't',
default => '1000', default => '1000',
checker => \&check_numeric checker => \&check_maxattachmentsize
}, },
# The maximum size (in bytes) for patches and non-patch attachments. # The maximum size (in bytes) for patches and non-patch attachments.

View File

@ -50,7 +50,8 @@ use base qw(Exporter);
check_opsys check_shadowdb check_urlbase check_webdotbase check_opsys check_shadowdb check_urlbase check_webdotbase
check_netmask check_user_verify_class check_image_converter check_netmask check_user_verify_class check_image_converter
check_mail_delivery_method check_notification check_timezone check_utf8 check_mail_delivery_method check_notification check_timezone check_utf8
check_bug_status check_smtp_auth check_bug_status check_smtp_auth
check_maxattachmentsize
); );
# Checking functions for the various values # Checking functions for the various values
@ -320,6 +321,24 @@ sub check_mail_delivery_method {
return ""; return "";
} }
sub check_maxattachmentsize {
my $check = check_numeric(@_);
return $check if $check;
my $size = shift;
my $dbh = Bugzilla->dbh;
if ($dbh->isa('Bugzilla::DB::Mysql')) {
my (undef, $max_packet) = $dbh->selectrow_array(
q{SHOW VARIABLES LIKE 'max\_allowed\_packet'});
my $byte_size = $size * 1024;
if ($max_packet < $byte_size) {
return "You asked for a maxattachmentsize of $byte_size bytes,"
. " but the max_allowed_packet setting in MySQL currently"
. " only allows packets up to $max_packet bytes";
}
}
return "";
}
sub check_notification { sub check_notification {
my $option = shift; my $option = shift;
my @current_version = my @current_version =

View File

@ -159,7 +159,7 @@ use File::Basename;
# CONSTANTS # CONSTANTS
# #
# Bugzilla version # Bugzilla version
use constant BUGZILLA_VERSION => "3.2.2"; use constant BUGZILLA_VERSION => "3.2.3";
# These are unique values that are unlikely to match a string or a number, # These are unique values that are unlikely to match a string or a number,
# to be used in criteria for match() functions and other things. They start # to be used in criteria for match() functions and other things. They start

View File

@ -44,6 +44,7 @@ package Bugzilla::DB::Mysql;
use strict; use strict;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Install::Util qw(install_string);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::DB::Schema::Mysql; use Bugzilla::DB::Schema::Mysql;
@ -97,20 +98,9 @@ sub new {
} }
} }
# The "comments" field of the bugs_fulltext table could easily exceed # Allow large GROUP_CONCATs (largely for inserting comments
# MySQL's default max_allowed_packet. Also, MySQL should never have # into bugs_fulltext).
# a max_allowed_packet smaller than our max_attachment_size. However, $self->do('SET SESSION group_concat_max_len = 128000000');
# if we've already set a max_allowed_packet in MySQL bigger than all
# of those, we should keep it.
my (undef, $current_max_allowed) = $self->selectrow_array(
q{SHOW VARIABLES LIKE 'max\_allowed\_packet'});
my $min_max_allowed_packet = MAX_COMMENTS * MAX_COMMENT_LENGTH;
my $max_allowed_packet = max($min_max_allowed_packet,
$current_max_allowed,
# This parameter is not yet defined when the DB
# is being built for the very first time.
Bugzilla->params->{'maxattachmentsize'} || 0);
$self->do("SET SESSION max_allowed_packet = $max_allowed_packet");
return $self; return $self;
} }
@ -244,6 +234,24 @@ sub _bz_get_initial_schema {
sub bz_setup_database { sub bz_setup_database {
my ($self) = @_; my ($self) = @_;
# The "comments" field of the bugs_fulltext table could easily exceed
# MySQL's default max_allowed_packet. Also, MySQL should never have
# a max_allowed_packet smaller than our max_attachment_size. So, we
# warn the user here if max_allowed_packet is too small.
my $min_max_allowed = MAX_COMMENTS * MAX_COMMENT_LENGTH;
my (undef, $current_max_allowed) = $self->selectrow_array(
q{SHOW VARIABLES LIKE 'max\_allowed\_packet'});
# This parameter is not yet defined when the DB is being built for
# the very first time. The code below still works properly, however,
# because the default maxattachmentsize is smaller than $min_max_allowed.
my $max_attachment = (Bugzilla->params->{'maxattachmentsize'} || 0) * 1024;
my $needed_max_allowed = max($min_max_allowed, $max_attachment);
if ($current_max_allowed < $needed_max_allowed) {
warn install_string('max_allowed_packet',
{ current => $current_max_allowed,
needed => $needed_max_allowed }) . "\n";
}
# Make sure the installation has InnoDB turned on, or we're going to be # Make sure the installation has InnoDB turned on, or we're going to be
# doing silly things like making foreign keys on MyISAM tables, which is # doing silly things like making foreign keys on MyISAM tables, which is
# hard to fix later. We do this up here because none of the code below # hard to fix later. We do this up here because none of the code below

View File

@ -56,7 +56,20 @@ sub MessageToMTA {
my $method = Bugzilla->params->{'mail_delivery_method'}; my $method = Bugzilla->params->{'mail_delivery_method'};
return if $method eq 'None'; return if $method eq 'None';
my $email = ref($msg) ? $msg : Email::MIME->new($msg); my $email;
if (ref $msg) {
$email = $msg;
}
else {
# RFC 2822 requires us to have CRLF for our line endings and
# Email::MIME doesn't do this for us. We use \015 (CR) and \012 (LF)
# directly because Perl translates "\n" depending on what platform
# you're running on. See http://perldoc.perl.org/perlport.html#Newlines
# We check for multiple CRs because of this Template-Toolkit bug:
# https://rt.cpan.org/Ticket/Display.html?id=43345
$msg =~ s/(?:\015+)?\012/\015\012/msg;
$email = new Email::MIME($msg);
}
# We add this header to mark the mail as "auto-generated" and # We add this header to mark the mail as "auto-generated" and
# thus to hopefully avoid auto replies. # thus to hopefully avoid auto replies.

View File

@ -181,7 +181,13 @@ sub issue_hash_token {
# The concatenated string is of the form # The concatenated string is of the form
# token creation time + site-wide secret + user ID + data # token creation time + site-wide secret + user ID + data
my @args = ($time, Bugzilla->localconfig->{'site_wide_secret'}, Bugzilla->user->id, @$data); my @args = ($time, Bugzilla->localconfig->{'site_wide_secret'}, Bugzilla->user->id, @$data);
my $token = md5_hex(join('*', @args));
my $token = join('*', @args);
# Wide characters cause md5_hex() to die.
if (Bugzilla->params->{'utf8'}) {
utf8::encode($token) if utf8::is_utf8($token);
}
$token = md5_hex($token);
# Prepend the token creation time, unencrypted, so that the token # Prepend the token creation time, unencrypted, so that the token
# lifetime can be validated. # lifetime can be validated.

View File

@ -207,7 +207,7 @@ sub xml_quote {
# (#x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]) # (#x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF])
$var =~ s/([\x{0001}-\x{0008}]| $var =~ s/([\x{0001}-\x{0008}]|
[\x{000B}-\x{000C}]| [\x{000B}-\x{000C}]|
[\x{000E}-\x{0019}]| [\x{000E}-\x{001F}]|
[\x{D800}-\x{DFFF}]| [\x{D800}-\x{DFFF}]|
[\x{FFFE}-\x{FFFF}])//gx; [\x{FFFE}-\x{FFFF}])//gx;
return $var; return $var;

View File

@ -618,6 +618,9 @@ sub update {
($vars->{'operations'}) = ($vars->{'operations'}) =
Bugzilla::Bug::GetBugActivity($bug->id, $attachment->id, $cgi->param('delta_ts')); Bugzilla::Bug::GetBugActivity($bug->id, $attachment->id, $cgi->param('delta_ts'));
# The token contains the old modification_time. We need a new one.
$cgi->param('token', issue_hash_token([$attachment->id, $attachment->modification_time]));
# If the modification date changed but there is no entry in # If the modification date changed but there is no entry in
# the activity table, this means someone commented only. # the activity table, this means someone commented only.
# In this case, there is no reason to midair. # In this case, there is no reason to midair.
@ -632,6 +635,12 @@ sub update {
exit; exit;
} }
} }
# We couldn't do this check earlier as we first had to validate attachment ID
# and display the mid-air collision page if modification_time changed.
my $token = $cgi->param('token');
check_hash_token($token, [$attachment->id, $attachment->modification_time]);
# If the submitter of the attachment is not in the insidergroup, # If the submitter of the attachment is not in the insidergroup,
# be sure that he cannot overwrite the private bit. # be sure that he cannot overwrite the private bit.
# This check must be done before calling Bugzilla::Flag*::validate(), # This check must be done before calling Bugzilla::Flag*::validate(),

View File

@ -1138,7 +1138,11 @@ if ($dotweak && scalar @bugs) {
} }
$vars->{'dotweak'} = 1; $vars->{'dotweak'} = 1;
$vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count(); $vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count();
# issue_session_token needs to write to the master DB.
Bugzilla->switch_to_main_db();
$vars->{'token'} = issue_session_token('buglist_mass_change'); $vars->{'token'} = issue_session_token('buglist_mass_change');
Bugzilla->switch_to_shadow_db();
$vars->{'products'} = Bugzilla->user->get_enterable_products; $vars->{'products'} = Bugzilla->user->get_enterable_products;
$vars->{'platforms'} = get_legal_field_values('rep_platform'); $vars->{'platforms'} = get_legal_field_values('rep_platform');

View File

@ -28,6 +28,7 @@ use lib qw(. lib);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Util;
use Bugzilla::CGI; use Bugzilla::CGI;
use Bugzilla::Search::Saved; use Bugzilla::Search::Saved;
use Bugzilla::Error; use Bugzilla::Error;
@ -187,7 +188,7 @@ if (defined $cgi->param('query_based_on')) {
# Only allow users to edit their own queries. # Only allow users to edit their own queries.
if ($search && $search->user->id == Bugzilla->user->id) { if ($search && $search->user->id == Bugzilla->user->id) {
$vars->{'saved_search'} = $search; $vars->{'saved_search'} = $search;
$vars->{'buffer'} = "cmdtype=runnamed&namedcmd=".$search->name; $vars->{'buffer'} = "cmdtype=runnamed&namedcmd=". url_quote($search->name);
my $params = new Bugzilla::CGI($search->url); my $params = new Bugzilla::CGI($search->url);
if ($params->param('columnlist')) { if ($params->param('columnlist')) {

View File

@ -149,16 +149,9 @@ if ($switch{'guess'}) {
my $root = ROOT_USER; my $root = ROOT_USER;
print STDERR <<EOT; print STDERR <<EOT;
Using --guess requires that Encode::Detect be installed. To install Using --guess requires that Encode::Detect be installed. To install
Encode::Detect, first download it from: Encode::Detect, run the following command:
http://search.cpan.org/dist/Encode-Detect/ $^X install-module.pl Encode::Detect
Then, unpack it into its own directory and run the following commands
in that directory, as $root:
./Build.PL
./Build
./Build install
EOT EOT
exit; exit;
@ -248,7 +241,10 @@ foreach my $table ($dbh->bz_table_list_real) {
while (my @result = $sth->fetchrow_array) { while (my @result = $sth->fetchrow_array) {
my $data = shift @result; my $data = shift @result;
my $digest = md5_base64($data); # Wide characters cause md5_base64() to die.
my $digest_data = utf8::is_utf8($data)
? Encode::encode_utf8($data) : $data;
my $digest = md5_base64($digest_data);
my @primary_keys = reverse split(',', $pk); my @primary_keys = reverse split(',', $pk);
# We copy the array so that we can pop things from it without # We copy the array so that we can pop things from it without

View File

@ -2,7 +2,7 @@
<HTML <HTML
><HEAD ><HEAD
><TITLE ><TITLE
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TITLE Release</TITLE
><META ><META
NAME="GENERATOR" NAME="GENERATOR"
@ -43,7 +43,7 @@ CLASS="TITLEPAGE"
CLASS="title" CLASS="title"
><A ><A
NAME="AEN2" NAME="AEN2"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</A Release</A
></H1 ></H1
><H3 ><H3
@ -51,7 +51,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3 >The Bugzilla Team</H3
><P ><P
CLASS="pubdate" CLASS="pubdate"
>2009-02-03<BR></P >2009-03-30<BR></P
><DIV ><DIV
><DIV ><DIV
CLASS="abstract" CLASS="abstract"
@ -714,7 +714,7 @@ NAME="newversions"
>1.3. New Versions</A >1.3. New Versions</A
></H2 ></H2
><P ><P
>&#13; This is the 3.2.2 version of The Bugzilla Guide. It is so named >&#13; This is the 3.2.3 version of The Bugzilla Guide. It is so named
to match the current version of Bugzilla. to match the current version of Bugzilla.
</P </P
><P ><P
@ -2751,8 +2751,51 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN476" NAME="mysql-max-allowed-packet"
>2.2.2.2.1. Allow small words in full-text indexes</A >2.2.2.2.1. Allow large attachments and many comments</A
></H5
><P
>By default, MySQL will only allow you to insert things
into the database that are smaller than 64KB. Attachments
may be larger than this. Also, Bugzilla combines all comments
on a single bug into one field for full-text searching, and the
combination of all comments on a single bug are very likely to
be larger than 64KB.</P
><P
>To change MySQL's default, you need to edit your MySQL
configuration file, which is usually <TT
CLASS="filename"
>/etc/my.cnf</TT
>
on Linux. We recommend that you allow at least 4MB packets by
adding the "max_allowed_packet" parameter to your MySQL
configuration in the "[mysqld]" section, like this:</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="screen"
>[mysqld]
# Allow packets up to 4MB
max_allowed_packet=4M
</PRE
></FONT
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN482"
>2.2.2.2.2. Allow small words in full-text indexes</A
></H5 ></H5
><P ><P
>By default, words must be at least four characters in length >By default, words must be at least four characters in length
@ -2799,7 +2842,7 @@ CLASS="section"
CLASS="section" CLASS="section"
><A ><A
NAME="install-setupdatabase-adduser" NAME="install-setupdatabase-adduser"
>2.2.2.2.2. Add a user to MySQL</A >2.2.2.2.3. Add a user to MySQL</A
></H5 ></H5
><P ><P
>&#13; You need to add a new MySQL user for Bugzilla to use. >&#13; You need to add a new MySQL user for Bugzilla to use.
@ -2892,8 +2935,8 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN503" NAME="AEN509"
>2.2.2.2.3. Permit attachments table to grow beyond 4GB</A >2.2.2.2.4. Permit attachments table to grow beyond 4GB</A
></H5 ></H5
><P ><P
>&#13; By default, MySQL will limit the size of a table to 4GB. >&#13; By default, MySQL will limit the size of a table to 4GB.
@ -2992,7 +3035,7 @@ CLASS="section"
><H5 ><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN519" NAME="AEN525"
>2.2.2.3.1. Add a User to PostgreSQL</A >2.2.2.3.1. Add a User to PostgreSQL</A
></H5 ></H5
><P ><P
@ -3077,7 +3120,7 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN535" NAME="AEN541"
>2.2.2.3.2. Configure PostgreSQL</A >2.2.2.3.2. Configure PostgreSQL</A
></H5 ></H5
><P ><P
@ -3138,7 +3181,7 @@ CLASS="section"
><H5 ><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN551" NAME="AEN557"
>2.2.2.4.1. Create a New Tablespace</A >2.2.2.4.1. Create a New Tablespace</A
></H5 ></H5
><P ><P
@ -3190,7 +3233,7 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN559" NAME="AEN565"
>2.2.2.4.2. Add a User to Oracle</A >2.2.2.4.2. Add a User to Oracle</A
></H5 ></H5
><P ><P
@ -3246,7 +3289,7 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN567" NAME="AEN573"
>2.2.2.4.3. Configure the Web Server</A >2.2.2.4.3. Configure the Web Server</A
></H5 ></H5
><P ><P
@ -3284,7 +3327,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN573" NAME="AEN579"
>2.2.3. checksetup.pl</A >2.2.3. checksetup.pl</A
></H3 ></H3
><P ><P
@ -4104,7 +4147,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN723" NAME="AEN729"
>2.3.1. Bug Graphs</A >2.3.1. Bug Graphs</A
></H3 ></H3
><P ><P
@ -5221,7 +5264,7 @@ CLASS="section"
><H3 ><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN890" NAME="AEN896"
>2.6.1. Introduction</A >2.6.1. Introduction</A
></H3 ></H3
><P ><P
@ -5241,7 +5284,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN894" NAME="AEN900"
>2.6.2. MySQL</A >2.6.2. MySQL</A
></H3 ></H3
><P ><P
@ -5297,7 +5340,7 @@ CLASS="section"
><HR><H4 ><HR><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN902" NAME="AEN908"
>2.6.2.1. Running MySQL as Non-Root</A >2.6.2.1. Running MySQL as Non-Root</A
></H4 ></H4
><DIV ><DIV
@ -5305,7 +5348,7 @@ CLASS="section"
><H5 ><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN904" NAME="AEN910"
>2.6.2.1.1. The Custom Configuration Method</A >2.6.2.1.1. The Custom Configuration Method</A
></H5 ></H5
><P ><P
@ -5349,7 +5392,7 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN908" NAME="AEN914"
>2.6.2.1.2. The Custom Built Method</A >2.6.2.1.2. The Custom Built Method</A
></H5 ></H5
><P ><P
@ -5372,7 +5415,7 @@ CLASS="section"
><HR><H5 ><HR><H5
CLASS="section" CLASS="section"
><A ><A
NAME="AEN913" NAME="AEN919"
>2.6.2.1.3. Starting the Server</A >2.6.2.1.3. Starting the Server</A
></H5 ></H5
><P ><P
@ -5500,7 +5543,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN929" NAME="AEN935"
>2.6.3. Perl</A >2.6.3. Perl</A
></H3 ></H3
><P ><P
@ -5604,7 +5647,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN951" NAME="AEN957"
>2.6.5. HTTP Server</A >2.6.5. HTTP Server</A
></H3 ></H3
><P ><P
@ -5618,7 +5661,7 @@ CLASS="section"
><HR><H4 ><HR><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN954" NAME="AEN960"
>2.6.5.1. Running Apache as Non-Root</A >2.6.5.1. Running Apache as Non-Root</A
></H4 ></H4
><P ><P
@ -5700,7 +5743,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN963" NAME="AEN969"
>2.6.6. Bugzilla</A >2.6.6. Bugzilla</A
></H3 ></H3
><P ><P
@ -11148,7 +11191,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2175" NAME="AEN2181"
>3.15.4. Assigning Group Controls to Products</A >3.15.4. Assigning Group Controls to Products</A
></H3 ></H3
><P ><P
@ -12726,7 +12769,7 @@ NAME="negation"
>&#13; At first glance, negation seems redundant. Rather than >&#13; At first glance, negation seems redundant. Rather than
searching for searching for
<A <A
NAME="AEN2552" NAME="AEN2558"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12737,7 +12780,7 @@ CLASS="BLOCKQUOTE"
> >
one could search for one could search for
<A <A
NAME="AEN2554" NAME="AEN2560"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12748,7 +12791,7 @@ CLASS="BLOCKQUOTE"
> >
However, the search However, the search
<A <A
NAME="AEN2556" NAME="AEN2562"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12760,7 +12803,7 @@ CLASS="BLOCKQUOTE"
would find every bug where anyone on the CC list did not contain would find every bug where anyone on the CC list did not contain
"@mozilla.org" while "@mozilla.org" while
<A <A
NAME="AEN2558" NAME="AEN2564"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12774,7 +12817,7 @@ CLASS="BLOCKQUOTE"
complex expressions to be built using terms OR'd together and then complex expressions to be built using terms OR'd together and then
negated. Negation permits queries such as negated. Negation permits queries such as
<A <A
NAME="AEN2560" NAME="AEN2566"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12787,7 +12830,7 @@ CLASS="BLOCKQUOTE"
to find bugs that are neither to find bugs that are neither
in the update product or in the documentation component or in the update product or in the documentation component or
<A <A
NAME="AEN2562" NAME="AEN2568"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12815,7 +12858,7 @@ NAME="multiplecharts"
a bug that has two different people cc'd on it, then you need a bug that has two different people cc'd on it, then you need
to use two boolean charts. A search for to use two boolean charts. A search for
<A <A
NAME="AEN2567" NAME="AEN2573"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -12830,7 +12873,7 @@ CLASS="BLOCKQUOTE"
containing "foo@" and someone else containing "@mozilla.org", containing "foo@" and someone else containing "@mozilla.org",
then you would need two boolean charts. then you would need two boolean charts.
<A <A
NAME="AEN2569" NAME="AEN2575"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -13536,7 +13579,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2705" NAME="AEN2711"
>5.8.1. Autolinkification</A >5.8.1. Autolinkification</A
></H3 ></H3
><P ><P
@ -14411,7 +14454,7 @@ CLASS="section"
><HR><H4 ><HR><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2902" NAME="AEN2908"
>5.11.2.1. Creating Charts</A >5.11.2.1. Creating Charts</A
></H4 ></H4
><P ><P
@ -14880,7 +14923,7 @@ CLASS="section"
><HR><H3 ><HR><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2962" NAME="AEN2968"
>5.13.4. Saving Your Changes</A >5.13.4. Saving Your Changes</A
></H3 ></H3
><P ><P
@ -16889,7 +16932,7 @@ NAME="trbl-relogin-everyone-share"
>Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B >Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
></P ></P
><A ><A
NAME="AEN3297" NAME="AEN3303"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -16930,7 +16973,7 @@ NAME="trbl-relogin-everyone-restrict"
>Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B >Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
></P ></P
><A ><A
NAME="AEN3304" NAME="AEN3310"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -17768,7 +17811,7 @@ NAME="gfdl"
><P ><P
>Version 1.1, March 2000</P >Version 1.1, March 2000</P
><A ><A
NAME="AEN3477" NAME="AEN3483"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -18231,7 +18274,7 @@ NAME="gfdl-howto"
of the License in the document and put the following copyright and of the License in the document and put the following copyright and
license notices just after the title page:</P license notices just after the title page:</P
><A ><A
NAME="AEN3567" NAME="AEN3573"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -18268,7 +18311,7 @@ CLASS="glossdiv"
><H1 ><H1
CLASS="glossdiv" CLASS="glossdiv"
><A ><A
NAME="AEN3572" NAME="AEN3578"
>0-9, high ascii</A >0-9, high ascii</A
></H1 ></H1
><DL ><DL
@ -19178,7 +19221,7 @@ NAME="gloss-zarro"
Terry had the following to say: Terry had the following to say:
</P </P
><A ><A
NAME="AEN3817" NAME="AEN3823"
></A ></A
><TABLE ><TABLE
BORDER="0" BORDER="0"

View File

@ -7,11 +7,11 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="NEXT" REL="NEXT"
@ -36,7 +36,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -154,7 +154,7 @@ ACCESSKEY="N"
WIDTH="33%" WIDTH="33%"
ALIGN="left" ALIGN="left"
VALIGN="top" VALIGN="top"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TD Release</TD
><TD ><TD
WIDTH="34%" WIDTH="34%"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -359,7 +359,7 @@ HREF="groups.html#users-and-groups"
></DT ></DT
><DT ><DT
>3.15.4. <A >3.15.4. <A
HREF="groups.html#AEN2175" HREF="groups.html#AEN2181"
>Assigning Group Controls to Products</A >Assigning Group Controls to Products</A
></DT ></DT
></DL ></DL

View File

@ -34,7 +34,7 @@ name="SYNOPSIS"
Options: Options:
-? --help brief help message -? --help brief help message
-v --verbose print error and debug information. -v --verbose print error and debug information.
Mulltiple -v increases verbosity Multiple -v increases verbosity
-m --sendmail send mail to recipients with log of bugs imported -m --sendmail send mail to recipients with log of bugs imported
--attach_path The path to the attachment files. --attach_path The path to the attachment files.
(Required if encoding=&#34;filename&#34; is used for attachments.)</pre> (Required if encoding=&#34;filename&#34; is used for attachments.)</pre>

View File

@ -2,13 +2,13 @@
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bugzilla 3.2.2 API Documentation</title> <title>Bugzilla 3.2.3 API Documentation</title>
<link rel="stylesheet" title="style" type="text/css" href="./../../../style.css" media="all" > <link rel="stylesheet" title="style" type="text/css" href="./../../../style.css" media="all" >
</head> </head>
<body class="contentspage"> <body class="contentspage">
<h1>Bugzilla 3.2.2 API Documentation</h1> <h1>Bugzilla 3.2.3 API Documentation</h1>
<dl class='superindex'> <dl class='superindex'>
<dt><a name="Files">Files</a></dt> <dt><a name="Files">Files</a></dt>
<dd> <dd>

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -354,8 +354,51 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN476" NAME="mysql-max-allowed-packet"
>2.2.2.2.1. Allow small words in full-text indexes</A >2.2.2.2.1. Allow large attachments and many comments</A
></H4
><P
>By default, MySQL will only allow you to insert things
into the database that are smaller than 64KB. Attachments
may be larger than this. Also, Bugzilla combines all comments
on a single bug into one field for full-text searching, and the
combination of all comments on a single bug are very likely to
be larger than 64KB.</P
><P
>To change MySQL's default, you need to edit your MySQL
configuration file, which is usually <TT
CLASS="filename"
>/etc/my.cnf</TT
>
on Linux. We recommend that you allow at least 4MB packets by
adding the "max_allowed_packet" parameter to your MySQL
configuration in the "[mysqld]" section, like this:</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="screen"
>[mysqld]
# Allow packets up to 4MB
max_allowed_packet=4M
</PRE
></FONT
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN482"
>2.2.2.2.2. Allow small words in full-text indexes</A
></H4 ></H4
><P ><P
>By default, words must be at least four characters in length >By default, words must be at least four characters in length
@ -402,7 +445,7 @@ CLASS="section"
CLASS="section" CLASS="section"
><A ><A
NAME="install-setupdatabase-adduser" NAME="install-setupdatabase-adduser"
>2.2.2.2.2. Add a user to MySQL</A >2.2.2.2.3. Add a user to MySQL</A
></H4 ></H4
><P ><P
>&#13; You need to add a new MySQL user for Bugzilla to use. >&#13; You need to add a new MySQL user for Bugzilla to use.
@ -495,8 +538,8 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN503" NAME="AEN509"
>2.2.2.2.3. Permit attachments table to grow beyond 4GB</A >2.2.2.2.4. Permit attachments table to grow beyond 4GB</A
></H4 ></H4
><P ><P
>&#13; By default, MySQL will limit the size of a table to 4GB. >&#13; By default, MySQL will limit the size of a table to 4GB.
@ -595,7 +638,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN519" NAME="AEN525"
>2.2.2.3.1. Add a User to PostgreSQL</A >2.2.2.3.1. Add a User to PostgreSQL</A
></H4 ></H4
><P ><P
@ -680,7 +723,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN535" NAME="AEN541"
>2.2.2.3.2. Configure PostgreSQL</A >2.2.2.3.2. Configure PostgreSQL</A
></H4 ></H4
><P ><P
@ -741,7 +784,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN551" NAME="AEN557"
>2.2.2.4.1. Create a New Tablespace</A >2.2.2.4.1. Create a New Tablespace</A
></H4 ></H4
><P ><P
@ -793,7 +836,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN559" NAME="AEN565"
>2.2.2.4.2. Add a User to Oracle</A >2.2.2.4.2. Add a User to Oracle</A
></H4 ></H4
><P ><P
@ -849,7 +892,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN567" NAME="AEN573"
>2.2.2.4.3. Configure the Web Server</A >2.2.2.4.3. Configure the Web Server</A
></H4 ></H4
><P ><P
@ -887,7 +930,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN573" NAME="AEN579"
>2.2.3. checksetup.pl</A >2.2.3. checksetup.pl</A
></H2 ></H2
><P ><P

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -87,7 +87,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN723" NAME="AEN729"
>2.3.1. Bug Graphs</A >2.3.1. Bug Graphs</A
></H2 ></H2
><P ><P

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -83,7 +83,7 @@ NAME="gfdl-howto"
of the License in the document and put the following copyright and of the License in the document and put the following copyright and
license notices just after the title page:</P license notices just after the title page:</P
><A ><A
NAME="AEN3567" NAME="AEN3573"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -146,7 +146,7 @@ HREF="gfdl-howto.html"
><P ><P
>Version 1.1, March 2000</P >Version 1.1, March 2000</P
><A ><A
NAME="AEN3477" NAME="AEN3483"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -32,7 +32,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -72,7 +72,7 @@ CLASS="glossdiv"
><H1 ><H1
CLASS="glossdiv" CLASS="glossdiv"
><A ><A
NAME="AEN3572" NAME="AEN3578"
>0-9, high ascii</A >0-9, high ascii</A
></H1 ></H1
><DL ><DL
@ -982,7 +982,7 @@ NAME="gloss-zarro"
Terry had the following to say: Terry had the following to say:
</P </P
><A ><A
NAME="AEN3817" NAME="AEN3823"
></A ></A
><TABLE ><TABLE
BORDER="0" BORDER="0"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -506,7 +506,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2175" NAME="AEN2181"
>3.15.4. Assigning Group Controls to Products</A >3.15.4. Assigning Group Controls to Products</A
></H2 ></H2
><P ><P

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -86,7 +86,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2705" NAME="AEN2711"
>5.8.1. Autolinkification</A >5.8.1. Autolinkification</A
></H2 ></H2
><P ><P

View File

@ -2,7 +2,7 @@
<HTML <HTML
><HEAD ><HEAD
><TITLE ><TITLE
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TITLE Release</TITLE
><META ><META
NAME="GENERATOR" NAME="GENERATOR"
@ -46,7 +46,7 @@ CLASS="TITLEPAGE"
CLASS="title" CLASS="title"
><A ><A
NAME="AEN2" NAME="AEN2"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</A Release</A
></H1 ></H1
><H3 ><H3
@ -54,7 +54,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3 >The Bugzilla Team</H3
><P ><P
CLASS="pubdate" CLASS="pubdate"
>2009-02-03<BR></P >2009-03-30<BR></P
><DIV ><DIV
><DIV ><DIV
CLASS="abstract" CLASS="abstract"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -144,7 +144,7 @@ HREF="configuration.html#database-engine"
></DT ></DT
><DT ><DT
>2.2.3. <A >2.2.3. <A
HREF="configuration.html#AEN573" HREF="configuration.html#AEN579"
>checksetup.pl</A >checksetup.pl</A
></DT ></DT
><DT ><DT
@ -168,7 +168,7 @@ HREF="extraconfig.html"
><DL ><DL
><DT ><DT
>2.3.1. <A >2.3.1. <A
HREF="extraconfig.html#AEN723" HREF="extraconfig.html#AEN729"
>Bug Graphs</A >Bug Graphs</A
></DT ></DT
><DT ><DT
@ -229,17 +229,17 @@ HREF="nonroot.html"
><DL ><DL
><DT ><DT
>2.6.1. <A >2.6.1. <A
HREF="nonroot.html#AEN890" HREF="nonroot.html#AEN896"
>Introduction</A >Introduction</A
></DT ></DT
><DT ><DT
>2.6.2. <A >2.6.2. <A
HREF="nonroot.html#AEN894" HREF="nonroot.html#AEN900"
>MySQL</A >MySQL</A
></DT ></DT
><DT ><DT
>2.6.3. <A >2.6.3. <A
HREF="nonroot.html#AEN929" HREF="nonroot.html#AEN935"
>Perl</A >Perl</A
></DT ></DT
><DT ><DT
@ -249,12 +249,12 @@ HREF="nonroot.html#install-perlmodules-nonroot"
></DT ></DT
><DT ><DT
>2.6.5. <A >2.6.5. <A
HREF="nonroot.html#AEN951" HREF="nonroot.html#AEN957"
>HTTP Server</A >HTTP Server</A
></DT ></DT
><DT ><DT
>2.6.6. <A >2.6.6. <A
HREF="nonroot.html#AEN963" HREF="nonroot.html#AEN969"
>Bugzilla</A >Bugzilla</A
></DT ></DT
></DL ></DL

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -79,7 +79,7 @@ NAME="newversions"
>1.3. New Versions</A >1.3. New Versions</A
></H1 ></H1
><P ><P
>&#13; This is the 3.2.2 version of The Bugzilla Guide. It is so named >&#13; This is the 3.2.3 version of The Bugzilla Guide. It is so named
to match the current version of Bugzilla. to match the current version of Bugzilla.
</P </P
><P ><P

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -83,7 +83,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN890" NAME="AEN896"
>2.6.1. Introduction</A >2.6.1. Introduction</A
></H2 ></H2
><P ><P
@ -103,7 +103,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN894" NAME="AEN900"
>2.6.2. MySQL</A >2.6.2. MySQL</A
></H2 ></H2
><P ><P
@ -159,7 +159,7 @@ CLASS="section"
><H3 ><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN902" NAME="AEN908"
>2.6.2.1. Running MySQL as Non-Root</A >2.6.2.1. Running MySQL as Non-Root</A
></H3 ></H3
><DIV ><DIV
@ -167,7 +167,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN904" NAME="AEN910"
>2.6.2.1.1. The Custom Configuration Method</A >2.6.2.1.1. The Custom Configuration Method</A
></H4 ></H4
><P ><P
@ -211,7 +211,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN908" NAME="AEN914"
>2.6.2.1.2. The Custom Built Method</A >2.6.2.1.2. The Custom Built Method</A
></H4 ></H4
><P ><P
@ -234,7 +234,7 @@ CLASS="section"
><H4 ><H4
CLASS="section" CLASS="section"
><A ><A
NAME="AEN913" NAME="AEN919"
>2.6.2.1.3. Starting the Server</A >2.6.2.1.3. Starting the Server</A
></H4 ></H4
><P ><P
@ -362,7 +362,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN929" NAME="AEN935"
>2.6.3. Perl</A >2.6.3. Perl</A
></H2 ></H2
><P ><P
@ -466,7 +466,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN951" NAME="AEN957"
>2.6.5. HTTP Server</A >2.6.5. HTTP Server</A
></H2 ></H2
><P ><P
@ -480,7 +480,7 @@ CLASS="section"
><H3 ><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN954" NAME="AEN960"
>2.6.5.1. Running Apache as Non-Root</A >2.6.5.1. Running Apache as Non-Root</A
></H3 ></H3
><P ><P
@ -562,7 +562,7 @@ CLASS="section"
><H2 ><H2
CLASS="section" CLASS="section"
><A ><A
NAME="AEN963" NAME="AEN969"
>2.6.6. Bugzilla</A >2.6.6. Bugzilla</A
></H2 ></H2
><P ><P

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -207,7 +207,7 @@ NAME="negation"
>&#13; At first glance, negation seems redundant. Rather than >&#13; At first glance, negation seems redundant. Rather than
searching for searching for
<A <A
NAME="AEN2552" NAME="AEN2558"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -218,7 +218,7 @@ CLASS="BLOCKQUOTE"
> >
one could search for one could search for
<A <A
NAME="AEN2554" NAME="AEN2560"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -229,7 +229,7 @@ CLASS="BLOCKQUOTE"
> >
However, the search However, the search
<A <A
NAME="AEN2556" NAME="AEN2562"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -241,7 +241,7 @@ CLASS="BLOCKQUOTE"
would find every bug where anyone on the CC list did not contain would find every bug where anyone on the CC list did not contain
"@mozilla.org" while "@mozilla.org" while
<A <A
NAME="AEN2558" NAME="AEN2564"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -255,7 +255,7 @@ CLASS="BLOCKQUOTE"
complex expressions to be built using terms OR'd together and then complex expressions to be built using terms OR'd together and then
negated. Negation permits queries such as negated. Negation permits queries such as
<A <A
NAME="AEN2560" NAME="AEN2566"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -268,7 +268,7 @@ CLASS="BLOCKQUOTE"
to find bugs that are neither to find bugs that are neither
in the update product or in the documentation component or in the update product or in the documentation component or
<A <A
NAME="AEN2562" NAME="AEN2568"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -296,7 +296,7 @@ NAME="multiplecharts"
a bug that has two different people cc'd on it, then you need a bug that has two different people cc'd on it, then you need
to use two boolean charts. A search for to use two boolean charts. A search for
<A <A
NAME="AEN2567" NAME="AEN2573"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -311,7 +311,7 @@ CLASS="BLOCKQUOTE"
containing "foo@" and someone else containing "@mozilla.org", containing "foo@" and someone else containing "@mozilla.org",
then you would need two boolean charts. then you would need two boolean charts.
<A <A
NAME="AEN2569" NAME="AEN2575"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -193,7 +193,7 @@ CLASS="section"
><H3 ><H3
CLASS="section" CLASS="section"
><A ><A
NAME="AEN2902" NAME="AEN2908"
>5.11.2.1. Creating Charts</A >5.11.2.1. Creating Charts</A
></H3 ></H3
><P ><P

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -41,7 +41,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -9,7 +9,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -40,7 +40,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -8,7 +8,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -120,7 +120,7 @@ NAME="trbl-relogin-everyone-share"
>Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B >Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
></P ></P
><A ><A
NAME="AEN3297" NAME="AEN3303"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"
@ -161,7 +161,7 @@ NAME="trbl-relogin-everyone-restrict"
>Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B >Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
></P ></P
><A ><A
NAME="AEN3304" NAME="AEN3310"
></A ></A
><BLOCKQUOTE ><BLOCKQUOTE
CLASS="BLOCKQUOTE" CLASS="BLOCKQUOTE"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="PREVIOUS" REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR
@ -168,7 +168,7 @@ HREF="hintsandtips.html"
><DL ><DL
><DT ><DT
>5.8.1. <A >5.8.1. <A
HREF="hintsandtips.html#AEN2705" HREF="hintsandtips.html#AEN2711"
>Autolinkification</A >Autolinkification</A
></DT ></DT
><DT ><DT
@ -275,7 +275,7 @@ HREF="whining.html#whining-query"
></DT ></DT
><DT ><DT
>5.13.4. <A >5.13.4. <A
HREF="whining.html#AEN2962" HREF="whining.html#AEN2968"
>Saving Your Changes</A >Saving Your Changes</A
></DT ></DT
></DL ></DL

View File

@ -7,7 +7,7 @@
NAME="GENERATOR" NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME" REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2 TITLE="The Bugzilla Guide - 3.2.3
Release" Release"
HREF="index.html"><LINK HREF="index.html"><LINK
REL="UP" REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH ><TH
COLSPAN="3" COLSPAN="3"
ALIGN="center" ALIGN="center"
>The Bugzilla Guide - 3.2.2 >The Bugzilla Guide - 3.2.3
Release</TH Release</TH
></TR ></TR
><TR ><TR

Some files were not shown because too many files have changed in this diff Show More