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',
type => 't',
default => '1000',
checker => \&check_numeric
checker => \&check_maxattachmentsize
},
# 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_netmask check_user_verify_class check_image_converter
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
@ -320,6 +321,24 @@ sub check_mail_delivery_method {
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 {
my $option = shift;
my @current_version =

View File

@ -159,7 +159,7 @@ use File::Basename;
# CONSTANTS
#
# 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,
# 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 Bugzilla::Constants;
use Bugzilla::Install::Util qw(install_string);
use Bugzilla::Util;
use Bugzilla::Error;
use Bugzilla::DB::Schema::Mysql;
@ -97,20 +98,9 @@ sub new {
}
}
# 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. However,
# 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");
# Allow large GROUP_CONCATs (largely for inserting comments
# into bugs_fulltext).
$self->do('SET SESSION group_concat_max_len = 128000000');
return $self;
}
@ -244,6 +234,24 @@ sub _bz_get_initial_schema {
sub bz_setup_database {
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
# 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

View File

@ -56,7 +56,20 @@ sub MessageToMTA {
my $method = Bugzilla->params->{'mail_delivery_method'};
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
# thus to hopefully avoid auto replies.

View File

@ -181,7 +181,13 @@ sub issue_hash_token {
# The concatenated string is of the form
# token creation time + site-wide secret + 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
# lifetime can be validated.

View File

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

View File

@ -618,6 +618,9 @@ sub update {
($vars->{'operations'}) =
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
# the activity table, this means someone commented only.
# In this case, there is no reason to midair.
@ -632,6 +635,12 @@ sub update {
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,
# be sure that he cannot overwrite the private bit.
# This check must be done before calling Bugzilla::Flag*::validate(),

View File

@ -1138,7 +1138,11 @@ if ($dotweak && scalar @bugs) {
}
$vars->{'dotweak'} = 1;
$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');
Bugzilla->switch_to_shadow_db();
$vars->{'products'} = Bugzilla->user->get_enterable_products;
$vars->{'platforms'} = get_legal_field_values('rep_platform');

View File

@ -28,6 +28,7 @@ use lib qw(. lib);
use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::Util;
use Bugzilla::CGI;
use Bugzilla::Search::Saved;
use Bugzilla::Error;
@ -187,7 +188,7 @@ if (defined $cgi->param('query_based_on')) {
# Only allow users to edit their own queries.
if ($search && $search->user->id == Bugzilla->user->id) {
$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);
if ($params->param('columnlist')) {

View File

@ -149,16 +149,9 @@ if ($switch{'guess'}) {
my $root = ROOT_USER;
print STDERR <<EOT;
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/
Then, unpack it into its own directory and run the following commands
in that directory, as $root:
./Build.PL
./Build
./Build install
$^X install-module.pl Encode::Detect
EOT
exit;
@ -248,7 +241,10 @@ foreach my $table ($dbh->bz_table_list_real) {
while (my @result = $sth->fetchrow_array) {
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);
# We copy the array so that we can pop things from it without

View File

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

View File

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

View File

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

View File

@ -34,7 +34,7 @@ name="SYNOPSIS"
Options:
-? --help brief help message
-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
--attach_path The path to the attachment files.
(Required if encoding=&#34;filename&#34; is used for attachments.)</pre>

View File

@ -2,13 +2,13 @@
<html>
<head>
<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" >
</head>
<body class="contentspage">
<h1>Bugzilla 3.2.2 API Documentation</h1>
<h1>Bugzilla 3.2.3 API Documentation</h1>
<dl class='superindex'>
<dt><a name="Files">Files</a></dt>
<dd>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -7,7 +7,7 @@
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2
TITLE="The Bugzilla Guide - 3.2.3
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.2.2
>The Bugzilla Guide - 3.2.3
Release</TH
></TR
><TR
@ -354,8 +354,51 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN476"
>2.2.2.2.1. Allow small words in full-text indexes</A
NAME="mysql-max-allowed-packet"
>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
><P
>By default, words must be at least four characters in length
@ -402,7 +445,7 @@ CLASS="section"
CLASS="section"
><A
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
><P
>&#13; You need to add a new MySQL user for Bugzilla to use.
@ -495,8 +538,8 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN503"
>2.2.2.2.3. Permit attachments table to grow beyond 4GB</A
NAME="AEN509"
>2.2.2.2.4. Permit attachments table to grow beyond 4GB</A
></H4
><P
>&#13; By default, MySQL will limit the size of a table to 4GB.
@ -595,7 +638,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN519"
NAME="AEN525"
>2.2.2.3.1. Add a User to PostgreSQL</A
></H4
><P
@ -680,7 +723,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN535"
NAME="AEN541"
>2.2.2.3.2. Configure PostgreSQL</A
></H4
><P
@ -741,7 +784,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN551"
NAME="AEN557"
>2.2.2.4.1. Create a New Tablespace</A
></H4
><P
@ -793,7 +836,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN559"
NAME="AEN565"
>2.2.2.4.2. Add a User to Oracle</A
></H4
><P
@ -849,7 +892,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN567"
NAME="AEN573"
>2.2.2.4.3. Configure the Web Server</A
></H4
><P
@ -887,7 +930,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN573"
NAME="AEN579"
>2.2.3. checksetup.pl</A
></H2
><P

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -7,7 +7,7 @@
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="The Bugzilla Guide - 3.2.2
TITLE="The Bugzilla Guide - 3.2.3
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.2.2
>The Bugzilla Guide - 3.2.3
Release</TH
></TR
><TR
@ -79,7 +79,7 @@ NAME="newversions"
>1.3. New Versions</A
></H1
><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.
</P
><P

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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