Bug 40933 - Merge with 3.6.1, Bug 64562 - Display "Next bug in your list..."

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@812 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2010-06-25 16:04:36 +00:00
parent 29a566376d
commit 591a559c12
122 changed files with 435 additions and 269 deletions

View File

@ -1647,7 +1647,9 @@ sub _check_resolution {
ThrowUserError('resolution_not_allowed') if $self->status->is_open; ThrowUserError('resolution_not_allowed') if $self->status->is_open;
# Check noresolveonopenblockers. # Check noresolveonopenblockers.
if (Bugzilla->params->{"noresolveonopenblockers"} && $resolution eq 'FIXED') if (Bugzilla->params->{"noresolveonopenblockers"}
&& $resolution eq 'FIXED'
&& (!$self->resolution || $resolution ne $self->resolution))
{ {
my @dependencies = CountOpenDependencies($self->id); my @dependencies = CountOpenDependencies($self->id);
if (@dependencies) { if (@dependencies) {
@ -3336,7 +3338,10 @@ sub GetBugActivity {
if ($activity_visible) { if ($activity_visible) {
# Check for the results of an old Bugzilla data corruption bug # Check for the results of an old Bugzilla data corruption bug
$incomplete_data = 1 if ($added =~ /^\?/ || $removed =~ /^\?/); if (($added eq '?' && $removed eq '?')
|| ($added =~ /^\? / || $removed =~ /^\? /)) {
$incomplete_data = 1;
}
# An operation, done by 'who' at time 'when', has a number of # An operation, done by 'who' at time 'when', has a number of
# 'changes' associated with it. # 'changes' associated with it.

View File

@ -182,7 +182,7 @@ use File::Basename;
# CONSTANTS # CONSTANTS
# #
# Bugzilla version # Bugzilla version
use constant BUGZILLA_VERSION => "3.6"; use constant BUGZILLA_VERSION => "3.6.1";
# These are unique values that are unlikely to match a string or a number, # These are unique values that are unlikely to match a string or a number,
# to be used in criteria for match() functions and other things. They start # to be used in criteria for match() functions and other things. They start
@ -406,6 +406,7 @@ use constant contenttypes =>
"atom"=> "application/atom+xml" , "atom"=> "application/atom+xml" ,
"xml" => "application/xml" , "xml" => "application/xml" ,
"js" => "application/x-javascript" , "js" => "application/x-javascript" ,
"json"=> "application/json" ,
"csv" => "text/csv" , "csv" => "text/csv" ,
"png" => "image/png" , "png" => "image/png" ,
"ics" => "text/calendar" , "ics" => "text/calendar" ,

View File

@ -437,7 +437,7 @@ sub _check_name {
$name = trim($name); $name = trim($name);
$name || ThrowUserError("empty_group_name"); $name || ThrowUserError("empty_group_name");
# If we're creating a Group or changing the name... # If we're creating a Group or changing the name...
if (!ref($invocant) || $invocant->name ne $name) { if (!ref($invocant) || lc($invocant->name) ne lc($name)) {
my $exists = new Bugzilla::Group({name => $name }); my $exists = new Bugzilla::Group({name => $name });
ThrowUserError("group_exists", { name => $name }) if $exists; ThrowUserError("group_exists", { name => $name }) if $exists;
} }

View File

@ -21,9 +21,16 @@
package Bugzilla::Install::CPAN; package Bugzilla::Install::CPAN;
use strict; use strict;
use base qw(Exporter); use base qw(Exporter);
our @EXPORT = qw(set_cpan_config install_module BZ_LIB); our @EXPORT = qw(
BZ_LIB
check_cpan_requirements
set_cpan_config
install_module
);
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Install::Requirements qw(have_vers);
use Bugzilla::Install::Util qw(bin_loc install_string); use Bugzilla::Install::Util qw(bin_loc install_string);
use CPAN; use CPAN;
@ -31,6 +38,24 @@ use Cwd qw(abs_path);
use File::Path qw(rmtree); use File::Path qw(rmtree);
use List::Util qw(shuffle); use List::Util qw(shuffle);
# These are required for install-module.pl to be able to install
# all modules properly.
use constant REQUIREMENTS => (
{
module => 'CPAN',
package => 'CPAN',
version => '1.81',
},
{
# When Module::Build isn't installed, the YAML module allows
# CPAN to read META.yml to determine that Module::Build first
# needs to be installed to compile a module.
module => 'YAML',
package => 'YAML',
version => 0,
},
);
# We need the absolute path of ext_libpath, because CPAN chdirs around # We need the absolute path of ext_libpath, because CPAN chdirs around
# and so we can't use a relative directory. # and so we can't use a relative directory.
# #
@ -46,6 +71,7 @@ use constant CPAN_DEFAULTS => {
auto_commit => 0, auto_commit => 0,
# We always force builds, so there's no reason to cache them. # We always force builds, so there's no reason to cache them.
build_cache => 0, build_cache => 0,
build_requires_install_policy => 'yes',
cache_metadata => 1, cache_metadata => 1,
index_expire => 1, index_expire => 1,
scan_cache => 'atstart', scan_cache => 'atstart',
@ -53,6 +79,7 @@ use constant CPAN_DEFAULTS => {
inhibit_startup_message => 1, inhibit_startup_message => 1,
mbuild_install_build_command => './Build', mbuild_install_build_command => './Build',
bzip2 => bin_loc('bzip2'),
curl => bin_loc('curl'), curl => bin_loc('curl'),
gzip => bin_loc('gzip'), gzip => bin_loc('gzip'),
links => bin_loc('links'), links => bin_loc('links'),
@ -67,14 +94,43 @@ use constant CPAN_DEFAULTS => {
http://cpan.pair.com/ http://cpan.pair.com/
http://mirror.hiwaay.net/CPAN/ http://mirror.hiwaay.net/CPAN/
ftp://ftp.dc.aleron.net/pub/CPAN/ ftp://ftp.dc.aleron.net/pub/CPAN/
http://perl.secsup.org/ http://mirrors.kernel.org/cpan/
http://mirrors.kernel.org/cpan/)], http://mirrors2.kernel.org/cpan/)],
}; };
sub check_cpan_requirements {
my ($original_dir, $original_args) = @_;
my @install;
foreach my $module (REQUIREMENTS) {
my $installed = have_vers($module, 1);
push(@install, $module) if !$installed;
}
return if !@install;
my $restart_required;
foreach my $module (@install) {
$restart_required = 1 if $module->{module} eq 'CPAN';
install_module($module->{module}, 1);
}
if ($restart_required) {
chdir $original_dir;
exec($^X, $0, @$original_args);
}
}
sub install_module { sub install_module {
my ($name, $notest) = @_; my ($name, $test) = @_;
my $bzlib = BZ_LIB; my $bzlib = BZ_LIB;
# Make Module::AutoInstall install all dependencies and never prompt.
local $ENV{PERL_AUTOINSTALL} = '--alldeps';
# This makes Net::SSLeay not prompt the user, if it gets installed.
# It also makes any other MakeMaker prompts accept their defaults.
local $ENV{PERL_MM_USE_DEFAULT} = 1;
# Certain modules require special stuff in order to not prompt us. # Certain modules require special stuff in order to not prompt us.
my $original_makepl = $CPAN::Config->{makepl_arg}; my $original_makepl = $CPAN::Config->{makepl_arg};
# This one's a regex in case we're doing Template::Plugin::GD and it # This one's a regex in case we're doing Template::Plugin::GD and it
@ -85,21 +141,22 @@ sub install_module {
elsif ($name eq 'XML::Twig') { elsif ($name eq 'XML::Twig') {
$CPAN::Config->{makepl_arg} = "-n $original_makepl"; $CPAN::Config->{makepl_arg} = "-n $original_makepl";
} }
elsif ($name eq 'Net::LDAP') {
$CPAN::Config->{makepl_arg} .= " --skipdeps";
}
elsif ($name eq 'SOAP::Lite') { elsif ($name eq 'SOAP::Lite') {
$CPAN::Config->{makepl_arg} .= " --noprompt"; $CPAN::Config->{makepl_arg} .= " --noprompt";
} }
# MIME-tools has a Module::Install that's too old to understand alldeps.
elsif ($name =~ /^MIME::/) {
$ENV{PERL_AUTOINSTALL} = '--defaultdeps';
}
my $module = CPAN::Shell->expand('Module', $name); my $module = CPAN::Shell->expand('Module', $name);
print install_string('install_module', print install_string('install_module',
{ module => $name, version => $module->cpan_version }) . "\n"; { module => $name, version => $module->cpan_version }) . "\n";
if ($notest) { if ($test) {
CPAN::Shell->notest('install', $name); CPAN::Shell->force('install', $name);
} }
else { else {
CPAN::Shell->force('install', $name); CPAN::Shell->notest('install', $name);
} }
# If it installed any binaries in the Bugzilla directory, delete them. # If it installed any binaries in the Bugzilla directory, delete them.
@ -152,6 +209,8 @@ sub set_cpan_config {
# Unless specified, we install the modules into the Bugzilla directory. # Unless specified, we install the modules into the Bugzilla directory.
if (!$do_global) { if (!$do_global) {
require Config;
$CPAN::Config->{makepl_arg} .= " LIB=\"$bzlib\"" $CPAN::Config->{makepl_arg} .= " LIB=\"$bzlib\""
. " INSTALLMAN1DIR=\"$bzlib/man/man1\"" . " INSTALLMAN1DIR=\"$bzlib/man/man1\""
. " INSTALLMAN3DIR=\"$bzlib/man/man3\"" . " INSTALLMAN3DIR=\"$bzlib/man/man3\""
@ -162,7 +221,10 @@ sub set_cpan_config {
# INSTALLDIRS=perl is set because that makes sure that MakeMaker # INSTALLDIRS=perl is set because that makes sure that MakeMaker
# always uses the directories we've specified here. # always uses the directories we've specified here.
. " INSTALLDIRS=perl"; . " INSTALLDIRS=perl";
$CPAN::Config->{mbuild_arg} = "--install_base \"$bzlib\""; $CPAN::Config->{mbuild_arg} = " --install_base \"$bzlib\""
. " --install_path lib=\"$bzlib\""
. " --install_path arch=\"$bzlib/$Config::Config{archname}\"";
$CPAN::Config->{mbuild_install_arg} = $CPAN::Config->{mbuild_arg};
# When we're not root, sometimes newer versions of CPAN will # When we're not root, sometimes newer versions of CPAN will
# try to read/modify things that belong to root, unless we set # try to read/modify things that belong to root, unless we set
@ -213,7 +275,7 @@ Bugzilla::Install::CPAN - Routines to install Perl modules from CPAN.
use Bugzilla::Install::CPAN; use Bugzilla::Install::CPAN;
set_cpan_config(); set_cpan_config();
install_module('Module::Name', 1); install_module('Module::Name');
=head1 DESCRIPTION =head1 DESCRIPTION
@ -240,8 +302,9 @@ Installs a module from CPAN. Takes two arguments:
=item C<$name> - The name of the module, just like you'd pass to the =item C<$name> - The name of the module, just like you'd pass to the
C<install> command in the CPAN shell. C<install> command in the CPAN shell.
=item C<$notest> - If true, we skip running tests on this module. This =item C<$test> - If true, we run tests on this module before installing,
can greatly speed up the installation time. but we still force the install if the tests fail. This is only used
when we internally install a newer CPAN module.
=back =back

View File

@ -1882,6 +1882,12 @@ sub _remove_spaces_and_commas_from_flagtypes {
sub _setup_usebuggroups_backward_compatibility { sub _setup_usebuggroups_backward_compatibility {
my $dbh = Bugzilla->dbh; my $dbh = Bugzilla->dbh;
# Don't run this on newer Bugzillas. This is a reliable test because
# the longdescs table existed in 2.16 (which had usebuggroups)
# but not in 2.18, and this code happens between 2.16 and 2.18.
return if $dbh->bz_column_info('longdescs', 'already_wrapped');
# 2002-11-24 - bugreport@peshkin.net - bug 147275 # 2002-11-24 - bugreport@peshkin.net - bug 147275
# #
# If group_control_map is empty, backward-compatibility # If group_control_map is empty, backward-compatibility
@ -1889,6 +1895,7 @@ sub _setup_usebuggroups_backward_compatibility {
my ($maps_exist) = $dbh->selectrow_array( my ($maps_exist) = $dbh->selectrow_array(
"SELECT DISTINCT 1 FROM group_control_map"); "SELECT DISTINCT 1 FROM group_control_map");
if (!$maps_exist) { if (!$maps_exist) {
print "Converting old usebuggroups controls...\n";
# Initially populate group_control_map. # Initially populate group_control_map.
# First, get all the existing products and their groups. # First, get all the existing products and their groups.
my $sth = $dbh->prepare("SELECT groups.id, products.id, groups.name, my $sth = $dbh->prepare("SELECT groups.id, products.id, groups.name,

View File

@ -75,6 +75,13 @@ sub FILESYSTEM {
my $skinsdir = bz_locations()->{'skinsdir'}; my $skinsdir = bz_locations()->{'skinsdir'};
my $localconfig = bz_locations()->{'localconfig'}; my $localconfig = bz_locations()->{'localconfig'};
# We want to set the permissions the same for all localconfig files
# across all PROJECTs, so we do something special with $localconfig,
# lower down in the permissions section.
if ($ENV{PROJECT}) {
$localconfig =~ s/\.\Q$ENV{PROJECT}\E$//;
}
my $ws_group = Bugzilla->localconfig->{'webservergroup'}; my $ws_group = Bugzilla->localconfig->{'webservergroup'};
my $use_suexec = Bugzilla->localconfig->{'use_suexec'}; my $use_suexec = Bugzilla->localconfig->{'use_suexec'};
@ -92,6 +99,9 @@ sub FILESYSTEM {
# Writeable by the web server. # Writeable by the web server.
my $ws_writeable = $ws_group ? 0660 : 0666; my $ws_writeable = $ws_group ? 0660 : 0666;
# Script-readable files that should not be world-readable under suexec.
my $script_readable = $use_suexec ? 0640 : $ws_readable;
# DIRECTORIES # DIRECTORIES
# Readable by the web server. # Readable by the web server.
my $ws_dir_readable = ($ws_group && !$use_suexec) ? 0750 : 0755; my $ws_dir_readable = ($ws_group && !$use_suexec) ? 0750 : 0755;
@ -130,6 +140,10 @@ sub FILESYSTEM {
'migrate.pl' => { perms => $owner_executable }, 'migrate.pl' => { perms => $owner_executable },
'install-module.pl' => { perms => $owner_executable }, 'install-module.pl' => { perms => $owner_executable },
# Set the permissions for localconfig the same across all
# PROJECTs.
$localconfig => { perms => $script_readable },
"$localconfig.*" => { perms => $script_readable },
"$localconfig.old" => { perms => $owner_readable }, "$localconfig.old" => { perms => $owner_readable },
'contrib/README' => { perms => $owner_readable }, 'contrib/README' => { perms => $owner_readable },

View File

@ -276,10 +276,10 @@ EOT
if (defined $$glob) { if (defined $$glob) {
$localconfig{$var} = $$glob; $localconfig{$var} = $$glob;
} }
elsif (defined @$glob) { elsif (@$glob) {
$localconfig{$var} = \@$glob; $localconfig{$var} = \@$glob;
} }
elsif (defined %$glob) { elsif (%$glob) {
$localconfig{$var} = \%$glob; $localconfig{$var} = \%$glob;
} }
} }

View File

@ -547,8 +547,9 @@ sub have_vers {
eval "require $module;"; eval "require $module;";
# VERSION is provided by UNIVERSAL:: # VERSION is provided by UNIVERSAL::, and can be called even if
my $vnum = eval { $module->VERSION } || -1; # the module isn't loaded.
my $vnum = $module->VERSION || -1;
# CGI's versioning scheme went 2.75, 2.751, 2.752, 2.753, 2.76 # CGI's versioning scheme went 2.75, 2.751, 2.752, 2.753, 2.76
# That breaks the standard version tests, so we need to manually correct # That breaks the standard version tests, so we need to manually correct
@ -556,6 +557,10 @@ sub have_vers {
if ($module eq 'CGI' && $vnum =~ /(2\.7\d)(\d+)/) { if ($module eq 'CGI' && $vnum =~ /(2\.7\d)(\d+)/) {
$vnum = $1 . "." . $2; $vnum = $1 . "." . $2;
} }
# CPAN did a similar thing, where it has versions like 1.9304.
if ($module eq 'CPAN' and $vnum =~ /^(\d\.\d{2})\d{2}$/) {
$vnum = $1;
}
my $vstr; my $vstr;
if ($vnum eq "-1") { # string compare just in case it's non-numeric if ($vnum eq "-1") { # string compare just in case it's non-numeric

View File

@ -308,7 +308,14 @@ sub init {
my @legal_statuses = my @legal_statuses =
map {$_->name} @{Bugzilla::Field->new({name => 'bug_status'})->legal_values}; map {$_->name} @{Bugzilla::Field->new({name => 'bug_status'})->legal_values};
if (scalar(@bug_statuses) == scalar(@legal_statuses) # Filter out any statuses that have been removed completely that are still
# being used by the client
my @valid_statuses;
foreach my $status (@bug_statuses) {
push(@valid_statuses, $status) if grep($_ eq $status, @legal_statuses);
}
if (scalar(@valid_statuses) == scalar(@legal_statuses)
|| $bug_statuses[0] eq "__all__") || $bug_statuses[0] eq "__all__")
{ {
$params->delete('bug_status'); $params->delete('bug_status');
@ -321,6 +328,9 @@ sub init {
$params->param('bug_status', grep(!is_open_state($_), $params->param('bug_status', grep(!is_open_state($_),
@legal_statuses)); @legal_statuses));
} }
else {
$params->param('bug_status', @valid_statuses);
}
} }
if ($params->param('resolution')) { if ($params->param('resolution')) {
@ -394,8 +404,8 @@ sub init {
} }
} }
my $chfieldfrom = trim(lc($params->param('chfieldfrom'))) || ''; my $chfieldfrom = trim(lc($params->param('chfieldfrom') || ''));
my $chfieldto = trim(lc($params->param('chfieldto'))) || ''; my $chfieldto = trim(lc($params->param('chfieldto') || ''));
$chfieldfrom = '' if ($chfieldfrom eq 'now'); $chfieldfrom = '' if ($chfieldfrom eq 'now');
$chfieldto = '' if ($chfieldto eq 'now'); $chfieldto = '' if ($chfieldto eq 'now');
my @chfield = $params->param('chfield'); my @chfield = $params->param('chfield');
@ -851,6 +861,12 @@ sub init {
%chartfields = @{$dbh->selectcol_arrayref( %chartfields = @{$dbh->selectcol_arrayref(
q{SELECT name, id FROM fielddefs}, { Columns=>[1,2] })}; q{SELECT name, id FROM fielddefs}, { Columns=>[1,2] })};
if (!$user->is_timetracker) {
foreach my $tt_field (TIMETRACKING_FIELDS) {
delete $chartfields{$tt_field};
}
}
$row = 0; $row = 0;
for ($chart=-1 ; for ($chart=-1 ;
$chart < 0 || $params->param("field$chart-0-0") ; $chart < 0 || $params->param("field$chart-0-0") ;
@ -1259,8 +1275,7 @@ sub BuildOrderBy {
sub split_order_term { sub split_order_term {
my $fragment = shift; my $fragment = shift;
$fragment =~ /^(.+?)(?:\s+(ASC|DESC))?$/i; $fragment =~ /^(.+?)(?:\s+(ASC|DESC))?$/i;
my ($column_name, $direction) = (lc($1), uc($2)); my ($column_name, $direction) = (lc($1), uc($2 || ''));
$direction ||= "";
return wantarray ? ($column_name, $direction) : $column_name; return wantarray ? ($column_name, $direction) : $column_name;
} }

View File

@ -385,7 +385,7 @@ sub get_bug_link {
$title = html_quote(clean_text($title)); $title = html_quote(clean_text($title));
my $linkval = correct_urlbase()."show_bug.cgi?id=".$bug->id; my $linkval = correct_urlbase()."show_bug.cgi?id=".$bug->id;
if ($options->{comment_num}) { if (defined $options->{comment_num}) {
$linkval .= "#c" . $options->{comment_num}; $linkval .= "#c" . $options->{comment_num};
} }
# CustIS Bug 53691 # CustIS Bug 53691
@ -1004,7 +1004,7 @@ sub process
# if outputting via print(), check for sent header # if outputting via print(), check for sent header
Bugzilla->send_header; Bugzilla->send_header;
} }
$self->SUPER::process(@_); return $self->SUPER::process(@_);
} }
1; 1;

View File

@ -46,8 +46,11 @@ sub process {
$template ||= $context->stash->get([ 'component', 0, 'name', 0 ]); $template ||= $context->stash->get([ 'component', 0, 'name', 0 ]);
# sanity check: # sanity check:
if ($template !~ /^[\w\.\/\-_\\]+$/) { # WHAT IDIOT HAS CALLED SPECIAL TT VARIABLE 'component'?
ThrowCodeError('template_invalid', { name => $template }); if ($template !~ /^[\w\.\/\-_\\]+$/)
{
warn __PACKAGE__.": Template component.name = '$template' invalid, skipping hooks";
return;
} }
my (undef, $path, $filename) = File::Spec->splitpath($template); my (undef, $path, $filename) = File::Spec->splitpath($template);

View File

@ -385,6 +385,8 @@ sub viewall {
my $bugid = $bug->id; my $bugid = $bug->id;
my $attachments = Bugzilla::Attachment->get_attachments_by_bug($bugid); my $attachments = Bugzilla::Attachment->get_attachments_by_bug($bugid);
# Ignore deleted attachments.
@$attachments = grep { $_->datasize } @$attachments;
# Define the variables and functions that will be passed to the UI template. # Define the variables and functions that will be passed to the UI template.
$vars->{'bug'} = $bug; $vars->{'bug'} = $bug;

View File

@ -152,10 +152,13 @@ if (defined $cgi->param('rememberedquery')) {
$vars->{'redirect_url'} = "buglist.cgi?".$params->query_string(); $vars->{'redirect_url'} = "buglist.cgi?".$params->query_string();
# If we're running on Microsoft IIS, using cgi->redirect discards # If we're running on Microsoft IIS, $cgi->redirect discards
# the Set-Cookie lines -- workaround is to use the old-fashioned # the Set-Cookie lines. In mod_perl, $cgi->redirect with cookies
# redirection mechanism. See bug 214466 for details. # causes the page to be rendered as text/plain.
if ($ENV{'SERVER_SOFTWARE'} =~ /Microsoft-IIS/ # Workaround is to use the old-fashioned redirection mechanism.
# See bug 214466 and bug 376044 for details.
if ($ENV{'MOD_PERL'}
|| $ENV{'SERVER_SOFTWARE'} =~ /Microsoft-IIS/
|| $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/) || $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/)
{ {
$cgi->send_header(-type => "text/html", $cgi->send_header(-type => "text/html",
@ -163,6 +166,7 @@ if (defined $cgi->param('rememberedquery')) {
} }
else { else {
print $cgi->redirect($vars->{'redirect_url'}); print $cgi->redirect($vars->{'redirect_url'});
exit;
} }
$template->process("global/message.html.tmpl", $vars) $template->process("global/message.html.tmpl", $vars)

View File

@ -201,6 +201,10 @@ sub collect_stats {
|| ThrowCodeError('chart_file_open_fail', {'filename' => $file}); || ThrowCodeError('chart_file_open_fail', {'filename' => $file});
} }
if (Bugzilla->params->{'utf8'}) {
binmode DATA, ':utf8';
}
# Now collect current data. # Now collect current data.
my @row = (today()); my @row = (today());
my $status_sql = q{SELECT COUNT(*) FROM bugs WHERE bug_status = ?}; my $status_sql = q{SELECT COUNT(*) FROM bugs WHERE bug_status = ?};
@ -258,6 +262,10 @@ sub get_old_data {
open(DATA, '<', $file) open(DATA, '<', $file)
|| ThrowCodeError('chart_file_open_fail', {'filename' => $file}); || ThrowCodeError('chart_file_open_fail', {'filename' => $file});
if (Bugzilla->params->{'utf8'}) {
binmode DATA, ':utf8';
}
my @data; my @data;
my @columns; my @columns;
my $recreate = 0; my $recreate = 0;

View File

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

View File

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

View File

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

View File

@ -32,7 +32,7 @@ name="SYNOPSIS"
<pre class="code"> use Bugzilla::Install::CPAN; <pre class="code"> use Bugzilla::Install::CPAN;
set_cpan_config(); set_cpan_config();
install_module(&#39;Module::Name&#39;, 1);</pre> install_module(&#39;Module::Name&#39;);</pre>
<h1><a class='u' href='#___top' title='click to go to top of document' <h1><a class='u' href='#___top' title='click to go to top of document'
name="DESCRIPTION" name="DESCRIPTION"
@ -65,8 +65,8 @@ name="SUBROUTINES"
><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> ><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> <dd>
<dt><a name="$notest_-_If_true,_we_skip_running_tests_on_this_module._This_can_greatly_speed_up_the_installation_time." <dt><a
><code class="code">$notest</code> - If true, we skip running tests on this module. This can greatly speed up the installation time.</a></dt> ><code class="code">$test</code> - If true, we run tests on this module before installing, but we still force the install if the tests fail. This is only used when we internally install a newer CPAN module.</a></dt>
</dl> </dl>
<p>Note that calling this function prints a <b>lot</b> of information to STDOUT and STDERR.</p> <p>Note that calling this function prints a <b>lot</b> of information to STDOUT and STDERR.</p>

View File

@ -126,8 +126,6 @@ name="Errors"
<p>If any part of your request fails, all of it will fail. No partial changes will happen.</p> <p>If any part of your request fails, all of it will fail. No partial changes will happen.</p>
<p>There is no attachment support yet.</p>
<h1><a class='u' href='#___top' title='click to go to top of document' <h1><a class='u' href='#___top' title='click to go to top of document'
name="CAUTION" name="CAUTION"
>CAUTION</a></h1> >CAUTION</a></h1>
@ -138,8 +136,6 @@ name="CAUTION"
name="LIMITATIONS" name="LIMITATIONS"
>LIMITATIONS</a></h1> >LIMITATIONS</a></h1>
<p>Note that the email interface has the same limitations as the normal Bugzilla interface. So, for example, you cannot reassign a bug and change its status at the same time.</p>
<p>The email interface only accepts emails that are correctly formatted per RFC2822. If you send it an incorrectly formatted message, it may behave in an unpredictable fashion.</p> <p>The email interface only accepts emails that are correctly formatted per RFC2822. If you send it an incorrectly formatted message, it may behave in an unpredictable fashion.</p>
<p>You cannot send an HTML mail along with attachments. If you do, Bugzilla will reject your email, saying that it doesn&#39;t contain any text. This is a bug in <a href="./Email/MIME/Attachment/Stripper.html" class="podlinkpod" <p>You cannot send an HTML mail along with attachments. If you do, Bugzilla will reject your email, saying that it doesn&#39;t contain any text. This is a bug in <a href="./Email/MIME/Attachment/Stripper.html" class="podlinkpod"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
<HTML <HTML
><HEAD ><HEAD
><TITLE ><TITLE
>The Bugzilla Guide - 3.6 >The Bugzilla Guide - 3.6.1
Release</TITLE Release</TITLE
><META ><META
NAME="GENERATOR" NAME="GENERATOR"
@ -46,7 +46,7 @@ CLASS="TITLEPAGE"
CLASS="title" CLASS="title"
><A ><A
NAME="AEN2" NAME="AEN2"
>The Bugzilla Guide - 3.6 >The Bugzilla Guide - 3.6.1
Release</A Release</A
></H1 ></H1
><H3 ><H3
@ -54,7 +54,7 @@ CLASS="corpauthor"
>The Bugzilla Team</H3 >The Bugzilla Team</H3
><P ><P
CLASS="pubdate" CLASS="pubdate"
>2010-04-13<BR></P >2010-06-24<BR></P
><DIV ><DIV
><DIV ><DIV
CLASS="abstract" CLASS="abstract"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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