Bug 40933 - Merge with Bugzilla 3.4.6

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@680 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2010-03-11 11:37:19 +00:00
parent e1cd44a254
commit 8681814366
131 changed files with 1062 additions and 789 deletions

View File

@ -163,6 +163,8 @@ use File::Basename;
PASSWORD_DIGEST_ALGORITHM
PASSWORD_SALT_LENGTH
CGI_URI_LIMIT
);
@Bugzilla::Constants::EXPORT_OK = qw(contenttypes);
@ -170,7 +172,7 @@ use File::Basename;
# CONSTANTS
#
# Bugzilla version
use constant BUGZILLA_VERSION => "3.4.5";
use constant BUGZILLA_VERSION => "3.4.6";
# 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
@ -466,6 +468,11 @@ use constant PASSWORD_DIGEST_ALGORITHM => 'SHA-256';
# of your users will be able to log in until they reset their passwords.
use constant PASSWORD_SALT_LENGTH => 8;
# Certain scripts redirect to GET even if the form was submitted originally
# via POST such as buglist.cgi. This value determines whether the redirect
# can be safely done or not based on the web server's URI length setting.
use constant CGI_URI_LIMIT => 8000;
sub bz_locations {
# We know that Bugzilla/Constants.pm must be in %INC at this point.
# So the only question is, what's the name of the directory

View File

@ -761,6 +761,7 @@ sub get_selectable_classifications {
sub can_enter_product {
my ($self, $product_name, $warn) = @_;
my $dbh = Bugzilla->dbh;
$warn ||= 0;
if (!defined($product_name)) {
return unless $warn == THROW_ERROR;
@ -1116,6 +1117,7 @@ sub match {
my $wildstr = $str;
if ($wildstr =~ s/\*/\%/g # don't do wildcards if no '*' in the string
&& $user->id
# or if we only want exact matches
&& Bugzilla->params->{'usermatchmode'} ne 'off')
{
@ -1158,6 +1160,7 @@ sub match {
# then try substring search
if ((scalar(@users) == 0)
&& $user->id
&& (Bugzilla->params->{'usermatchmode'} eq 'search')
&& (length($str) >= 3))
{

View File

@ -112,6 +112,8 @@ use constant WS_ERROR_CODE => {
invalid_user_group => 504,
user_access_by_id_denied => 505,
user_access_by_match_denied => 505,
# Fatal errors (must be negative).
unknown_method => -32601,
};
# These are the fallback defaults for errors not in ERROR_CODE.

View File

@ -18,10 +18,12 @@
package Bugzilla::WebService::Server;
use strict;
use Bugzilla::Util qw(ssl_require_redirect);
use Bugzilla::Error;
sub handle_login {
my ($self, $class, $method, $full_method) = @_;
eval "require $class";
ThrowCodeError('unknown_method', {method => $full_method}) if $@;
return if $class->login_exempt($method);
Bugzilla->login();

View File

@ -85,9 +85,11 @@ if (grep { $_ =~ /^cmd\-/ } $cgi->param()) {
#
if ($cgi->request_method() eq 'POST') {
$cgi->clean_search_url();
print $cgi->redirect(-url => $cgi->self_url());
exit;
my $uri_length = length($cgi->self_url());
if ($uri_length < CGI_URI_LIMIT) {
print $cgi->redirect(-url => $cgi->self_url());
exit;
}
}
# Determine whether this is a quicksearch query.
@ -730,9 +732,11 @@ if ($format->{'extension'} eq 'atom') {
'short_desc',
'opendate',
'changeddate',
'reporter',
'reporter_realname',
'priority',
'bug_severity',
'assigned_to',
'assigned_to_realname',
'bug_status',
'product',

View File

@ -4,8 +4,6 @@
# and makes nice bugzilla user entries out of them. Also disables Bugzilla users
# that are not found in LDAP.
# $Id: bugzilla_ldapsync.rb,v 1.2 2003/04/26 16:35:04 jake%bugzilla.org Exp $
require 'ldap'
require 'dbi'
require 'getoptlong'

View File

@ -4,8 +4,6 @@
#
# Nick Barnes, Ravenbrook Limited, 2004-04-01.
#
# $Id: sendbugmail.pl,v 1.8 2007/10/19 06:46:17 mkanat%bugzilla.org Exp $
#
# Bugzilla email script for Bugzilla 2.17.4 and later. Invoke this to send
# bugmail for a bug which has been changed directly in the database.
# This uses Bugzilla's own BugMail facility, and will email the

View File

@ -1,7 +1,6 @@
#!/bin/sh
# -*- Mode: ksh -*-
##############################################################################
# $Id: yp_nomail.sh,v 1.1 2000/09/12 23:50:31 cyeh%bluemartini.com Exp $
# yp_nomail
#
# Our mail admins got annoyed when bugzilla kept sending email

View File

@ -2,7 +2,7 @@
<HTML
><HEAD
><TITLE
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TITLE
><META
NAME="GENERATOR"
@ -43,7 +43,7 @@ CLASS="TITLEPAGE"
CLASS="title"
><A
NAME="AEN2"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</A
></H1
><H3
@ -51,7 +51,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3
><P
CLASS="pubdate"
>2010-01-31<BR></P
>2010-03-07<BR></P
><DIV
><DIV
CLASS="abstract"
@ -688,123 +688,33 @@ NAME="newversions"
>1.3. New Versions</A
></H2
><P
>&#13; This is the 3.4.5 version of The Bugzilla Guide. It is so named
>&#13; This is the 3.4.6 version of The Bugzilla Guide. It is so named
to match the current version of Bugzilla.
</P
><P
>&#13; The latest version of this guide can always be found at <A
HREF="http://www.bugzilla.org"
HREF="http://www.bugzilla.org/docs/"
TARGET="_top"
>http://www.bugzilla.org</A
>, or checked out via CVS by
following the <A
HREF="http://www.mozilla.org/cvs.html"
TARGET="_top"
>Mozilla
CVS</A
> instructions and check out the
<TT
CLASS="filename"
>mozilla/webtools/bugzilla/docs/</TT
>
subtree. However, you should read the version
which came with the Bugzilla release you are using.
</P
><P
>&#13; The Bugzilla Guide, or a section of it, is also available in
the following languages:
<A
HREF="http://www.traduc.org/docs/guides/lecture/bugzilla/"
TARGET="_top"
>French</A
>,
<A
HREF="http://bugzilla-de.sourceforge.net/docs/html/"
TARGET="_top"
>German</A
>,
<A
HREF="http://www.bugzilla.jp/docs/2.18/"
TARGET="_top"
>Japanese</A
>.
Note that these may be outdated or not up to date.
>http://www.bugzilla.org/docs/</A
>. However, you should read
the version which came with the Bugzilla release you are using.
</P
><P
>
In addition, there are Bugzilla template localization projects in
the following languages. They may have translated documentation
available:
<A
HREF="http://sourceforge.net/projects/bugzilla-ar/"
HREF="http://www.bugzilla.org/download/#localizations"
TARGET="_top"
>Arabic</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-be/"
TARGET="_top"
>Belarusian</A
>,
<A
HREF="http://openfmi.net/projects/mozilla-bg/"
TARGET="_top"
>Bulgarian</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-br/"
TARGET="_top"
>Brazilian Portuguese</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-cn/"
TARGET="_top"
>Chinese</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-fr/"
TARGET="_top"
>French</A
>,
<A
HREF="http://germzilla.ganderbay.net/"
TARGET="_top"
>German</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-it/"
TARGET="_top"
>Italian</A
>,
<A
HREF="http://www.bugzilla.jp/about/jp.html"
TARGET="_top"
>Japanese</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-kr/"
TARGET="_top"
>Korean</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-ru/"
TARGET="_top"
>Russian</A
> and
<A
HREF="http://sourceforge.net/projects/bugzilla-es/"
TARGET="_top"
>Spanish</A
>several languages</A
>.
</P
><P
>
If you would like to volunteer to translate the Guide into additional
languages, please contact
They may have translated documentation available. If you would like to
volunteer to translate the Guide into additional languages, please visit the
<A
HREF="mailto:justdave@bugzilla.org"
HREF="https://wiki.mozilla.org/Bugzilla:L10n"
TARGET="_top"
>Dave Miller</A
>.
>Bugzilla L10n team</A
>
page.
</P
></DIV
><DIV
@ -958,7 +868,7 @@ CLASS="informaltable"
><P
></P
><A
NAME="AEN121"
NAME="AEN103"
></A
><TABLE
BORDER="0"
@ -1899,7 +1809,7 @@ CLASS="filename"
TYPE="1"
><LI
><P
>&#13; CGI 3.21
>&#13; CGI (3.21)
</P
></LI
><LI
@ -1909,6 +1819,16 @@ TYPE="1"
></LI
><LI
><P
>&#13; DateTime (0.28)
</P
></LI
><LI
><P
>&#13; DateTime::TimeZone (0.71)
</P
></LI
><LI
><P
>&#13; DBI (1.41)
</P
></LI
@ -1933,11 +1853,7 @@ HREF="#install-modules-dbd-mysql"
></LI
><LI
><P
>&#13; <A
HREF="#install-modules-template"
>Template</A
>
(2.22)
>&#13; Digest::SHA (any)
</P
></LI
><LI
@ -1947,9 +1863,33 @@ HREF="#install-modules-template"
></LI
><LI
><P
>&#13; Email::MIME (1.861)
</P
></LI
><LI
><P
>&#13; Email::MIME::Encodings (1.313)
</P
></LI
><LI
><P
>&#13; Email::MIME::Modifier (1.442)
</P
></LI
><LI
><P
>&#13; <A
HREF="#install-modules-template"
>Template</A
>
(2.22)
</P
></LI
><LI
><P
>&#13; URI (any)
</P
></LI
></OL
>
@ -1970,7 +1910,7 @@ HREF="#install-modules-gd"
><LI
><P
>&#13; Template::Plugin::GD::Image
(1.20) for Graphical Reports
(any) for Graphical Reports
</P
></LI
><LI
@ -2042,6 +1982,12 @@ HREF="#install-modules-patchreader"
></LI
><LI
><P
>&#13; Authen::SASL
(any) for SASL Authentication
</P
></LI
><LI
><P
>&#13; Authen::Radius
(any) for RADIUS Authentication
</P
@ -2081,6 +2027,18 @@ HREF="#install-modules-soap-lite"
></LI
><LI
><P
>&#13; TheSchwartz
(any) for Mail Queueing
</P
></LI
><LI
><P
>&#13; Daemon::Generic
(any) for Mail Queueing
</P
></LI
><LI
><P
>&#13; mod_perl2
(1.999022) for mod_perl
</P
@ -4086,9 +4044,7 @@ VALIGN="TOP"
CLASS="filename"
>checksetup.pl</TT
> run. You should go through
the parameters on the Edit Parameters page
(see link in the footer) and see if there are any you wish to
change.
the Parameters page and see if there are any you wish to change.
They key parameters are documented in <A
HREF="#parameters"
>Section 3.1</A
@ -4111,19 +4067,6 @@ CLASS="command"
>.
</P
><P
>&#13; This would also be a good time to revisit the
<TT
CLASS="filename"
>localconfig</TT
> file and make sure that the
names of the priorities, severities, platforms and operating systems
are those you wish to use when you start creating bugs. Remember
to rerun <TT
CLASS="filename"
>checksetup.pl</TT
> if you change it.
</P
><P
>&#13; Bugzilla has several optional features which require extra
configuration. You can read about those in
<A
@ -4150,7 +4093,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN733"
NAME="AEN730"
>2.3.1. Bug Graphs</A
></H3
><P
@ -5284,7 +5227,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN898"
NAME="AEN895"
>2.6.1. Introduction</A
></H3
><P
@ -5304,7 +5247,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN902"
NAME="AEN899"
>2.6.2. MySQL</A
></H3
><P
@ -5360,7 +5303,7 @@ CLASS="section"
><HR><H4
CLASS="section"
><A
NAME="AEN910"
NAME="AEN907"
>2.6.2.1. Running MySQL as Non-Root</A
></H4
><DIV
@ -5368,7 +5311,7 @@ CLASS="section"
><H5
CLASS="section"
><A
NAME="AEN912"
NAME="AEN909"
>2.6.2.1.1. The Custom Configuration Method</A
></H5
><P
@ -5412,7 +5355,7 @@ CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN916"
NAME="AEN913"
>2.6.2.1.2. The Custom Built Method</A
></H5
><P
@ -5435,7 +5378,7 @@ CLASS="section"
><HR><H5
CLASS="section"
><A
NAME="AEN921"
NAME="AEN918"
>2.6.2.1.3. Starting the Server</A
></H5
><P
@ -5563,7 +5506,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN937"
NAME="AEN934"
>2.6.3. Perl</A
></H3
><P
@ -5667,7 +5610,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN959"
NAME="AEN956"
>2.6.5. HTTP Server</A
></H3
><P
@ -5681,7 +5624,7 @@ CLASS="section"
><HR><H4
CLASS="section"
><A
NAME="AEN962"
NAME="AEN959"
>2.6.5.1. Running Apache as Non-Root</A
></H4
><P
@ -5763,7 +5706,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN971"
NAME="AEN968"
>2.6.6. Bugzilla</A
></H3
><P
@ -11180,7 +11123,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN2173"
NAME="AEN2170"
>3.15.4. Assigning Group Controls to Products</A
></H3
><P
@ -12513,7 +12456,7 @@ NAME="negation"
>&#13; At first glance, negation seems redundant. Rather than
searching for
<A
NAME="AEN2500"
NAME="AEN2497"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12524,7 +12467,7 @@ CLASS="BLOCKQUOTE"
>
one could search for
<A
NAME="AEN2502"
NAME="AEN2499"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12535,7 +12478,7 @@ CLASS="BLOCKQUOTE"
>
However, the search
<A
NAME="AEN2504"
NAME="AEN2501"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12547,7 +12490,7 @@ CLASS="BLOCKQUOTE"
would find every bug where anyone on the CC list did not contain
"@mozilla.org" while
<A
NAME="AEN2506"
NAME="AEN2503"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12561,7 +12504,7 @@ CLASS="BLOCKQUOTE"
complex expressions to be built using terms OR'd together and then
negated. Negation permits queries such as
<A
NAME="AEN2508"
NAME="AEN2505"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12574,7 +12517,7 @@ CLASS="BLOCKQUOTE"
to find bugs that are neither
in the update product or in the documentation component or
<A
NAME="AEN2510"
NAME="AEN2507"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12602,7 +12545,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="AEN2515"
NAME="AEN2512"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -12617,7 +12560,7 @@ CLASS="BLOCKQUOTE"
containing "foo@" and someone else containing "@mozilla.org",
then you would need two boolean charts.
<A
NAME="AEN2517"
NAME="AEN2514"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -13323,7 +13266,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN2653"
NAME="AEN2650"
>5.8.1. Autolinkification</A
></H3
><P
@ -14198,7 +14141,7 @@ CLASS="section"
><HR><H4
CLASS="section"
><A
NAME="AEN2850"
NAME="AEN2847"
>5.11.2.1. Creating Charts</A
></H4
><P
@ -14667,7 +14610,7 @@ CLASS="section"
><HR><H3
CLASS="section"
><A
NAME="AEN2910"
NAME="AEN2907"
>5.13.4. Saving Your Changes</A
></H3
><P
@ -16533,7 +16476,7 @@ NAME="trbl-relogin-everyone-share"
>Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
></P
><A
NAME="AEN3216"
NAME="AEN3213"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -16574,7 +16517,7 @@ NAME="trbl-relogin-everyone-restrict"
>Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
></P
><A
NAME="AEN3223"
NAME="AEN3220"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -17394,7 +17337,7 @@ NAME="gfdl"
><P
>Version 1.1, March 2000</P
><A
NAME="AEN3392"
NAME="AEN3389"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -17857,7 +17800,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="AEN3482"
NAME="AEN3479"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -17894,7 +17837,7 @@ CLASS="glossdiv"
><H1
CLASS="glossdiv"
><A
NAME="AEN3487"
NAME="AEN3484"
>0-9, high ascii</A
></H1
><DL
@ -18800,7 +18743,7 @@ NAME="gloss-zarro"
Terry had the following to say:
</P
><A
NAME="AEN3731"
NAME="AEN3728"
></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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
TITLE="The Bugzilla Guide - 3.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="NEXT"
@ -36,7 +36,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -154,7 +154,7 @@ ACCESSKEY="N"
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -359,7 +359,7 @@ HREF="groups.html#users-and-groups"
></DT
><DT
>3.15.4. <A
HREF="groups.html#AEN2173"
HREF="groups.html#AEN2170"
>Assigning Group Controls to Products</A
></DT
></DL

View File

@ -106,7 +106,9 @@ name="METHODS"
<p><code class="code">undef</code> if there is no currently logged in user, the currently logged in user is not in the <i>sudoer</i> group, or there is no session in progress. If an sudo session is in progress, returns the <code class="code">Bugzilla::User</code> object corresponding to the person who logged in and initiated the session. If no session is in progress, returns the <code class="code">Bugzilla::User</code> object corresponding to the currently logged in user.</p>
<dt><a
><code class="code">sudo_request</code> This begins an sudo session for the current request. It is meant to be used when a session has just started. For normal use, sudo access should normally be set at login time.
><code class="code">sudo_request</code> This begins an sudo session for the current request. It is meant to be used when a session has just started. For normal use, sudo access should normally be set at login time.</a></dt>
<dd>
<dt><a name="login"
><code class="code">login</code></a></dt>

View File

@ -163,7 +163,9 @@ name="Functions"
<p>Function to connect to the shadow database, returning a new database handle. This routine <code class="code">die</code>s if no shadow database is configured.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -210,7 +212,9 @@ name="Functions"
<p>Creates an empty database with the name <code class="code">$db_name</code>, if that database doesn&#39;t already exist. Prints an error message and exits if we can&#39;t create the database.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns_(nothing)"
><b>Returns</b> (nothing)</a></dt>
</dl>
@ -232,17 +236,29 @@ name="Functions"
<dd>
<dl>
<dt><a name="$driver_-_name_of_the_database_driver_to_use"
><code class="code">$driver</code> - name of the database driver to use
><code class="code">$driver</code> - name of the database driver to use</a></dt>
<dd>
<dt><a name="$host_-_host_running_the_database_we_are_connecting_to"
><code class="code">$host</code> - host running the database we are connecting to
><code class="code">$host</code> - host running the database we are connecting to</a></dt>
<dd>
<dt><a name="$dbname_-_name_of_the_database_to_connect_to"
><code class="code">$dbname</code> - name of the database to connect to
><code class="code">$dbname</code> - name of the database to connect to</a></dt>
<dd>
<dt><a name="$port_-_port_the_database_is_listening_on"
><code class="code">$port</code> - port the database is listening on
><code class="code">$port</code> - port the database is listening on</a></dt>
<dd>
<dt><a name="$sock_-_socket_the_database_is_listening_on"
><code class="code">$sock</code> - socket the database is listening on
><code class="code">$sock</code> - socket the database is listening on</a></dt>
<dd>
<dt><a name="$user_-_username_used_to_log_in_to_the_database"
><code class="code">$user</code> - username used to log in to the database
><code class="code">$user</code> - username used to log in to the database</a></dt>
<dd>
<dt><a name="$pass_-_password_used_to_log_in_to_the_database"
><code class="code">$pass</code> - password used to log in to the database</a></dt>
</dl>
@ -297,15 +313,25 @@ name="Constructor"
<dd>
<dl>
<dt><a name="$user_-_username_used_to_log_in_to_the_database"
><code class="code">$user</code> - username used to log in to the database
><code class="code">$user</code> - username used to log in to the database</a></dt>
<dd>
<dt><a name="$pass_-_password_used_to_log_in_to_the_database"
><code class="code">$pass</code> - password used to log in to the database
><code class="code">$pass</code> - password used to log in to the database</a></dt>
<dd>
<dt><a name="$host_-_host_running_the_database_we_are_connecting_to"
><code class="code">$host</code> - host running the database we are connecting to
><code class="code">$host</code> - host running the database we are connecting to</a></dt>
<dd>
<dt><a name="$dbname_-_name_of_the_database_to_connect_to"
><code class="code">$dbname</code> - name of the database to connect to
><code class="code">$dbname</code> - name of the database to connect to</a></dt>
<dd>
<dt><a name="$port_-_port_the_database_is_listening_on"
><code class="code">$port</code> - port the database is listening on
><code class="code">$port</code> - port the database is listening on</a></dt>
<dd>
<dt><a name="$sock_-_socket_the_database_is_listening_on"
><code class="code">$sock</code> - socket the database is listening on</a></dt>
</dl>
@ -352,11 +378,17 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$expr_-_SQL_expression_for_the_text_to_be_searched_(scalar)"
><code class="code">$expr</code> - SQL expression for the text to be searched (scalar)
><code class="code">$expr</code> - SQL expression for the text to be searched (scalar)</a></dt>
<dd>
<dt><a name="$pattern_-_the_regular_expression_to_search_for_(scalar)"
><code class="code">$pattern</code> - the regular expression to search for (scalar)
><code class="code">$pattern</code> - the regular expression to search for (scalar)</a></dt>
<dd>
<dt><a name="$nocheck_-_true_if_the_pattern_should_not_be_tested;_false_otherwise_(boolean)"
><code class="code">$nocheck</code> - true if the pattern should not be tested; false otherwise (boolean)
><code class="code">$nocheck</code> - true if the pattern should not be tested; false otherwise (boolean)</a></dt>
<dd>
<dt><a name="$real_pattern_-_the_real_regular_expression_to_search_for._This_argument_is_used_when_$pattern_is_a_placeholder_(&#39;?&#39;)."
><code class="code">$real_pattern</code> - the real regular expression to search for. This argument is used when <code class="code">$pattern</code> is a placeholder (&#39;?&#39;).</a></dt>
</dl>
@ -416,7 +448,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$limit_-_number_of_rows_to_return_from_query_(scalar)"
><code class="code">$limit</code> - number of rows to return from query (scalar)
><code class="code">$limit</code> - number of rows to return from query (scalar)</a></dt>
<dd>
<dt><a name="$offset_-_number_of_rows_to_skip_before_counting_(scalar)"
><code class="code">$offset</code> - number of rows to skip before counting (scalar)</a></dt>
</dl>
@ -508,7 +542,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$date_-_date_or_name_of_date_type_column_(scalar)"
><code class="code">$date</code> - date or name of date type column (scalar)
><code class="code">$date</code> - date or name of date type column (scalar)</a></dt>
<dd>
<dt><a
><code class="code">$format</code> - format string for date output (scalar) (<code class="code">%Y</code> = year, four digits, <code class="code">%y</code> = year, two digits, <code class="code">%m</code> = month, <code class="code">%d</code> = day, <code class="code">%a</code> = weekday name, 3 letters, <code class="code">%H</code> = hour 00-23, <code class="code">%i</code> = minute, <code class="code">%s</code> = second)</a></dt>
</dl>
@ -540,7 +576,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$interval_-_the_time_interval_requested_(e.g._&#39;30&#39;)_(integer)"
><code class="code">$interval</code> - the time interval requested (e.g. &#39;30&#39;) (integer)
><code class="code">$interval</code> - the time interval requested (e.g. &#39;30&#39;) (integer)</a></dt>
<dd>
<dt><a name="$units_-_the_units_the_interval_is_in_(e.g._&#39;MINUTE&#39;)_(string)"
><code class="code">$units</code> - the units the interval is in (e.g. &#39;MINUTE&#39;) (string)</a></dt>
</dl>
@ -573,7 +611,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$fragment_-_the_string_fragment_we_are_searching_for_(scalar)"
><code class="code">$fragment</code> - the string fragment we are searching for (scalar)
><code class="code">$fragment</code> - the string fragment we are searching for (scalar)</a></dt>
<dd>
<dt><a name="$text_-_the_text_to_search_(scalar)"
><code class="code">$text</code> - the text to search (scalar)</a></dt>
</dl>
@ -612,7 +652,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$needed_columns_-_string_with_comma_separated_list_of_columns_we_need_to_group_by_to_get_expected_result_(scalar)"
><code class="code">$needed_columns</code> - string with comma separated list of columns we need to group by to get expected result (scalar)
><code class="code">$needed_columns</code> - string with comma separated list of columns we need to group by to get expected result (scalar)</a></dt>
<dd>
<dt><a
><code class="code">$optional_columns</code> - string with comma separated list of all other columns we are querying for, but which are not in the required list.</a></dt>
</dl>
@ -671,7 +713,9 @@ name="SQL_Generation"
<p>Note that both parameters need to be sql-quoted.</p>
<dt><a name="$string_The_string_we&#39;re_truncating"
><code class="code">$string</code> The string we&#39;re truncating
><code class="code">$string</code> The string we&#39;re truncating</a></dt>
<dd>
<dt><a name="$substring_The_substring_we&#39;re_truncating_at."
><code class="code">$substring</code> The substring we&#39;re truncating at.</a></dt>
</dl>
@ -695,7 +739,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$column_-_name_of_column_to_search_(scalar)"
><code class="code">$column</code> - name of column to search (scalar)
><code class="code">$column</code> - name of column to search (scalar)</a></dt>
<dd>
<dt><a name="$text_-_text_to_search_for_(scalar)"
><code class="code">$text</code> - text to search for (scalar)</a></dt>
</dl>
@ -725,9 +771,13 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$left_-_What_should_be_on_the_left-hand-side_of_the_operation."
><code class="code">$left</code> - What should be on the left-hand-side of the operation.
><code class="code">$left</code> - What should be on the left-hand-side of the operation.</a></dt>
<dd>
<dt><a name="$right_-_What_should_be_on_the_right-hand-side_of_the_operation."
><code class="code">$right</code> - What should be on the right-hand-side of the operation.
><code class="code">$right</code> - What should be on the right-hand-side of the operation.</a></dt>
<dd>
<dt><a
><code class="code">$op</code> (optional) - What the operation is. Should be a valid ANSI SQL comparison operator, such as <code class="code">=</code>, <code class="code">&#60;</code>, <code class="code">LIKE</code>, etc. Defaults to <code class="code">=</code> if not specified.</a></dt>
</dl>
@ -802,7 +852,9 @@ name="SQL_Generation"
<dd>
<dl>
<dt><a name="$column_name_-_Column_name_(e.g._bug_id)"
><code class="code">$column_name</code> - Column name (e.g. <code class="code">bug_id</code>)
><code class="code">$column_name</code> - Column name (e.g. <code class="code">bug_id</code>)</a></dt>
<dd>
<dt><a name="$in_list_ref_-_an_arrayref_containing_values_for_IN_()"
><code class="code">$in_list_ref</code> - an arrayref containing values for <code class="code">IN ()</code></a></dt>
</dl>
@ -850,7 +902,9 @@ name="General_Information_Methods"
<dd>
<dl>
<dt><a name="$table_-_name_of_table_containing_serial_column_(scalar)"
><code class="code">$table</code> - name of table containing serial column (scalar)
><code class="code">$table</code> - name of table containing serial column (scalar)</a></dt>
<dd>
<dt><a name="$column_-_name_of_column_containing_serial_data_type_(scalar)"
><code class="code">$column</code> - name of column containing serial data type (scalar)</a></dt>
</dl>
@ -884,7 +938,9 @@ name="Database_Setup_Methods"
<p>For an upgrade or an initial installation, populates the tables that hold the legal values for the old &#34;enum&#34; fields: <code class="code">bug_severity</code>, <code class="code">resolution</code>, etc. Prints out information if it inserts anything into the DB.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns_(nothing)"
><b>Returns</b> (nothing)</a></dt>
</dl>
@ -917,11 +973,17 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$table_-_the_table_where_the_column_is_being_added"
><code class="code">$table</code> - the table where the column is being added
><code class="code">$table</code> - the table where the column is being added</a></dt>
<dd>
<dt><a name="$name_-_the_name_of_the_new_column"
><code class="code">$name</code> - the name of the new column
><code class="code">$name</code> - the name of the new column</a></dt>
<dd>
<dt><a name="\%definition_-_Abstract_column_definition_for_the_new_column"
><code class="code">\%definition</code> - Abstract column definition for the new column
><code class="code">\%definition</code> - Abstract column definition for the new column</a></dt>
<dd>
<dt><a
><code class="code">$init_value</code> (optional) - An initial value to set the column to. Required if your column is NOT NULL and has no DEFAULT set.</a></dt>
</dl>
@ -947,9 +1009,13 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$table_-_The_table_the_new_index_is_on."
><code class="code">$table</code> - The table the new index is on.
><code class="code">$table</code> - The table the new index is on.</a></dt>
<dd>
<dt><a name="$name_-_A_name_for_the_new_index."
><code class="code">$name</code> - A name for the new index.
><code class="code">$name</code> - A name for the new index.</a></dt>
<dd>
<dt><a name="$definition_-_An_abstract_index_definition._Either_a_hashref_or_an_arrayref."
><code class="code">$definition</code> - An abstract index definition. Either a hashref or an arrayref.</a></dt>
</dl>
@ -1004,7 +1070,9 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$table_-_The_table_that_the_index_is_on."
><code class="code">$table</code> - The table that the index is on.
><code class="code">$table</code> - The table that the index is on.</a></dt>
<dd>
<dt><a name="$name_-_The_name_of_the_index_that_you_want_to_drop."
><code class="code">$name</code> - The name of the index that you want to drop.</a></dt>
</dl>
@ -1054,11 +1122,17 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$table_-_the_table_where_the_column_is"
><code class="code">$table</code> - the table where the column is
><code class="code">$table</code> - the table where the column is</a></dt>
<dd>
<dt><a name="$name_-_the_name_of_the_column_you_want_to_change"
><code class="code">$name</code> - the name of the column you want to change
><code class="code">$name</code> - the name of the column you want to change</a></dt>
<dd>
<dt><a name="\%new_def_-_An_abstract_column_definition_for_the_new_data_type_of_the_columm"
><code class="code">\%new_def</code> - An abstract column definition for the new data type of the columm
><code class="code">\%new_def</code> - An abstract column definition for the new data type of the columm</a></dt>
<dd>
<dt><a
><code class="code">$set_nulls_to</code> (Optional) - If you are changing the column to be NOT NULL, you probably also want to set any existing NULL columns to a particular value. Specify that value here. <b>NOTE</b>: The value should not already be SQL-quoted.</a></dt>
</dl>
@ -1084,7 +1158,9 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$table_-_The_table_where_the_column_is"
><code class="code">$table</code> - The table where the column is
><code class="code">$table</code> - The table where the column is</a></dt>
<dd>
<dt><a name="$column_-_The_name_of_the_column_you_want_to_drop"
><code class="code">$column</code> - The name of the column you want to drop</a></dt>
</dl>
@ -1110,9 +1186,13 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$table_-_The_name_of_the_table_containing_the_column_that_you_want_to_rename"
><code class="code">$table</code> - The name of the table containing the column that you want to rename
><code class="code">$table</code> - The name of the table containing the column that you want to rename</a></dt>
<dd>
<dt><a name="$old_name_-_The_current_name_of_the_column_that_you_want_to_rename"
><code class="code">$old_name</code> - The current name of the column that you want to rename
><code class="code">$old_name</code> - The current name of the column that you want to rename</a></dt>
<dd>
<dt><a name="$new_name_-_The_new_name_of_the_column"
><code class="code">$new_name</code> - The new name of the column</a></dt>
</dl>
@ -1140,7 +1220,9 @@ name="Schema_Modification_Methods"
<dd>
<dl>
<dt><a name="$old_name_-_The_current_name_of_the_table."
><code class="code">$old_name</code> - The current name of the table.
><code class="code">$old_name</code> - The current name of the table.</a></dt>
<dd>
<dt><a name="$new_name_-_What_you&#39;re_renaming_the_table_to."
><code class="code">$new_name</code> - What you&#39;re renaming the table to.</a></dt>
</dl>
@ -1178,7 +1260,9 @@ name="Schema_Information_Methods"
<dd>
<dl>
<dt><a name="$table_-_The_name_of_the_table_the_column_is_in."
><code class="code">$table</code> - The name of the table the column is in.
><code class="code">$table</code> - The name of the table the column is in.</a></dt>
<dd>
<dt><a name="$column_-_The_name_of_the_column."
><code class="code">$column</code> - The name of the column.</a></dt>
</dl>
@ -1208,7 +1292,9 @@ name="Schema_Information_Methods"
<dd>
<dl>
<dt><a name="$table_-_The_table_the_index_is_on."
><code class="code">$table</code> - The table the index is on.
><code class="code">$table</code> - The table the index is on.</a></dt>
<dd>
<dt><a name="$index_-_The_name_of_the_index."
><code class="code">$index</code> - The name of the index.</a></dt>
</dl>
@ -1289,11 +1375,17 @@ name="SUBCLASS_HELPERS"
<dd>
<dl>
<dt><a name="$dsn_-_database_connection_string"
><code class="code">$dsn</code> - database connection string
><code class="code">$dsn</code> - database connection string</a></dt>
<dd>
<dt><a name="$user_-_username_used_to_log_in_to_the_database"
><code class="code">$user</code> - username used to log in to the database
><code class="code">$user</code> - username used to log in to the database</a></dt>
<dd>
<dt><a name="$pass_-_password_used_to_log_in_to_the_database"
><code class="code">$pass</code> - password used to log in to the database
><code class="code">$pass</code> - password used to log in to the database</a></dt>
<dd>
<dt><a
><code class="code">\%override_attrs</code> - set of attributes for DB connection (optional). You only have to set attributes that you want to be different from the default attributes set inside of <code class="code">db_new</code>.</a></dt>
</dl>

View File

@ -427,7 +427,9 @@ name="METHODS"
<dd>
<dl>
<dt><a name="$old_name_-_The_current_name_of_the_table."
><code class="code">$old_name</code> - The current name of the table.
><code class="code">$old_name</code> - The current name of the table.</a></dt>
<dd>
<dt><a name="$new_name_-_The_new_name_of_the_table."
><code class="code">$new_name</code> - The new name of the table.</a></dt>
</dl>
@ -742,7 +744,9 @@ name="ABSTRACT_DATA_TYPES"
<dl>
<dt><a name="TRUE"
><code class="code">TRUE</code>
><code class="code">TRUE</code></a></dt>
<dd>
<dt><a name="FALSE"
><code class="code">FALSE</code></a></dt>
</dl>

View File

@ -239,21 +239,37 @@ name="Instance_Mutators"
<dl>
<dt><a name="set_description"
><code class="code">set_description</code>
><code class="code">set_description</code></a></dt>
<dd>
<dt><a name="set_enter_bug"
><code class="code">set_enter_bug</code>
><code class="code">set_enter_bug</code></a></dt>
<dd>
<dt><a name="set_obsolete"
><code class="code">set_obsolete</code>
><code class="code">set_obsolete</code></a></dt>
<dd>
<dt><a name="set_sortkey"
><code class="code">set_sortkey</code>
><code class="code">set_sortkey</code></a></dt>
<dd>
<dt><a name="set_in_new_bugmail"
><code class="code">set_in_new_bugmail</code>
><code class="code">set_in_new_bugmail</code></a></dt>
<dd>
<dt><a name="set_buglist"
><code class="code">set_buglist</code>
><code class="code">set_buglist</code></a></dt>
<dd>
<dt><a name="set_visibility_field"
><code class="code">set_visibility_field</code>
><code class="code">set_visibility_field</code></a></dt>
<dd>
<dt><a name="set_visibility_value"
><code class="code">set_visibility_value</code>
><code class="code">set_visibility_value</code></a></dt>
<dd>
<dt><a name="set_value_field"
><code class="code">set_value_field</code></a></dt>
</dl>
@ -285,17 +301,29 @@ name="Class_Methods"
<dl>
<dt><a name="name_Required_-_The_name_of_the_field."
><code class="code">name</code> <b>Required</b> - The name of the field.
><code class="code">name</code> <b>Required</b> - The name of the field.</a></dt>
<dd>
<dt><a name="description_Required_-_The_field_label_to_display_in_the_UI."
><code class="code">description</code> <b>Required</b> - The field label to display in the UI.
><code class="code">description</code> <b>Required</b> - The field label to display in the UI.</a></dt>
<dd>
<dt><a name="mailhead_-_boolean_-_Whether_this_field_appears_at_the_top_of_the_bugmail_for_a_newly-filed_bug._Defaults_to_0."
><code class="code">mailhead</code> - boolean - Whether this field appears at the top of the bugmail for a newly-filed bug. Defaults to 0.
><code class="code">mailhead</code> - boolean - Whether this field appears at the top of the bugmail for a newly-filed bug. Defaults to 0.</a></dt>
<dd>
<dt><a
><code class="code">custom</code> - boolean - True if this is a Custom Field. The field will be added to the <code class="code">bugs</code> table if it does not exist. Defaults to 0.
><code class="code">custom</code> - boolean - True if this is a Custom Field. The field will be added to the <code class="code">bugs</code> table if it does not exist. Defaults to 0.</a></dt>
<dd>
<dt><a name="sortkey_-_integer_-_The_sortkey_of_the_field._Defaults_to_0."
><code class="code">sortkey</code> - integer - The sortkey of the field. Defaults to 0.
><code class="code">sortkey</code> - integer - The sortkey of the field. Defaults to 0.</a></dt>
<dd>
<dt><a name="enter_bug_-_boolean_-_Whether_this_field_is_editable_on_the_bug_creation_form._Defaults_to_0."
><code class="code">enter_bug</code> - boolean - Whether this field is editable on the bug creation form. Defaults to 0.
><code class="code">enter_bug</code> - boolean - Whether this field is editable on the bug creation form. Defaults to 0.</a></dt>
<dd>
<dt><a name="buglist_-_boolean_-_Whether_this_field_is_selectable_as_a_display_or_order_column_in_bug_lists._Defaults_to_0."
><code class="code">buglist</code> - boolean - Whether this field is selectable as a display or order column in bug lists. Defaults to 0.</a></dt>

View File

@ -275,11 +275,17 @@ name="CONTRIBUTORS"
<dl>
<dt><a name="Myk_Melez_&#60;myk@mozilla.org&#62;"
>Myk Melez &#60;myk@mozilla.org&#62;
>Myk Melez &#60;myk@mozilla.org&#62;</a></dt>
<dd>
<dt><a name="Jouni_Heikniemi_&#60;jouni@heikniemi.net&#62;"
>Jouni Heikniemi &#60;jouni@heikniemi.net&#62;
>Jouni Heikniemi &#60;jouni@heikniemi.net&#62;</a></dt>
<dd>
<dt><a name="Kevin_Benton_&#60;kevin.benton@amd.com&#62;"
>Kevin Benton &#60;kevin.benton@amd.com&#62;
>Kevin Benton &#60;kevin.benton@amd.com&#62;</a></dt>
<dd>
<dt><a name="Fr&#195;&#169;d&#195;&#169;ric_Buclin_&#60;LpSolit@gmail.com&#62;"
>Fr&#195;&#169;d&#195;&#169;ric Buclin &#60;LpSolit@gmail.com&#62;</a></dt>
</dl>

View File

@ -206,9 +206,13 @@ name="CONTRIBUTORS"
<dl>
<dt><a name="Myk_Melez_&#60;myk@mozilla.org&#62;"
>Myk Melez &#60;myk@mozilla.org&#62;
>Myk Melez &#60;myk@mozilla.org&#62;</a></dt>
<dd>
<dt><a name="Kevin_Benton_&#60;kevin.benton@amd.com&#62;"
>Kevin Benton &#60;kevin.benton@amd.com&#62;
>Kevin Benton &#60;kevin.benton@amd.com&#62;</a></dt>
<dd>
<dt><a name="Fr&#195;&#169;d&#195;&#169;ric_Buclin_&#60;LpSolit@gmail.com&#62;"
>Fr&#195;&#169;d&#195;&#169;ric Buclin &#60;LpSolit@gmail.com&#62;</a></dt>
</dl>

View File

@ -120,7 +120,9 @@ name="SUBROUTINES"
<dd>
<dl>
<dt><a name="$name_-_The_name_of_the_hook_to_invoke."
><code class="code">$name</code> - The name of the hook to invoke.
><code class="code">$name</code> - The name of the hook to invoke.</a></dt>
<dd>
<dt><a name="$args_-_A_hashref._The_named_args_to_pass_to_the_hook._They_will_be_accessible_to_the_hook_via_&#34;hook_args&#34;_in_Bugzilla."
><code class="code">$args</code> - A hashref. The named args to pass to the hook. They will be accessible to the hook via <a href="../Bugzilla.html#hook_args" class="podlinkpod"
>&#34;hook_args&#34; in Bugzilla</a>.</a></dt>
@ -199,7 +201,9 @@ name="bug-end_of_create"
<dl>
<dt><a name="bug_-_The_changed_bug_object,_with_all_fields_set_to_their_updated_values."
><code class="code">bug</code> - The changed bug object, with all fields set to their updated values.
><code class="code">bug</code> - The changed bug object, with all fields set to their updated values.</a></dt>
<dd>
<dt><a name="timestamp_-_The_timestamp_used_for_all_updates_in_this_transaction."
><code class="code">timestamp</code> - The timestamp used for all updates in this transaction.</a></dt>
</dl>
@ -215,9 +219,13 @@ name="bug-end_of_update"
<dl>
<dt><a name="bug_-_The_changed_bug_object,_with_all_fields_set_to_their_updated_values."
><code class="code">bug</code> - The changed bug object, with all fields set to their updated values.
><code class="code">bug</code> - The changed bug object, with all fields set to their updated values.</a></dt>
<dd>
<dt><a name="timestamp_-_The_timestamp_used_for_all_updates_in_this_transaction."
><code class="code">timestamp</code> - The timestamp used for all updates in this transaction.
><code class="code">timestamp</code> - The timestamp used for all updates in this transaction.</a></dt>
<dd>
<dt><a name="changes_-_The_hash_of_changed_fields._$changes-&#62;{field}_=_[old,_new]"
><code class="code">changes</code> - The hash of changed fields. <code class="code">$changes-&#62;{field} = [old, new]</code></a></dt>
</dl>
@ -254,7 +262,9 @@ name="buglist-columns"
<dd>
<dl>
<dt><a name="name_-_The_name_of_the_column_in_the_database."
><code class="code">name</code> - The name of the column in the database.
><code class="code">name</code> - The name of the column in the database.</a></dt>
<dd>
<dt><a name="title_-_The_title_of_the_column_as_displayed_to_users."
><code class="code">title</code> - The title of the column as displayed to users.</a></dt>
</dl>
@ -344,11 +354,17 @@ name="flag-end_of_update"
<dl>
<dt><a name="bug_-_The_changed_bug_object."
><code class="code">bug</code> - The changed bug object.
><code class="code">bug</code> - The changed bug object.</a></dt>
<dd>
<dt><a name="timestamp_-_The_timestamp_used_for_all_updates_in_this_transaction."
><code class="code">timestamp</code> - The timestamp used for all updates in this transaction.
><code class="code">timestamp</code> - The timestamp used for all updates in this transaction.</a></dt>
<dd>
<dt><a name="old_flags_-_The_snapshot_of_flag_summaries_from_before_the_change."
><code class="code">old_flags</code> - The snapshot of flag summaries from before the change.
><code class="code">old_flags</code> - The snapshot of flag summaries from before the change.</a></dt>
<dd>
<dt><a
><code class="code">new_flags</code> - The snapshot of flag summaries after the change. Call <code class="code">my ($removed, $added) = diff_arrays(old_flags, new_flags)</code> to get the list of changed flags, and search for a specific condition like <code class="code">added eq &#39;review-&#39;</code>.</a></dt>
</dl>
@ -419,7 +435,9 @@ name="mailer-before_send"
<dl>
<dt><a name="email_-_The_Email::MIME_object_that&#39;s_about_to_be_sent."
><code class="code">email</code> - The <code class="code">Email::MIME</code> object that&#39;s about to be sent.
><code class="code">email</code> - The <code class="code">Email::MIME</code> object that&#39;s about to be sent.</a></dt>
<dd>
<dt><a name="mailer_args_-_An_arrayref_that&#39;s_passed_as_mailer_args_to_&#34;new&#34;_in_Email::Send."
><code class="code">mailer_args</code> - An arrayref that&#39;s passed as <code class="code">mailer_args</code> to <a href="../Email/Send.html#new" class="podlinkpod"
>&#34;new&#34; in Email::Send</a>.</a></dt>

View File

@ -62,7 +62,9 @@ name="SUBROUTINES"
<dl>
<dt><a name="$name_-_The_name_of_the_module,_just_like_you&#39;d_pass_to_the_install_command_in_the_CPAN_shell."
><code class="code">$name</code> - The name of the module, just like you&#39;d pass to the <code class="code">install</code> command in the CPAN shell.
><code class="code">$name</code> - The name of the module, just like you&#39;d pass to the <code class="code">install</code> command in the CPAN shell.</a></dt>
<dd>
<dt><a name="$notest_-_If_true,_we_skip_running_tests_on_this_module._This_can_greatly_speed_up_the_installation_time."
><code class="code">$notest</code> - If true, we skip running tests on this module. This can greatly speed up the installation time.</a></dt>
</dl>

View File

@ -84,16 +84,24 @@ and the versions of everything installed.</a></dt>
<dl>
<dt><a name="pass_-_Whether_or_not_we_have_all_the_mandatory_requirements."
><code class="code">pass</code> - Whether or not we have all the mandatory requirements.
><code class="code">pass</code> - Whether or not we have all the mandatory requirements.</a></dt>
<dd>
<dt><a
><code class="code">missing</code> - An arrayref containing any required modules that are not installed or that are not up-to-date.
Each item in the array is a hashref in the format of items from <a href="#REQUIRED_MODULES" class="podlinkpod"
>&#34;REQUIRED_MODULES&#34;</a>.
>&#34;REQUIRED_MODULES&#34;</a>.</a></dt>
<dd>
<dt><a name="optional_-_The_same_as_missing,_but_for_optional_modules."
><code class="code">optional</code> - The same as <code class="code">missing</code>,
but for optional modules.
but for optional modules.</a></dt>
<dd>
<dt><a name="have_one_dbd_-_True_if_at_least_one_DBD::_module_is_installed."
><code class="code">have_one_dbd</code> - True if at least one <code class="code">DBD::</code> module is installed.
><code class="code">have_one_dbd</code> - True if at least one <code class="code">DBD::</code> module is installed.</a></dt>
<dd>
<dt><a name="any_missing_-_True_if_there_are_any_missing_modules,_even_optional_modules."
><code class="code">any_missing</code> - True if there are any missing modules,
even optional modules.</a></dt>

View File

@ -103,9 +103,13 @@ every =&#62; 1 })</code></p>
<dd>
<dl>
<dt><a name="total_-_The_total_number_of_items_we&#39;re_processing."
><code class="code">total</code> - The total number of items we&#39;re processing.
><code class="code">total</code> - The total number of items we&#39;re processing.</a></dt>
<dd>
<dt><a name="current_-_The_number_of_the_current_item_we&#39;re_processing."
><code class="code">current</code> - The number of the current item we&#39;re processing.
><code class="code">current</code> - The number of the current item we&#39;re processing.</a></dt>
<dd>
<dt><a
><code class="code">every</code> - How often the function should print out a dot. For example, if this is 10, the function will print out a dot every ten items. Defaults to 1 if not specified.</a></dt>
</dl>
@ -152,7 +156,9 @@ every =&#62; 1 })</code></p>
<dd>
<dl>
<dt><a name="$string_id_-_The_name_of_the_string_from_strings.txt.pl."
><code class="code">$string_id</code> - The name of the string from <em class="code">strings.txt.pl</em>.
><code class="code">$string_id</code> - The name of the string from <em class="code">strings.txt.pl</em>.</a></dt>
<dd>
<dt><a name="$vars_-_A_hashref_containing_the_replacement_values_for_variables_inside_of_the_string."
><code class="code">$vars</code> - A hashref containing the replacement values for variables inside of the string.</a></dt>
</dl>
@ -171,15 +177,25 @@ every =&#62; 1 })</code></p>
<dl>
<dt><a name="extensions/$extension/template/$language/$project"
>extensions/<code class="code">$extension</code>/template/<code class="code">$language</code>/<code class="code">$project</code>
>extensions/<code class="code">$extension</code>/template/<code class="code">$language</code>/<code class="code">$project</code></a></dt>
<dd>
<dt><a name="extensions/$extension/template/$language/custom"
>extensions/<code class="code">$extension</code>/template/<code class="code">$language</code>/custom
>extensions/<code class="code">$extension</code>/template/<code class="code">$language</code>/custom</a></dt>
<dd>
<dt><a name="extensions/$extension/template/$language/default"
>extensions/<code class="code">$extension</code>/template/<code class="code">$language</code>/default
>extensions/<code class="code">$extension</code>/template/<code class="code">$language</code>/default</a></dt>
<dd>
<dt><a name="template/$language/$project"
>template/<code class="code">$language</code>/<code class="code">$project</code>
>template/<code class="code">$language</code>/<code class="code">$project</code></a></dt>
<dd>
<dt><a name="template/$language/custom"
>template/<code class="code">$language</code>/custom
>template/<code class="code">$language</code>/custom</a></dt>
<dd>
<dt><a name="template/$language/default"
>template/<code class="code">$language</code>/default</a></dt>
</dl>
@ -218,7 +234,9 @@ every =&#62; 1 })</code></p>
>Sort::Versions</a>, with some Bugzilla-specific fixes.</p>
<dt><a name="Params:_$a_and_$b_-_The_versions_you_want_to_compare."
><b>Params</b>: <code class="code">$a</code> and <code class="code">$b</code> - The versions you want to compare.
><b>Params</b>: <code class="code">$a</code> and <code class="code">$b</code> - The versions you want to compare.</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>

View File

@ -393,7 +393,9 @@ name="Database_Manipulation"
>&#34;UPDATE_COLUMNS&#34;</a> will be updated, and they will only be updated if their values have changed.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -451,7 +453,9 @@ name="Mutators"
<dl>
<dt><a
><code class="code">$field</code> - The name of the hash member to update. This should be the same as the name of the field in <a href="#VALIDATORS" class="podlinkpod"
>&#34;VALIDATORS&#34;</a>, if it exists there.
>&#34;VALIDATORS&#34;</a>, if it exists there.</a></dt>
<dd>
<dt><a name="$value_-_The_value_that_you&#39;re_setting_the_field_to."
><code class="code">$value</code> - The value that you&#39;re setting the field to.</a></dt>
</dl>

View File

@ -135,7 +135,9 @@ name="METHODS"
<p><b>Note</b>: This doesn&#39;t check whether or not the current user can add/remove bugs to/from these groups. It just tells you that bugs <i>could be in</i> these groups, in this product.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns_An_arrayref_of_Bugzilla::Group_objects."
><b>Returns</b> An arrayref of <a href="../Bugzilla/Group.html" class="podlinkpod"
>Bugzilla::Group</a> objects.</a></dt>

View File

@ -297,7 +297,9 @@ name="String_Manipulation"
<p>Disable utf8 on STDOUT (and display raw data instead).</p>
<dt><a
><code class="code">clean_text($str)</code> Returns the parameter &#34;cleaned&#34; by exchanging non-printable characters with spaces. Specifically characters (ASCII 0 through 31) and (ASCII 127) will become ASCII 32 (Space).
><code class="code">clean_text($str)</code> Returns the parameter &#34;cleaned&#34; by exchanging non-printable characters with spaces. Specifically characters (ASCII 0 through 31) and (ASCII 127) will become ASCII 32 (Space).</a></dt>
<dd>
<dt><a name="get_text"
><code class="code">get_text</code></a></dt>
@ -317,7 +319,9 @@ name="String_Manipulation"
<dd>
<dl>
<dt><a name="$message_-_The_identifier_for_the_message."
><code class="code">$message</code> - The identifier for the message.
><code class="code">$message</code> - The identifier for the message.</a></dt>
<dd>
<dt><a name="$vars_-_A_hashref._Any_variables_you_want_to_pass_to_the_template."
><code class="code">$vars</code> - A hashref. Any variables you want to pass to the template.</a></dt>
</dl>

View File

@ -75,7 +75,9 @@ name="Utility_Functions"
><code class="code">field</code> - The name of the field you want information about.
This should be the same as the name you would use in <a href="#create" class="podlinkpod"
>&#34;create&#34;</a>,
below.
below.</a></dt>
<dd>
<dt><a
><code class="code">product_id</code> - If you&#39;re picking a product-specific field,
you have to specify the id of the product you want the values for.</a></dt>
@ -506,7 +508,9 @@ and it is the error code for the invalid bug error.</p>
<dd>
<dl>
<dt><a name="permissive_argument_added_to_this_method&#39;s_params_in_Bugzilla_3.4."
><code class="code">permissive</code> argument added to this method&#39;s params in Bugzilla <b>3.4</b>.
><code class="code">permissive</code> argument added to this method&#39;s params in Bugzilla <b>3.4</b>.</a></dt>
<dd>
<dt><a name="The_following_properties_were_added_to_this_method&#39;s_return_values_in_Bugzilla_3.4:"
>The following properties were added to this method&#39;s return values in Bugzilla <b>3.4</b>:</a></dt>
@ -518,21 +522,37 @@ and it is the error code for the invalid bug error.</p>
<dd>
<dl>
<dt><a name="assigned_to"
>assigned_to
>assigned_to</a></dt>
<dd>
<dt><a name="component"
>component
>component</a></dt>
<dd>
<dt><a name="dupe_of"
>dupe_of
>dupe_of</a></dt>
<dd>
<dt><a name="is_open"
>is_open
>is_open</a></dt>
<dd>
<dt><a name="priority"
>priority
>priority</a></dt>
<dd>
<dt><a name="product"
>product
>product</a></dt>
<dd>
<dt><a name="resolution"
>resolution
>resolution</a></dt>
<dd>
<dt><a name="severity"
>severity
>severity</a></dt>
<dd>
<dt><a name="status"
>status</a></dt>
</dl>
@ -929,33 +949,61 @@ name="Bug_Creation_and_Modification"
<dl>
<dt><a name="product_(string)_Required_-_The_name_of_the_product_the_bug_is_being_filed_against."
><code class="code">product</code> (string) <b>Required</b> - The name of the product the bug is being filed against.
><code class="code">product</code> (string) <b>Required</b> - The name of the product the bug is being filed against.</a></dt>
<dd>
<dt><a name="component_(string)_Required_-_The_name_of_a_component_in_the_product_above."
><code class="code">component</code> (string) <b>Required</b> - The name of a component in the product above.
><code class="code">component</code> (string) <b>Required</b> - The name of a component in the product above.</a></dt>
<dd>
<dt><a name="summary_(string)_Required_-_A_brief_description_of_the_bug_being_filed."
><code class="code">summary</code> (string) <b>Required</b> - A brief description of the bug being filed.
><code class="code">summary</code> (string) <b>Required</b> - A brief description of the bug being filed.</a></dt>
<dd>
<dt><a name="version_(string)_Required_-_A_version_of_the_product_above;_the_version_the_bug_was_found_in."
><code class="code">version</code> (string) <b>Required</b> - A version of the product above; the version the bug was found in.
><code class="code">version</code> (string) <b>Required</b> - A version of the product above; the version the bug was found in.</a></dt>
<dd>
<dt><a
><code class="code">description</code> (string) <b>Defaulted</b> - The initial description for this bug. Some Bugzilla installations require this to not be blank.
><code class="code">description</code> (string) <b>Defaulted</b> - The initial description for this bug. Some Bugzilla installations require this to not be blank.</a></dt>
<dd>
<dt><a name="op_sys_(string)_Defaulted_-_The_operating_system_the_bug_was_discovered_on."
><code class="code">op_sys</code> (string) <b>Defaulted</b> - The operating system the bug was discovered on.
><code class="code">op_sys</code> (string) <b>Defaulted</b> - The operating system the bug was discovered on.</a></dt>
<dd>
<dt><a name="platform_(string)_Defaulted_-_What_type_of_hardware_the_bug_was_experienced_on."
><code class="code">platform</code> (string) <b>Defaulted</b> - What type of hardware the bug was experienced on.
><code class="code">platform</code> (string) <b>Defaulted</b> - What type of hardware the bug was experienced on.</a></dt>
<dd>
<dt><a
><code class="code">priority</code> (string) <b>Defaulted</b> - What order the bug will be fixed in by the developer, compared to the developer&#39;s other bugs.
><code class="code">priority</code> (string) <b>Defaulted</b> - What order the bug will be fixed in by the developer, compared to the developer&#39;s other bugs.</a></dt>
<dd>
<dt><a name="severity_(string)_Defaulted_-_How_severe_the_bug_is."
><code class="code">severity</code> (string) <b>Defaulted</b> - How severe the bug is.
><code class="code">severity</code> (string) <b>Defaulted</b> - How severe the bug is.</a></dt>
<dd>
<dt><a
><code class="code">alias</code> (string) - A brief alias for the bug that can be used instead of a bug number when accessing this bug. Must be unique in all of this Bugzilla.
><code class="code">alias</code> (string) - A brief alias for the bug that can be used instead of a bug number when accessing this bug. Must be unique in all of this Bugzilla.</a></dt>
<dd>
<dt><a name="assigned_to_(username)_-_A_user_to_assign_this_bug_to,_if_you_don&#39;t_want_it_to_be_assigned_to_the_component_owner."
><code class="code">assigned_to</code> (username) - A user to assign this bug to, if you don&#39;t want it to be assigned to the component owner.
><code class="code">assigned_to</code> (username) - A user to assign this bug to, if you don&#39;t want it to be assigned to the component owner.</a></dt>
<dd>
<dt><a name="cc_(array)_-_An_array_of_usernames_to_CC_on_this_bug."
><code class="code">cc</code> (array) - An array of usernames to CC on this bug.
><code class="code">cc</code> (array) - An array of usernames to CC on this bug.</a></dt>
<dd>
<dt><a
><code class="code">qa_contact</code> (username) - If this installation has QA Contacts enabled, you can set the QA Contact here if you don&#39;t want to use the component&#39;s default QA Contact.
><code class="code">qa_contact</code> (username) - If this installation has QA Contacts enabled, you can set the QA Contact here if you don&#39;t want to use the component&#39;s default QA Contact.</a></dt>
<dd>
<dt><a
><code class="code">status</code> (string) - The status that this bug should start out as. Note that only certain statuses can be set on bug creation.
><code class="code">status</code> (string) - The status that this bug should start out as. Note that only certain statuses can be set on bug creation.</a></dt>
<dd>
<dt><a name="target_milestone_(string)_-_A_valid_target_milestone_for_this_product."
><code class="code">target_milestone</code> (string) - A valid target milestone for this product.</a></dt>
</dl>
@ -1047,11 +1095,17 @@ name="Bug_Creation_and_Modification"
<dd>
<dl>
<dt><a name="id_(int)_Required_-_The_id_or_alias_of_the_bug_to_append_a_comment_to."
><code class="code">id</code> (int) <b>Required</b> - The id or alias of the bug to append a comment to.
><code class="code">id</code> (int) <b>Required</b> - The id or alias of the bug to append a comment to.</a></dt>
<dd>
<dt><a
><code class="code">comment</code> (string) <b>Required</b> - The comment to append to the bug. If this is empty or all whitespace, an error will be thrown saying that you did not set the <code class="code">comment</code> parameter.
><code class="code">comment</code> (string) <b>Required</b> - The comment to append to the bug. If this is empty or all whitespace, an error will be thrown saying that you did not set the <code class="code">comment</code> parameter.</a></dt>
<dd>
<dt><a name="private_(boolean)_-_If_set_to_true,_the_comment_is_private,_otherwise_it_is_assumed_to_be_public."
><code class="code">private</code> (boolean) - If set to true, the comment is private, otherwise it is assumed to be public.
><code class="code">private</code> (boolean) - If set to true, the comment is private, otherwise it is assumed to be public.</a></dt>
<dd>
<dt><a
><code class="code">work_time</code> (double) - Adds this many hours to the &#34;Hours Worked&#34; on the bug. If you are not in the time tracking group, this value will be ignored.</a></dt>
</dl>
@ -1099,9 +1153,13 @@ name="Bug_Creation_and_Modification"
<dd>
<dl>
<dt><a name="Added_in_Bugzilla_3.2."
>Added in Bugzilla <b>3.2</b>.
>Added in Bugzilla <b>3.2</b>.</a></dt>
<dd>
<dt><a name="Modified_to_return_the_new_comment&#39;s_id_in_Bugzilla_3.4"
>Modified to return the new comment&#39;s id in Bugzilla <b>3.4</b>
>Modified to return the new comment&#39;s id in Bugzilla <b>3.4</b></a></dt>
<dd>
<dt><a name="Modified_to_throw_an_error_if_you_try_to_add_a_private_comment_but_can&#39;t,_in_Bugzilla_3.4."
>Modified to throw an error if you try to add a private comment but can&#39;t, in Bugzilla <b>3.4</b>.</a></dt>
</dl>

View File

@ -55,7 +55,9 @@ and <b>EXPERIMENTAL</b> mean.</p>
<p>Returns the current version of Bugzilla.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -82,7 +84,9 @@ that is the version as a string.</p>
<p>Gets information about the extensions that are currently installed and enabled in this Bugzilla.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -122,7 +126,9 @@ Use <a href="#time" class="podlinkpod"
This is important because all dates/times that the webservice interface returns will be in this timezone.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -148,7 +154,9 @@ that is the timezone offset as a string in (+/-)XXXX (RFC 2822) format.</p>
and what timezone it&#39;s running in.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>

View File

@ -62,7 +62,9 @@ name="List_Products"
<p>Returns a list of the ids of the products the user can search on.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -89,7 +91,9 @@ that contains an array of product ids.</p>
<p>Returns a list of the ids of the products the user can enter bugs against.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>
@ -116,7 +120,9 @@ that contains an array of product ids.</p>
<p>Returns a list of the ids of the products the user can search or enter bugs against.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns"
><b>Returns</b></a></dt>

View File

@ -75,9 +75,13 @@ This method logs in an user.</p>
<dd>
<dl>
<dt><a name="login_(string)_-_The_user&#39;s_login_name."
><code class="code">login</code> (string) - The user&#39;s login name.
><code class="code">login</code> (string) - The user&#39;s login name.</a></dt>
<dd>
<dt><a name="password_(string)_-_The_user&#39;s_password."
><code class="code">password</code> (string) - The user&#39;s password.
><code class="code">password</code> (string) - The user&#39;s password.</a></dt>
<dd>
<dt><a
><code class="code">remember</code> (bool) <b>Optional</b> - if the cookies returned by the call to login should expire with the session or not.
In order for this option to have effect the Bugzilla server must be configured to allow the user to set this option - the Bugzilla parameter <i>rememberlogin</i> must be set to &#34;defaulton&#34; or &#34;defaultoff&#34;.
@ -141,9 +145,13 @@ A reason may be specified with the error.</p>
Does nothing if there is no user logged in.</p>
<dt><a name="Params_(none)"
><b>Params</b> (none)
><b>Params</b> (none)</a></dt>
<dd>
<dt><a name="Returns_(nothing)"
><b>Returns</b> (nothing)
><b>Returns</b> (nothing)</a></dt>
<dd>
<dt><a name="Errors_(none)"
><b>Errors</b> (none)</a></dt>
</dl>
@ -183,7 +191,9 @@ and choose their password and real name.</p>
</dl>
<dt><a name="Returns_(nothing)"
><b>Returns</b> (nothing)
><b>Returns</b> (nothing)</a></dt>
<dd>
<dt><a name="Errors"
><b>Errors</b></a></dt>
@ -233,10 +243,14 @@ This function does not check that.</p>
<dd>
<dl>
<dt><a name="email_(string)_-_The_email_address_for_the_new_user."
><code class="code">email</code> (string) - The email address for the new user.
><code class="code">email</code> (string) - The email address for the new user.</a></dt>
<dd>
<dt><a name="full_name_(string)_Optional_-_The_user&#39;s_full_name._Will_be_set_to_empty_if_not_specified."
><code class="code">full_name</code> (string) <b>Optional</b> - The user&#39;s full name.
Will be set to empty if not specified.
Will be set to empty if not specified.</a></dt>
<dd>
<dt><a
><code class="code">password</code> (string) <b>Optional</b> - The password for the new user account,
in plain text.
@ -335,7 +349,9 @@ they will get an error.
Logged-in users will get an error if they specify the id of a user they cannot see.</p>
<dt><a name="names_(array)_-_An_array_of_login_names_(strings)."
><code class="code">names</code> (array) - An array of login names (strings).
><code class="code">names</code> (array) - An array of login names (strings).</a></dt>
<dd>
<dt><a name="match_(array)"
><code class="code">match</code> (array)</a></dt>

View File

@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bugzilla 3.4.5 API Documentation</title>
<title>Bugzilla 3.4.6 API Documentation</title>
<link rel="stylesheet" title="style" type="text/css" href="./../../../style.css" media="all" >
</head>
<body class="contentspage">
<h1>Bugzilla 3.4.5 API Documentation</h1>
<h1>Bugzilla 3.4.6 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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -1742,9 +1742,7 @@ VALIGN="TOP"
CLASS="filename"
>checksetup.pl</TT
> run. You should go through
the parameters on the Edit Parameters page
(see link in the footer) and see if there are any you wish to
change.
the Parameters page and see if there are any you wish to change.
They key parameters are documented in <A
HREF="parameters.html"
>Section 3.1</A
@ -1767,19 +1765,6 @@ CLASS="command"
>.
</P
><P
>&#13; This would also be a good time to revisit the
<TT
CLASS="filename"
>localconfig</TT
> file and make sure that the
names of the priorities, severities, platforms and operating systems
are those you wish to use when you start creating bugs. Remember
to rerun <TT
CLASS="filename"
>checksetup.pl</TT
> if you change it.
</P
><P
>&#13; Bugzilla has several optional features which require extra
configuration. You can read about those in
<A

View File

@ -7,7 +7,7 @@
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="The Bugzilla Guide - 3.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -85,7 +85,7 @@ CLASS="informaltable"
><P
></P
><A
NAME="AEN121"
NAME="AEN103"
></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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -87,7 +87,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN733"
NAME="AEN730"
>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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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="AEN3482"
NAME="AEN3479"
></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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -146,7 +146,7 @@ HREF="gfdl-howto.html"
><P
>Version 1.1, March 2000</P
><A
NAME="AEN3392"
NAME="AEN3389"
></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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -32,7 +32,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -72,7 +72,7 @@ CLASS="glossdiv"
><H1
CLASS="glossdiv"
><A
NAME="AEN3487"
NAME="AEN3484"
>0-9, high ascii</A
></H1
><DL
@ -978,7 +978,7 @@ NAME="gloss-zarro"
Terry had the following to say:
</P
><A
NAME="AEN3731"
NAME="AEN3728"
></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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -506,7 +506,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN2173"
NAME="AEN2170"
>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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -86,7 +86,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN2653"
NAME="AEN2650"
>5.8.1. Autolinkification</A
></H2
><P

View File

@ -2,7 +2,7 @@
<HTML
><HEAD
><TITLE
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TITLE
><META
NAME="GENERATOR"
@ -46,7 +46,7 @@ CLASS="TITLEPAGE"
CLASS="title"
><A
NAME="AEN2"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</A
></H1
><H3
@ -54,7 +54,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3
><P
CLASS="pubdate"
>2010-01-31<BR></P
>2010-03-07<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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -739,7 +739,7 @@ CLASS="filename"
TYPE="1"
><LI
><P
>&#13; CGI 3.21
>&#13; CGI (3.21)
</P
></LI
><LI
@ -749,6 +749,16 @@ TYPE="1"
></LI
><LI
><P
>&#13; DateTime (0.28)
</P
></LI
><LI
><P
>&#13; DateTime::TimeZone (0.71)
</P
></LI
><LI
><P
>&#13; DBI (1.41)
</P
></LI
@ -773,11 +783,7 @@ HREF="installation.html#install-modules-dbd-mysql"
></LI
><LI
><P
>&#13; <A
HREF="installation.html#install-modules-template"
>Template</A
>
(2.22)
>&#13; Digest::SHA (any)
</P
></LI
><LI
@ -787,9 +793,33 @@ HREF="installation.html#install-modules-template"
></LI
><LI
><P
>&#13; Email::MIME (1.861)
</P
></LI
><LI
><P
>&#13; Email::MIME::Encodings (1.313)
</P
></LI
><LI
><P
>&#13; Email::MIME::Modifier (1.442)
</P
></LI
><LI
><P
>&#13; <A
HREF="installation.html#install-modules-template"
>Template</A
>
(2.22)
</P
></LI
><LI
><P
>&#13; URI (any)
</P
></LI
></OL
>
@ -810,7 +840,7 @@ HREF="installation.html#install-modules-gd"
><LI
><P
>&#13; Template::Plugin::GD::Image
(1.20) for Graphical Reports
(any) for Graphical Reports
</P
></LI
><LI
@ -882,6 +912,12 @@ HREF="installation.html#install-modules-patchreader"
></LI
><LI
><P
>&#13; Authen::SASL
(any) for SASL Authentication
</P
></LI
><LI
><P
>&#13; Authen::Radius
(any) for RADIUS Authentication
</P
@ -921,6 +957,18 @@ HREF="installation.html#install-modules-soap-lite"
></LI
><LI
><P
>&#13; TheSchwartz
(any) for Mail Queueing
</P
></LI
><LI
><P
>&#13; Daemon::Generic
(any) for Mail Queueing
</P
></LI
><LI
><P
>&#13; mod_perl2
(1.999022) for mod_perl
</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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -168,7 +168,7 @@ HREF="extraconfig.html"
><DL
><DT
>2.3.1. <A
HREF="extraconfig.html#AEN733"
HREF="extraconfig.html#AEN730"
>Bug Graphs</A
></DT
><DT
@ -229,17 +229,17 @@ HREF="nonroot.html"
><DL
><DT
>2.6.1. <A
HREF="nonroot.html#AEN898"
HREF="nonroot.html#AEN895"
>Introduction</A
></DT
><DT
>2.6.2. <A
HREF="nonroot.html#AEN902"
HREF="nonroot.html#AEN899"
>MySQL</A
></DT
><DT
>2.6.3. <A
HREF="nonroot.html#AEN937"
HREF="nonroot.html#AEN934"
>Perl</A
></DT
><DT
@ -249,12 +249,12 @@ HREF="nonroot.html#install-perlmodules-nonroot"
></DT
><DT
>2.6.5. <A
HREF="nonroot.html#AEN959"
HREF="nonroot.html#AEN956"
>HTTP Server</A
></DT
><DT
>2.6.6. <A
HREF="nonroot.html#AEN971"
HREF="nonroot.html#AEN968"
>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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -79,123 +79,33 @@ NAME="newversions"
>1.3. New Versions</A
></H1
><P
>&#13; This is the 3.4.5 version of The Bugzilla Guide. It is so named
>&#13; This is the 3.4.6 version of The Bugzilla Guide. It is so named
to match the current version of Bugzilla.
</P
><P
>&#13; The latest version of this guide can always be found at <A
HREF="http://www.bugzilla.org"
HREF="http://www.bugzilla.org/docs/"
TARGET="_top"
>http://www.bugzilla.org</A
>, or checked out via CVS by
following the <A
HREF="http://www.mozilla.org/cvs.html"
TARGET="_top"
>Mozilla
CVS</A
> instructions and check out the
<TT
CLASS="filename"
>mozilla/webtools/bugzilla/docs/</TT
>
subtree. However, you should read the version
which came with the Bugzilla release you are using.
</P
><P
>&#13; The Bugzilla Guide, or a section of it, is also available in
the following languages:
<A
HREF="http://www.traduc.org/docs/guides/lecture/bugzilla/"
TARGET="_top"
>French</A
>,
<A
HREF="http://bugzilla-de.sourceforge.net/docs/html/"
TARGET="_top"
>German</A
>,
<A
HREF="http://www.bugzilla.jp/docs/2.18/"
TARGET="_top"
>Japanese</A
>.
Note that these may be outdated or not up to date.
>http://www.bugzilla.org/docs/</A
>. However, you should read
the version which came with the Bugzilla release you are using.
</P
><P
>
In addition, there are Bugzilla template localization projects in
the following languages. They may have translated documentation
available:
<A
HREF="http://sourceforge.net/projects/bugzilla-ar/"
HREF="http://www.bugzilla.org/download/#localizations"
TARGET="_top"
>Arabic</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-be/"
TARGET="_top"
>Belarusian</A
>,
<A
HREF="http://openfmi.net/projects/mozilla-bg/"
TARGET="_top"
>Bulgarian</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-br/"
TARGET="_top"
>Brazilian Portuguese</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-cn/"
TARGET="_top"
>Chinese</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-fr/"
TARGET="_top"
>French</A
>,
<A
HREF="http://germzilla.ganderbay.net/"
TARGET="_top"
>German</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-it/"
TARGET="_top"
>Italian</A
>,
<A
HREF="http://www.bugzilla.jp/about/jp.html"
TARGET="_top"
>Japanese</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-kr/"
TARGET="_top"
>Korean</A
>,
<A
HREF="http://sourceforge.net/projects/bugzilla-ru/"
TARGET="_top"
>Russian</A
> and
<A
HREF="http://sourceforge.net/projects/bugzilla-es/"
TARGET="_top"
>Spanish</A
>several languages</A
>.
</P
><P
>
If you would like to volunteer to translate the Guide into additional
languages, please contact
They may have translated documentation available. If you would like to
volunteer to translate the Guide into additional languages, please visit the
<A
HREF="mailto:justdave@bugzilla.org"
HREF="https://wiki.mozilla.org/Bugzilla:L10n"
TARGET="_top"
>Dave Miller</A
>.
>Bugzilla L10n team</A
>
page.
</P
></DIV
><DIV

View File

@ -7,7 +7,7 @@
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="The Bugzilla Guide - 3.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -83,7 +83,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN898"
NAME="AEN895"
>2.6.1. Introduction</A
></H2
><P
@ -103,7 +103,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN902"
NAME="AEN899"
>2.6.2. MySQL</A
></H2
><P
@ -159,7 +159,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN910"
NAME="AEN907"
>2.6.2.1. Running MySQL as Non-Root</A
></H3
><DIV
@ -167,7 +167,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN912"
NAME="AEN909"
>2.6.2.1.1. The Custom Configuration Method</A
></H4
><P
@ -211,7 +211,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN916"
NAME="AEN913"
>2.6.2.1.2. The Custom Built Method</A
></H4
><P
@ -234,7 +234,7 @@ CLASS="section"
><H4
CLASS="section"
><A
NAME="AEN921"
NAME="AEN918"
>2.6.2.1.3. Starting the Server</A
></H4
><P
@ -362,7 +362,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN937"
NAME="AEN934"
>2.6.3. Perl</A
></H2
><P
@ -466,7 +466,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN959"
NAME="AEN956"
>2.6.5. HTTP Server</A
></H2
><P
@ -480,7 +480,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN962"
NAME="AEN959"
>2.6.5.1. Running Apache as Non-Root</A
></H3
><P
@ -562,7 +562,7 @@ CLASS="section"
><H2
CLASS="section"
><A
NAME="AEN971"
NAME="AEN968"
>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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -207,7 +207,7 @@ NAME="negation"
>&#13; At first glance, negation seems redundant. Rather than
searching for
<A
NAME="AEN2500"
NAME="AEN2497"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -218,7 +218,7 @@ CLASS="BLOCKQUOTE"
>
one could search for
<A
NAME="AEN2502"
NAME="AEN2499"
></A
><BLOCKQUOTE
CLASS="BLOCKQUOTE"
@ -229,7 +229,7 @@ CLASS="BLOCKQUOTE"
>
However, the search
<A
NAME="AEN2504"
NAME="AEN2501"
></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="AEN2506"
NAME="AEN2503"
></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="AEN2508"
NAME="AEN2505"
></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="AEN2510"
NAME="AEN2507"
></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="AEN2515"
NAME="AEN2512"
></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="AEN2517"
NAME="AEN2514"
></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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR
@ -193,7 +193,7 @@ CLASS="section"
><H3
CLASS="section"
><A
NAME="AEN2850"
NAME="AEN2847"
>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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -39,7 +39,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
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.4.5
TITLE="The Bugzilla Guide - 3.4.6
Release"
HREF="index.html"><LINK
REL="UP"
@ -41,7 +41,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.5
>The Bugzilla Guide - 3.4.6
Release</TH
></TR
><TR

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