Bug 40933 - Merge with Bugzilla 3.6.4, released 2011-01-24

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1215 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2011-02-04 15:47:14 +00:00
parent 3f71daee5f
commit fda4bdf8ec
125 changed files with 647 additions and 329 deletions

View File

@ -185,7 +185,7 @@ use Cwd qw(abs_path);
# CONSTANTS
#
# Bugzilla version
use constant BUGZILLA_VERSION => "3.6.3";
use constant BUGZILLA_VERSION => "3.6.4";
# 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

@ -143,7 +143,7 @@ sub sql_limit {
sub sql_from_days {
my ($self, $days) = @_;
return "TO_TIMESTAMP(${days}::int, 'J')::date";
return "TO_TIMESTAMP('$days', 'J')::date";
}
sub sql_to_days {

View File

@ -570,6 +570,34 @@ L</config_add_panels> if you want to add new panels.
=back
=head2 email_in_before_parse
This happens right after an inbound email is converted into an Email::MIME
object, but before we start parsing the email to extract field data. This
means the email has already been decoded for you. It gives you a chance
to interact with the email itself before L<email_in> starts parsing its content.
=over
=item C<mail> - An Email::MIME object. The decoded incoming email.
=item C<fields> - A hashref. The hash which will contain extracted data.
=back
=head2 email_in_after_parse
This happens after all the data has been extracted from the email, but before
the reporter is validated, during L<email_in>. This lets you do things after
the normal parsing of the email, such as sanitizing field data, changing the
user account being used to file a bug, etc.
=over
=item C<fields> - A hashref. The hash containing the extracted field data.
=back
=head2 enter_bug_entrydefaultvars
B<DEPRECATED> - Use L</template_before_process> instead.

View File

@ -205,7 +205,9 @@ EOT
},
{
name => 'site_wide_secret',
default => sub { generate_random_password(256) },
# 64 characters is roughly the equivalent of a 384-bit key, which
# is larger than anybody would ever be able to brute-force.
default => sub { generate_random_password(64) },
desc => <<EOT
# This secret key is used by your installation for the creation and
# validation of encrypted tokens to prevent unsolicited changes,
@ -331,7 +333,14 @@ sub update_localconfig {
my @new_vars;
foreach my $var (LOCALCONFIG_VARS) {
my $name = $var->{name};
if (!defined $localconfig->{$name}) {
my $value = $localconfig->{$name};
# Regenerate site_wide_secret if it was made by our old, weak
# generate_random_password. Previously we used to generate
# a 256-character string for site_wide_secret.
$value = undef if ($name eq 'site_wide_secret' and defined $value
and length($value) == 256);
if (!defined $value) {
push(@new_vars, $name);
$var->{default} = &{$var->{default}} if ref($var->{default}) eq 'CODE';
if (exists $answer->{$name}) {

View File

@ -66,12 +66,9 @@ sub REQUIRED_MODULES {
{
package => 'CGI.pm',
module => 'CGI',
# Perl 5.10 requires CGI 3.33 due to a taint issue when
# uploading attachments, see bug 416382.
# Require CGI 3.21 for -httponly support, see bug 368502.
version => (vers_cmp($perl_ver, '5.10') > -1) ? '3.33' : '3.21',
# CGI::Carp in 3.46 and 3.47 breaks Template Toolkit
blacklist => ['^3\.46$', '^3\.47$'],
# 3.51 fixes a security problem that affects Bugzilla.
# (bug 591165)
version => '3.51',
},
{
package => 'Digest-SHA',
@ -291,6 +288,12 @@ sub OPTIONAL_MODULES {
version => '1.999022',
feature => ['mod_perl'],
},
{
package => 'Math-Random-Secure',
module => 'Math::Random::Secure',
version => '0.05',
feature => ['rand_security'],
},
);
my $extra_modules = _get_extension_requirements('OPTIONAL_MODULES');

View File

@ -31,7 +31,6 @@ use Bugzilla::Field;
use Bugzilla::Util;
use List::Util qw(min max);
use List::MoreUtils qw(firstidx);
use base qw(Exporter);
@Bugzilla::Search::Quicksearch::EXPORT = qw(quicksearch);
@ -282,6 +281,7 @@ sub _handle_alias {
my $is_alias = Bugzilla->dbh->selectrow_array(
q{SELECT 1 FROM bugs WHERE alias = ?}, undef, $alias);
if ($is_alias) {
$alias = url_quote($alias);
print Bugzilla->cgi->redirect(
-uri => correct_urlbase() . "show_bug.cgi?id=$alias");
exit;
@ -491,9 +491,9 @@ sub _special_field_syntax {
my $legal_priorities = get_legal_field_values('priority');
# If Pn exists explicitly, use it.
my $start = firstidx { $_ eq "P$p_start" } @$legal_priorities;
my $start = lsearch($legal_priorities, "P$p_start");
my $end;
$end = firstidx { $_ eq "P$p_end" } @$legal_priorities if defined $p_end;
$end = lsearch($legal_priorities, "P$p_end") if defined $p_end;
# If Pn doesn't exist explicitly, then we mean the nth priority.
if ($start == -1) {

View File

@ -294,7 +294,7 @@ sub quoteUrls {
~<a href=\"mailto:$3\">$1$3</a>~igx;
# attachment links
$text =~ s~\b(attachment\s*\#?\s*(\d+))
$text =~ s~\b(attachment\s*\#?\s*(\d+)(?:\s+\[details\])?)
~($things[$count++] = get_attachment_link($2, $1)) &&
("\0\0" . ($count-1) . "\0\0")
~egsxi;
@ -841,6 +841,19 @@ sub create {
return $docs_urlbase;
},
# Check whether the URL is safe.
'is_safe_url' => sub {
my $url = shift;
return 0 unless $url;
my $safe_protocols = join('|', SAFE_PROTOCOLS);
return 1 if $url =~ /^($safe_protocols):[^\s<>\"]+[\w\/]$/i;
# Pointing to a local file with no colon in its name is fine.
return 1 if $url =~ /^[^\s<>\":]+[\w\/]$/i;
# If we come here, then we cannot guarantee it's safe.
return 0;
},
# Allow templates to generate a token themselves.
'issue_hash_token' => \&Bugzilla::Token::issue_hash_token,

View File

@ -600,9 +600,56 @@ sub bz_crypt {
return $crypted_password;
}
# If you want to understand the security of strings generated by this
# function, here's a quick formula that will help you estimate:
# We pick from 62 characters, which is close to 64, which is 2^6.
# So 8 characters is (2^6)^8 == 2^48 combinations. Just multiply 6
# by the number of characters you generate, and that gets you the equivalent
# strength of the string in bits.
sub generate_random_password {
my $size = shift || 10; # default to 10 chars if nothing specified
return join("", map{ ('0'..'9','a'..'z','A'..'Z')[rand 62] } (1..$size));
my $rand;
if (Bugzilla->feature('rand_security')) {
$rand = \&Math::Random::Secure::irand;
}
else {
# For details on why this block works the way it does, see bug 619594.
# (Note that we don't do this if Math::Random::Secure is installed,
# because we don't need to.)
my $counter = 0;
$rand = sub {
# If we regenerate the seed every 5 characters, our seed is roughly
# as strong (in terms of bit size) as our randomly-generated
# string itself.
_do_srand() if ($counter % 5) == 0;
$counter++;
return int(rand $_[0]);
};
}
return join("", map{ ('0'..'9','a'..'z','A'..'Z')[$rand->(62)] }
(1..$size));
}
sub _do_srand {
# On Windows, calling srand over and over in the same process produces
# very bad results. We need a stronger seed.
if (ON_WINDOWS) {
require Win32;
# GuidGen generates random data via Windows's CryptGenRandom
# interface, which is documented as being cryptographically secure.
my $guid = Win32::GuidGen();
# GUIDs look like:
# {09531CF1-D0C7-4860-840C-1C8C8735E2AD}
$guid =~ s/[-{}]+//g;
# Get a 32-bit integer using the first eight hex digits.
my $seed = hex(substr($guid, 0, 8));
srand($seed);
return;
}
# On *nix-like platforms, this uses /dev/urandom, so the seed changes
# enough on every invocation.
srand();
}
sub validate_email_syntax {

View File

@ -1595,7 +1595,7 @@ C<string> The login name of a user that a bug is assigned to.
=item C<component>
C<string> The name of the Component that the bug is in. Note that
if there are multiple Compoonents with the same name, and you search
if there are multiple Components with the same name, and you search
for that name, bugs in I<all> those Components will be returned. If you
don't want this, be sure to also specify the C<product> argument.

View File

@ -74,8 +74,8 @@ if (!Bugzilla->feature('new_charts')) {
# Go back to query.cgi if we are adding a boolean chart parameter.
if (grep(/^cmd-/, $cgi->param())) {
my $params = $cgi->canonicalise_query("format", "ctype", "action");
print "Location: query.cgi?format=" . $cgi->param('query_format') .
($params ? "&$params" : "") . "\n\n";
print $cgi->redirect("query.cgi?format=" . $cgi->param('query_format') .
($params ? "&$params" : ""));
exit;
}
@ -98,7 +98,7 @@ $action ||= "assemble";
# Go to buglist.cgi if we are doing a search.
if ($action eq "search") {
my $params = $cgi->canonicalise_query("format", "ctype", "action");
print "Location: buglist.cgi" . ($params ? "?$params" : "") . "\n\n";
print $cgi->redirect("buglist.cgi" . ($params ? "?$params" : ""));
exit;
}
@ -146,6 +146,8 @@ elsif ($action eq "wrap") {
}
elsif ($action eq "create") {
assertCanCreate($cgi);
my $token = $cgi->param('token');
check_hash_token($token, ['create-series']);
my $series = new Bugzilla::Series($cgi);
@ -164,9 +166,11 @@ elsif ($action eq "edit") {
edit($series);
}
elsif ($action eq "alter") {
assertCanEdit($series_id);
my $series = assertCanEdit($series_id);
my $token = $cgi->param('token');
check_hash_token($token, [$series->id, $series->name]);
# XXX - This should be replaced by $series->set_foo() methods.
my $series = new Bugzilla::Series($cgi);
$series = new Bugzilla::Series($cgi);
# We need to check if there is _another_ series in the database with
# our (potentially new) name. So we call existsInDatabase() to see if

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!-- Module Versions -->
<!ENTITY min-cgi-ver "3.21">
<!ENTITY min-cgi-ver "3.51">
<!ENTITY min-digest-sha-ver "any">
<!ENTITY min-date-format-ver "2.21">
<!ENTITY min-datetime-ver "0.28">
@ -35,6 +35,7 @@
<!ENTITY min-theschwartz-ver "any">
<!ENTITY min-daemon-generic-ver "any">
<!ENTITY min-mod_perl2-ver "1.999022">
<!ENTITY min-math-random-secure-ver "0.05">
<!-- Database Versions -->
<!ENTITY min-dbd-pg-ver "1.45">

View File

@ -2,7 +2,7 @@
<HTML
><HEAD
><TITLE
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TITLE
><META
NAME="GENERATOR"
@ -43,7 +43,7 @@ CLASS="TITLEPAGE"
CLASS="title"
><A
NAME="AEN2"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</A
></H1
><H3
@ -51,7 +51,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3
><P
CLASS="pubdate"
>2010-11-02<BR></P
>2011-11-24<BR></P
><DIV
><DIV
CLASS="abstract"
@ -614,7 +614,7 @@ NAME="copyright"
>1.1. Copyright Information</A
></H2
><P
>This document is copyright (c) 2000-2010 by the various
>This document is copyright (c) 2000-2011 by the various
Bugzilla contributors who wrote it.</P
><A
NAME="AEN26"
@ -683,7 +683,7 @@ NAME="newversions"
>1.3. New Versions</A
></H2
><P
>&#13; This is the 3.6.3 version of The Bugzilla Guide. It is so named
>&#13; This is the 3.6.4 version of The Bugzilla Guide. It is so named
to match the current version of Bugzilla.
</P
><P
@ -1821,7 +1821,7 @@ CLASS="filename"
TYPE="1"
><LI
><P
>&#13; CGI (3.21)
>&#13; CGI (3.51)
</P
></LI
><LI
@ -2794,7 +2794,7 @@ CLASS="screen"
> <SAMP
CLASS="prompt"
>bash$</SAMP
> createuser -U postgres -dAP bugs</PRE
> createuser -U postgres -dRSP bugs</PRE
></FONT
></TD
></TR
@ -2810,15 +2810,41 @@ CLASS="replaceable"
CLASS="filename"
>localconfig</TT
>.
The created user will have the ability to create databases and will not be
able to create new users.</P
The created user will not be a superuser (-S) and will not be able to create
new users (-R). He will only have the ability to create databases (-d).</P
><DIV
CLASS="note"
><P
></P
><TABLE
CLASS="note"
WIDTH="100%"
BORDER="0"
><TR
><TD
WIDTH="25"
ALIGN="CENTER"
VALIGN="TOP"
><IMG
SRC="../images/note.gif"
HSPACE="5"
ALT="Note"></TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
><P
>If your are running PostgreSQL 8.0, you must replace -dRSP by -dAP.</P
></TD
></TR
></TABLE
></DIV
></DIV
><DIV
CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN501"
NAME="AEN503"
>2.2.2.3.2. Configure PostgreSQL</A
></H5
><P
@ -2879,7 +2905,7 @@ CLASS="section"
><H5
CLASS="section"
><A
NAME="AEN517"
NAME="AEN519"
>2.2.2.4.1. Create a New Tablespace</A
></H5
><P
@ -2931,7 +2957,7 @@ CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN525"
NAME="AEN527"
>2.2.2.4.2. Add a User to Oracle</A
></H5
><P
@ -2987,7 +3013,7 @@ CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN533"
NAME="AEN535"
>2.2.2.4.3. Configure the Web Server</A
></H5
><P
@ -3025,7 +3051,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN539"
NAME="AEN541"
>2.2.3. checksetup.pl</A
></H3
><P
@ -3865,7 +3891,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN690"
NAME="AEN692"
>2.3.1. Bug Graphs</A
></H3
><P
@ -4999,7 +5025,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN855"
NAME="AEN857"
>2.6.1. Introduction</A
></H3
><P
@ -5019,7 +5045,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN859"
NAME="AEN861"
>2.6.2. MySQL</A
></H3
><P
@ -5075,7 +5101,7 @@ CLASS="section"
><HR><H4
CLASS="section"
><A
NAME="AEN867"
NAME="AEN869"
>2.6.2.1. Running MySQL as Non-Root</A
></H4
><DIV
@ -5083,7 +5109,7 @@ CLASS="section"
><H5
CLASS="section"
><A
NAME="AEN869"
NAME="AEN871"
>2.6.2.1.1. The Custom Configuration Method</A
></H5
><P
@ -5127,7 +5153,7 @@ CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN873"
NAME="AEN875"
>2.6.2.1.2. The Custom Built Method</A
></H5
><P
@ -5150,7 +5176,7 @@ CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN878"
NAME="AEN880"
>2.6.2.1.3. Starting the Server</A
></H5
><P
@ -5278,7 +5304,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN894"
NAME="AEN896"
>2.6.3. Perl</A
></H3
><P
@ -5382,7 +5408,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN916"
NAME="AEN918"
>2.6.5. HTTP Server</A
></H3
><P
@ -5396,7 +5422,7 @@ CLASS="section"
><HR><H4
CLASS="section"
><A
NAME="AEN919"
NAME="AEN921"
>2.6.5.1. Running Apache as Non-Root</A
></H4
><P
@ -5478,7 +5504,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN928"
NAME="AEN930"
>2.6.6. Bugzilla</A
></H3
><P
@ -10864,7 +10890,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN2118"
NAME="AEN2120"
>3.15.4. Assigning Group Controls to Products</A
></H3
><P
@ -12202,7 +12228,7 @@ NAME="negation"
>&#13; At first glance, negation seems redundant. Rather than
searching for
<A
NAME="AEN2446"
NAME="AEN2448"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12213,7 +12239,7 @@ CLASS="BLOCKQUOTE"
>
one could search for
<A
NAME="AEN2448"
NAME="AEN2450"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12224,7 +12250,7 @@ CLASS="BLOCKQUOTE"
>
However, the search
<A
NAME="AEN2450"
NAME="AEN2452"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12236,7 +12262,7 @@ CLASS="BLOCKQUOTE"
would find every bug where anyone on the CC list did not contain
"@mozilla.org" while
<A
NAME="AEN2452"
NAME="AEN2454"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12250,7 +12276,7 @@ CLASS="BLOCKQUOTE"
complex expressions to be built using terms OR'd together and then
negated. Negation permits queries such as
<A
NAME="AEN2454"
NAME="AEN2456"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12263,7 +12289,7 @@ CLASS="BLOCKQUOTE"
to find bugs that are neither
in the update product or in the documentation component or
<A
NAME="AEN2456"
NAME="AEN2458"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12291,7 +12317,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="AEN2461"
NAME="AEN2463"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12306,7 +12332,7 @@ CLASS="BLOCKQUOTE"
containing "foo@" and someone else containing "@mozilla.org",
then you would need two boolean charts.
<A
NAME="AEN2463"
NAME="AEN2465"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -13012,7 +13038,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN2599"
NAME="AEN2601"
>5.8.1. Autolinkification</A
></H3
><P
@ -13887,7 +13913,7 @@ CLASS="section"
><HR><H4
CLASS="section"
><A
NAME="AEN2796"
NAME="AEN2798"
>5.11.2.1. Creating Charts</A
></H4
><P
@ -14356,7 +14382,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN2856"
NAME="AEN2858"
>5.13.4. Saving Your Changes</A
></H3
><P
@ -15855,7 +15881,7 @@ NAME="trbl-relogin-everyone-share"
>Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
></P
><A
NAME="AEN3098"
NAME="AEN3100"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -15896,7 +15922,7 @@ NAME="trbl-relogin-everyone-restrict"
>Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
></P
><A
NAME="AEN3105"
NAME="AEN3107"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -16659,7 +16685,7 @@ NAME="gfdl"
><P
>Version 1.1, March 2000</P
><A
NAME="AEN3263"
NAME="AEN3265"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -17122,7 +17148,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="AEN3353"
NAME="AEN3355"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -17159,7 +17185,7 @@ CLASS="glossdiv"
><H1
CLASS="glossdiv"
><A
NAME="AEN3358"
NAME="AEN3360"
>0-9, high ascii</A
></H1
><DL
@ -18065,7 +18091,7 @@ NAME="gloss-zarro"
Terry had the following to say:
</P
><A
NAME="AEN3602"
NAME="AEN3604"
></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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
TITLE="The Bugzilla Guide - 3.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="NEXT"
@ -36,7 +36,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -154,7 +154,7 @@ ACCESSKEY="N"
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -359,7 +359,7 @@ HREF="groups.html#users-and-groups"
></DT
><DT
>3.15.4. <A
HREF="groups.html#AEN2118"
HREF="groups.html#AEN2120"
>Assigning Group Controls to Products</A
></DT
></DL

View File

@ -35,6 +35,8 @@ Bugzilla::Hook</title>
<li class='indexItem indexItem2'><a href='#colchange_columns'>colchange_columns</a>
<li class='indexItem indexItem2'><a href='#config_add_panels'>config_add_panels</a>
<li class='indexItem indexItem2'><a href='#config_modify_panels'>config_modify_panels</a>
<li class='indexItem indexItem2'><a href='#email_in_before_parse'>email_in_before_parse</a>
<li class='indexItem indexItem2'><a href='#email_in_after_parse'>email_in_after_parse</a>
<li class='indexItem indexItem2'><a href='#enter_bug_entrydefaultvars'>enter_bug_entrydefaultvars</a>
<li class='indexItem indexItem2'><a href='#flag_end_of_update'>flag_end_of_update</a>
<li class='indexItem indexItem2'><a href='#group_before_delete'>group_before_delete</a>
@ -471,6 +473,34 @@ name="config_modify_panels"
</dd>
</dl>
<h2><a class='u' href='#___top' title='click to go to top of document'
name="email_in_before_parse"
>email_in_before_parse</a></h2>
<p>This happens right after an inbound email is converted into an Email::MIME object, but before we start parsing the email to extract field data. This means the email has already been decoded for you. It gives you a chance to interact with the email itself before <a href="../email_in.html" class="podlinkpod"
>email_in</a> starts parsing its content.</p>
<dl>
<dt><a name="mail_-_An_Email::MIME_object._The_decoded_incoming_email."
><code class="code">mail</code> - An Email::MIME object. The decoded incoming email.</a></dt>
<dd>
<dt><a name="fields_-_A_hashref._The_hash_which_will_contain_extracted_data."
><code class="code">fields</code> - A hashref. The hash which will contain extracted data.</a></dt>
</dl>
<h2><a class='u' href='#___top' title='click to go to top of document'
name="email_in_after_parse"
>email_in_after_parse</a></h2>
<p>This happens after all the data has been extracted from the email, but before the reporter is validated, during <a href="../email_in.html" class="podlinkpod"
>email_in</a>. This lets you do things after the normal parsing of the email, such as sanitizing field data, changing the user account being used to file a bug, etc.</p>
<dl>
<dt><a name="fields_-_A_hashref._The_hash_containing_the_extracted_field_data."
><code class="code">fields</code> - A hashref. The hash containing the extracted field data.</a></dt>
</dl>
<h2><a class='u' href='#___top' title='click to go to top of document'
name="enter_bug_entrydefaultvars"
>enter_bug_entrydefaultvars</a></h2>

View File

@ -1135,7 +1135,7 @@ The return value looks like this:</p>
><code class="code">component</code></a></dt>
<dd>
<p><code class="code">string</code> The name of the Component that the bug is in. Note that if there are multiple Compoonents with the same name, and you search for that name, bugs in <i>all</i> those Components will be returned. If you don&#39;t want this, be sure to also specify the <code class="code">product</code> argument.</p>
<p><code class="code">string</code> The name of the Component that the bug is in. Note that if there are multiple Components with the same name, and you search for that name, bugs in <i>all</i> those Components will be returned. If you don&#39;t want this, be sure to also specify the <code class="code">product</code> argument.</p>
<dt><a name="creation_time"
><code class="code">creation_time</code></a></dt>

View File

@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bugzilla 3.6.3 API Documentation</title>
<title>Bugzilla 3.6.4 API Documentation</title>
<link rel="stylesheet" title="style" type="text/css" href="./../../../style.css" media="all" >
</head>
<body class="contentspage">
<h1>Bugzilla 3.6.3 API Documentation</h1>
<h1>Bugzilla 3.6.4 API Documentation</h1>
<dl class='superindex'>
<dt><a name="Extensions">Extensions</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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -720,7 +720,7 @@ CLASS="screen"
> <SAMP
CLASS="prompt"
>bash$</SAMP
> createuser -U postgres -dAP bugs</PRE
> createuser -U postgres -dRSP bugs</PRE
></FONT
></TD
></TR
@ -736,15 +736,41 @@ CLASS="replaceable"
CLASS="filename"
>localconfig</TT
>.
The created user will have the ability to create databases and will not be
able to create new users.</P
The created user will not be a superuser (-S) and will not be able to create
new users (-R). He will only have the ability to create databases (-d).</P
><DIV
CLASS="note"
><P
></P
><TABLE
CLASS="note"
WIDTH="100%"
BORDER="0"
><TR
><TD
WIDTH="25"
ALIGN="CENTER"
VALIGN="TOP"
><IMG
SRC="../images/note.gif"
HSPACE="5"
ALT="Note"></TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
><P
>If your are running PostgreSQL 8.0, you must replace -dRSP by -dAP.</P
></TD
></TR
></TABLE
></DIV
></DIV
><DIV
CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN501"
NAME="AEN503"
>2.2.2.3.2. Configure PostgreSQL</A
></H4
><P
@ -805,7 +831,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN517"
NAME="AEN519"
>2.2.2.4.1. Create a New Tablespace</A
></H4
><P
@ -857,7 +883,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN525"
NAME="AEN527"
>2.2.2.4.2. Add a User to Oracle</A
></H4
><P
@ -913,7 +939,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN533"
NAME="AEN535"
>2.2.2.4.3. Configure the Web Server</A
></H4
><P
@ -951,7 +977,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN539"
NAME="AEN541"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -79,7 +79,7 @@ NAME="copyright"
>1.1. Copyright Information</A
></H1
><P
>This document is copyright (c) 2000-2010 by the various
>This document is copyright (c) 2000-2011 by the various
Bugzilla contributors who wrote it.</P
><A
NAME="AEN26"

View File

@ -7,7 +7,7 @@
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="The Bugzilla Guide - 3.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -87,7 +87,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN690"
NAME="AEN692"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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="AEN3353"
NAME="AEN3355"
></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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -146,7 +146,7 @@ HREF="gfdl-howto.html"
><P
>Version 1.1, March 2000</P
><A
NAME="AEN3263"
NAME="AEN3265"
></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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -32,7 +32,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -72,7 +72,7 @@ CLASS="glossdiv"
><H1
CLASS="glossdiv"
><A
NAME="AEN3358"
NAME="AEN3360"
>0-9, high ascii</A
></H1
><DL
@ -978,7 +978,7 @@ NAME="gloss-zarro"
Terry had the following to say:
</P
><A
NAME="AEN3602"
NAME="AEN3604"
></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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -506,7 +506,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN2118"
NAME="AEN2120"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -86,7 +86,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN2599"
NAME="AEN2601"
>5.8.1. Autolinkification</A
></H2
><P

View File

@ -2,7 +2,7 @@
<HTML
><HEAD
><TITLE
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TITLE
><META
NAME="GENERATOR"
@ -46,7 +46,7 @@ CLASS="TITLEPAGE"
CLASS="title"
><A
NAME="AEN2"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</A
></H1
><H3
@ -54,7 +54,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3
><P
CLASS="pubdate"
>2010-11-02<BR></P
>2011-11-24<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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -756,7 +756,7 @@ CLASS="filename"
TYPE="1"
><LI
><P
>&#13; CGI (3.21)
>&#13; CGI (3.51)
</P
></LI
><LI

View File

@ -7,7 +7,7 @@
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="The Bugzilla Guide - 3.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -144,7 +144,7 @@ HREF="configuration.html#database-engine"
></DT
><DT
>2.2.3. <A
HREF="configuration.html#AEN539"
HREF="configuration.html#AEN541"
>checksetup.pl</A
></DT
><DT
@ -168,7 +168,7 @@ HREF="extraconfig.html"
><DL
><DT
>2.3.1. <A
HREF="extraconfig.html#AEN690"
HREF="extraconfig.html#AEN692"
>Bug Graphs</A
></DT
><DT
@ -229,17 +229,17 @@ HREF="nonroot.html"
><DL
><DT
>2.6.1. <A
HREF="nonroot.html#AEN855"
HREF="nonroot.html#AEN857"
>Introduction</A
></DT
><DT
>2.6.2. <A
HREF="nonroot.html#AEN859"
HREF="nonroot.html#AEN861"
>MySQL</A
></DT
><DT
>2.6.3. <A
HREF="nonroot.html#AEN894"
HREF="nonroot.html#AEN896"
>Perl</A
></DT
><DT
@ -249,12 +249,12 @@ HREF="nonroot.html#install-perlmodules-nonroot"
></DT
><DT
>2.6.5. <A
HREF="nonroot.html#AEN916"
HREF="nonroot.html#AEN918"
>HTTP Server</A
></DT
><DT
>2.6.6. <A
HREF="nonroot.html#AEN928"
HREF="nonroot.html#AEN930"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -79,7 +79,7 @@ NAME="newversions"
>1.3. New Versions</A
></H1
><P
>&#13; This is the 3.6.3 version of The Bugzilla Guide. It is so named
>&#13; This is the 3.6.4 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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -83,7 +83,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN855"
NAME="AEN857"
>2.6.1. Introduction</A
></H2
><P
@ -103,7 +103,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN859"
NAME="AEN861"
>2.6.2. MySQL</A
></H2
><P
@ -159,7 +159,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN867"
NAME="AEN869"
>2.6.2.1. Running MySQL as Non-Root</A
></H3
><DIV
@ -167,7 +167,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN869"
NAME="AEN871"
>2.6.2.1.1. The Custom Configuration Method</A
></H4
><P
@ -211,7 +211,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN873"
NAME="AEN875"
>2.6.2.1.2. The Custom Built Method</A
></H4
><P
@ -234,7 +234,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN878"
NAME="AEN880"
>2.6.2.1.3. Starting the Server</A
></H4
><P
@ -362,7 +362,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN894"
NAME="AEN896"
>2.6.3. Perl</A
></H2
><P
@ -466,7 +466,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN916"
NAME="AEN918"
>2.6.5. HTTP Server</A
></H2
><P
@ -480,7 +480,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN919"
NAME="AEN921"
>2.6.5.1. Running Apache as Non-Root</A
></H3
><P
@ -562,7 +562,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN928"
NAME="AEN930"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -207,7 +207,7 @@ NAME="negation"
>&#13; At first glance, negation seems redundant. Rather than
searching for
<A
NAME="AEN2446"
NAME="AEN2448"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -218,7 +218,7 @@ CLASS="BLOCKQUOTE"
>
one could search for
<A
NAME="AEN2448"
NAME="AEN2450"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -229,7 +229,7 @@ CLASS="BLOCKQUOTE"
>
However, the search
<A
NAME="AEN2450"
NAME="AEN2452"
></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="AEN2452"
NAME="AEN2454"
></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="AEN2454"
NAME="AEN2456"
></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="AEN2456"
NAME="AEN2458"
></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="AEN2461"
NAME="AEN2463"
></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="AEN2463"
NAME="AEN2465"
></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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -193,7 +193,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN2796"
NAME="AEN2798"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -41,7 +41,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -40,7 +40,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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="AEN3098"
NAME="AEN3100"
></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="AEN3105"
NAME="AEN3107"
></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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR
@ -168,7 +168,7 @@ HREF="hintsandtips.html"
><DL
><DT
>5.8.1. <A
HREF="hintsandtips.html#AEN2599"
HREF="hintsandtips.html#AEN2601"
>Autolinkification</A
></DT
><DT
@ -275,7 +275,7 @@ HREF="whining.html#whining-query"
></DT
><DT
>5.13.4. <A
HREF="whining.html#AEN2856"
HREF="whining.html#AEN2858"
>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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
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.6.3
TITLE="The Bugzilla Guide - 3.6.4
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.6.3
>The Bugzilla Guide - 3.6.4
Release</TH
></TR
><TR

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