Bug 40933

Merge with Bugzilla 3.4.3 (2009-11-05)
NB: leading whitespace in comments will be preserved! Using very fucking way: X[% comment.body %] and then s/^X//


git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@524 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2009-11-09 19:23:43 +00:00
parent 61fd6ead81
commit 05227e65c0
120 changed files with 357 additions and 275 deletions

View File

@ -3210,6 +3210,7 @@ sub format_comment {
$template->process("bug/format_comment.txt.tmpl", $vars, \$body)
|| ThrowTemplateError($template->error());
$body =~ s/^X//;
return $body;
}
@ -3800,6 +3801,11 @@ sub AUTOLOAD {
$self->{_multi_selects} ||= [Bugzilla->get_fields(
{custom => 1, type => FIELD_TYPE_MULTI_SELECT })];
if ( grep($_->name eq $attr, @{$self->{_multi_selects}}) ) {
# There is a bug in Perl 5.10.0, which is fixed in 5.10.1,
# which taints $attr at this point. trick_taint() can go
# away once we require 5.10.1 or newer.
trick_taint($attr);
$self->{$attr} ||= Bugzilla->dbh->selectcol_arrayref(
"SELECT value FROM bug_$attr WHERE bug_id = ? ORDER BY value",
undef, $self->id);

View File

@ -736,6 +736,7 @@ sub get_comments_by_bug {
if ($comment->{body} =~ /Created an attachment \(/) {
$comment->{body} =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \($attach_base$2\)/g;
}
$comment->{body} = $comment->{'already_wrapped'} ? $comment->{body} : wrap_comment($comment->{body});
}
if (Bugzilla->params->{'insidergroup'}) {

View File

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

View File

@ -388,7 +388,7 @@ EOT
" most tables.\nConverting tables to InnoDB:\n";
foreach my $table (@myisam_tables) {
print "Converting table $table... ";
$self->do("ALTER TABLE $table TYPE = InnoDB");
$self->do("ALTER TABLE $table ENGINE = InnoDB");
print "done.\n";
}
}

View File

@ -272,7 +272,7 @@ sub _check_name {
my $name_regex = qr/^[\w\.]+$/;
# Custom fields have more restrictive name requirements than
# standard fields.
$name_regex = qr/^\w+$/ if $is_custom;
$name_regex = qr/^[a-zA-Z0-9_]+$/ if $is_custom;
# Custom fields can't be named just "cf_", and there is no normal
# field named just "cf_".
($name =~ $name_regex && $name ne "cf_")

View File

@ -554,8 +554,7 @@ sub update_table_definitions {
_fix_illegal_flag_modification_dates();
# 2009-03-02 arbingersys@gmail.com - Bug 423613
$dbh->bz_add_index('profiles', 'profiles_extern_id_idx',
{TYPE => 'UNIQUE', FIELDS => [qw(extern_id)]});
_add_extern_id_index();
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
@ -3216,6 +3215,17 @@ sub _fix_illegal_flag_modification_dates {
print "$rows flags had an illegal modification date. Fixed!\n" if ($rows =~ /^\d+$/);
}
sub _add_extern_id_index {
my $dbh = Bugzilla->dbh;
if (!$dbh->bz_index_info('profiles', 'profiles_extern_id_idx')) {
# Some Bugzillas have a multiple empty strings in extern_id,
# which need to be converted to NULLs before we add the index.
$dbh->do("UPDATE profiles SET extern_id = NULL WHERE extern_id = ''");
$dbh->bz_add_index('profiles', 'profiles_extern_id_idx',
{TYPE => 'UNIQUE', FIELDS => [qw(extern_id)]});
}
}
1;
__END__

View File

@ -43,7 +43,6 @@ use Bugzilla::User;
use Bugzilla::Error;
use Bugzilla::Status;
use Bugzilla::Token;
use Bugzilla::Template::Parser;
use Bugzilla::Hook;
use Cwd qw(abs_path);
@ -62,28 +61,6 @@ use base qw(Template);
my $custom_proto_regex;
my $custom_proto;
# As per the Template::Base documentation, the _init() method is being called
# by the new() constructor. We take advantage of this in order to plug our
# UTF-8-aware Parser object in neatly after the original _init() method has
# happened, in particular, after having set up the constants namespace.
# See bug 413121 for details.
sub _init {
my $self = shift;
my $config = $_[0];
$self->SUPER::_init(@_) || return undef;
$self->{PARSER} = $config->{PARSER}
= new Bugzilla::Template::Parser($config);
# Now we need to re-create the default Service object, making it aware
# of our Parser object.
$self->{SERVICE} = $config->{SERVICE}
= Template::Config->service($config);
return $self;
}
# Convert the constants in the Bugzilla::Constants module into a hash we can
# pass to the template object for reflection into its "constants" namespace
# (which is like its "variables" namespace, but for constants). To do so, we
@ -506,6 +483,8 @@ sub create {
# Initialize templates (f.e. by loading plugins like Hook).
PRE_PROCESS => "global/initialize.none.tmpl",
ENCODING => Bugzilla->params->{'utf8'} ? 'UTF-8' : undef,
# Functions for processing text within templates in various ways.
# IMPORTANT! When adding a filter here that does not override a
# built-in filter, please also add a stub filter to t/004template.t.

View File

@ -52,6 +52,8 @@ use Bugzilla::Attachment::PatchReader;
use Bugzilla::Token;
use Bugzilla::Keyword;
use Encode qw(encode);
# For most scripts we don't make $cgi and $template global variables. But
# when preparing Bugzilla for mod_perl, this script used these
# variables in so many subroutines that it was easier to just
@ -336,6 +338,11 @@ sub view {
$filename =~ s/\\/\\\\/g; # escape backslashes
$filename =~ s/"/\\"/g; # escape quotes
# Avoid line wrapping done by Encode, which we don't need for HTTP
# headers. See discussion in bug 328628 for details.
local $Encode::Encoding{'MIME-Q'}->{'bpl'} = 10000;
$filename = encode('MIME-Q', $filename);
my $disposition = Bugzilla->params->{inline_attachment_mime};
$disposition = $disposition
&& Bugzilla->params->{allow_attachment_display}

View File

@ -67,7 +67,19 @@ if (length($buffer) == 0) {
ThrowUserError("buglist_parameters_required");
}
#
# If a parameter starts with cmd-, this means the And or Or button has been
# pressed in the advanced search page with JS turned off.
if (grep { $_ =~ /^cmd\-/ } $cgi->param()) {
my $url = "query.cgi?$buffer#chart";
print $cgi->redirect(-location => $url);
# Generate and return the UI (HTML page) from the appropriate template.
$vars->{'message'} = "buglist_adding_field";
$vars->{'url'} = $url;
$template->process("global/message.html.tmpl", $vars)
|| ThrowTemplateError($template->error());
exit;
}
# If query was POSTed, clean the URL from empty parameters and redirect back to
# itself. This will make advanced search URLs more tolerable.
#
@ -185,17 +197,6 @@ if (defined $cgi->param('regetlastlist')) {
});
}
if ($buffer =~ /&cmd-/) {
my $url = "query.cgi?$buffer#chart";
print $cgi->redirect(-location => $url);
# Generate and return the UI (HTML page) from the appropriate template.
$vars->{'message'} = "buglist_adding_field";
$vars->{'url'} = $url;
$template->process("global/message.html.tmpl", $vars)
|| ThrowTemplateError($template->error());
exit;
}
# Figure out whether or not the user is doing a fulltext search. If not,
# we'll remove the relevance column from the lists of columns to display
# and order by, since relevance only exists when doing a fulltext search.

View File

@ -2,7 +2,7 @@
<HTML
><HEAD
><TITLE
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</TITLE
><META
NAME="GENERATOR"
@ -43,7 +43,7 @@ CLASS="TITLEPAGE"
CLASS="title"
><A
NAME="AEN2"
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</A
></H1
><H3
@ -51,7 +51,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3
><P
CLASS="pubdate"
>2009-09-11<BR></P
>2009-11-05<BR></P
><DIV
><DIV
CLASS="abstract"
@ -688,7 +688,7 @@ NAME="newversions"
>1.3. New Versions</A
></H2
><P
>&#13; This is the 3.4.2 version of The Bugzilla Guide. It is so named
>&#13; This is the 3.4.3 version of The Bugzilla Guide. It is so named
to match the current version of Bugzilla.
</P
><P

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.2
TITLE="The Bugzilla Guide - 3.4.3
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
TITLE="The Bugzilla Guide - 3.4.2
TITLE="The Bugzilla Guide - 3.4.3
Release"
HREF="index.html"><LINK
REL="NEXT"
@ -36,7 +36,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</TH
></TR
><TR
@ -154,7 +154,7 @@ ACCESSKEY="N"
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</TD
><TD
WIDTH="34%"

View File

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

View File

@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bugzilla 3.4.2 API Documentation</title>
<title>Bugzilla 3.4.3 API Documentation</title>
<link rel="stylesheet" title="style" type="text/css" href="./../../../style.css" media="all" >
</head>
<body class="contentspage">
<h1>Bugzilla 3.4.2 API Documentation</h1>
<h1>Bugzilla 3.4.3 API Documentation</h1>
<dl class='superindex'>
<dt><a name="Files">Files</a></dt>
<dd>
@ -211,78 +211,74 @@
<td>Wrapper around the Template Toolkit Template object</td>
</tr>
<tr class="even">
<th><a href="./Bugzilla/Template/Parser.html">Bugzilla::Template::Parser</a></th>
<td>Wrapper around the Template Toolkit Template::Parser object</td>
</tr>
<tr class="odd">
<th><a href="./Bugzilla/Template/Plugin/Bugzilla.html">Bugzilla::Template::Plugin::Bugzilla</a></th>
<td></td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/Template/Plugin/Hook.html">Bugzilla::Template::Plugin::Hook</a></th>
<td></td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/Template/Plugin/User.html">Bugzilla::Template::Plugin::User</a></th>
<td></td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/Token.html">Bugzilla::Token</a></th>
<td>Provides different routines to manage tokens.</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/Update.html">Bugzilla::Update</a></th>
<td>Update routines for Bugzilla</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/User.html">Bugzilla::User</a></th>
<td>Object for a Bugzilla user</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/User/Setting.html">Bugzilla::User::Setting</a></th>
<td>Object for a user preference setting</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/User/Setting/Lang.html">Bugzilla::User::Setting::Lang</a></th>
<td>Object for a user preference setting for preferred language</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/User/Setting/Skin.html">Bugzilla::User::Setting::Skin</a></th>
<td>Object for a user preference setting for skins</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/User/Setting/Timezone.html">Bugzilla::User::Setting::Timezone</a></th>
<td>Object for a user preference setting for desired timezone</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/Util.html">Bugzilla::Util</a></th>
<td>Generic utility functions for bugzilla</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/Version.html">Bugzilla::Version</a></th>
<td>Bugzilla product version class.</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/WebService.html">Bugzilla::WebService</a></th>
<td>The Web Service interface to Bugzilla</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/WebService/Bug.html">Bugzilla::WebService::Bug</a></th>
<td>The API for creating, changing, and getting the details of bugs.</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/WebService/Bugzilla.html">Bugzilla::WebService::Bugzilla</a></th>
<td>Global functions for the webservice interface.</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/WebService/Product.html">Bugzilla::WebService::Product</a></th>
<td>The Product API</td>
</tr>
<tr class="odd">
<tr class="even">
<th><a href="./Bugzilla/WebService/User.html">Bugzilla::WebService::User</a></th>
<td>The User Account and Login API</td>
</tr>
<tr class="even">
<tr class="odd">
<th><a href="./Bugzilla/WebService/Util.html">Bugzilla::WebService::Util</a></th>
<td></td>
</tr>

View File

@ -33,6 +33,7 @@ name="SYNOPSIS"
./install-module.pl --all [--global]
./install-module.pl --upgrade-all [--global]
./install-module.pl --show-config
./install-module.pl --shell
Do &#34;./install-module.pl --help&#34; for more information.</pre>
@ -77,6 +78,12 @@ name="OPTIONS"
<dd>
<p>Prints out the CPAN configuration in raw Perl format. Useful for debugging.</p>
<dt><a name="--shell"
><b>--shell</b></a></dt>
<dd>
<p>Starts a CPAN shell using the configuration of <em class="code">install-module.pl</em>.</p>
<dt><a name="--help"
><b>--help</b></a></dt>

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.2
TITLE="The Bugzilla Guide - 3.4.3
Release"
HREF="index.html"><LINK
REL="UP"
@ -38,7 +38,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</TH
></TR
><TR

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
<HTML
><HEAD
><TITLE
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</TITLE
><META
NAME="GENERATOR"
@ -46,7 +46,7 @@ CLASS="TITLEPAGE"
CLASS="title"
><A
NAME="AEN2"
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</A
></H1
><H3
@ -54,7 +54,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3
><P
CLASS="pubdate"
>2009-09-11<BR></P
>2009-11-05<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.2
TITLE="The Bugzilla Guide - 3.4.3
Release"
HREF="index.html"><LINK
REL="PREVIOUS"
@ -35,7 +35,7 @@ CELLSPACING="0"
><TH
COLSPAN="3"
ALIGN="center"
>The Bugzilla Guide - 3.4.2
>The Bugzilla Guide - 3.4.3
Release</TH
></TR
><TR

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,9 +1,9 @@
The Bugzilla Guide - 3.4.2 Release
The Bugzilla Guide - 3.4.3 Release
The Bugzilla Team
2009-09-11
2009-11-05
This is the documentation for Bugzilla, a bug-tracking system from
mozilla.org. Bugzilla is an enterprise-class piece of software that tracks
@ -173,7 +173,7 @@ Chapter 1. About This Guide
1.3. New Versions
This is the 3.4.2 version of The Bugzilla Guide. It is so named to match the
This is the 3.4.3 version of The Bugzilla Guide. It is so named to match the
current version of Bugzilla.
The latest version of this guide can always be found at

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