Compare commits
38 Commits
Groups_200
...
Bugzilla_P
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c591d53e2 | ||
|
|
c1aa983fd5 | ||
|
|
3551227412 | ||
|
|
d0cc91f285 | ||
|
|
65ff7d56b3 | ||
|
|
800eccde9a | ||
|
|
5360e5b008 | ||
|
|
da759055dd | ||
|
|
1f960bb1bd | ||
|
|
e0f4b89db1 | ||
|
|
025b6e8e46 | ||
|
|
704f46aa53 | ||
|
|
f26338df7e | ||
|
|
58548c3f0d | ||
|
|
9a6b4393ad | ||
|
|
4316819604 | ||
|
|
9d93dfabb8 | ||
|
|
d2ddb07675 | ||
|
|
66d426dc97 | ||
|
|
b7e91cb3b6 | ||
|
|
5ac0899827 | ||
|
|
4f49e57a3b | ||
|
|
38c27be28f | ||
|
|
d60d3d6121 | ||
|
|
db0b87fb6c | ||
|
|
6e2791a4b7 | ||
|
|
14542c62c7 | ||
|
|
38ebcba576 | ||
|
|
a5502157a9 | ||
|
|
ba69b37618 | ||
|
|
22b863a5e9 | ||
|
|
3e54979994 | ||
|
|
d73ca44c76 | ||
|
|
a4fc52b12e | ||
|
|
353baca797 | ||
|
|
4618ab6c36 | ||
|
|
faaed9c15f | ||
|
|
675f64d0ae |
@@ -24,6 +24,7 @@
|
||||
# Module Initialization
|
||||
############################################################################
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
package Attachment;
|
||||
@@ -48,7 +49,7 @@ sub query
|
||||
# of hashes in which each hash represents a single attachment.
|
||||
&::SendSQL("
|
||||
SELECT attach_id, creation_ts, mimetype, description, ispatch,
|
||||
isobsolete, isprivate, submitter_id
|
||||
isobsolete, submitter_id
|
||||
FROM attachments WHERE bug_id = $bugid ORDER BY attach_id
|
||||
");
|
||||
my @attachments = ();
|
||||
@@ -56,8 +57,7 @@ sub query
|
||||
my %a;
|
||||
my $submitter_id;
|
||||
($a{'attachid'}, $a{'date'}, $a{'contenttype'}, $a{'description'},
|
||||
$a{'ispatch'}, $a{'isobsolete'}, $a{'isprivate'}, $submitter_id)
|
||||
= &::FetchSQLData();
|
||||
$a{'ispatch'}, $a{'isobsolete'}, $submitter_id) = &::FetchSQLData();
|
||||
|
||||
# Format the attachment's creation/modification date into a standard
|
||||
# format (YYYY-MM-DD HH:MM)
|
||||
|
||||
@@ -21,24 +21,23 @@
|
||||
# Terry Weissman <terry@mozilla.org>
|
||||
# Chris Yeh <cyeh@bluemartini.com>
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
use DBI;
|
||||
use RelationSet;
|
||||
use vars qw($unconfirmedstate $legal_keywords);
|
||||
|
||||
require "globals.pl";
|
||||
require "CGI.pl";
|
||||
package Bug;
|
||||
use CGI::Carp qw(fatalsToBrowser);
|
||||
my %ok_field;
|
||||
|
||||
use Bugzilla::Config;
|
||||
use Bugzilla::Util;
|
||||
|
||||
for my $key (qw (bug_id alias product version rep_platform op_sys bug_status
|
||||
for my $key (qw (bug_id product version rep_platform op_sys bug_status
|
||||
resolution priority bug_severity component assigned_to
|
||||
reporter bug_file_loc short_desc target_milestone
|
||||
qa_contact status_whiteboard creation_ts
|
||||
delta_ts votes whoid comment query error) ){
|
||||
qa_contact status_whiteboard creation_ts groupset
|
||||
delta_ts votes whoid usergroupset comment query error) ){
|
||||
$ok_field{$key}++;
|
||||
}
|
||||
|
||||
@@ -75,12 +74,9 @@ sub initBug {
|
||||
my $self = shift();
|
||||
my ($bug_id, $user_id) = (@_);
|
||||
|
||||
# If the bug ID isn't numeric, it might be an alias, so try to convert it.
|
||||
$bug_id = &::BugAliasToID($bug_id) if $bug_id !~ /^[1-9][0-9]*$/;
|
||||
|
||||
my $old_bug_id = $bug_id;
|
||||
if ((! defined $bug_id) || (!$bug_id) || (!detaint_natural($bug_id))) {
|
||||
# no bug number given or the alias didn't match a bug
|
||||
if ((! defined $bug_id) || (!$bug_id) || (!&::detaint_natural($bug_id))) {
|
||||
# no bug number given
|
||||
$self->{'bug_id'} = $old_bug_id;
|
||||
$self->{'error'} = "InvalidBugId";
|
||||
return $self;
|
||||
@@ -105,47 +101,77 @@ sub initBug {
|
||||
|
||||
|
||||
$self->{'whoid'} = $user_id;
|
||||
&::SendSQL("SELECT groupset FROM profiles WHERE userid=$self->{'whoid'}");
|
||||
my $usergroupset = &::FetchOneColumn();
|
||||
if (!$usergroupset) { $usergroupset = '0' }
|
||||
$self->{'usergroupset'} = $usergroupset;
|
||||
|
||||
my $query = "
|
||||
# Check to see if we can see this bug
|
||||
if (!&::CanSeeBug($bug_id, $user_id, $usergroupset)) {
|
||||
# Permission denied to see bug
|
||||
$self->{'bug_id'} = $old_bug_id;
|
||||
$self->{'error'} = "PermissionDenied";
|
||||
return $self;
|
||||
}
|
||||
|
||||
my $query = "";
|
||||
if ($::driver eq 'mysql') {
|
||||
$query = "
|
||||
select
|
||||
bugs.bug_id, alias, products.name, version, rep_platform, op_sys, bug_status,
|
||||
resolution, priority, bug_severity, components.name, assigned_to, reporter,
|
||||
bugs.bug_id, product, version, rep_platform, op_sys, bug_status,
|
||||
resolution, priority, bug_severity, component, assigned_to, reporter,
|
||||
bug_file_loc, short_desc, target_milestone, qa_contact,
|
||||
status_whiteboard, date_format(creation_ts,'%Y-%m-%d %H:%i'),
|
||||
delta_ts, sum(votes.count)
|
||||
from bugs left join votes using(bug_id),
|
||||
products, components
|
||||
groupset, delta_ts, sum(votes.count)
|
||||
from bugs left join votes using(bug_id)
|
||||
where bugs.bug_id = $bug_id
|
||||
AND products.id = bugs.product_id
|
||||
AND components.id = bugs.component_id
|
||||
group by bugs.bug_id";
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
$query = "
|
||||
select
|
||||
bugs.bug_id, product, version, rep_platform, op_sys, bug_status,
|
||||
resolution, priority, bug_severity, component, assigned_to, reporter,
|
||||
bug_file_loc, short_desc, target_milestone, qa_contact,
|
||||
status_whiteboard, creation_ts,
|
||||
groupset, delta_ts, sum(votes.count)
|
||||
from bugs left join votes using(bug_id)
|
||||
where bugs.bug_id = $bug_id
|
||||
and (bugs.groupset & int8($usergroupset)) = bugs.groupset
|
||||
group by bugs.bug_id, product, version, rep_platform, op_sys, bug_status,
|
||||
resolution, priority, bug_severity, component, assigned_to, reporter,
|
||||
bug_file_loc, short_desc, target_milestone, qa_contact, status_whiteboard,
|
||||
creation_ts, groupset, delta_ts";
|
||||
}
|
||||
|
||||
&::SendSQL($query);
|
||||
my @row = ();
|
||||
my @row;
|
||||
|
||||
if ((@row = &::FetchSQLData()) && &::CanSeeBug($bug_id, $self->{'whoid'})) {
|
||||
if (@row = &::FetchSQLData()) {
|
||||
my $count = 0;
|
||||
my %fields;
|
||||
foreach my $field ("bug_id", "alias", "product", "version", "rep_platform",
|
||||
foreach my $field ("bug_id", "product", "version", "rep_platform",
|
||||
"op_sys", "bug_status", "resolution", "priority",
|
||||
"bug_severity", "component", "assigned_to", "reporter",
|
||||
"bug_file_loc", "short_desc", "target_milestone",
|
||||
"qa_contact", "status_whiteboard", "creation_ts",
|
||||
"delta_ts", "votes") {
|
||||
"groupset", "delta_ts", "votes") {
|
||||
$fields{$field} = shift @row;
|
||||
if ($fields{$field}) {
|
||||
$self->{$field} = $fields{$field};
|
||||
}
|
||||
$count++;
|
||||
}
|
||||
} elsif (@row) {
|
||||
} else {
|
||||
&::SendSQL("select groupset from bugs where bug_id = $bug_id");
|
||||
if (@row = &::FetchSQLData()) {
|
||||
$self->{'bug_id'} = $bug_id;
|
||||
$self->{'error'} = "NotPermitted";
|
||||
return $self;
|
||||
} else {
|
||||
} else {
|
||||
$self->{'bug_id'} = $bug_id;
|
||||
$self->{'error'} = "NotFound";
|
||||
return $self;
|
||||
}
|
||||
}
|
||||
|
||||
$self->{'assigned_to'} = &::DBID_to_name($self->{'assigned_to'});
|
||||
@@ -158,7 +184,7 @@ sub initBug {
|
||||
$self->{'cc'} = \@cc;
|
||||
}
|
||||
|
||||
if (Param("useqacontact") && (defined $self->{'qa_contact'}) ) {
|
||||
if (&::Param("useqacontact") && (defined $self->{'qa_contact'}) ) {
|
||||
my $name = $self->{'qa_contact'} > 0 ? &::DBID_to_name($self->{'qa_contact'}) :"";
|
||||
if ($name) {
|
||||
$self->{'qa_contact'} = $name;
|
||||
@@ -180,47 +206,50 @@ sub initBug {
|
||||
}
|
||||
}
|
||||
|
||||
&::SendSQL("select attach_id, creation_ts, isprivate, description
|
||||
from attachments
|
||||
where bug_id = $bug_id");
|
||||
my @attachments;
|
||||
while (&::MoreSQLData()) {
|
||||
my ($attachid, $date, $isprivate, $desc) = (&::FetchSQLData());
|
||||
my %attach;
|
||||
$attach{'attachid'} = $attachid;
|
||||
$attach{'isprivate'} = $isprivate;
|
||||
$attach{'date'} = $date;
|
||||
$attach{'desc'} = $desc;
|
||||
push @attachments, \%attach;
|
||||
}
|
||||
if (@attachments) {
|
||||
$self->{'attachments'} = \@attachments;
|
||||
&::SendSQL("select attach_id, creation_ts, description
|
||||
from attachments
|
||||
where bug_id = $bug_id");
|
||||
my @attachments;
|
||||
while (&::MoreSQLData()) {
|
||||
my ($attachid, $date, $desc) = (&::FetchSQLData());
|
||||
if ($date =~ /^(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) {
|
||||
$date = "$3/$4/$2 $5:$6";
|
||||
my %attach;
|
||||
$attach{'attachid'} = $attachid;
|
||||
$attach{'date'} = $date;
|
||||
$attach{'desc'} = $desc;
|
||||
push @attachments, \%attach;
|
||||
}
|
||||
}
|
||||
if (@attachments) {
|
||||
$self->{'attachments'} = \@attachments;
|
||||
}
|
||||
|
||||
&::SendSQL("select bug_id, who, bug_when, isprivate, thetext
|
||||
&::SendSQL("select bug_id, who, bug_when, thetext
|
||||
from longdescs
|
||||
where bug_id = $bug_id");
|
||||
my @longdescs;
|
||||
while (&::MoreSQLData()) {
|
||||
my ($bug_id, $who, $bug_when, $isprivate, $thetext) = (&::FetchSQLData());
|
||||
my %longdesc;
|
||||
$longdesc{'who'} = $who;
|
||||
$longdesc{'bug_when'} = $bug_when;
|
||||
$longdesc{'isprivate'} = $isprivate;
|
||||
$longdesc{'thetext'} = $thetext;
|
||||
push @longdescs, \%longdesc;
|
||||
}
|
||||
if (@longdescs) {
|
||||
$self->{'longdescs'} = \@longdescs;
|
||||
}
|
||||
|
||||
my @depends = EmitDependList("blocked", "dependson", $bug_id);
|
||||
if (@depends) {
|
||||
my @longdescs;
|
||||
while (&::MoreSQLData()) {
|
||||
my ($bug_id, $who, $bug_when, $thetext) = (&::FetchSQLData());
|
||||
my %longdesc;
|
||||
$longdesc{'who'} = $who;
|
||||
$longdesc{'bug_when'} = $bug_when;
|
||||
$longdesc{'thetext'} = $thetext;
|
||||
push @longdescs, \%longdesc;
|
||||
}
|
||||
if (@longdescs) {
|
||||
$self->{'longdescs'} = \@longdescs;
|
||||
}
|
||||
|
||||
if (&::Param("usedependencies")) {
|
||||
my @depends = EmitDependList("blocked", "dependson", $bug_id);
|
||||
if ( @depends ) {
|
||||
$self->{'dependson'} = \@depends;
|
||||
}
|
||||
my @blocks = EmitDependList("dependson", "blocked", $bug_id);
|
||||
if (@blocks) {
|
||||
$self->{'blocks'} = \@blocks;
|
||||
}
|
||||
my @blocks = EmitDependList("dependson", "blocked", $bug_id);
|
||||
if ( @blocks ) {
|
||||
$self->{'blocks'} = \@blocks;
|
||||
}
|
||||
}
|
||||
|
||||
return $self;
|
||||
@@ -245,7 +274,7 @@ sub emitXML {
|
||||
|
||||
$xml .= "<bug>\n";
|
||||
|
||||
foreach my $field ("bug_id", "alias", "bug_status", "product",
|
||||
foreach my $field ("bug_id", "bug_status", "product",
|
||||
"priority", "version", "rep_platform", "assigned_to", "delta_ts",
|
||||
"component", "reporter", "target_milestone", "bug_severity",
|
||||
"creation_ts", "qa_contact", "op_sys", "resolution", "bug_file_loc",
|
||||
@@ -263,40 +292,34 @@ sub emitXML {
|
||||
}
|
||||
}
|
||||
|
||||
if (defined $self->{'longdescs'}) {
|
||||
for (my $i=0 ; $i < @{$self->{'longdescs'}} ; $i++) {
|
||||
next if ($self->{'longdescs'}[$i]->{'isprivate'}
|
||||
&& Param("insidergroup")
|
||||
&& !&::UserInGroup(Param("insidergroup")));
|
||||
$xml .= " <long_desc>\n";
|
||||
$xml .= " <who>" . &::DBID_to_name($self->{'longdescs'}[$i]->{'who'})
|
||||
. "</who>\n";
|
||||
$xml .= " <bug_when>" . $self->{'longdescs'}[$i]->{'bug_when'}
|
||||
. "</bug_when>\n";
|
||||
$xml .= " <thetext>" . QuoteXMLChars($self->{'longdescs'}[$i]->{'thetext'})
|
||||
. "</thetext>\n";
|
||||
$xml .= " </long_desc>\n";
|
||||
}
|
||||
if (defined $self->{'longdescs'}) {
|
||||
for (my $i=0 ; $i < @{$self->{'longdescs'}} ; $i++) {
|
||||
$xml .= " <long_desc>\n";
|
||||
$xml .= " <who>" . &::DBID_to_name($self->{'longdescs'}[$i]->{'who'})
|
||||
. "</who>\n";
|
||||
$xml .= " <bug_when>" . $self->{'longdescs'}[$i]->{'bug_when'}
|
||||
. "</bug_when>\n";
|
||||
$xml .= " <thetext>" . QuoteXMLChars($self->{'longdescs'}[$i]->{'thetext'})
|
||||
. "</thetext>\n";
|
||||
$xml .= " </long_desc>\n";
|
||||
}
|
||||
}
|
||||
|
||||
if (defined $self->{'attachments'}) {
|
||||
for (my $i=0 ; $i < @{$self->{'attachments'}} ; $i++) {
|
||||
next if ($self->{'attachments'}[$i]->{'isprivate'}
|
||||
&& Param("insidergroup")
|
||||
&& !&::UserInGroup(Param("insidergroup")));
|
||||
$xml .= " <attachment>\n";
|
||||
$xml .= " <attachid>" . $self->{'attachments'}[$i]->{'attachid'}
|
||||
. "</attachid>\n";
|
||||
$xml .= " <date>" . $self->{'attachments'}[$i]->{'date'} . "</date>\n";
|
||||
$xml .= " <desc>" . QuoteXMLChars($self->{'attachments'}[$i]->{'desc'}) . "</desc>\n";
|
||||
# $xml .= " <type>" . $self->{'attachments'}[$i]->{'type'} . "</type>\n";
|
||||
# $xml .= " <data>" . $self->{'attachments'}[$i]->{'data'} . "</data>\n";
|
||||
$xml .= " </attachment>\n";
|
||||
}
|
||||
if (defined $self->{'attachments'}) {
|
||||
for (my $i=0 ; $i < @{$self->{'attachments'}} ; $i++) {
|
||||
$xml .= " <attachment>\n";
|
||||
$xml .= " <attachid>" . $self->{'attachments'}[$i]->{'attachid'}
|
||||
. "</attachid>\n";
|
||||
$xml .= " <date>" . $self->{'attachments'}[$i]->{'date'} . "</date>\n";
|
||||
$xml .= " <desc>" . QuoteXMLChars($self->{'attachments'}[$i]->{'desc'}) . "</desc>\n";
|
||||
# $xml .= " <type>" . $self->{'attachments'}[$i]->{'type'} . "</type>\n";
|
||||
# $xml .= " <data>" . $self->{'attachments'}[$i]->{'data'} . "</data>\n";
|
||||
$xml .= " </attachment>\n";
|
||||
}
|
||||
}
|
||||
|
||||
$xml .= "</bug>\n";
|
||||
return $xml;
|
||||
$xml .= "</bug>\n";
|
||||
return $xml;
|
||||
}
|
||||
|
||||
sub EmitDependList {
|
||||
@@ -349,6 +372,22 @@ sub XML_Footer {
|
||||
return ("</bugzilla>\n");
|
||||
}
|
||||
|
||||
sub UserInGroup {
|
||||
my $self = shift();
|
||||
my ($groupname) = (@_);
|
||||
if ($self->{'usergroupset'} eq "0") {
|
||||
return 0;
|
||||
}
|
||||
&::ConnectToDatabase();
|
||||
&::SendSQL("select (group_bit & int8($self->{'usergroupset'})) != 0 from groups where name = "
|
||||
. &::SqlQuote($groupname));
|
||||
my $bit = &::FetchOneColumn();
|
||||
if ($bit) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
sub CanChangeField {
|
||||
my $self = shift();
|
||||
my ($f, $oldvalue, $newvalue) = (@_);
|
||||
@@ -370,7 +409,7 @@ sub CanChangeField {
|
||||
if ($oldvalue eq $newvalue) {
|
||||
return 1;
|
||||
}
|
||||
if (trim($oldvalue) eq trim($newvalue)) {
|
||||
if (&::trim($oldvalue) eq &::trim($newvalue)) {
|
||||
return 1;
|
||||
}
|
||||
if ($f =~ /^longdesc/) {
|
||||
@@ -424,14 +463,18 @@ sub Collision {
|
||||
my $self = shift();
|
||||
my $write = "WRITE"; # Might want to make a param to control
|
||||
# whether we do LOW_PRIORITY ...
|
||||
&::SendSQL("LOCK TABLES bugs $write, bugs_activity $write, cc $write, " .
|
||||
"cc AS selectVisible_cc $write, " .
|
||||
"profiles $write, dependencies $write, votes $write, " .
|
||||
"keywords $write, longdescs $write, fielddefs $write, " .
|
||||
"keyworddefs READ, groups READ, attachments READ, products READ");
|
||||
if ($::driver eq 'mysql') {
|
||||
&::SendSQL("LOCK TABLES bugs $write, bugs_activity $write, cc $write, " .
|
||||
"cc AS selectVisible_cc $write, " .
|
||||
"profiles $write, dependencies $write, votes $write, " .
|
||||
"keywords $write, longdescs $write, fielddefs $write, " .
|
||||
"keyworddefs READ, groups READ, attachments READ, products READ");
|
||||
}
|
||||
&::SendSQL("SELECT delta_ts FROM bugs where bug_id=$self->{'bug_id'}");
|
||||
my $delta_ts = &::FetchOneColumn();
|
||||
&::SendSQL("unlock tables");
|
||||
if ($::driver eq 'mysql') {
|
||||
&::SendSQL("unlock tables");
|
||||
}
|
||||
if ($self->{'delta_ts'} ne $delta_ts) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -1,383 +0,0 @@
|
||||
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Bugzilla Bug Tracking System.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
||||
# Dawn Endico <endico@mozilla.org>
|
||||
# Dan Mosedale <dmose@mozilla.org>
|
||||
# Joe Robins <jmrobins@tgix.com>
|
||||
# Jake <jake@bugzilla.org>
|
||||
# J. Paul Reed <preed@sigkill.com>
|
||||
# Bradley Baetz <bbaetz@student.usyd.edu.au>
|
||||
# Christopher Aillon <christopher@aillon.com>
|
||||
|
||||
package Bugzilla::Config;
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Bugzilla::Config - Configuration parameters for Bugzilla
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
# Getting parameters
|
||||
use Bugzilla::Config;
|
||||
|
||||
my $fooSetting = Param('foo');
|
||||
|
||||
# Administration functions
|
||||
use Bugzilla::Config qw(:admin);
|
||||
|
||||
my @valid_params = GetParamList();
|
||||
my @removed_params = UpgradeParams();
|
||||
SetParam($param, $value);
|
||||
WriteParams();
|
||||
|
||||
# Localconfig variables may also be imported
|
||||
use Bugzilla::Config qw(:db);
|
||||
print "Connecting to $db_name as $db_user with $db_pass\n";
|
||||
|
||||
# This variable does not belong in localconfig, and needs to go
|
||||
# somewhere better
|
||||
use Bugzilla::Config($contenttypes)
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This package contains ways to access Bugzilla configuration parameters.
|
||||
|
||||
=cut
|
||||
|
||||
use strict;
|
||||
|
||||
use base qw(Exporter);
|
||||
|
||||
use Bugzilla::Util;
|
||||
|
||||
# Module stuff
|
||||
@Bugzilla::Config::EXPORT = qw(Param);
|
||||
|
||||
# Don't export localvars by default - people should have to explicitly
|
||||
# ask for it, as a (probably futile) attempt to stop code using it
|
||||
# when it shouldn't
|
||||
# ChmodDataFile is here until that stuff all moves out of globals.pl
|
||||
# into this file
|
||||
@Bugzilla::Config::EXPORT_OK = qw($contenttypes ChmodDataFile);
|
||||
%Bugzilla::Config::EXPORT_TAGS =
|
||||
(
|
||||
admin => [qw(GetParamList UpdateParams SetParam WriteParams)],
|
||||
db => [qw($db_host $db_port $db_name $db_user $db_pass)],
|
||||
);
|
||||
Exporter::export_ok_tags('admin', 'db');
|
||||
|
||||
# Bugzilla version
|
||||
$Bugzilla::Config::VERSION = "2.17";
|
||||
|
||||
use Data::Dumper;
|
||||
|
||||
# This only has an affect for Data::Dumper >= 2.12 (ie perl >= 5.8.0)
|
||||
# Its just cosmetic, though, so that doesn't matter
|
||||
$Data::Dumper::Sortkeys = 1;
|
||||
|
||||
use File::Temp;
|
||||
use Safe;
|
||||
|
||||
use vars qw(@param_list);
|
||||
my %param;
|
||||
|
||||
# INITIALISATION CODE
|
||||
|
||||
# XXX - mod_perl - need to register Apache init handler for params
|
||||
sub _load_datafiles {
|
||||
# read in localconfig variables
|
||||
do 'localconfig';
|
||||
|
||||
if (-e 'data/params') {
|
||||
# Handle reading old param files by munging the symbol table
|
||||
# Don't have to do this if we use safe mode, since its evaled
|
||||
# in a sandbox where $foo is in the same module as $::foo
|
||||
#local *::param = \%param;
|
||||
|
||||
# Note that checksetup.pl sets file permissions on 'data/params'
|
||||
|
||||
# Using Safe mode is _not_ a guarantee of safety if someone does
|
||||
# manage to write to the file. However, it won't hurt...
|
||||
# See bug 165144 for not needing to eval this at all
|
||||
my $s = new Safe;
|
||||
|
||||
$s->rdo('data/params');
|
||||
die "Error evaluating data/params: $@" if $@;
|
||||
|
||||
# Now read the param back out from the sandbox
|
||||
%param = %{$s->varglob('param')};
|
||||
}
|
||||
}
|
||||
|
||||
# Load in the datafiles
|
||||
_load_datafiles();
|
||||
|
||||
# Load in the param defintions
|
||||
unless (my $ret = do 'defparams.pl') {
|
||||
die "Couldn't parse defparams.pl: $@" if $@;
|
||||
die "Couldn't do defparams.pl: $!" unless defined $ret;
|
||||
die "Couldn't run defparams.pl" unless $ret;
|
||||
}
|
||||
|
||||
# Stick the params into a hash
|
||||
my %params;
|
||||
foreach my $item (@param_list) {
|
||||
$params{$item->{'name'}} = $item;
|
||||
}
|
||||
|
||||
# END INIT CODE
|
||||
|
||||
# Subroutines go here
|
||||
|
||||
=head1 FUNCTIONS
|
||||
|
||||
=head2 Parameters
|
||||
|
||||
Parameters can be set, retrieved, and updated.
|
||||
|
||||
=over 4
|
||||
|
||||
=item C<Param($name)>
|
||||
|
||||
Returns the Param with the specified name. Either a string, or, in the case
|
||||
of multiple-choice parameters, an array reference.
|
||||
|
||||
=cut
|
||||
|
||||
sub Param {
|
||||
my ($param) = @_;
|
||||
|
||||
# By this stage, the param must be in the hash
|
||||
die "Can't find param named $param" unless (exists $param{$param});
|
||||
|
||||
return $param{$param};
|
||||
}
|
||||
|
||||
=item C<GetParamList()>
|
||||
|
||||
Returns the list of known parameter types, from defparams.pl. Users should not
|
||||
rely on this method; it is intended for editparams/doeditparams only
|
||||
|
||||
The format for the list is specified in defparams.pl
|
||||
|
||||
=cut
|
||||
|
||||
sub GetParamList {
|
||||
return @param_list;
|
||||
}
|
||||
|
||||
=item C<SetParam($name, $value)>
|
||||
|
||||
Sets the param named $name to $value. Values are checked using the checker
|
||||
function for the given param if one exists.
|
||||
|
||||
=cut
|
||||
|
||||
sub SetParam {
|
||||
my ($name, $value) = @_;
|
||||
|
||||
die "Unknown param $name" unless (exists $params{$name});
|
||||
|
||||
my $entry = $params{$name};
|
||||
|
||||
# sanity check the value
|
||||
if (exists $entry->{'checker'}) {
|
||||
my $err = $entry->{'checker'}->($value, $entry);
|
||||
die "Param $name is not valid: $err" unless $err eq '';
|
||||
}
|
||||
|
||||
$param{$name} = $value;
|
||||
}
|
||||
|
||||
=item C<UpdateParams()>
|
||||
|
||||
Updates the parameters, by transitioning old params to new formats, setting
|
||||
defaults for new params, and removing obsolete ones.
|
||||
|
||||
Any removed params are returned in a list, with elements [$item, $oldvalue]
|
||||
where $item is the entry in the param list.
|
||||
|
||||
This change is not flushed to disk, use L<C<WriteParams()>> for that.
|
||||
|
||||
=cut
|
||||
|
||||
sub UpdateParams {
|
||||
# --- PARAM CONVERSION CODE ---
|
||||
|
||||
# Note that this isn't particuarly 'clean' in terms of separating
|
||||
# the backend code (ie this) from the actual params.
|
||||
# We don't care about that, though
|
||||
|
||||
# Old bugzilla versions stored the version number in the params file
|
||||
# We don't want it, so get rid of it
|
||||
delete $param{'version'};
|
||||
|
||||
# Change from a boolean for quips to multi-state
|
||||
if (exists $param{'usequip'} && !exists $param{'allowquips'}) {
|
||||
$param{'allowquips'} = $param{'usequip'} ? 'on' : 'off';
|
||||
delete $param{'usequip'};
|
||||
}
|
||||
|
||||
# --- DEFAULTS FOR NEW PARAMS ---
|
||||
|
||||
foreach my $item (@param_list) {
|
||||
my $name = $item->{'name'};
|
||||
$param{$name} = $item->{'default'} unless exists $param{$name};
|
||||
}
|
||||
|
||||
# --- REMOVE OLD PARAMS ---
|
||||
|
||||
my @oldparams = ();
|
||||
|
||||
# Remove any old params
|
||||
foreach my $item (keys %param) {
|
||||
if (!grep($_ eq $item, map ($_->{'name'}, @param_list))) {
|
||||
local $Data::Dumper::Terse = 1;
|
||||
local $Data::Dumper::Indent = 0;
|
||||
push (@oldparams, [$item, Data::Dumper->Dump([$param{$item}])]);
|
||||
delete $param{$item};
|
||||
}
|
||||
}
|
||||
|
||||
return @oldparams;
|
||||
}
|
||||
|
||||
=item C<WriteParams()>
|
||||
|
||||
Writes the parameters to disk.
|
||||
|
||||
=cut
|
||||
|
||||
sub WriteParams {
|
||||
my ($fh, $tmpname) = File::Temp::tempfile('params.XXXXX',
|
||||
DIR => 'data' );
|
||||
|
||||
print $fh (Data::Dumper->Dump([ \%param ], [ '*param' ]))
|
||||
|| die "Can't write param file: $!";
|
||||
|
||||
close $fh;
|
||||
|
||||
rename $tmpname, "data/params"
|
||||
|| die "Can't rename $tmpname to data/params: $!";
|
||||
|
||||
ChmodDataFile('data/params', 0666);
|
||||
}
|
||||
|
||||
# Some files in the data directory must be world readable iff we don't have
|
||||
# a webserver group. Call this function to do this.
|
||||
# This will become a private function once all the datafile handling stuff
|
||||
# moves into this package
|
||||
|
||||
# This sub is not perldoc'd for that reason - noone should know about it
|
||||
sub ChmodDataFile {
|
||||
my ($file, $mask) = @_;
|
||||
my $perm = 0770;
|
||||
if ((stat('data'))[2] & 0002) {
|
||||
$perm = 0777;
|
||||
}
|
||||
$perm = $perm & $mask;
|
||||
chmod $perm,$file;
|
||||
}
|
||||
|
||||
=back
|
||||
|
||||
=head2 Parameter checking functions
|
||||
|
||||
All parameter checking functions are called with two parameters:
|
||||
|
||||
=over 4
|
||||
|
||||
=item *
|
||||
|
||||
The new value for the parameter
|
||||
|
||||
=item *
|
||||
|
||||
A reference to the entry in the param list for this parameter
|
||||
|
||||
=back
|
||||
|
||||
Functions should return error text, or the empty string if there was no error.
|
||||
|
||||
=over 4
|
||||
|
||||
=item C<check_multi>
|
||||
|
||||
Checks that a multi-valued parameter (ie type C<s> or type C<m>) satisfies
|
||||
its contraints.
|
||||
|
||||
=cut
|
||||
|
||||
sub check_multi {
|
||||
my ($value, $param) = (@_);
|
||||
|
||||
if ($param->{'type'} eq "s") {
|
||||
unless (lsearch($param->{'choices'}, $value) >= 0) {
|
||||
return "Invalid choice '$value' for single-select list param '$param'";
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
elsif ($param->{'type'} eq "m") {
|
||||
foreach my $chkParam (@$value) {
|
||||
unless (lsearch($param->{'choices'}, $chkParam) >= 0) {
|
||||
return "Invalid choice '$chkParam' for multi-select list param '$param'";
|
||||
}
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
else {
|
||||
return "Invalid param type '$param->{'type'}' for check_multi(); " .
|
||||
"contact your Bugzilla administrator";
|
||||
}
|
||||
}
|
||||
|
||||
=item C<check_numeric>
|
||||
|
||||
Checks that the value is a valid number
|
||||
|
||||
=cut
|
||||
|
||||
sub check_numeric {
|
||||
my ($value) = (@_);
|
||||
if ($value !~ /^[0-9]+$/) {
|
||||
return "must be a numeric value";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
=item C<check_regexp>
|
||||
|
||||
Checks that the value is a valid regexp
|
||||
|
||||
=cut
|
||||
|
||||
sub check_regexp {
|
||||
my ($value) = (@_);
|
||||
eval { qr/$value/ };
|
||||
return $@;
|
||||
}
|
||||
|
||||
=back
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
@@ -1,919 +0,0 @@
|
||||
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Bugzilla Bug Tracking System.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Gervase Markham <gerv@gerv.net>
|
||||
# Terry Weissman <terry@mozilla.org>
|
||||
# Dan Mosedale <dmose@mozilla.org>
|
||||
# Stephan Niemz <st.n@gmx.net>
|
||||
# Andreas Franke <afranke@mathweb.org>
|
||||
# Myk Melez <myk@mozilla.org>
|
||||
# Michael Schindler <michael@compressconsult.com>
|
||||
|
||||
use strict;
|
||||
|
||||
# The caller MUST require CGI.pl and globals.pl before using this
|
||||
|
||||
use vars qw($userid);
|
||||
|
||||
package Bugzilla::Search;
|
||||
|
||||
use Bugzilla::Config;
|
||||
use Bugzilla::Util;
|
||||
|
||||
use Date::Format;
|
||||
use Date::Parse;
|
||||
|
||||
# Create a new Search
|
||||
sub new {
|
||||
my $invocant = shift;
|
||||
my $class = ref($invocant) || $invocant;
|
||||
|
||||
my $self = { @_ };
|
||||
bless($self, $class);
|
||||
|
||||
$self->init();
|
||||
|
||||
return $self;
|
||||
}
|
||||
|
||||
sub init {
|
||||
my $self = shift;
|
||||
my $fieldsref = $self->{'fields'};
|
||||
my $urlstr = $self->{'url'};
|
||||
|
||||
my $debug = 0;
|
||||
|
||||
my @fields;
|
||||
my @supptables;
|
||||
my @wherepart;
|
||||
@fields = @$fieldsref if $fieldsref;
|
||||
my %F;
|
||||
my %M;
|
||||
&::ParseUrlString($urlstr, \%F, \%M);
|
||||
my @specialchart;
|
||||
my @andlist;
|
||||
|
||||
# First, deal with all the old hard-coded non-chart-based poop.
|
||||
if (lsearch($fieldsref, 'map_assigned_to.login_name') >= 0) {
|
||||
push @supptables, "profiles AS map_assigned_to";
|
||||
push @wherepart, "bugs.assigned_to = map_assigned_to.userid";
|
||||
}
|
||||
|
||||
if (lsearch($fieldsref, 'map_reporter.login_name') >= 0) {
|
||||
push @supptables, "profiles AS map_reporter";
|
||||
push @wherepart, "bugs.reporter = map_reporter.userid";
|
||||
}
|
||||
|
||||
if (lsearch($fieldsref, 'map_qa_contact.login_name') >= 0) {
|
||||
push @supptables, "LEFT JOIN profiles map_qa_contact ON bugs.qa_contact = map_qa_contact.userid";
|
||||
}
|
||||
|
||||
if (lsearch($fieldsref, 'map_products.name') >= 0) {
|
||||
push @supptables, "products AS map_products";
|
||||
push @wherepart, "bugs.product_id = map_products.id";
|
||||
}
|
||||
|
||||
if (lsearch($fieldsref, 'map_components.name') >= 0) {
|
||||
push @supptables, "components AS map_components";
|
||||
push @wherepart, "bugs.component_id = map_components.id";
|
||||
}
|
||||
|
||||
my $minvotes;
|
||||
if (defined $F{'votes'}) {
|
||||
my $c = trim($F{'votes'});
|
||||
if ($c ne "") {
|
||||
if ($c !~ /^[0-9]*$/) {
|
||||
$::vars->{'value'} = $c;
|
||||
&::ThrowUserError("illegal_at_least_x_votes");
|
||||
}
|
||||
push(@specialchart, ["votes", "greaterthan", $c - 1]);
|
||||
}
|
||||
}
|
||||
|
||||
if ($M{'bug_id'}) {
|
||||
my $type = "anyexact";
|
||||
if ($F{'bugidtype'} && $F{'bugidtype'} eq 'exclude') {
|
||||
$type = "nowords";
|
||||
}
|
||||
push(@specialchart, ["bug_id", $type, join(',', @{$M{'bug_id'}})]);
|
||||
}
|
||||
|
||||
my @legal_fields = ("product", "version", "rep_platform", "op_sys",
|
||||
"bug_status", "resolution", "priority", "bug_severity",
|
||||
"assigned_to", "reporter", "component",
|
||||
"target_milestone", "bug_group");
|
||||
|
||||
foreach my $field (keys %F) {
|
||||
if (lsearch(\@legal_fields, $field) != -1) {
|
||||
push(@specialchart, [$field, "anyexact",
|
||||
join(',', @{$M{$field}})]);
|
||||
}
|
||||
}
|
||||
|
||||
if ($F{'product'}) {
|
||||
push(@supptables, "products products_");
|
||||
push(@wherepart, "products_.id = bugs.product_id");
|
||||
push(@specialchart, ["products_.name", "anyexact",
|
||||
join(',',@{$M{'product'}})]);
|
||||
}
|
||||
|
||||
if ($F{'component'}) {
|
||||
push(@supptables, "components components_");
|
||||
push(@wherepart, "components_.id = bugs.component_id");
|
||||
push(@specialchart, ["components_.name", "anyexact",
|
||||
join(',',@{$M{'component'}})]);
|
||||
}
|
||||
|
||||
if ($F{'keywords'}) {
|
||||
my $t = $F{'keywords_type'};
|
||||
if (!$t || $t eq "or") {
|
||||
$t = "anywords";
|
||||
}
|
||||
push(@specialchart, ["keywords", $t, $F{'keywords'}]);
|
||||
}
|
||||
|
||||
foreach my $id ("1", "2") {
|
||||
if (!defined ($F{"email$id"})) {
|
||||
next;
|
||||
}
|
||||
my $email = trim($F{"email$id"});
|
||||
if ($email eq "") {
|
||||
next;
|
||||
}
|
||||
my $type = $F{"emailtype$id"};
|
||||
if ($type eq "exact") {
|
||||
$type = "anyexact";
|
||||
foreach my $name (split(',', $email)) {
|
||||
$name = trim($name);
|
||||
if ($name) {
|
||||
&::DBNameToIdAndCheck($name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
my @clist;
|
||||
foreach my $field ("assigned_to", "reporter", "cc", "qa_contact") {
|
||||
if ($F{"email$field$id"}) {
|
||||
push(@clist, $field, $type, $email);
|
||||
}
|
||||
}
|
||||
if ($F{"emaillongdesc$id"}) {
|
||||
my $table = "longdescs_";
|
||||
push(@supptables, "longdescs $table");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
my $ptable = "longdescnames_";
|
||||
push(@supptables, "profiles $ptable");
|
||||
push(@wherepart, "$table.who = $ptable.userid");
|
||||
push(@clist, "$ptable.login_name", $type, $email);
|
||||
}
|
||||
if (@clist) {
|
||||
push(@specialchart, \@clist);
|
||||
} else {
|
||||
$::vars->{'email'} = $email;
|
||||
&::ThrowUserError("missing_email_type");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (defined $F{'changedin'}) {
|
||||
my $c = trim($F{'changedin'});
|
||||
if ($c ne "") {
|
||||
if ($c !~ /^[0-9]*$/) {
|
||||
$::vars->{'value'} = $c;
|
||||
&::ThrowUserError("illegal_changed_in_last_x_days");
|
||||
}
|
||||
push(@specialchart, ["changedin",
|
||||
"lessthan", $c + 1]);
|
||||
}
|
||||
}
|
||||
|
||||
my $ref = $M{'chfield'};
|
||||
|
||||
if (defined $ref) {
|
||||
my $which = lsearch($ref, "[Bug creation]");
|
||||
if ($which >= 0) {
|
||||
splice(@$ref, $which, 1);
|
||||
push(@specialchart, ["creation_ts", "greaterthan",
|
||||
SqlifyDate($F{'chfieldfrom'})]);
|
||||
my $to = $F{'chfieldto'};
|
||||
if (defined $to) {
|
||||
$to = trim($to);
|
||||
if ($to ne "" && $to !~ /^now$/i) {
|
||||
push(@specialchart, ["creation_ts", "lessthan",
|
||||
SqlifyDate($to)]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (defined $ref && 0 < @$ref) {
|
||||
push(@supptables, "bugs_activity actcheck");
|
||||
|
||||
my @list;
|
||||
foreach my $f (@$ref) {
|
||||
push(@list, "\nactcheck.fieldid = " . &::GetFieldID($f));
|
||||
}
|
||||
push(@wherepart, "actcheck.bug_id = bugs.bug_id");
|
||||
push(@wherepart, "(" . join(' OR ', @list) . ")");
|
||||
push(@wherepart, "actcheck.bug_when >= " .
|
||||
&::SqlQuote(SqlifyDate($F{'chfieldfrom'})));
|
||||
my $to = $F{'chfieldto'};
|
||||
if (defined $to) {
|
||||
$to = trim($to);
|
||||
if ($to ne "" && $to !~ /^now$/i) {
|
||||
push(@wherepart, "actcheck.bug_when <= " .
|
||||
&::SqlQuote(SqlifyDate($to)));
|
||||
}
|
||||
}
|
||||
my $value = $F{'chfieldvalue'};
|
||||
if (defined $value) {
|
||||
$value = trim($value);
|
||||
if ($value ne "") {
|
||||
push(@wherepart, "actcheck.added = " .
|
||||
&::SqlQuote($value))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
foreach my $f ("short_desc", "long_desc", "bug_file_loc",
|
||||
"status_whiteboard") {
|
||||
if (defined $F{$f}) {
|
||||
my $s = trim($F{$f});
|
||||
if ($s ne "") {
|
||||
my $n = $f;
|
||||
my $q = &::SqlQuote($s);
|
||||
my $type = $F{$f . "_type"};
|
||||
push(@specialchart, [$f, $type, $s]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
my $chartid;
|
||||
# $statusid is used by the code that queries for attachment statuses.
|
||||
my $statusid = 0;
|
||||
my $f;
|
||||
my $ff;
|
||||
my $t;
|
||||
my $q;
|
||||
my $v;
|
||||
my $term;
|
||||
my %funcsbykey;
|
||||
my @funcdefs =
|
||||
(
|
||||
"^(assigned_to|reporter)," => sub {
|
||||
push(@supptables, "profiles AS map_$f");
|
||||
push(@wherepart, "bugs.$f = map_$f.userid");
|
||||
$f = "map_$f.login_name";
|
||||
},
|
||||
"^qa_contact," => sub {
|
||||
push(@supptables,
|
||||
"LEFT JOIN profiles map_qa_contact ON bugs.qa_contact = map_qa_contact.userid");
|
||||
$f = "map_$f.login_name";
|
||||
},
|
||||
|
||||
"^cc," => sub {
|
||||
push(@supptables, "LEFT JOIN cc cc_$chartid ON bugs.bug_id = cc_$chartid.bug_id");
|
||||
|
||||
push(@supptables, "LEFT JOIN profiles map_cc_$chartid ON cc_$chartid.who = map_cc_$chartid.userid");
|
||||
$f = "map_cc_$chartid.login_name";
|
||||
},
|
||||
|
||||
"^long_?desc,changedby" => sub {
|
||||
my $table = "longdescs_$chartid";
|
||||
push(@supptables, "longdescs $table");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
my $id = &::DBNameToIdAndCheck($v);
|
||||
$term = "$table.who = $id";
|
||||
},
|
||||
"^long_?desc,changedbefore" => sub {
|
||||
my $table = "longdescs_$chartid";
|
||||
push(@supptables, "longdescs $table");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
$term = "$table.bug_when < " . &::SqlQuote(SqlifyDate($v));
|
||||
},
|
||||
"^long_?desc,changedafter" => sub {
|
||||
my $table = "longdescs_$chartid";
|
||||
push(@supptables, "longdescs $table");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
$term = "$table.bug_when > " . &::SqlQuote(SqlifyDate($v));
|
||||
},
|
||||
"^long_?desc," => sub {
|
||||
my $table = "longdescs_$chartid";
|
||||
push(@supptables, "longdescs $table");
|
||||
if (Param("insidergroup") && !&::UserInGroup(Param("insidergroup"))) {
|
||||
push(@wherepart, "$table.isprivate < 1") ;
|
||||
}
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
$f = "$table.thetext";
|
||||
},
|
||||
"^bug_group,(?!changed)" => sub {
|
||||
push(@supptables, "LEFT JOIN bug_group_map bug_group_map_$chartid ON bugs.bug_id = bug_group_map_$chartid.bug_id");
|
||||
|
||||
push(@supptables, "LEFT JOIN groups groups_$chartid ON groups_$chartid.id = bug_group_map_$chartid.group_id");
|
||||
$f = "groups_$chartid.name";
|
||||
},
|
||||
"^attachments\..*," => sub {
|
||||
my $table = "attachments_$chartid";
|
||||
push(@supptables, "attachments $table");
|
||||
push(@wherepart, "bugs.bug_id = $table.bug_id");
|
||||
$f =~ m/^attachments\.(.*)$/;
|
||||
my $field = $1;
|
||||
if ($t eq "changedby") {
|
||||
$v = &::DBNameToIdAndCheck($v);
|
||||
$q = &::SqlQuote($v);
|
||||
$field = "submitter_id";
|
||||
$t = "equals";
|
||||
} elsif ($t eq "changedbefore") {
|
||||
$v = SqlifyDate($v);
|
||||
$q = &::SqlQuote($v);
|
||||
$field = "creation_ts";
|
||||
$t = "lessthan";
|
||||
} elsif ($t eq "changedafter") {
|
||||
$v = SqlifyDate($v);
|
||||
$q = &::SqlQuote($v);
|
||||
$field = "creation_ts";
|
||||
$t = "greaterthan";
|
||||
}
|
||||
if ($field eq "ispatch" && $v ne "0" && $v ne "1") {
|
||||
&::ThrowUserError("illegal_attachment_is_patch");
|
||||
}
|
||||
if ($field eq "isobsolete" && $v ne "0" && $v ne "1") {
|
||||
&::ThrowUserError("illegal_is_obsolete");
|
||||
}
|
||||
$f = "$table.$field";
|
||||
},
|
||||
"^attachstatusdefs.name," => sub {
|
||||
# The below has Fun with the names for attachment statuses. This
|
||||
# isn't needed for changed* queries, so exclude those - the
|
||||
# generic stuff will cope
|
||||
return if ($t =~ m/^changed/);
|
||||
|
||||
# Searching for "status != 'bar'" wants us to look for an
|
||||
# attachment without the 'bar' status, not for an attachment with
|
||||
# a status not equal to 'bar' (Which would pick up an attachment
|
||||
# with more than one status). We do this by LEFT JOINS, after
|
||||
# grabbing the matching attachment status ids.
|
||||
# Note that this still won't find bugs with no attachments, since
|
||||
# that isn't really what people would expect.
|
||||
|
||||
# First, get the attachment status ids, using the other funcs
|
||||
# to match the WHERE term.
|
||||
# Note that we need to reverse the negated bits for this to work
|
||||
# This somewhat abuses the definitions of the various terms -
|
||||
# eg, does 'contains all' mean that the status has to contain all
|
||||
# those words, or that all those words must be exact matches to
|
||||
# statuses, which must all be on a single attachment, or should
|
||||
# the match on the status descriptions be a contains match, too?
|
||||
|
||||
my $inverted = 0;
|
||||
if ($t =~ m/not(.*)/) {
|
||||
$t = $1;
|
||||
$inverted = 1;
|
||||
}
|
||||
|
||||
$ref = $funcsbykey{",$t"};
|
||||
&$ref;
|
||||
&::SendSQL("SELECT id FROM attachstatusdefs WHERE $term");
|
||||
|
||||
my @as_ids;
|
||||
while (&::MoreSQLData()) {
|
||||
push @as_ids, &::FetchOneColumn();
|
||||
}
|
||||
|
||||
# When searching for multiple statuses within a single boolean chart,
|
||||
# we want to match each status record separately. In other words,
|
||||
# "status = 'foo' AND status = 'bar'" should match attachments with
|
||||
# one status record equal to "foo" and another one equal to "bar",
|
||||
# not attachments where the same status record equals both "foo" and
|
||||
# "bar" (which is nonsensical). In order to do this we must add an
|
||||
# additional counter to the end of the "attachstatuses" table
|
||||
# reference.
|
||||
++$statusid;
|
||||
|
||||
my $attachtable = "attachments_$chartid";
|
||||
my $statustable = "attachstatuses_${chartid}_$statusid";
|
||||
|
||||
push(@supptables, "attachments $attachtable");
|
||||
my $join = "LEFT JOIN attachstatuses $statustable ON ".
|
||||
"($attachtable.attach_id = $statustable.attach_id AND " .
|
||||
"$statustable.statusid IN (" . join(",", @as_ids) . "))";
|
||||
push(@supptables, $join);
|
||||
push(@wherepart, "bugs.bug_id = $attachtable.bug_id");
|
||||
if ($inverted) {
|
||||
$term = "$statustable.statusid IS NULL";
|
||||
} else {
|
||||
$term = "$statustable.statusid IS NOT NULL";
|
||||
}
|
||||
},
|
||||
"^changedin," => sub {
|
||||
$f = "(to_days(now()) - to_days(bugs.delta_ts))";
|
||||
},
|
||||
|
||||
"^component,(?!changed)" => sub {
|
||||
my $table = "components_$chartid";
|
||||
push(@supptables, "components $table");
|
||||
push(@wherepart, "bugs.component_id = $table.id");
|
||||
$f = $ff = "$table.name";
|
||||
},
|
||||
|
||||
"^product,(?!changed)" => sub {
|
||||
my $table = "products_$chartid";
|
||||
push(@supptables, "products $table");
|
||||
push(@wherepart, "bugs.product_id = $table.id");
|
||||
$f = $ff = "$table.name";
|
||||
},
|
||||
|
||||
"^keywords," => sub {
|
||||
&::GetVersionTable();
|
||||
my @list;
|
||||
my $table = "keywords_$chartid";
|
||||
foreach my $value (split(/[\s,]+/, $v)) {
|
||||
if ($value eq '') {
|
||||
next;
|
||||
}
|
||||
my $id = &::GetKeywordIdFromName($value);
|
||||
if ($id) {
|
||||
push(@list, "$table.keywordid = $id");
|
||||
}
|
||||
else {
|
||||
$::vars->{'keyword'} = $v;
|
||||
&::ThrowUserError("unknown_keyword");
|
||||
}
|
||||
}
|
||||
my $haveawordterm;
|
||||
if (@list) {
|
||||
$haveawordterm = "(" . join(' OR ', @list) . ")";
|
||||
if ($t eq "anywords") {
|
||||
$term = $haveawordterm;
|
||||
} elsif ($t eq "allwords") {
|
||||
$ref = $funcsbykey{",$t"};
|
||||
&$ref;
|
||||
if ($term && $haveawordterm) {
|
||||
$term = "(($term) AND $haveawordterm)";
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($term) {
|
||||
push(@supptables, "keywords $table");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
}
|
||||
},
|
||||
|
||||
"^dependson," => sub {
|
||||
my $table = "dependson_" . $chartid;
|
||||
push(@supptables, "dependencies $table");
|
||||
$ff = "$table.$f";
|
||||
$ref = $funcsbykey{",$t"};
|
||||
&$ref;
|
||||
push(@wherepart, "$table.blocked = bugs.bug_id");
|
||||
},
|
||||
|
||||
"^blocked," => sub {
|
||||
my $table = "blocked_" . $chartid;
|
||||
push(@supptables, "dependencies $table");
|
||||
$ff = "$table.$f";
|
||||
$ref = $funcsbykey{",$t"};
|
||||
&$ref;
|
||||
push(@wherepart, "$table.dependson = bugs.bug_id");
|
||||
},
|
||||
|
||||
|
||||
",equals" => sub {
|
||||
$term = "$ff = $q";
|
||||
},
|
||||
",notequals" => sub {
|
||||
$term = "$ff != $q";
|
||||
},
|
||||
",casesubstring" => sub {
|
||||
$term = "INSTR($ff, $q)";
|
||||
},
|
||||
",(substring|substr)" => sub {
|
||||
$term = "INSTR(LOWER($ff), " . lc($q) . ")";
|
||||
},
|
||||
",notsubstring" => sub {
|
||||
$term = "INSTR(LOWER($ff), " . lc($q) . ") = 0";
|
||||
},
|
||||
",regexp" => sub {
|
||||
$term = "LOWER($ff) REGEXP $q";
|
||||
},
|
||||
",notregexp" => sub {
|
||||
$term = "LOWER($ff) NOT REGEXP $q";
|
||||
},
|
||||
",lessthan" => sub {
|
||||
$term = "$ff < $q";
|
||||
},
|
||||
",greaterthan" => sub {
|
||||
$term = "$ff > $q";
|
||||
},
|
||||
",anyexact" => sub {
|
||||
my @list;
|
||||
foreach my $w (split(/,/, $v)) {
|
||||
if ($w eq "---" && $f !~ /milestone/) {
|
||||
$w = "";
|
||||
}
|
||||
push(@list, "$ff = " . &::SqlQuote($w));
|
||||
}
|
||||
$term = join(" OR ", @list);
|
||||
},
|
||||
",anywordssubstr" => sub {
|
||||
$term = join(" OR ", @{GetByWordListSubstr($ff, $v)});
|
||||
},
|
||||
",allwordssubstr" => sub {
|
||||
$term = join(" AND ", @{GetByWordListSubstr($ff, $v)});
|
||||
},
|
||||
",nowordssubstr" => sub {
|
||||
my @list = @{GetByWordListSubstr($ff, $v)};
|
||||
if (@list) {
|
||||
$term = "NOT (" . join(" OR ", @list) . ")";
|
||||
}
|
||||
},
|
||||
",anywords" => sub {
|
||||
$term = join(" OR ", @{GetByWordList($ff, $v)});
|
||||
},
|
||||
",allwords" => sub {
|
||||
$term = join(" AND ", @{GetByWordList($ff, $v)});
|
||||
},
|
||||
",nowords" => sub {
|
||||
my @list = @{GetByWordList($ff, $v)};
|
||||
if (@list) {
|
||||
$term = "NOT (" . join(" OR ", @list) . ")";
|
||||
}
|
||||
},
|
||||
",changedbefore" => sub {
|
||||
my $table = "act_$chartid";
|
||||
my $ftable = "fielddefs_$chartid";
|
||||
push(@supptables, "bugs_activity $table");
|
||||
push(@supptables, "fielddefs $ftable");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
push(@wherepart, "$table.fieldid = $ftable.fieldid");
|
||||
$term = "($ftable.name = '$f' AND $table.bug_when < $q)";
|
||||
},
|
||||
",changedafter" => sub {
|
||||
my $table = "act_$chartid";
|
||||
my $ftable = "fielddefs_$chartid";
|
||||
push(@supptables, "bugs_activity $table");
|
||||
push(@supptables, "fielddefs $ftable");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
push(@wherepart, "$table.fieldid = $ftable.fieldid");
|
||||
$term = "($ftable.name = '$f' AND $table.bug_when > $q)";
|
||||
},
|
||||
",changedfrom" => sub {
|
||||
my $table = "act_$chartid";
|
||||
my $ftable = "fielddefs_$chartid";
|
||||
push(@supptables, "bugs_activity $table");
|
||||
push(@supptables, "fielddefs $ftable");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
push(@wherepart, "$table.fieldid = $ftable.fieldid");
|
||||
$term = "($ftable.name = '$f' AND $table.removed = $q)";
|
||||
},
|
||||
",changedto" => sub {
|
||||
my $table = "act_$chartid";
|
||||
my $ftable = "fielddefs_$chartid";
|
||||
push(@supptables, "bugs_activity $table");
|
||||
push(@supptables, "fielddefs $ftable");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
push(@wherepart, "$table.fieldid = $ftable.fieldid");
|
||||
$term = "($ftable.name = '$f' AND $table.added = $q)";
|
||||
},
|
||||
",changedby" => sub {
|
||||
my $table = "act_$chartid";
|
||||
my $ftable = "fielddefs_$chartid";
|
||||
push(@supptables, "bugs_activity $table");
|
||||
push(@supptables, "fielddefs $ftable");
|
||||
push(@wherepart, "$table.bug_id = bugs.bug_id");
|
||||
push(@wherepart, "$table.fieldid = $ftable.fieldid");
|
||||
my $id = &::DBNameToIdAndCheck($v);
|
||||
$term = "($ftable.name = '$f' AND $table.who = $id)";
|
||||
},
|
||||
);
|
||||
my @funcnames;
|
||||
while (@funcdefs) {
|
||||
my $key = shift(@funcdefs);
|
||||
my $value = shift(@funcdefs);
|
||||
if ($key =~ /^[^,]*$/) {
|
||||
die "All defs in %funcs must have a comma in their name: $key";
|
||||
}
|
||||
if (exists $funcsbykey{$key}) {
|
||||
die "Duplicate key in %funcs: $key";
|
||||
}
|
||||
$funcsbykey{$key} = $value;
|
||||
push(@funcnames, $key);
|
||||
}
|
||||
|
||||
# first we delete any sign of "Chart #-1" from the HTML form hash
|
||||
# since we want to guarantee the user didn't hide something here
|
||||
my @badcharts = grep /^(field|type|value)-1-/, (keys %F);
|
||||
foreach my $field (@badcharts) {
|
||||
delete $F{$field};
|
||||
}
|
||||
|
||||
# now we take our special chart and stuff it into the form hash
|
||||
my $chart = -1;
|
||||
my $row = 0;
|
||||
foreach my $ref (@specialchart) {
|
||||
my $col = 0;
|
||||
while (@$ref) {
|
||||
$F{"field$chart-$row-$col"} = shift(@$ref);
|
||||
$F{"type$chart-$row-$col"} = shift(@$ref);
|
||||
$F{"value$chart-$row-$col"} = shift(@$ref);
|
||||
if ($debug) {
|
||||
print qq{<p>$F{"field$chart-$row-$col"} | $F{"type$chart-$row-$col"} | $F{"value$chart-$row-$col"}*</p>\n};
|
||||
}
|
||||
$col++;
|
||||
|
||||
}
|
||||
$row++;
|
||||
}
|
||||
|
||||
|
||||
# A boolean chart is a way of representing the terms in a logical
|
||||
# expression. Bugzilla builds SQL queries depending on how you enter
|
||||
# terms into the boolean chart. Boolean charts are represented in
|
||||
# urls as tree-tuples of (chart id, row, column). The query form
|
||||
# (query.cgi) may contain an arbitrary number of boolean charts where
|
||||
# each chart represents a clause in a SQL query.
|
||||
#
|
||||
# The query form starts out with one boolean chart containing one
|
||||
# row and one column. Extra rows can be created by pressing the
|
||||
# AND button at the bottom of the chart. Extra columns are created
|
||||
# by pressing the OR button at the right end of the chart. Extra
|
||||
# charts are created by pressing "Add another boolean chart".
|
||||
#
|
||||
# Each chart consists of an artibrary number of rows and columns.
|
||||
# The terms within a row are ORed together. The expressions represented
|
||||
# by each row are ANDed together. The expressions represented by each
|
||||
# chart are ANDed together.
|
||||
#
|
||||
# ----------------------
|
||||
# | col2 | col2 | col3 |
|
||||
# --------------|------|------|
|
||||
# | row1 | a1 | a2 | |
|
||||
# |------|------|------|------| => ((a1 OR a2) AND (b1 OR b2 OR b3) AND (c1))
|
||||
# | row2 | b1 | b2 | b3 |
|
||||
# |------|------|------|------|
|
||||
# | row3 | c1 | | |
|
||||
# -----------------------------
|
||||
#
|
||||
# --------
|
||||
# | col2 |
|
||||
# --------------|
|
||||
# | row1 | d1 | => (d1)
|
||||
# ---------------
|
||||
#
|
||||
# Together, these two charts represent a SQL expression like this
|
||||
# SELECT blah FROM blah WHERE ( (a1 OR a2)AND(b1 OR b2 OR b3)AND(c1)) AND (d1)
|
||||
#
|
||||
# The terms within a single row of a boolean chart are all constraints
|
||||
# on a single piece of data. If you're looking for a bug that has two
|
||||
# different people cc'd on it, then you need to use two boolean charts.
|
||||
# This will find bugs with one CC mathing 'foo@blah.org' and and another
|
||||
# CC matching 'bar@blah.org'.
|
||||
#
|
||||
# --------------------------------------------------------------
|
||||
# CC | equal to
|
||||
# foo@blah.org
|
||||
# --------------------------------------------------------------
|
||||
# CC | equal to
|
||||
# bar@blah.org
|
||||
#
|
||||
# If you try to do this query by pressing the AND button in the
|
||||
# original boolean chart then what you'll get is an expression that
|
||||
# looks for a single CC where the login name is both "foo@blah.org",
|
||||
# and "bar@blah.org". This is impossible.
|
||||
#
|
||||
# --------------------------------------------------------------
|
||||
# CC | equal to
|
||||
# foo@blah.org
|
||||
# AND
|
||||
# CC | equal to
|
||||
# bar@blah.org
|
||||
# --------------------------------------------------------------
|
||||
|
||||
# $chartid is the number of the current chart whose SQL we're contructing
|
||||
# $row is the current row of the current chart
|
||||
|
||||
# names for table aliases are constructed using $chartid and $row
|
||||
# SELECT blah FROM $table "$table_$chartid_$row" WHERE ....
|
||||
|
||||
# $f = field of table in bug db (e.g. bug_id, reporter, etc)
|
||||
# $ff = qualified field name (field name prefixed by table)
|
||||
# e.g. bugs_activity.bug_id
|
||||
# $t = type of query. e.g. "equal to", "changed after", case sensitive substr"
|
||||
# $v = value - value the user typed in to the form
|
||||
# $q = sanitized version of user input (SqlQuote($v))
|
||||
# @supptables = Tables and/or table aliases used in query
|
||||
# %suppseen = A hash used to store all the tables in supptables to weed
|
||||
# out duplicates.
|
||||
# $suppstring = String which is pasted into query containing all table names
|
||||
|
||||
# get a list of field names to verify the user-submitted chart fields against
|
||||
my %chartfields;
|
||||
&::SendSQL("SELECT name FROM fielddefs");
|
||||
while (&::MoreSQLData()) {
|
||||
my ($name) = &::FetchSQLData();
|
||||
$chartfields{$name} = 1;
|
||||
}
|
||||
|
||||
$row = 0;
|
||||
for ($chart=-1 ;
|
||||
$chart < 0 || exists $F{"field$chart-0-0"} ;
|
||||
$chart++) {
|
||||
$chartid = $chart >= 0 ? $chart : "";
|
||||
for ($row = 0 ;
|
||||
exists $F{"field$chart-$row-0"} ;
|
||||
$row++) {
|
||||
my @orlist;
|
||||
for (my $col = 0 ;
|
||||
exists $F{"field$chart-$row-$col"} ;
|
||||
$col++) {
|
||||
$f = $F{"field$chart-$row-$col"} || "noop";
|
||||
$t = $F{"type$chart-$row-$col"} || "noop";
|
||||
$v = $F{"value$chart-$row-$col"};
|
||||
$v = "" if !defined $v;
|
||||
$v = trim($v);
|
||||
if ($f eq "noop" || $t eq "noop" || $v eq "") {
|
||||
next;
|
||||
}
|
||||
# chart -1 is generated by other code above, not from the user-
|
||||
# submitted form, so we'll blindly accept any values in chart -1
|
||||
if ((!$chartfields{$f}) && ($chart != -1)) {
|
||||
my $errstr = "Can't use $f as a field name. " .
|
||||
"If you think you're getting this in error, please copy the " .
|
||||
"entire URL out of the address bar at the top of your browser " .
|
||||
"window and email it to <109679\@bugzilla.org>";
|
||||
die "Internal error: $errstr" if $chart < 0;
|
||||
return &::DisplayError($errstr);
|
||||
}
|
||||
|
||||
# This is either from the internal chart (in which case we
|
||||
# already know about it), or it was in %chartfields, so it is
|
||||
# a valid field name, which means that its ok.
|
||||
trick_taint($f);
|
||||
$q = &::SqlQuote($v);
|
||||
my $func;
|
||||
$term = undef;
|
||||
foreach my $key (@funcnames) {
|
||||
if ("$f,$t" =~ m/$key/) {
|
||||
my $ref = $funcsbykey{$key};
|
||||
if ($debug) {
|
||||
print "<p>$key ($f , $t ) => ";
|
||||
}
|
||||
$ff = $f;
|
||||
if ($f !~ /\./) {
|
||||
$ff = "bugs.$f";
|
||||
}
|
||||
&$ref;
|
||||
if ($debug) {
|
||||
print "$f , $t , $term</p>";
|
||||
}
|
||||
if ($term) {
|
||||
last;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($term) {
|
||||
push(@orlist, $term);
|
||||
}
|
||||
else {
|
||||
# This field and this type don't work together.
|
||||
$::vars->{'field'} = $F{"field$chart-$row-$col"};
|
||||
$::vars->{'type'} = $F{"type$chart-$row-$col"};
|
||||
&::ThrowCodeError("field_type_mismatch");
|
||||
}
|
||||
}
|
||||
if (@orlist) {
|
||||
push(@andlist, "(" . join(" OR ", @orlist) . ")");
|
||||
}
|
||||
}
|
||||
}
|
||||
my %suppseen = ("bugs" => 1);
|
||||
my $suppstring = "bugs";
|
||||
foreach my $str (@supptables) {
|
||||
if (!$suppseen{$str}) {
|
||||
if ($str !~ /^(LEFT|INNER) JOIN/i) {
|
||||
$suppstring .= ",";
|
||||
}
|
||||
$suppstring .= " $str";
|
||||
$suppseen{$str} = 1;
|
||||
}
|
||||
}
|
||||
my $query = ("SELECT DISTINCT " .
|
||||
join(', ', @fields) .
|
||||
", COUNT(DISTINCT ugmap.group_id) AS cntuseringroups, " .
|
||||
" COUNT(DISTINCT bgmap.group_id) AS cntbugingroups, " .
|
||||
" ((COUNT(DISTINCT ccmap.who) AND cclist_accessible) " .
|
||||
" OR ((bugs.reporter = $::userid) AND bugs.reporter_accessible) " .
|
||||
" OR bugs.assigned_to = $::userid ) AS canseeanyway " .
|
||||
" FROM $suppstring" .
|
||||
" LEFT JOIN bug_group_map AS bgmap " .
|
||||
" ON bgmap.bug_id = bugs.bug_id " .
|
||||
" LEFT JOIN user_group_map AS ugmap " .
|
||||
" ON bgmap.group_id = ugmap.group_id " .
|
||||
" AND ugmap.user_id = $::userid " .
|
||||
" AND ugmap.isbless = 0" .
|
||||
" LEFT JOIN cc AS ccmap " .
|
||||
" ON ccmap.who = $::userid AND ccmap.bug_id = bugs.bug_id " .
|
||||
" WHERE " . join(' AND ', (@wherepart, @andlist)) .
|
||||
" GROUP BY bugs.bug_id " .
|
||||
" HAVING cntuseringroups = cntbugingroups" .
|
||||
" OR canseeanyway"
|
||||
);
|
||||
|
||||
if ($debug) {
|
||||
print "<p><code>" . value_quote($query) . "</code></p>\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
$self->{'sql'} = $query;
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
# Helper functions for the init() method.
|
||||
###############################################################################
|
||||
sub SqlifyDate {
|
||||
my ($str) = @_;
|
||||
$str = "" if !defined $str;
|
||||
if ($str =~ /^-?(\d+)([dDwWmMyY])$/) { # relative date
|
||||
my ($amount, $unit, $date) = ($1, lc $2, time);
|
||||
my ($sec, $min, $hour, $mday, $month, $year, $wday) = localtime($date);
|
||||
if ($unit eq 'w') { # convert weeks to days
|
||||
$amount = 7*$amount + $wday;
|
||||
$unit = 'd';
|
||||
}
|
||||
if ($unit eq 'd') {
|
||||
$date -= $sec + 60*$min + 3600*$hour + 24*3600*$amount;
|
||||
return time2str("%Y-%m-%d %H:%M:%S", $date);
|
||||
}
|
||||
elsif ($unit eq 'y') {
|
||||
return sprintf("%4d-01-01 00:00:00", $year+1900-$amount);
|
||||
}
|
||||
elsif ($unit eq 'm') {
|
||||
$month -= $amount;
|
||||
while ($month<0) { $year--; $month += 12; }
|
||||
return sprintf("%4d-%02d-01 00:00:00", $year+1900, $month+1);
|
||||
}
|
||||
return undef; # should not happen due to regexp at top
|
||||
}
|
||||
my $date = str2time($str);
|
||||
if (!defined($date)) {
|
||||
$::vars->{'date'} = $str;
|
||||
ThrowUserError("illegal_date");
|
||||
}
|
||||
return time2str("%Y-%m-%d %H:%M:%S", $date);
|
||||
}
|
||||
|
||||
sub GetByWordList {
|
||||
my ($field, $strs) = (@_);
|
||||
my @list;
|
||||
|
||||
foreach my $w (split(/[\s,]+/, $strs)) {
|
||||
my $word = $w;
|
||||
if ($word ne "") {
|
||||
$word =~ tr/A-Z/a-z/;
|
||||
$word = &::SqlQuote(quotemeta($word));
|
||||
$word =~ s/^'//;
|
||||
$word =~ s/'$//;
|
||||
$word = '(^|[^a-z0-9])' . $word . '($|[^a-z0-9])';
|
||||
push(@list, "lower($field) regexp '$word'");
|
||||
}
|
||||
}
|
||||
|
||||
return \@list;
|
||||
}
|
||||
|
||||
# Support for "any/all/nowordssubstr" comparison type ("words as substrings")
|
||||
sub GetByWordListSubstr {
|
||||
my ($field, $strs) = (@_);
|
||||
my @list;
|
||||
|
||||
foreach my $word (split(/[\s,]+/, $strs)) {
|
||||
if ($word ne "") {
|
||||
push(@list, "INSTR(LOWER($field), " . lc(&::SqlQuote($word)) . ")");
|
||||
}
|
||||
}
|
||||
|
||||
return \@list;
|
||||
}
|
||||
|
||||
sub getSQL {
|
||||
my $self = shift;
|
||||
return $self->{'sql'};
|
||||
}
|
||||
|
||||
1;
|
||||
@@ -1,262 +0,0 @@
|
||||
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is the Bugzilla Bug Tracking System.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape Communications
|
||||
# Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
||||
# Dan Mosedale <dmose@mozilla.org>
|
||||
# Jacob Steenhagen <jake@bugzilla.org>
|
||||
# Bradley Baetz <bbaetz@student.usyd.edu.au>
|
||||
# Christopher Aillon <christopher@aillon.com>
|
||||
|
||||
package Bugzilla::Util;
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Bugzilla::Util - Generic utility functions for bugzilla
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use Bugzilla::Util;
|
||||
|
||||
# Functions for dealing with variable tainting
|
||||
$rv = is_tainted($var);
|
||||
trick_taint($var);
|
||||
detaint_natural($var);
|
||||
|
||||
# Functions for quoting
|
||||
html_quote($var);
|
||||
value_quote($var);
|
||||
|
||||
# Functions for searching
|
||||
$loc = lsearch(\@arr, $val);
|
||||
$val = max($a, $b, $c);
|
||||
$val = min($a, $b, $c);
|
||||
|
||||
# Functions for trimming variables
|
||||
$val = trim(" abc ");
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This package contains various utility functions which do not belong anywhere
|
||||
else.
|
||||
|
||||
B<It is not intended as a general dumping group for something which
|
||||
people feel might be useful somewhere, someday>. Do not add methods to this
|
||||
package unless it is intended to be used for a significant number of files,
|
||||
and it does not belong anywhere else.
|
||||
|
||||
=cut
|
||||
|
||||
use base qw(Exporter);
|
||||
@Bugzilla::Util::EXPORT = qw(is_tainted trick_taint detaint_natural
|
||||
html_quote value_quote
|
||||
lsearch max min
|
||||
trim);
|
||||
|
||||
use strict;
|
||||
|
||||
=head1 FUNCTIONS
|
||||
|
||||
This package provides several types of routines:
|
||||
|
||||
=head2 Tainting
|
||||
|
||||
Several functions are available to deal with tainted variables. B<Use these
|
||||
with care> to avoid security holes.
|
||||
|
||||
=over 4
|
||||
|
||||
=item C<is_tainted>
|
||||
|
||||
Determines whether a particular variable is tainted
|
||||
|
||||
=cut
|
||||
|
||||
# This is from the perlsec page, slightly modifed to remove a warning
|
||||
# From that page:
|
||||
# This function makes use of the fact that the presence of
|
||||
# tainted data anywhere within an expression renders the
|
||||
# entire expression tainted.
|
||||
# Don't ask me how it works...
|
||||
sub is_tainted {
|
||||
return not eval { my $foo = join('',@_), kill 0; 1; };
|
||||
}
|
||||
|
||||
=item C<trick_taint($val)>
|
||||
|
||||
Tricks perl into untainting a particular variable.
|
||||
|
||||
Use trick_taint() when you know that there is no way that the data
|
||||
in a scalar can be tainted, but taint mode still bails on it.
|
||||
|
||||
B<WARNING!! Using this routine on data that really could be tainted defeats
|
||||
the purpose of taint mode. It should only be used on variables that have been
|
||||
sanity checked in some way and have been determined to be OK.>
|
||||
|
||||
=cut
|
||||
|
||||
sub trick_taint {
|
||||
$_[0] =~ /^(.*)$/s;
|
||||
$_[0] = $1;
|
||||
return (defined($_[0]));
|
||||
}
|
||||
|
||||
=item C<detaint_natural($num)>
|
||||
|
||||
This routine detaints a natural number. It returns a true value if the
|
||||
value passed in was a valid natural number, else it returns false. You
|
||||
B<MUST> check the result of this routine to avoid security holes.
|
||||
|
||||
=cut
|
||||
|
||||
sub detaint_natural {
|
||||
$_[0] =~ /^(\d+)$/;
|
||||
$_[0] = $1;
|
||||
return (defined($_[0]));
|
||||
}
|
||||
|
||||
=back
|
||||
|
||||
=head2 Quoting
|
||||
|
||||
Some values may need to be quoted from perl. However, this should in general
|
||||
be done in the template where possible.
|
||||
|
||||
=over 4
|
||||
|
||||
=item C<html_quote($val)>
|
||||
|
||||
Returns a value quoted for use in HTML, with &, E<lt>, E<gt>, and E<34> being
|
||||
replaced with their appropriate HTML entities.
|
||||
|
||||
=cut
|
||||
|
||||
sub html_quote {
|
||||
my ($var) = (@_);
|
||||
$var =~ s/\&/\&/g;
|
||||
$var =~ s/</\</g;
|
||||
$var =~ s/>/\>/g;
|
||||
$var =~ s/\"/\"/g;
|
||||
return $var;
|
||||
}
|
||||
|
||||
=item C<value_quote($val)>
|
||||
|
||||
As well as escaping html like C<html_quote>, this routine converts newlines
|
||||
into 
, suitable for use in html attributes.
|
||||
|
||||
=cut
|
||||
|
||||
sub value_quote {
|
||||
my ($var) = (@_);
|
||||
$var =~ s/\&/\&/g;
|
||||
$var =~ s/</\</g;
|
||||
$var =~ s/>/\>/g;
|
||||
$var =~ s/\"/\"/g;
|
||||
# See bug http://bugzilla.mozilla.org/show_bug.cgi?id=4928 for
|
||||
# explanaion of why bugzilla does this linebreak substitution.
|
||||
# This caused form submission problems in mozilla (bug 22983, 32000).
|
||||
$var =~ s/\r\n/\
/g;
|
||||
$var =~ s/\n\r/\
/g;
|
||||
$var =~ s/\r/\
/g;
|
||||
$var =~ s/\n/\
/g;
|
||||
return $var;
|
||||
}
|
||||
|
||||
=back
|
||||
|
||||
=head2 Searching
|
||||
|
||||
Functions for searching within a set of values.
|
||||
|
||||
=over 4
|
||||
|
||||
=item C<lsearch($list, $item)>
|
||||
|
||||
Returns the position of C<$item> in C<$list>. C<$list> must be a list
|
||||
reference.
|
||||
|
||||
If the item is not in the list, returns -1.
|
||||
|
||||
=cut
|
||||
|
||||
sub lsearch {
|
||||
my ($list,$item) = (@_);
|
||||
my $count = 0;
|
||||
foreach my $i (@$list) {
|
||||
if ($i eq $item) {
|
||||
return $count;
|
||||
}
|
||||
$count++;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
=item C<max($a, $b, ...)>
|
||||
|
||||
Returns the maximum from a set of values.
|
||||
|
||||
=cut
|
||||
|
||||
sub max {
|
||||
my $max = shift(@_);
|
||||
foreach my $val (@_) {
|
||||
$max = $val if $val > $max;
|
||||
}
|
||||
return $max;
|
||||
}
|
||||
|
||||
=item C<min($a, $b, ...)>
|
||||
|
||||
Returns the minimum from a set of values.
|
||||
|
||||
=cut
|
||||
|
||||
sub min {
|
||||
my $min = shift(@_);
|
||||
foreach my $val (@_) {
|
||||
$min = $val if $val < $min;
|
||||
}
|
||||
return $min;
|
||||
}
|
||||
|
||||
=back
|
||||
|
||||
=head2 Trimming
|
||||
|
||||
=over 4
|
||||
|
||||
=item C<trim($str)>
|
||||
|
||||
Removes any leading or trailing whitespace from a string. This routine does not
|
||||
modify the existing string.
|
||||
|
||||
=cut
|
||||
|
||||
sub trim {
|
||||
my ($str) = @_;
|
||||
$str =~ s/^\s+//g;
|
||||
$str =~ s/\s+$//g;
|
||||
return $str;
|
||||
}
|
||||
|
||||
=back
|
||||
|
||||
=cut
|
||||
|
||||
1;
|
||||
@@ -27,14 +27,12 @@
|
||||
|
||||
# Contains some global routines used throughout the CGI scripts of Bugzilla.
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
use lib ".";
|
||||
|
||||
# use Carp; # for confess
|
||||
|
||||
use Bugzilla::Util;
|
||||
use Bugzilla::Config;
|
||||
|
||||
# commented out the following snippet of code. this tosses errors into the
|
||||
# CGI if you are perl 5.6, and doesn't if you have perl 5.003.
|
||||
# We want to check for the existence of the LDAP modules here.
|
||||
@@ -61,7 +59,10 @@ use vars qw($template $vars);
|
||||
# this message, of course, since it needs to be available in order for
|
||||
# the administrator to open Bugzilla back up.
|
||||
if (Param("shutdownhtml") && $0 !~ m:[\\/](do)?editparams.cgi$:) {
|
||||
$::vars->{'message'} = "shutdown";
|
||||
# The shut down message we are going to display to the user.
|
||||
$::vars->{'title'} = "Bugzilla is Down";
|
||||
$::vars->{'h1'} = "Bugzilla is Down";
|
||||
$::vars->{'message'} = Param("shutdownhtml");
|
||||
|
||||
# Return the appropriate HTTP response headers.
|
||||
print "Content-Type: text/html\n\n";
|
||||
@@ -91,24 +92,34 @@ sub url_quote {
|
||||
}
|
||||
|
||||
sub ParseUrlString {
|
||||
# We don't want to detaint the user supplied data...
|
||||
use re 'taint';
|
||||
|
||||
my ($buffer, $f, $m) = (@_);
|
||||
undef %$f;
|
||||
undef %$m;
|
||||
|
||||
my %isnull;
|
||||
my $remaining = $buffer;
|
||||
while ($remaining ne "") {
|
||||
my $item;
|
||||
if ($remaining =~ /^([^&]*)&(.*)$/) {
|
||||
$item = $1;
|
||||
$remaining = $2;
|
||||
} else {
|
||||
$item = $remaining;
|
||||
$remaining = "";
|
||||
}
|
||||
|
||||
# We must make sure that the CGI params remain tainted.
|
||||
# This means that if for some reason you want to make this code
|
||||
# use a regexp and $1, $2, ... (or use a helper function which does so)
|
||||
# you must |use re 'taint'| _and_ make sure that you don't run into
|
||||
# http://bugs.perl.org/perlbug.cgi?req=bug_id&bug_id=20020704.001
|
||||
my @args = split('&', $buffer);
|
||||
foreach my $arg (@args) {
|
||||
my ($name, $value) = split('=', $arg, 2);
|
||||
$value = '' if not defined $value;
|
||||
|
||||
$name = url_decode($name);
|
||||
$value = url_decode($value);
|
||||
my $name;
|
||||
my $value;
|
||||
if ($item =~ /^([^=]*)=(.*)$/) {
|
||||
$name = $1;
|
||||
$value = url_decode($2);
|
||||
} else {
|
||||
$name = $item;
|
||||
$value = "";
|
||||
}
|
||||
|
||||
if ($value ne "") {
|
||||
if (defined $f->{$name}) {
|
||||
@@ -217,13 +228,11 @@ sub CheckFormField (\%$;\@) {
|
||||
SendSQL("SELECT description FROM fielddefs WHERE name=" . SqlQuote($fieldname));
|
||||
my $result = FetchOneColumn();
|
||||
if ($result) {
|
||||
$vars->{'field'} = $result;
|
||||
ThrowCodeError("A legal $result was not set.", undef, "abort");
|
||||
}
|
||||
else {
|
||||
$vars->{'field'} = $fieldname;
|
||||
ThrowCodeError("A legal $fieldname was not set.", undef, "abort");
|
||||
}
|
||||
|
||||
ThrowCodeError("illegal_field", "abort");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -234,25 +243,9 @@ sub CheckFormFieldDefined (\%$) {
|
||||
) = @_;
|
||||
|
||||
if (!defined $formRef->{$fieldname}) {
|
||||
$vars->{'field'} = $fieldname;
|
||||
ThrowCodeError("undefined_field");
|
||||
}
|
||||
}
|
||||
|
||||
sub BugAliasToID {
|
||||
# Queries the database for the bug with a given alias, and returns
|
||||
# the ID of the bug if it exists or the undefined value if it doesn't.
|
||||
|
||||
my ($alias) = @_;
|
||||
|
||||
return undef unless Param("usebugaliases");
|
||||
|
||||
PushGlobalSQLState();
|
||||
SendSQL("SELECT bug_id FROM bugs WHERE alias = " . SqlQuote($alias));
|
||||
my $id = FetchOneColumn();
|
||||
PopGlobalSQLState();
|
||||
|
||||
return $id;
|
||||
ThrowCodeError("$fieldname was not defined; " .
|
||||
Param("browserbugmessage"));
|
||||
}
|
||||
}
|
||||
|
||||
sub ValidateBugID {
|
||||
@@ -261,44 +254,30 @@ sub ValidateBugID {
|
||||
# database, and that the user is authorized to access that bug.
|
||||
# We detaint the number here, too
|
||||
|
||||
my ($id, $skip_authorization) = @_;
|
||||
|
||||
# Get rid of white-space around the ID.
|
||||
$id = trim($id);
|
||||
|
||||
# If the ID isn't a number, it might be an alias, so try to convert it.
|
||||
my $alias = $id;
|
||||
if (!detaint_natural($id)) {
|
||||
$id = BugAliasToID($alias);
|
||||
if (!$id) {
|
||||
my $html_id = html_quote($_[0]);
|
||||
my $alias_specific_message = Param("usebugaliases") ?
|
||||
" (it is neither a bug number nor an alias to a bug number)" : "";
|
||||
DisplayError(qq|
|
||||
The bug number <em>$html_id</em> is invalid$alias_specific_message.
|
||||
If you are trying to use QuickSearch, you need to enable JavaScript
|
||||
in your browser. To help us fix this limitation, add your comments
|
||||
to <a href="http://bugzilla.mozilla.org/show_bug.cgi?id=70907">bug
|
||||
70907</a>.
|
||||
|);
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
# Modify the calling code's original variable to contain the trimmed,
|
||||
# converted-from-alias ID.
|
||||
$_[0] = $id;
|
||||
|
||||
$_[0] = trim($_[0]); # Allow whitespace arround the number
|
||||
detaint_natural($_[0])
|
||||
|| DisplayError("The bug number is invalid. If you are trying to use " .
|
||||
"QuickSearch, you need to enable JavaScript in your " .
|
||||
"browser. To help us fix this limitation, look " .
|
||||
"<a href=\"http://bugzilla.mozilla.org/show_bug.cgi?id=70907\">here</a>.")
|
||||
&& exit;
|
||||
|
||||
my ($id) = @_;
|
||||
|
||||
# Get the values of the usergroupset and userid global variables
|
||||
# and write them to local variables for use within this function,
|
||||
# setting those local variables to the default value of zero if
|
||||
# the global variables are undefined.
|
||||
|
||||
# First check that the bug exists
|
||||
SendSQL("SELECT bug_id FROM bugs WHERE bug_id = $id");
|
||||
|
||||
FetchOneColumn()
|
||||
|| DisplayError("Bug #$id does not exist.")
|
||||
&& exit;
|
||||
&& exit;
|
||||
|
||||
return if $skip_authorization;
|
||||
|
||||
return if CanSeeBug($id, $::userid);
|
||||
my $canseeref = CanSeeBug($id, $::userid, $::usergroupset);
|
||||
return if $canseeref->{$id};
|
||||
|
||||
# The user did not pass any of the authorization tests, which means they
|
||||
# are not authorized to see the bug. Display an error and stop execution.
|
||||
@@ -328,6 +307,31 @@ sub ValidateComment {
|
||||
}
|
||||
}
|
||||
|
||||
sub html_quote {
|
||||
my ($var) = (@_);
|
||||
$var =~ s/\&/\&/g;
|
||||
$var =~ s/</\</g;
|
||||
$var =~ s/>/\>/g;
|
||||
$var =~ s/"/\"/g;
|
||||
return $var;
|
||||
}
|
||||
|
||||
sub value_quote {
|
||||
my ($var) = (@_);
|
||||
$var =~ s/\&/\&/g;
|
||||
$var =~ s/</\</g;
|
||||
$var =~ s/>/\>/g;
|
||||
$var =~ s/"/\"/g;
|
||||
# See bug http://bugzilla.mozilla.org/show_bug.cgi?id=4928 for
|
||||
# explanaion of why bugzilla does this linebreak substitution.
|
||||
# This caused form submission problems in mozilla (bug 22983, 32000).
|
||||
$var =~ s/\r\n/\
/g;
|
||||
$var =~ s/\n\r/\
/g;
|
||||
$var =~ s/\r/\
/g;
|
||||
$var =~ s/\n/\
/g;
|
||||
return $var;
|
||||
}
|
||||
|
||||
# Adds <link> elements for bug lists. These can be inserted into the header by
|
||||
# using the "header_html" parameter to PutHeader, which inserts an arbitrary
|
||||
# string into the header. This function is currently used only in
|
||||
@@ -350,21 +354,21 @@ sub navigation_links($) {
|
||||
my $cur = lsearch(\@bugs, $::FORM{"id"});
|
||||
|
||||
if ($cur > 0) {
|
||||
$retval .= "<link rel=\"First\" href=\"show_bug.cgi?id=$bugs[0]\">\n";
|
||||
$retval .= "<link rel=\"Prev\" href=\"show_bug.cgi?id=$bugs[$cur - 1]\">\n";
|
||||
$retval .= "<link rel=\"First\" href=\"show_bug.cgi?id=$bugs[0]\" />\n";
|
||||
$retval .= "<link rel=\"Prev\" href=\"show_bug.cgi?id=$bugs[$cur - 1]\" />\n";
|
||||
}
|
||||
if ($cur < $#bugs) {
|
||||
$retval .= "<link rel=\"Next\" href=\"show_bug.cgi?id=$bugs[$cur + 1]\">\n";
|
||||
$retval .= "<link rel=\"Last\" href=\"show_bug.cgi?id=$bugs[$#bugs]\">\n";
|
||||
$retval .= "<link rel=\"Next\" href=\"show_bug.cgi?id=$bugs[$cur + 1]\" />\n";
|
||||
$retval .= "<link rel=\"Last\" href=\"show_bug.cgi?id=$bugs[$#bugs]\" />\n";
|
||||
}
|
||||
|
||||
$retval .= "<link rel=\"Up\" href=\"buglist.cgi?regetlastlist=1\">\n";
|
||||
$retval .= "<link rel=\"Contents\" href=\"buglist.cgi?regetlastlist=1\">\n";
|
||||
$retval .= "<link rel=\"Up\" href=\"buglist.cgi?regetlastlist=1\" />\n";
|
||||
$retval .= "<link rel=\"Contents\" href=\"buglist.cgi?regetlastlist=1\" />\n";
|
||||
} else {
|
||||
# We are on a bug list
|
||||
$retval .= "<link rel=\"First\" href=\"show_bug.cgi?id=$bugs[0]\">\n";
|
||||
$retval .= "<link rel=\"Next\" href=\"show_bug.cgi?id=$bugs[0]\">\n";
|
||||
$retval .= "<link rel=\"Last\" href=\"show_bug.cgi?id=$bugs[$#bugs]\">\n";
|
||||
$retval .= "<link rel=\"First\" href=\"show_bug.cgi?id=$bugs[0]\" />\n";
|
||||
$retval .= "<link rel=\"Next\" href=\"show_bug.cgi?id=$bugs[0]\" />\n";
|
||||
$retval .= "<link rel=\"Last\" href=\"show_bug.cgi?id=$bugs[$#bugs]\" />\n";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -433,25 +437,31 @@ sub PasswordForLogin {
|
||||
}
|
||||
|
||||
sub quietly_check_login() {
|
||||
$::usergroupset = '0';
|
||||
my $loginok = 0;
|
||||
$::disabledreason = '';
|
||||
my $userid = 0;
|
||||
$::userid = 0;
|
||||
if (defined $::COOKIE{"Bugzilla_login"} &&
|
||||
defined $::COOKIE{"Bugzilla_logincookie"}) {
|
||||
SendSQL("SELECT profiles.userid," .
|
||||
" profiles.login_name, " .
|
||||
" profiles.disabledtext " .
|
||||
" FROM profiles, logincookies WHERE logincookies.cookie = " .
|
||||
SqlQuote($::COOKIE{"Bugzilla_logincookie"}) .
|
||||
" AND profiles.userid = logincookies.userid AND" .
|
||||
" profiles.login_name = " .
|
||||
ConnectToDatabase();
|
||||
SendSQL("SELECT profiles.userid, profiles.groupset, " .
|
||||
"profiles.login_name, " .
|
||||
"profiles.login_name = " .
|
||||
SqlQuote($::COOKIE{"Bugzilla_login"}) .
|
||||
" AND logincookies.ipaddr = " .
|
||||
SqlQuote($ENV{"REMOTE_ADDR"}));
|
||||
SqlQuote($ENV{"REMOTE_ADDR"}) .
|
||||
", profiles.disabledtext " .
|
||||
" FROM profiles, logincookies WHERE logincookies.cookie = " .
|
||||
SqlQuote($::COOKIE{"Bugzilla_logincookie"}) .
|
||||
" AND profiles.userid = logincookies.userid");
|
||||
my @row;
|
||||
if (MoreSQLData()) {
|
||||
($userid, my $loginname, my $disabledtext) = FetchSQLData();
|
||||
if ($userid > 0) {
|
||||
if (@row = FetchSQLData()) {
|
||||
my ($userid, $groupset, $loginname, $ok, $disabledtext) = (@row);
|
||||
if ($ok) {
|
||||
if ($disabledtext eq '') {
|
||||
$loginok = 1;
|
||||
$::userid = $userid;
|
||||
$::usergroupset = $groupset;
|
||||
$::COOKIE{"Bugzilla_login"} = $loginname; # Makes sure case
|
||||
# is in
|
||||
# canonical form.
|
||||
@@ -459,7 +469,6 @@ sub quietly_check_login() {
|
||||
detaint_natural($::COOKIE{"Bugzilla_logincookie"});
|
||||
} else {
|
||||
$::disabledreason = $disabledtext;
|
||||
$userid = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -469,14 +478,13 @@ sub quietly_check_login() {
|
||||
my $whoid = DBname_to_id($::FORM{'who'});
|
||||
delete $::FORM{'who'} unless $whoid;
|
||||
}
|
||||
if (!$userid) {
|
||||
if (!$loginok) {
|
||||
delete $::COOKIE{"Bugzilla_login"};
|
||||
}
|
||||
|
||||
$::userid = $userid;
|
||||
ConfirmGroup($userid);
|
||||
$vars->{'user'} = GetUserInfo($::userid);
|
||||
return $userid;
|
||||
|
||||
return $loginok;
|
||||
}
|
||||
|
||||
# Populate a hash with information about this user.
|
||||
@@ -492,9 +500,10 @@ sub GetUserInfo {
|
||||
$user{'login'} = $::COOKIE{"Bugzilla_login"};
|
||||
$user{'userid'} = $userid;
|
||||
|
||||
SendSQL("SELECT mybugslink, realname " .
|
||||
"FROM profiles WHERE userid = $userid");
|
||||
($user{'showmybugslink'}, $user{'realname'}) = FetchSQLData();
|
||||
SendSQL("SELECT mybugslink, realname, groupset FROM profiles " .
|
||||
"WHERE userid = $userid");
|
||||
($user{'showmybugslink'}, $user{'realname'}, $user{'groupset'}) =
|
||||
FetchSQLData();
|
||||
|
||||
SendSQL("SELECT name, query, linkinfooter FROM namedqueries " .
|
||||
"WHERE userid = $userid");
|
||||
@@ -507,15 +516,14 @@ sub GetUserInfo {
|
||||
|
||||
$user{'queries'} = \@queries;
|
||||
|
||||
$user{'canblessany'} = UserCanBlessAnything();
|
||||
|
||||
SendSQL("SELECT name FROM groups, user_group_map " .
|
||||
"WHERE groups.id = user_group_map.group_id " .
|
||||
"AND user_id = $userid " .
|
||||
"AND NOT isbless");
|
||||
if ($::driver eq 'mysql') {
|
||||
SendSQL("select name, (bit & $user{'groupset'}) != 0 from groups");
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
SendSQL("select name, (group_bit & int8($user{'groupset'})) != 0 from groups");
|
||||
}
|
||||
while (MoreSQLData()) {
|
||||
my ($name) = FetchSQLData();
|
||||
$groups{$name} = 1;
|
||||
my ($name, $bit) = FetchSQLData();
|
||||
$groups{$name} = $bit;
|
||||
}
|
||||
|
||||
$user{'groups'} = \%groups;
|
||||
@@ -527,8 +535,12 @@ sub CheckEmailSyntax {
|
||||
my ($addr) = (@_);
|
||||
my $match = Param('emailregexp');
|
||||
if ($addr !~ /$match/ || $addr =~ /[\\\(\)<>&,;:"\[\] \t\r\n]/) {
|
||||
$vars->{'addr'} = $addr;
|
||||
ThrowUserError("illegal_email_address");
|
||||
ThrowUserError("The e-mail address you entered(<b>" .
|
||||
html_quote($addr) . "</b>) didn't pass our syntax checking
|
||||
for a legal email address. " . Param('emailregexpdesc') .
|
||||
' It must also not contain any of these special characters:
|
||||
<tt>\ ( ) & < > , ; : " [ ]</tt>, or any whitespace.',
|
||||
"Check e-mail address syntax");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -552,12 +564,12 @@ sub confirm_login {
|
||||
# Uncommenting the next line can help debugging...
|
||||
# print "Content-type: text/plain\n\n";
|
||||
|
||||
ConnectToDatabase();
|
||||
# I'm going to reorganize some of this stuff a bit. Since we're adding
|
||||
# a second possible validation method (LDAP), we need to move some of this
|
||||
# to a later section. -Joe Robins, 8/3/00
|
||||
my $enteredlogin = "";
|
||||
my $realcryptpwd = "";
|
||||
my $userid;
|
||||
|
||||
# If the form contains Bugzilla login and password fields, use Bugzilla's
|
||||
# built-in authentication to authenticate the user (otherwise use LDAP below).
|
||||
@@ -567,6 +579,7 @@ sub confirm_login {
|
||||
CheckEmailSyntax($enteredlogin);
|
||||
|
||||
# Retrieve the user's ID and crypted password from the database.
|
||||
my $userid;
|
||||
SendSQL("SELECT userid, cryptpassword FROM profiles
|
||||
WHERE login_name = " . SqlQuote($enteredlogin));
|
||||
($userid, $realcryptpwd) = FetchSQLData();
|
||||
@@ -582,7 +595,7 @@ sub confirm_login {
|
||||
if ( defined $::FORM{"PleaseMailAPassword"} && !$userid ) {
|
||||
# Ensure the new login is valid
|
||||
if(!ValidateNewUser($enteredlogin)) {
|
||||
ThrowUserError("account_exists");
|
||||
ThrowUserError("That account already exists.");
|
||||
}
|
||||
|
||||
my $password = InsertNewUser($enteredlogin, "");
|
||||
@@ -752,8 +765,7 @@ sub confirm_login {
|
||||
if($enteredlogin ne "") {
|
||||
$::COOKIE{"Bugzilla_login"} = $enteredlogin;
|
||||
SendSQL("insert into logincookies (userid,ipaddr) values (@{[DBNameToIdAndCheck($enteredlogin)]}, @{[SqlQuote($ENV{'REMOTE_ADDR'})]})");
|
||||
SendSQL("select LAST_INSERT_ID()");
|
||||
my $logincookie = FetchOneColumn();
|
||||
my $logincookie = CurrId("logincookies_cookie_seq");
|
||||
|
||||
$::COOKIE{"Bugzilla_logincookie"} = $logincookie;
|
||||
my $cookiepath = Param("cookiepath");
|
||||
@@ -761,9 +773,9 @@ sub confirm_login {
|
||||
print "Set-Cookie: Bugzilla_logincookie=$logincookie ; path=$cookiepath; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
|
||||
}
|
||||
|
||||
$userid = quietly_check_login();
|
||||
my $loginok = quietly_check_login();
|
||||
|
||||
if (!$userid) {
|
||||
if ($loginok != 1) {
|
||||
if ($::disabledreason) {
|
||||
my $cookiepath = Param("cookiepath");
|
||||
print "Set-Cookie: Bugzilla_login= ; path=$cookiepath; expires=Sun, 30-Jun-80 00:00:00 GMT
|
||||
@@ -771,43 +783,121 @@ Set-Cookie: Bugzilla_logincookie= ; path=$cookiepath; expires=Sun, 30-Jun-80 00:
|
||||
Content-type: text/html
|
||||
|
||||
";
|
||||
$vars->{'disabled_reason'} = $::disabledreason;
|
||||
ThrowUserError("account_disabled");
|
||||
ThrowUserError($::disabledreason . "<hr>" .
|
||||
"If you believe your account should be restored, please " .
|
||||
"send email to " . Param("maintainer") . " explaining why.",
|
||||
"Your account has been disabled");
|
||||
}
|
||||
print "Content-type: text/html\n\n";
|
||||
PutHeader("Login");
|
||||
if(Param("useLDAP")) {
|
||||
print "I need a legitimate LDAP username and password to continue.\n";
|
||||
} else {
|
||||
print "I need a legitimate e-mail address and password to continue.\n";
|
||||
}
|
||||
|
||||
if (!defined $nexturl || $nexturl eq "") {
|
||||
# Sets nexturl to be argv0, stripping everything up to and
|
||||
# including the last slash (or backslash on Windows).
|
||||
$0 =~ m:([^/\\]*)$:;
|
||||
$nexturl = $1;
|
||||
$0 =~ m:[^/\\]*$:;
|
||||
$nexturl = $&;
|
||||
}
|
||||
|
||||
$vars->{'target'} = $nexturl;
|
||||
$vars->{'form'} = \%::FORM;
|
||||
$vars->{'mform'} = \%::MFORM;
|
||||
|
||||
print "Content-type: text/html\n\n";
|
||||
$template->process("account/login.html.tmpl", $vars)
|
||||
|| ThrowTemplateError($template->error());
|
||||
|
||||
my $method = "POST";
|
||||
# We always want to use POST here, because we're submitting a password and don't
|
||||
# want to see it in the location bar in the browser in case a co-worker is looking
|
||||
# over your shoulder. If you have cookies off and need to bookmark the query, you
|
||||
# can bookmark it from the screen asking for your password, and it should still
|
||||
# work. See http://bugzilla.mozilla.org/show_bug.cgi?id=15980
|
||||
# if (defined $ENV{"REQUEST_METHOD"} && length($::buffer) > 1) {
|
||||
# $method = $ENV{"REQUEST_METHOD"};
|
||||
# }
|
||||
print "
|
||||
<FORM action=$nexturl method=$method>
|
||||
<table>
|
||||
<tr>";
|
||||
if(Param("useLDAP")) {
|
||||
print "
|
||||
<td align=right><b>Username:</b></td>
|
||||
<td><input size=10 name=LDAP_login></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align=right><b>Password:</b></td>
|
||||
<td><input type=password size=10 name=LDAP_password></td>";
|
||||
} else {
|
||||
print "
|
||||
<td align=right><b>E-mail address:</b></td>
|
||||
<td><input size=35 name=Bugzilla_login></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align=right><b>Password:</b></td>
|
||||
<td><input type=password size=35 name=Bugzilla_password></td>";
|
||||
}
|
||||
print "
|
||||
</tr>
|
||||
</table>
|
||||
";
|
||||
# Add all the form fields into the form as hidden fields
|
||||
# (except for Bugzilla_login and Bugzilla_password which we
|
||||
# already added as text fields above).
|
||||
foreach my $i ( grep( $_ !~ /^Bugzilla_/ , keys %::FORM ) ) {
|
||||
if (defined $::MFORM{$i} && scalar(@{$::MFORM{$i}}) > 1) {
|
||||
# This field has multiple values; add each one separately.
|
||||
foreach my $val (@{$::MFORM{$i}}) {
|
||||
print qq|<input type="hidden" name="$i" value="@{[value_quote($val)]}">\n|;
|
||||
}
|
||||
} else {
|
||||
# This field has a single value; add it.
|
||||
print qq|<input type="hidden" name="$i" value="@{[value_quote($::FORM{$i})]}">\n|;
|
||||
}
|
||||
}
|
||||
|
||||
print qq|
|
||||
<input type="submit" name="GoAheadAndLogIn" value="Login">
|
||||
</form>
|
||||
|;
|
||||
|
||||
# Allow the user to request a token to change their password (unless
|
||||
# we are using LDAP, in which case the user must use LDAP to change it).
|
||||
unless( Param("useLDAP") ) {
|
||||
print qq|
|
||||
<hr>
|
||||
<p>If you don't have a Bugzilla account, you can
|
||||
<a href="createaccount.cgi">create a new account</a>.</p>
|
||||
<form method="get" action="token.cgi">
|
||||
<input type="hidden" name="a" value="reqpw">
|
||||
If you have an account, but have forgotten your password,
|
||||
enter your login name below and submit a request
|
||||
to change your password.<br>
|
||||
<input size="35" name="loginname">
|
||||
<input type="submit" value="Submit Request">
|
||||
</form>
|
||||
<hr>
|
||||
|;
|
||||
}
|
||||
|
||||
# This seems like as good as time as any to get rid of old
|
||||
# crufty junk in the logincookies table. Get rid of any entry
|
||||
# that hasn't been used in a month.
|
||||
if ($::dbwritesallowed) {
|
||||
SendSQL("DELETE FROM logincookies " .
|
||||
"WHERE TO_DAYS(NOW()) - TO_DAYS(lastused) > 30");
|
||||
if ($::driver eq 'mysql') {
|
||||
SendSQL("DELETE FROM logincookies " .
|
||||
"WHERE TO_DAYS(NOW()) - TO_DAYS(lastused) > 30");
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
SendSQL("DELETE FROM logincookies " .
|
||||
"WHERE NOW() - lastused > 30");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
PutFooter();
|
||||
exit;
|
||||
}
|
||||
|
||||
# Update the timestamp on our logincookie, so it'll keep on working.
|
||||
if ($::dbwritesallowed) {
|
||||
SendSQL("UPDATE logincookies SET lastused = null " .
|
||||
SendSQL("UPDATE logincookies SET lastused = NULL " .
|
||||
"WHERE cookie = $::COOKIE{'Bugzilla_logincookie'}");
|
||||
}
|
||||
ConfirmGroup($userid);
|
||||
return $userid;
|
||||
return $::userid;
|
||||
}
|
||||
|
||||
sub PutHeader {
|
||||
@@ -833,6 +923,7 @@ sub PutFooter {
|
||||
# ThrowTemplateError instead.
|
||||
sub DisplayError {
|
||||
($vars->{'error'}, $vars->{'title'}) = (@_);
|
||||
$vars->{'title'} ||= "Error";
|
||||
|
||||
print "Content-type: text/html\n\n" if !$vars->{'header_done'};
|
||||
$template->process("global/user-error.html.tmpl", $vars)
|
||||
@@ -844,11 +935,12 @@ sub DisplayError {
|
||||
# For "this shouldn't happen"-type places in the code.
|
||||
# $vars->{'variables'} is a reference to a hash of useful debugging info.
|
||||
sub ThrowCodeError {
|
||||
($vars->{'error'}, my $unlock_tables, $vars->{'variables'}) = (@_);
|
||||
($vars->{'error'}, $vars->{'variables'}, my $unlock_tables) = (@_);
|
||||
$vars->{'title'} = "Code Error";
|
||||
|
||||
SendSQL("UNLOCK TABLES") if $unlock_tables;
|
||||
SendSQL("UNLOCK TABLES") if $unlock_tables && $::driver eq 'mysql';
|
||||
|
||||
# We may one day log something to file here.
|
||||
# We may optionally log something to file here.
|
||||
|
||||
print "Content-type: text/html\n\n" if !$vars->{'header_done'};
|
||||
$template->process("global/code-error.html.tmpl", $vars)
|
||||
@@ -859,9 +951,10 @@ sub ThrowCodeError {
|
||||
|
||||
# For errors made by the user.
|
||||
sub ThrowUserError {
|
||||
($vars->{'error'}, my $unlock_tables) = (@_);
|
||||
($vars->{'error'}, $vars->{'title'}, my $unlock_tables) = (@_);
|
||||
$vars->{'title'} ||= "Error";
|
||||
|
||||
SendSQL("UNLOCK TABLES") if $unlock_tables;
|
||||
SendSQL("UNLOCK TABLES") if $unlock_tables && $::driver eq 'mysql';
|
||||
|
||||
print "Content-type: text/html\n\n" if !$vars->{'header_done'};
|
||||
$template->process("global/user-error.html.tmpl", $vars)
|
||||
@@ -870,20 +963,18 @@ sub ThrowUserError {
|
||||
exit;
|
||||
}
|
||||
|
||||
# This function should only be called if a template->process() fails.
|
||||
# It tries another template first, because often one template being
|
||||
# broken or missing doesn't mean that they all are. But it falls back on
|
||||
# a print statement.
|
||||
# If the template system isn't working, we can't use a template.
|
||||
# This should only be called if a template->process() fails.
|
||||
# The Content-Type will already have been printed.
|
||||
sub ThrowTemplateError {
|
||||
($vars->{'template_error_msg'}) = (@_);
|
||||
$vars->{'error'} = "template_error";
|
||||
($vars->{'error'}) = (@_);
|
||||
$vars->{'title'} = "Template Error";
|
||||
|
||||
# Try a template first; but if this one fails too, fall back
|
||||
# on plain old print statements.
|
||||
if (!$template->process("global/code-error.html.tmpl", $vars)) {
|
||||
my $maintainer = Param('maintainer');
|
||||
my $error = html_quote($vars->{'template_error_msg'});
|
||||
my $error = html_quote($vars->{'error'});
|
||||
my $error2 = html_quote($template->error());
|
||||
print <<END;
|
||||
<tt>
|
||||
@@ -892,7 +983,7 @@ sub ThrowTemplateError {
|
||||
send it to $maintainer with details of what you were doing at the
|
||||
time this message appeared.
|
||||
</p>
|
||||
<script type="text/javascript"> <!--
|
||||
<script> <!--
|
||||
document.write("<p>URL: " + document.location + "</p>");
|
||||
// -->
|
||||
</script>
|
||||
@@ -911,7 +1002,7 @@ sub CheckIfVotedConfirmed {
|
||||
SendSQL("SELECT bugs.votes, bugs.bug_status, products.votestoconfirm, " .
|
||||
" bugs.everconfirmed " .
|
||||
"FROM bugs, products " .
|
||||
"WHERE bugs.bug_id = $id AND products.product_id = bugs.product_id");
|
||||
"WHERE bugs.bug_id = $id AND products.product = bugs.product");
|
||||
my ($votes, $status, $votestoconfirm, $everconfirmed) = (FetchSQLData());
|
||||
if ($votes >= $votestoconfirm && $status eq $::unconfirmedstate) {
|
||||
SendSQL("UPDATE bugs SET bug_status = 'NEW', everconfirmed = 1 " .
|
||||
@@ -928,7 +1019,7 @@ sub CheckIfVotedConfirmed {
|
||||
}
|
||||
|
||||
AppendComment($id, DBID_to_name($who),
|
||||
"*** This bug has been confirmed by popular vote. ***", 0);
|
||||
"*** This bug has been confirmed by popular vote. ***");
|
||||
|
||||
$vars->{'type'} = "votes";
|
||||
$vars->{'id'} = $id;
|
||||
@@ -946,25 +1037,38 @@ sub CheckIfVotedConfirmed {
|
||||
sub GetBugActivity {
|
||||
my ($id, $starttime) = (@_);
|
||||
my $datepart = "";
|
||||
my $query = "";
|
||||
|
||||
die "Invalid id: $id" unless $id=~/^\s*\d+\s*$/;
|
||||
|
||||
if (defined $starttime) {
|
||||
$datepart = "and bugs_activity.bug_when > " . SqlQuote($starttime);
|
||||
}
|
||||
|
||||
my $query = "
|
||||
SELECT IFNULL(fielddefs.description, bugs_activity.fieldid),
|
||||
bugs_activity.attach_id,
|
||||
bugs_activity.bug_when,
|
||||
bugs_activity.removed, bugs_activity.added,
|
||||
profiles.login_name
|
||||
FROM bugs_activity LEFT JOIN fielddefs ON
|
||||
bugs_activity.fieldid = fielddefs.fieldid,
|
||||
profiles
|
||||
WHERE bugs_activity.bug_id = $id $datepart
|
||||
AND profiles.userid = bugs_activity.who
|
||||
ORDER BY bugs_activity.bug_when";
|
||||
|
||||
if ($::driver eq 'mysql') {
|
||||
$query = "
|
||||
SELECT
|
||||
IFNULL(fielddefs.name, bugs_activity.fieldid), ";
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
$query = "
|
||||
SELECT
|
||||
COALESCE(fielddefs.name, chr(bugs_activity.fieldid)), ";
|
||||
}
|
||||
|
||||
$query .= "
|
||||
bugs_activity.attach_id,
|
||||
bugs_activity.bug_when,
|
||||
bugs_activity.removed, bugs_activity.added,
|
||||
profiles.login_name
|
||||
FROM
|
||||
bugs_activity LEFT JOIN fielddefs ON
|
||||
bugs_activity.fieldid = fielddefs.fieldid,
|
||||
profiles
|
||||
WHERE
|
||||
bugs_activity.bug_id = $id $datepart
|
||||
AND profiles.userid = bugs_activity.who
|
||||
ORDER BY
|
||||
bugs_activity.bug_when";
|
||||
|
||||
SendSQL($query);
|
||||
|
||||
@@ -1057,9 +1161,7 @@ if (defined $ENV{"HTTP_COOKIE"}) {
|
||||
foreach my $pair (split(/;/, $ENV{"HTTP_COOKIE"})) {
|
||||
$pair = trim($pair);
|
||||
if ($pair =~ /^([^=]*)=(.*)$/) {
|
||||
if (!exists($::COOKIE{$1})) {
|
||||
$::COOKIE{$1} = $2;
|
||||
}
|
||||
$::COOKIE{$1} = $2;
|
||||
} else {
|
||||
$::COOKIE{$pair} = "";
|
||||
}
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
# might involve turning this into a virtual base class, and having
|
||||
# UserSet and KeywordSet types that inherit from it.
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
# Everything that uses RelationSet should already have globals.pl loaded
|
||||
|
||||
@@ -24,13 +24,12 @@
|
||||
################################################################################
|
||||
|
||||
# Make it harder for us to do dangerous things in Perl.
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
# Bundle the functions in this file together into the "Token" package.
|
||||
package Token;
|
||||
|
||||
use Bugzilla::Config;
|
||||
|
||||
use Date::Format;
|
||||
|
||||
# This module requires that its caller have said "require CGI.pl" to import
|
||||
@@ -77,14 +76,14 @@ sub IssueEmailChangeToken {
|
||||
my $template = $::template;
|
||||
my $vars = $::vars;
|
||||
|
||||
$vars->{'oldemailaddress'} = $old_email . Param('emailsuffix');
|
||||
$vars->{'newemailaddress'} = $new_email . Param('emailsuffix');
|
||||
$vars->{'oldemailaddress'} = $old_email . &::Param('emailsuffix');
|
||||
$vars->{'newemailaddress'} = $new_email . &::Param('emailsuffix');
|
||||
|
||||
$vars->{'max_token_age'} = $maxtokenage;
|
||||
$vars->{'token_ts'} = $token_ts;
|
||||
|
||||
$vars->{'token'} = $token;
|
||||
$vars->{'emailaddress'} = $old_email . Param('emailsuffix');
|
||||
$vars->{'emailaddress'} = $old_email . &::Param('emailsuffix');
|
||||
|
||||
my $message;
|
||||
$template->process("account/email/change-old.txt.tmpl", $vars, \$message)
|
||||
@@ -95,7 +94,7 @@ sub IssueEmailChangeToken {
|
||||
close SENDMAIL;
|
||||
|
||||
$vars->{'token'} = $newtoken;
|
||||
$vars->{'emailaddress'} = $new_email . Param('emailsuffix');
|
||||
$vars->{'emailaddress'} = $new_email . &::Param('emailsuffix');
|
||||
|
||||
$message = "";
|
||||
$template->process("account/email/change-new.txt.tmpl", $vars, \$message)
|
||||
@@ -124,13 +123,13 @@ sub IssuePasswordToken {
|
||||
# Generate a unique token and insert it into the tokens table.
|
||||
# We have to lock the tokens table before generating the token,
|
||||
# since the database must be queried for token uniqueness.
|
||||
&::SendSQL("LOCK TABLES tokens WRITE");
|
||||
&::SendSQL("LOCK TABLE tokens WRITE") if $::driver eq 'mysql';
|
||||
my $token = GenerateUniqueToken();
|
||||
my $quotedtoken = &::SqlQuote($token);
|
||||
my $quotedipaddr = &::SqlQuote($::ENV{'REMOTE_ADDR'});
|
||||
&::SendSQL("INSERT INTO tokens ( userid , issuedate , token , tokentype , eventdata )
|
||||
VALUES ( $userid , '$issuedate' , $quotedtoken , 'password' , $quotedipaddr )");
|
||||
&::SendSQL("UNLOCK TABLES");
|
||||
&::SendSQL("UNLOCK TABLES") if $::driver eq 'mysql';
|
||||
|
||||
# Mail the user the token along with instructions for using it.
|
||||
|
||||
@@ -138,7 +137,7 @@ sub IssuePasswordToken {
|
||||
my $vars = $::vars;
|
||||
|
||||
$vars->{'token'} = $token;
|
||||
$vars->{'emailaddress'} = $loginname . Param('emailsuffix');
|
||||
$vars->{'emailaddress'} = $loginname . &::Param('emailsuffix');
|
||||
|
||||
$vars->{'max_token_age'} = $maxtokenage;
|
||||
$vars->{'token_ts'} = $token_ts;
|
||||
@@ -156,10 +155,13 @@ sub IssuePasswordToken {
|
||||
|
||||
|
||||
sub CleanTokenTable {
|
||||
&::SendSQL("LOCK TABLES tokens WRITE");
|
||||
&::SendSQL("DELETE FROM tokens
|
||||
WHERE TO_DAYS(NOW()) - TO_DAYS(issuedate) >= " . $maxtokenage);
|
||||
&::SendSQL("UNLOCK TABLES");
|
||||
&::SendSQL("LOCK TABLES tokens WRITE") if $::driver eq 'mysql';
|
||||
if ($::driver eq 'mysql') {
|
||||
&::SendSQL("DELETE FROM tokens WHERE TO_DAYS(NOW()) - TO_DAYS(issuedate) >= " . $maxtokenage);
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
&::SendSQL("DELETE FROM tokens WHERE now() - issuedate >= '$maxtokenage days'");
|
||||
}
|
||||
&::SendSQL("UNLOCK TABLES") if $::driver eq 'mysql';
|
||||
}
|
||||
|
||||
|
||||
@@ -208,7 +210,7 @@ sub Cancel {
|
||||
my ($issuedate, $tokentype, $eventdata, $loginname, $realname) = &::FetchSQLData();
|
||||
|
||||
# Get the email address of the Bugzilla maintainer.
|
||||
my $maintainer = Param('maintainer');
|
||||
my $maintainer = &::Param('maintainer');
|
||||
|
||||
# Format the user's real name and email address into a single string.
|
||||
my $username = $realname ? $realname . " <" . $loginname . ">" : $loginname;
|
||||
@@ -236,9 +238,9 @@ sub Cancel {
|
||||
close SENDMAIL;
|
||||
|
||||
# Delete the token from the database.
|
||||
&::SendSQL("LOCK TABLES tokens WRITE");
|
||||
&::SendSQL("LOCK TABLE tokens WRITE") if $::driver eq 'mysql';
|
||||
&::SendSQL("DELETE FROM tokens WHERE token = $quotedtoken");
|
||||
&::SendSQL("UNLOCK TABLES");
|
||||
&::SendSQL("UNLOCK TABLES") if $::driver eq 'mysql';
|
||||
}
|
||||
|
||||
sub HasPasswordToken {
|
||||
@@ -258,9 +260,10 @@ sub HasEmailChangeToken {
|
||||
|
||||
my ($userid) = @_;
|
||||
|
||||
&::SendSQL("SELECT token FROM tokens WHERE userid = $userid " .
|
||||
"AND (tokentype = 'emailnew' OR tokentype = 'emailold') " .
|
||||
"LIMIT 1");
|
||||
&::SendSQL("SELECT token FROM tokens
|
||||
WHERE userid = $userid
|
||||
AND tokentype = 'emailnew'
|
||||
OR tokentype = 'emailold' LIMIT 1");
|
||||
my ($token) = &::FetchSQLData();
|
||||
|
||||
return $token;
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
################################################################################
|
||||
|
||||
# Make it harder for us to do dangerous things in Perl.
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
use lib qw(.);
|
||||
@@ -35,12 +36,6 @@ use vars qw(
|
||||
$vars
|
||||
);
|
||||
|
||||
# Win32 specific hack to avoid a hang when creating/showing an attachment
|
||||
if ($^O eq 'MSWin32') {
|
||||
binmode(STDIN);
|
||||
binmode(STDOUT);
|
||||
}
|
||||
|
||||
# Include the Bugzilla CGI and general utility library.
|
||||
require "CGI.pl";
|
||||
|
||||
@@ -48,6 +43,7 @@ require "CGI.pl";
|
||||
ConnectToDatabase();
|
||||
|
||||
# Check whether or not the user is logged in and, if so, set the $::userid
|
||||
# and $::usergroupset variables.
|
||||
quietly_check_login();
|
||||
|
||||
################################################################################
|
||||
@@ -107,13 +103,12 @@ elsif ($action eq "update")
|
||||
validateIsPatch();
|
||||
validateContentType() unless $::FORM{'ispatch'};
|
||||
validateIsObsolete();
|
||||
validatePrivate();
|
||||
validateStatuses();
|
||||
update();
|
||||
}
|
||||
else
|
||||
{
|
||||
ThrowCodeError("unknown_action");
|
||||
DisplayError("I could not figure out what you wanted to do.")
|
||||
}
|
||||
|
||||
exit;
|
||||
@@ -124,25 +119,22 @@ exit;
|
||||
|
||||
sub validateID
|
||||
{
|
||||
# Validate the value of the "id" form field, which must contain an
|
||||
# integer that is the ID of an existing attachment.
|
||||
# Validate the value of the "id" form field, which must contain an
|
||||
# integer that is the ID of an existing attachment.
|
||||
|
||||
$vars->{'attach_id'} = $::FORM{'id'};
|
||||
|
||||
detaint_natural($::FORM{'id'})
|
||||
|| ThrowUserError("invalid_attach_id");
|
||||
detaint_natural($::FORM{'id'})
|
||||
|| DisplayError("You did not enter a valid attachment number.")
|
||||
&& exit;
|
||||
|
||||
# Make sure the attachment exists in the database.
|
||||
SendSQL("SELECT bug_id, isprivate FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
MoreSQLData()
|
||||
|| ThrowUserError("invalid_attach_id");
|
||||
# Make sure the attachment exists in the database.
|
||||
SendSQL("SELECT bug_id FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
MoreSQLData()
|
||||
|| DisplayError("Attachment #$::FORM{'id'} does not exist.")
|
||||
&& exit;
|
||||
|
||||
# Make sure the user is authorized to access this attachment's bug.
|
||||
my ($bugid, $isprivate) = FetchSQLData();
|
||||
ValidateBugID($bugid);
|
||||
if (($isprivate > 0 ) && Param("insidergroup") && !(UserInGroup(Param("insidergroup")))) {
|
||||
ThrowUserError("attachment_access_denied");
|
||||
}
|
||||
# Make sure the user is authorized to access this attachment's bug.
|
||||
my ($bugid) = FetchSQLData();
|
||||
ValidateBugID($bugid);
|
||||
}
|
||||
|
||||
sub validateCanEdit
|
||||
@@ -163,13 +155,15 @@ sub validateCanEdit
|
||||
"attach_id = $attach_id AND submitter_id = $::userid");
|
||||
|
||||
FetchSQLData()
|
||||
|| ThrowUserError("illegal_attachment_edit");
|
||||
|| DisplayError("You are not authorised to edit attachment #$attach_id")
|
||||
&& exit;
|
||||
}
|
||||
|
||||
sub validateDescription
|
||||
{
|
||||
$::FORM{'description'}
|
||||
|| ThrowUserError("missing_attachment_description");
|
||||
|| DisplayError("You must enter a description for the attachment.")
|
||||
&& exit;
|
||||
}
|
||||
|
||||
sub validateIsPatch
|
||||
@@ -187,7 +181,10 @@ sub validateContentType
|
||||
{
|
||||
if (!$::FORM{'contenttypemethod'})
|
||||
{
|
||||
ThrowUserError("missing_content_type_method");
|
||||
DisplayError("You must choose a method for determining the content type,
|
||||
either <em>auto-detect</em>, <em>select from list</em>, or <em>enter
|
||||
manually</em>.");
|
||||
exit;
|
||||
}
|
||||
elsif ($::FORM{'contenttypemethod'} eq 'autodetect')
|
||||
{
|
||||
@@ -195,7 +192,10 @@ sub validateContentType
|
||||
# specified in the HTTP request headers.
|
||||
if ( !$::FILE{'data'}->{'contenttype'} )
|
||||
{
|
||||
ThrowUserError("missing_content_type");
|
||||
DisplayError("You asked Bugzilla to auto-detect the content type, but
|
||||
your browser did not specify a content type when uploading the file,
|
||||
so you must enter a content type manually.");
|
||||
exit;
|
||||
}
|
||||
$::FORM{'contenttype'} = $::FILE{'data'}->{'contenttype'};
|
||||
}
|
||||
@@ -211,14 +211,22 @@ sub validateContentType
|
||||
}
|
||||
else
|
||||
{
|
||||
$vars->{'contenttypemethod'} = $::FORM{'contenttypemethod'};
|
||||
ThrowCodeError("illegal_content_type_method");
|
||||
my $htmlcontenttypemethod = html_quote($::FORM{'contenttypemethod'});
|
||||
DisplayError("Your form submission got corrupted somehow. The <em>content
|
||||
method</em> field, which specifies how the content type gets determined,
|
||||
should have been either <em>autodetect</em>, <em>list</em>,
|
||||
or <em>manual</em>, but was instead <em>$htmlcontenttypemethod</em>.");
|
||||
exit;
|
||||
}
|
||||
|
||||
if ( $::FORM{'contenttype'} !~ /^(application|audio|image|message|model|multipart|text|video)\/.+$/ )
|
||||
{
|
||||
$vars->{'contenttype'} = $::FORM{'contenttype'};
|
||||
ThrowUserError("invalid_content_type");
|
||||
my $htmlcontenttype = html_quote($::FORM{'contenttype'});
|
||||
DisplayError("The content type <em>$htmlcontenttype</em> is invalid.
|
||||
Valid types must be of the form <em>foo/bar</em> where <em>foo</em>
|
||||
is either <em>application, audio, image, message, model, multipart,
|
||||
text,</em> or <em>video</em>.");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -230,14 +238,6 @@ sub validateIsObsolete
|
||||
$::FORM{'isobsolete'} = $::FORM{'isobsolete'} ? 1 : 0;
|
||||
}
|
||||
|
||||
sub validatePrivate
|
||||
{
|
||||
# Set the isprivate flag to zero if it is undefined, since the UI uses
|
||||
# an HTML checkbox to represent this flag, and unchecked HTML checkboxes
|
||||
# do not get sent in HTML requests.
|
||||
$::FORM{'isprivate'} = $::FORM{'isprivate'} ? 1 : 0;
|
||||
}
|
||||
|
||||
sub validateStatuses
|
||||
{
|
||||
# Get a list of attachment statuses that are valid for this attachment.
|
||||
@@ -246,7 +246,7 @@ sub validateStatuses
|
||||
FROM attachments, bugs, attachstatusdefs
|
||||
WHERE attachments.attach_id = $::FORM{'id'}
|
||||
AND attachments.bug_id = bugs.bug_id
|
||||
AND attachstatusdefs.product_id = bugs.product_id");
|
||||
AND attachstatusdefs.product = bugs.product");
|
||||
my @statusdefs;
|
||||
push(@statusdefs, FetchSQLData()) while MoreSQLData();
|
||||
PopGlobalSQLState();
|
||||
@@ -254,8 +254,9 @@ sub validateStatuses
|
||||
foreach my $status (@{$::MFORM{'status'}})
|
||||
{
|
||||
grep($_ == $status, @statusdefs)
|
||||
|| ThrowUserError("invalid_attach_status");
|
||||
|
||||
|| DisplayError("One of the statuses you entered is not a valid status
|
||||
for this attachment.")
|
||||
&& exit;
|
||||
# We have tested that the status is valid, so it can be detainted
|
||||
detaint_natural($status);
|
||||
}
|
||||
@@ -264,7 +265,8 @@ sub validateStatuses
|
||||
sub validateData
|
||||
{
|
||||
$::FORM{'data'}
|
||||
|| ThrowUserError("zero_length_file");
|
||||
|| DisplayError("The file you are trying to attach is empty!")
|
||||
&& exit;
|
||||
|
||||
my $len = length($::FORM{'data'});
|
||||
|
||||
@@ -275,18 +277,27 @@ sub validateData
|
||||
# the "maxattachmentsize" parameter.
|
||||
if ( $::FORM{'ispatch'} && $maxpatchsize && $len > $maxpatchsize*1024 )
|
||||
{
|
||||
$vars->{'filesize'} = sprintf("%.0f", $len/1024);
|
||||
ThrowUserError("patch_too_large");
|
||||
my $lenkb = sprintf("%.0f", $len/1024);
|
||||
DisplayError("The file you are trying to attach is ${lenkb} kilobytes (KB) in size.
|
||||
Patches cannot be more than ${maxpatchsize}KB in size.
|
||||
Try breaking your patch into several pieces.");
|
||||
exit;
|
||||
} elsif ( !$::FORM{'ispatch'} && $maxattachmentsize && $len > $maxattachmentsize*1024 ) {
|
||||
$vars->{'filesize'} = sprintf("%.0f", $len/1024);
|
||||
ThrowUserError("file_too_large");
|
||||
my $lenkb = sprintf("%.0f", $len/1024);
|
||||
DisplayError("The file you are trying to attach is ${lenkb} kilobytes (KB) in size.
|
||||
Non-patch attachments cannot be more than ${maxattachmentsize}KB.
|
||||
If your attachment is an image, try converting it to a compressable
|
||||
format like JPG or PNG, or put it elsewhere on the web and
|
||||
link to it from the bug's URL field or in a comment on the bug.");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
sub validateFilename
|
||||
{
|
||||
defined $::FILE{'data'}
|
||||
|| ThrowUserError("file_not_specified");
|
||||
|| DisplayError("You did not specify a file to attach.")
|
||||
&& exit;
|
||||
}
|
||||
|
||||
sub validateObsolete
|
||||
@@ -294,32 +305,35 @@ sub validateObsolete
|
||||
# Make sure the attachment id is valid and the user has permissions to view
|
||||
# the bug to which it is attached.
|
||||
foreach my $attachid (@{$::MFORM{'obsolete'}}) {
|
||||
$vars->{'attach_id'} = $attachid;
|
||||
|
||||
detaint_natural($attachid)
|
||||
|| ThrowCodeError("invalid_attach_id_to_obsolete");
|
||||
|| DisplayError("The attachment number of one of the attachments
|
||||
you wanted to obsolete is invalid.")
|
||||
&& exit;
|
||||
|
||||
SendSQL("SELECT bug_id, isobsolete, description
|
||||
FROM attachments WHERE attach_id = $attachid");
|
||||
|
||||
# Make sure the attachment exists in the database.
|
||||
MoreSQLData()
|
||||
|| ThrowUserError("invalid_attach_id");
|
||||
|| DisplayError("Attachment #$attachid does not exist.")
|
||||
&& exit;
|
||||
|
||||
my ($bugid, $isobsolete, $description) = FetchSQLData();
|
||||
|
||||
$vars->{'description'} = $description;
|
||||
|
||||
if ($bugid != $::FORM{'bugid'})
|
||||
{
|
||||
$vars->{'my_bug_id'} = $::FORM{'bugid'};
|
||||
$vars->{'attach_bug_id'} = $bugid;
|
||||
ThrowCodeError("mismatched_bug_ids_on_obsolete");
|
||||
$description = html_quote($description);
|
||||
DisplayError("Attachment #$attachid ($description) is attached
|
||||
to bug #$bugid, but you tried to flag it as obsolete while
|
||||
creating a new attachment to bug #$::FORM{'bugid'}.");
|
||||
exit;
|
||||
}
|
||||
|
||||
if ( $isobsolete )
|
||||
{
|
||||
ThrowCodeError("attachment_already_obsolete");
|
||||
$description = html_quote($description);
|
||||
DisplayError("Attachment #$attachid ($description) is already obsolete.");
|
||||
exit;
|
||||
}
|
||||
|
||||
# Check that the user can modify this attachment
|
||||
@@ -334,16 +348,16 @@ sub validateObsolete
|
||||
|
||||
sub view
|
||||
{
|
||||
# Display an attachment.
|
||||
# Display an attachment.
|
||||
|
||||
# Retrieve the attachment content and its content type from the database.
|
||||
SendSQL("SELECT mimetype, thedata FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
my ($contenttype, $thedata) = FetchSQLData();
|
||||
# Retrieve the attachment content and its content type from the database.
|
||||
SendSQL("SELECT mimetype, thedata FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
my ($contenttype, $thedata) = FetchSQLData();
|
||||
|
||||
# Return the appropriate HTTP response headers.
|
||||
print "Content-Type: $contenttype\n\n";
|
||||
# Return the appropriate HTTP response headers.
|
||||
print "Content-Type: $contenttype\n\n";
|
||||
|
||||
print $thedata;
|
||||
print $thedata;
|
||||
}
|
||||
|
||||
|
||||
@@ -353,20 +367,19 @@ sub viewall
|
||||
|
||||
# Retrieve the attachments from the database and write them into an array
|
||||
# of hashes where each hash represents one attachment.
|
||||
my $privacy = "";
|
||||
if (Param("insidergroup") && !(UserInGroup(Param("insidergroup")))) {
|
||||
$privacy = "AND isprivate < 1 ";
|
||||
}
|
||||
SendSQL("SELECT attach_id, creation_ts, mimetype, description,
|
||||
ispatch, isobsolete, isprivate
|
||||
FROM attachments WHERE bug_id = $::FORM{'bugid'} $privacy
|
||||
ORDER BY attach_id");
|
||||
SendSQL("SELECT attach_id, creation_ts, mimetype, description, ispatch, isobsolete
|
||||
FROM attachments WHERE bug_id = $::FORM{'bugid'} ORDER BY attach_id");
|
||||
my @attachments; # the attachments array
|
||||
while (MoreSQLData())
|
||||
{
|
||||
my %a; # the attachment hash
|
||||
($a{'attachid'}, $a{'date'}, $a{'contenttype'},
|
||||
$a{'description'}, $a{'ispatch'}, $a{'isobsolete'}, $a{'isprivate'}) = FetchSQLData();
|
||||
$a{'description'}, $a{'ispatch'}, $a{'isobsolete'}) = FetchSQLData();
|
||||
|
||||
# Format the attachment's creation/modification date into something readable.
|
||||
if ($a{'date'} =~ /^(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) {
|
||||
$a{'date'} = "$3/$4/$2 $5:$6";
|
||||
}
|
||||
|
||||
# Flag attachments as to whether or not they can be viewed (as opposed to
|
||||
# being downloaded). Currently I decide they are viewable if their MIME type
|
||||
@@ -418,7 +431,7 @@ sub enter
|
||||
if (!UserInGroup("editbugs")) {
|
||||
$canEdit = "AND submitter_id = $::userid";
|
||||
}
|
||||
SendSQL("SELECT attach_id, description, isprivate
|
||||
SendSQL("SELECT attach_id, description
|
||||
FROM attachments
|
||||
WHERE bug_id = $::FORM{'bugid'}
|
||||
AND isobsolete = 0 $canEdit
|
||||
@@ -426,7 +439,7 @@ sub enter
|
||||
my @attachments; # the attachments array
|
||||
while ( MoreSQLData() ) {
|
||||
my %a; # the attachment hash
|
||||
($a{'id'}, $a{'description'}, $a{'isprivate'}) = FetchSQLData();
|
||||
($a{'id'}, $a{'description'}) = FetchSQLData();
|
||||
|
||||
# Add the hash representing the attachment to the array of attachments.
|
||||
push @attachments, \%a;
|
||||
@@ -459,11 +472,10 @@ sub insert
|
||||
my $description = SqlQuote($::FORM{'description'});
|
||||
my $contenttype = SqlQuote($::FORM{'contenttype'});
|
||||
my $thedata = SqlQuote($::FORM{'data'});
|
||||
my $isprivate = $::FORM{'isprivate'} ? 1 : 0;
|
||||
|
||||
# Insert the attachment into the database.
|
||||
SendSQL("INSERT INTO attachments (bug_id, creation_ts, filename, description, mimetype, ispatch, isprivate, submitter_id, thedata)
|
||||
VALUES ($::FORM{'bugid'}, now(), $filename, $description, $contenttype, $::FORM{'ispatch'}, $isprivate, $::userid, $thedata)");
|
||||
SendSQL("INSERT INTO attachments (bug_id, filename, description, mimetype, ispatch, submitter_id, thedata)
|
||||
VALUES ($::FORM{'bugid'}, $filename, $description, $contenttype, $::FORM{'ispatch'}, $::userid, $thedata)");
|
||||
|
||||
# Retrieve the ID of the newly created attachment record.
|
||||
SendSQL("SELECT LAST_INSERT_ID()");
|
||||
@@ -480,15 +492,14 @@ sub insert
|
||||
|
||||
AppendComment($::FORM{'bugid'},
|
||||
$::COOKIE{"Bugzilla_login"},
|
||||
$comment,
|
||||
$isprivate);
|
||||
$comment);
|
||||
|
||||
# Make existing attachments obsolete.
|
||||
my $fieldid = GetFieldID('attachments.isobsolete');
|
||||
foreach my $attachid (@{$::MFORM{'obsolete'}}) {
|
||||
SendSQL("UPDATE attachments SET isobsolete = 1 WHERE attach_id = $attachid");
|
||||
SendSQL("INSERT INTO bugs_activity (bug_id, attach_id, who, bug_when, fieldid, removed, added)
|
||||
VALUES ($::FORM{'bugid'}, $attachid, $::userid, NOW(), $fieldid, '0', '1')");
|
||||
SendSQL("UPDATE attachments SET isobsolete = 1 WHERE attach_id = $attachid");
|
||||
SendSQL("INSERT INTO bugs_activity (bug_id, attach_id, who, bug_when, fieldid, removed, added)
|
||||
VALUES ($::FORM{'bugid'}, $attachid, $::userid, NOW(), $fieldid, '0', '1')");
|
||||
}
|
||||
|
||||
# Send mail to let people know the attachment has been created. Uses a
|
||||
@@ -528,9 +539,9 @@ sub edit
|
||||
# Users cannot edit the content of the attachment itself.
|
||||
|
||||
# Retrieve the attachment from the database.
|
||||
SendSQL("SELECT description, mimetype, bug_id, ispatch, isobsolete, isprivate
|
||||
SendSQL("SELECT description, mimetype, bug_id, ispatch, isobsolete
|
||||
FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
my ($description, $contenttype, $bugid, $ispatch, $isobsolete, $isprivate) = FetchSQLData();
|
||||
my ($description, $contenttype, $bugid, $ispatch, $isobsolete) = FetchSQLData();
|
||||
|
||||
# Flag attachment as to whether or not it can be viewed (as opposed to
|
||||
# being downloaded). Currently I decide it is viewable if its content
|
||||
@@ -556,7 +567,7 @@ sub edit
|
||||
SendSQL("SELECT id, name
|
||||
FROM attachstatusdefs, bugs
|
||||
WHERE bug_id = $bugid
|
||||
AND attachstatusdefs.product_id = bugs.product_id
|
||||
AND attachstatusdefs.product = bugs.product
|
||||
ORDER BY sortkey");
|
||||
while ( MoreSQLData() )
|
||||
{
|
||||
@@ -580,7 +591,6 @@ sub edit
|
||||
$vars->{'bugsummary'} = $bugsummary;
|
||||
$vars->{'ispatch'} = $ispatch;
|
||||
$vars->{'isobsolete'} = $isobsolete;
|
||||
$vars->{'isprivate'} = $isprivate;
|
||||
$vars->{'isviewable'} = $isviewable;
|
||||
$vars->{'statuses'} = \%statuses;
|
||||
$vars->{'statusdefs'} = \@statusdefs;
|
||||
@@ -595,28 +605,27 @@ sub edit
|
||||
}
|
||||
|
||||
|
||||
sub update
|
||||
sub update
|
||||
{
|
||||
# Update an attachment record.
|
||||
|
||||
# Get the bug ID for the bug to which this attachment is attached.
|
||||
SendSQL("SELECT bug_id FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
my $bugid = FetchSQLData();
|
||||
unless ($bugid)
|
||||
{
|
||||
$vars->{'bug_id'} = $bugid;
|
||||
ThrowUserError("invalid_bug_id");
|
||||
}
|
||||
|
||||
my $bugid = FetchSQLData()
|
||||
|| DisplayError("Cannot figure out bug number.")
|
||||
&& exit;
|
||||
|
||||
# Lock database tables in preparation for updating the attachment.
|
||||
SendSQL("LOCK TABLES attachments WRITE , attachstatuses WRITE ,
|
||||
attachstatusdefs READ , fielddefs READ , bugs_activity WRITE");
|
||||
if ($::driver eq 'mysql') {
|
||||
SendSQL("LOCK TABLES attachments WRITE , attachstatuses WRITE ,
|
||||
attachstatusdefs READ , fielddefs READ , bugs_activity WRITE");
|
||||
}
|
||||
|
||||
# Get a copy of the attachment record before we make changes
|
||||
# so we can record those changes in the activity table.
|
||||
SendSQL("SELECT description, mimetype, ispatch, isobsolete, isprivate
|
||||
SendSQL("SELECT description, mimetype, ispatch, isobsolete
|
||||
FROM attachments WHERE attach_id = $::FORM{'id'}");
|
||||
my ($olddescription, $oldcontenttype, $oldispatch, $oldisobsolete,
|
||||
$oldisprivate ) = FetchSQLData();
|
||||
my ($olddescription, $oldcontenttype, $oldispatch, $oldisobsolete) = FetchSQLData();
|
||||
|
||||
# Get the list of old status flags.
|
||||
SendSQL("SELECT attachstatusdefs.name
|
||||
@@ -663,8 +672,8 @@ sub update
|
||||
SET description = $quoteddescription ,
|
||||
mimetype = $quotedcontenttype ,
|
||||
ispatch = $::FORM{'ispatch'} ,
|
||||
isobsolete = $::FORM{'isobsolete'} ,
|
||||
isprivate = $::FORM{'isprivate'}
|
||||
isobsolete = $::FORM{'isobsolete'} ,
|
||||
creation_ts = creation_ts
|
||||
WHERE attach_id = $::FORM{'id'}
|
||||
");
|
||||
|
||||
@@ -691,11 +700,6 @@ sub update
|
||||
SendSQL("INSERT INTO bugs_activity (bug_id, attach_id, who, bug_when, fieldid, removed, added)
|
||||
VALUES ($bugid, $::FORM{'id'}, $::userid, NOW(), $fieldid, $oldisobsolete, $::FORM{'isobsolete'})");
|
||||
}
|
||||
if ($oldisprivate ne $::FORM{'isprivate'}) {
|
||||
my $fieldid = GetFieldID('attachments.isprivate');
|
||||
SendSQL("INSERT INTO bugs_activity (bug_id, attach_id, who, bug_when, fieldid, removed, added)
|
||||
VALUES ($bugid, $::FORM{'id'}, $::userid, NOW(), $fieldid, $oldisprivate, $::FORM{'isprivate'})");
|
||||
}
|
||||
if ($oldstatuslist ne $newstatuslist) {
|
||||
my ($removed, $added) = DiffStrings($oldstatuslist, $newstatuslist);
|
||||
my $quotedremoved = SqlQuote($removed);
|
||||
@@ -706,7 +710,9 @@ sub update
|
||||
}
|
||||
|
||||
# Unlock all database tables now that we are finished updating the database.
|
||||
SendSQL("UNLOCK TABLES");
|
||||
if ($::driver eq 'mysql') {
|
||||
SendSQL("UNLOCK TABLES");
|
||||
}
|
||||
|
||||
# If this installation has enabled the request manager, let the manager know
|
||||
# an attachment was updated so it can check for requests on that attachment
|
||||
@@ -757,7 +763,7 @@ sub update
|
||||
my $neverused = $::userid;
|
||||
|
||||
# Append the comment to the list of comments in the database.
|
||||
AppendComment($bugid, $who, $wrappedcomment, $::FORM{'isprivate'});
|
||||
AppendComment($bugid, $who, $wrappedcomment);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
#
|
||||
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
||||
# Dave Miller <justdave@syndicomm.com>
|
||||
# Vaskin Kissoyan <vkissoyan@yahoo.com>
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
use RelationSet;
|
||||
@@ -77,48 +77,77 @@ sub show_bug {
|
||||
|
||||
# Populate the bug hash with the info we get directly from the DB.
|
||||
my $query = "
|
||||
SELECT bugs.bug_id, alias, products.name, version, rep_platform,
|
||||
op_sys, bug_status, resolution, priority,
|
||||
bug_severity, components.name, assigned_to, reporter,
|
||||
bug_file_loc, short_desc, target_milestone,
|
||||
qa_contact, status_whiteboard,
|
||||
date_format(creation_ts,'%Y-%m-%d %H:%i'),
|
||||
delta_ts, sum(votes.count), delta_ts calc_disp_date
|
||||
FROM bugs LEFT JOIN votes USING(bug_id), products, components
|
||||
WHERE bugs.bug_id = $id
|
||||
AND bugs.product_id = products.id
|
||||
AND bugs.component_id = components.id
|
||||
GROUP BY bugs.bug_id";
|
||||
SELECT
|
||||
bugs.bug_id,
|
||||
product,
|
||||
version,
|
||||
rep_platform,
|
||||
op_sys,
|
||||
bug_status,
|
||||
resolution,
|
||||
priority,
|
||||
bug_severity,
|
||||
component,
|
||||
assigned_to,
|
||||
reporter,
|
||||
bug_file_loc,
|
||||
short_desc,
|
||||
target_milestone,
|
||||
qa_contact,
|
||||
status_whiteboard, ";
|
||||
|
||||
if ($::driver eq 'mysql') {
|
||||
$query .= "
|
||||
date_format(creation_ts, '%Y-%m-%d %H:%i'),
|
||||
groupset,
|
||||
delta_ts, ";
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
$query .= "
|
||||
TO_CHAR(creation_ts, 'YYYY-MM-DD HH24:MI:SS'),
|
||||
groupset,
|
||||
TO_CHAR(delta_ts, 'YYYYMMDDHH24MISS'), ";
|
||||
}
|
||||
|
||||
$query .= "
|
||||
SUM(votes.count)
|
||||
FROM
|
||||
bugs LEFT JOIN votes USING(bug_id)
|
||||
WHERE
|
||||
bugs.bug_id = $id
|
||||
GROUP BY
|
||||
bugs.bug_id,
|
||||
product,
|
||||
version,
|
||||
rep_platform,
|
||||
op_sys,
|
||||
bug_status,
|
||||
resolution,
|
||||
priority,
|
||||
bug_severity,
|
||||
component,
|
||||
assigned_to,
|
||||
reporter,
|
||||
bug_file_loc,
|
||||
short_desc,
|
||||
target_milestone,
|
||||
qa_contact,
|
||||
status_whiteboard,
|
||||
creation_ts,
|
||||
groupset,
|
||||
delta_ts ";
|
||||
|
||||
SendSQL($query);
|
||||
|
||||
# The caller is meant to have checked this. Abort here so that
|
||||
# we don't get obscure SQL errors, below
|
||||
if (!MoreSQLData()) {
|
||||
$vars->{'bug_id'} = $id;
|
||||
ThrowCodeError("no_bug_data");
|
||||
}
|
||||
|
||||
my $value;
|
||||
my $disp_date;
|
||||
my @row = FetchSQLData();
|
||||
foreach my $field ("bug_id", "alias", "product", "version", "rep_platform",
|
||||
foreach my $field ("bug_id", "product", "version", "rep_platform",
|
||||
"op_sys", "bug_status", "resolution", "priority",
|
||||
"bug_severity", "component", "assigned_to", "reporter",
|
||||
"bug_file_loc", "short_desc", "target_milestone",
|
||||
"qa_contact", "status_whiteboard", "creation_ts",
|
||||
"delta_ts", "votes", "calc_disp_date")
|
||||
"groupset", "delta_ts", "votes")
|
||||
{
|
||||
$value = shift(@row);
|
||||
if ($field eq "calc_disp_date") {
|
||||
# Convert MySQL timestamp (_ts) to datetime format(%Y-%m-%d %H:%i)
|
||||
$disp_date = substr($value,0,4) . '-';
|
||||
$disp_date .= substr($value,4,2) . '-';
|
||||
$disp_date .= substr($value,6,2) . ' ';
|
||||
$disp_date .= substr($value,8,2) . ':';
|
||||
$disp_date .= substr($value,10,2);
|
||||
$value = $disp_date;
|
||||
}
|
||||
$bug{$field} = defined($value) ? $value : "";
|
||||
}
|
||||
|
||||
@@ -176,8 +205,7 @@ sub show_bug {
|
||||
$bug{'milestoneurl'} = $::milestoneurl{$bug{'product'}} ||
|
||||
"notargetmilestone.html";
|
||||
|
||||
$vars->{'use_votes'} = Param('usevotes')
|
||||
&& $::prodmaxvotes{$bug{'product'}} > 0;
|
||||
$vars->{'use_votes'} = $::prodmaxvotes{$bug{'product'}};
|
||||
|
||||
# Add additional, calculated fields to the bug hash
|
||||
if (@::legal_keywords) {
|
||||
@@ -222,75 +250,76 @@ sub show_bug {
|
||||
|
||||
# Groups
|
||||
my @groups;
|
||||
|
||||
# For every group, we need to know if there is ANY bug_group_map
|
||||
# record putting the current bug in that group and if there is ANY
|
||||
# user_group_map record putting the user in that group.
|
||||
# The LEFT JOINs are checking for record existence.
|
||||
#
|
||||
SendSQL("SELECT DISTINCT groups.id, name, description," .
|
||||
" bug_group_map.group_id IS NOT NULL," .
|
||||
" user_group_map.group_id IS NOT NULL," .
|
||||
" isactive" .
|
||||
" FROM groups" .
|
||||
" LEFT JOIN bug_group_map" .
|
||||
" ON bug_group_map.group_id = groups.id" .
|
||||
" AND bug_id = $bug{'bug_id'}" .
|
||||
" LEFT JOIN user_group_map" .
|
||||
" ON user_group_map.group_id = groups.id" .
|
||||
" AND user_id = $::userid" .
|
||||
" AND NOT isbless" .
|
||||
" WHERE isbuggroup");
|
||||
|
||||
$user{'inallgroups'} = 1;
|
||||
|
||||
while (MoreSQLData()) {
|
||||
my ($groupid, $name, $description, $ison, $ingroup, $isactive)
|
||||
= FetchSQLData();
|
||||
|
||||
$bug{'inagroup'} = 1 if ($ison);
|
||||
|
||||
# For product groups, we only want to display the checkbox if either
|
||||
# (1) The bit is already set, or
|
||||
# (2) The user is in the group, but either:
|
||||
# (a) The group is a product group for the current product, or
|
||||
# (b) The group name isn't a product name
|
||||
# This means that all product groups will be skipped, but
|
||||
# non-product bug groups will still be displayed.
|
||||
if($ison ||
|
||||
($isactive && ($ingroup && (!Param("usebuggroups") || ($name eq $bug{'product'}) ||
|
||||
(!defined $::proddesc{$name})))))
|
||||
{
|
||||
$user{'inallgroups'} &= $ingroup;
|
||||
|
||||
push (@groups, { "bit" => $groupid,
|
||||
"ison" => $ison,
|
||||
"ingroup" => $ingroup,
|
||||
"description" => $description });
|
||||
if ($::usergroupset ne '0' || $bug{'groupset'} ne '0') {
|
||||
my $bug_groupset = $bug{'groupset'};
|
||||
|
||||
if ($::driver eq 'mysql') {
|
||||
SendSQL("select bit, name, description, (bit & $bug{'groupset'} != 0), " .
|
||||
"(bit & $::usergroupset != 0) from groups where isbuggroup != 0 " .
|
||||
# Include active groups as well as inactive groups to which
|
||||
# the bug already belongs. This way the bug can be removed
|
||||
# from an inactive group but can only be added to active ones.
|
||||
"and ((isactive = 1 or (bit & $bug{'groupset'} != 0)) or " .
|
||||
"(bit & $bug{'groupset'} != 0)) " .
|
||||
"order by description");
|
||||
} elsif ($::driver eq 'Pg') {
|
||||
SendSQL("select group_bit, name, description, (group_bit & int8($bug{'groupset'}) != 0), " .
|
||||
"(group_bit & int8($::usergroupset) != 0) from groups where isbuggroup != 0 " .
|
||||
# Include active groups as well as inactive groups to which
|
||||
# the bug already belongs. This way the bug can be removed
|
||||
# from an inactive group but can only be added to active ones.
|
||||
"and ((isactive = 1 or (group_bit & int8($bug{'groupset'}) != 0)) or " .
|
||||
"(group_bit & int8($bug{'groupset'}) != 0)) " .
|
||||
"order by description");
|
||||
}
|
||||
}
|
||||
|
||||
# If the bug is restricted to a group, get flags that allow
|
||||
# the user to set whether or not the reporter
|
||||
# and cc list can see the bug even if they are not members of all
|
||||
# groups to which the bug is restricted.
|
||||
if ($bug{'inagroup'}) {
|
||||
$user{'inallgroups'} = 1;
|
||||
|
||||
# Determine whether or not the bug is always accessible by the
|
||||
# reporter, QA contact, and/or users on the cc: list.
|
||||
SendSQL("SELECT reporter_accessible, cclist_accessible
|
||||
FROM bugs
|
||||
WHERE bug_id = $id
|
||||
");
|
||||
($bug{'reporter_accessible'},
|
||||
$bug{'cclist_accessible'}) = FetchSQLData();
|
||||
while (MoreSQLData()) {
|
||||
my ($bit, $name, $description, $ison, $ingroup) = FetchSQLData();
|
||||
# For product groups, we only want to display the checkbox if either
|
||||
# (1) The bit is already set, or
|
||||
# (2) The user is in the group, but either:
|
||||
# (a) The group is a product group for the current product, or
|
||||
# (b) The group name isn't a product name
|
||||
# This means that all product groups will be skipped, but
|
||||
# non-product bug groups will still be displayed.
|
||||
if($ison ||
|
||||
($ingroup && (($name eq $bug{'product'}) ||
|
||||
(!defined $::proddesc{$name}))))
|
||||
{
|
||||
$user{'inallgroups'} &= $ingroup;
|
||||
|
||||
push (@groups, { "bit" => $bit,
|
||||
"ison" => $ison,
|
||||
"ingroup" => $ingroup,
|
||||
"description" => $description });
|
||||
}
|
||||
}
|
||||
|
||||
# If the bug is restricted to a group, display checkboxes that allow
|
||||
# the user to set whether or not the reporter
|
||||
# and cc list can see the bug even if they are not members of all
|
||||
# groups to which the bug is restricted.
|
||||
if ($bug{'groupset'} != 0) {
|
||||
$bug{'inagroup'} = 1;
|
||||
|
||||
# Determine whether or not the bug is always accessible by the
|
||||
# reporter, QA contact, and/or users on the cc: list.
|
||||
SendSQL("SELECT reporter_accessible, cclist_accessible
|
||||
FROM bugs
|
||||
WHERE bug_id = $id
|
||||
");
|
||||
($bug{'reporter_accessible'},
|
||||
$bug{'cclist_accessible'}) = FetchSQLData();
|
||||
}
|
||||
}
|
||||
$vars->{'groups'} = \@groups;
|
||||
|
||||
my $movers = Param("movers");
|
||||
$user{'canmove'} = Param("move-enabled")
|
||||
&& (defined $::COOKIE{"Bugzilla_login"})
|
||||
&& ($::COOKIE{"Bugzilla_login"} =~ /$movers/);
|
||||
&& ($::COOKIE{"Bugzilla_login"} =~ /\Q$movers\E/);
|
||||
|
||||
# User permissions
|
||||
|
||||
@@ -304,10 +333,8 @@ sub show_bug {
|
||||
|| $::userid == $bug{'reporter'}
|
||||
|| $::userid == $bug{'qa_contact'}
|
||||
|| $::userid == $bug{'assigned_to'}
|
||||
|| UserInGroup("editbugs");
|
||||
$user{'canconfirm'} = ($::userid == 0)
|
||||
|| UserInGroup("canconfirm")
|
||||
|| UserInGroup("editbugs");
|
||||
|| UserInGroup("editbugs");
|
||||
$user{'canconfirm'} = ($::userid == 0) || UserInGroup("canconfirm");
|
||||
|
||||
# Bug states
|
||||
$bug{'isunconfirmed'} = ($bug{'bug_status'} eq $::unconfirmedstate);
|
||||
@@ -343,13 +370,9 @@ sub show_bug {
|
||||
$vars->{'bug'} = \%bug;
|
||||
$vars->{'user'} = \%user;
|
||||
|
||||
# Create the <link> elements for browsing bug lists
|
||||
$vars->{'navigation_links'} = navigation_links(join(':',@bug_list));
|
||||
|
||||
# Generate and return the UI (HTML page) from the appropriate template.
|
||||
$template->process("bug/edit.html.tmpl", $vars)
|
||||
|| ThrowTemplateError($template->error());
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,12 +5,11 @@
|
||||
maintainer CDATA #REQUIRED
|
||||
exporter CDATA #IMPLIED
|
||||
>
|
||||
<!ELEMENT bug (bug_id, (alias?, bug_status, product, priority, version, rep_platform, assigned_to, delta_ts, component, reporter, target_milestone?, bug_severity, creation_ts, qa_contact?, op_sys, resolution?, bug_file_loc?, short_desc?, keywords*, status_whiteboard?, dependson*, blocks*, cc*, long_desc*, attachment*)?)>
|
||||
<!ELEMENT bug (bug_id, (bug_status, product, priority, version, rep_platform, assigned_to, delta_ts, component, reporter, target_milestone?, bug_severity, creation_ts, qa_contact?, op_sys, resolution?, bug_file_loc?, short_desc?, keywords*, status_whiteboard?, dependson*, blocks*, cc*, long_desc*, attachment*)?)>
|
||||
<!ATTLIST bug
|
||||
error (NotFound | NotPermitted | InvalidBugId) #IMPLIED
|
||||
>
|
||||
<!ELEMENT bug_id (#PCDATA)>
|
||||
<!ELEMENT alias (#PCDATA)>
|
||||
<!ELEMENT exporter (#PCDATA)>
|
||||
<!ELEMENT urlbase (#PCDATA)>
|
||||
<!ELEMENT bug_status (#PCDATA)>
|
||||
|
||||
@@ -24,16 +24,16 @@ use strict;
|
||||
|
||||
print q{Content-type: text/html
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Refresh"
|
||||
content="0; URL=userprefs.cgi">
|
||||
</head>
|
||||
<body>
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META HTTP-EQUIV="Refresh"
|
||||
CONTENT="0; URL=userprefs.cgi">
|
||||
</HEAD>
|
||||
<BODY>
|
||||
This URL is obsolete. Forwarding you to the correct one.
|
||||
<p>
|
||||
Going to <a href="userprefs.cgi">userprefs.cgi</a>
|
||||
<br>
|
||||
</body>
|
||||
</html>
|
||||
<P>
|
||||
Going to <A HREF="userprefs.cgi">userprefs.cgi</A>
|
||||
<BR>
|
||||
</BODY>
|
||||
</HTML>
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -19,8 +19,8 @@
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
||||
# Gervase Markham <gerv@gerv.net>
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
use lib qw(.);
|
||||
@@ -34,13 +34,14 @@ use vars qw(
|
||||
|
||||
require "CGI.pl";
|
||||
|
||||
ConnectToDatabase();
|
||||
quietly_check_login();
|
||||
|
||||
GetVersionTable();
|
||||
print "Content-type: text/html\n";
|
||||
|
||||
# The master list not only says what fields are possible, but what order
|
||||
# they get displayed in.
|
||||
|
||||
ConnectToDatabase();
|
||||
GetVersionTable();
|
||||
|
||||
my @masterlist = ("opendate", "changeddate", "severity", "priority",
|
||||
"platform", "owner", "reporter", "status", "resolution",
|
||||
"product", "component", "version", "os", "votes");
|
||||
@@ -58,9 +59,10 @@ if (@::legal_keywords) {
|
||||
push(@masterlist, "keywords");
|
||||
}
|
||||
|
||||
|
||||
push(@masterlist, ("summary", "summaryfull"));
|
||||
|
||||
$vars->{'masterlist'} = \@masterlist;
|
||||
$vars->{masterlist} = \@masterlist;
|
||||
|
||||
my @collist;
|
||||
if (defined $::FORM{'rememberedquery'}) {
|
||||
@@ -80,14 +82,14 @@ if (defined $::FORM{'rememberedquery'}) {
|
||||
my $list = join(" ", @collist);
|
||||
my $urlbase = Param("urlbase");
|
||||
my $cookiepath = Param("cookiepath");
|
||||
|
||||
print "Set-Cookie: COLUMNLIST=$list ; path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
|
||||
print "Set-Cookie: SPLITHEADER=$::FORM{'splitheader'} ; path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
|
||||
print "Refresh: 0; URL=buglist.cgi?$::FORM{'rememberedquery'}\n";
|
||||
print "Content-type: text/html\n\n";
|
||||
$vars->{'message'} = "change_columns";
|
||||
$template->process("global/message.html.tmpl", $vars)
|
||||
|| ThrowTemplateError($template->error());
|
||||
print "\n";
|
||||
print "<META HTTP-EQUIV=Refresh CONTENT=\"1; URL=$urlbase"."buglist.cgi?$::FORM{'rememberedquery'}\">\n";
|
||||
print "<TITLE>What a hack.</TITLE>\n";
|
||||
PutHeader ("Change columns");
|
||||
print "Resubmitting your query with new columns...\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
@@ -97,12 +99,26 @@ if (defined $::COOKIE{'COLUMNLIST'}) {
|
||||
@collist = @::default_column_list;
|
||||
}
|
||||
|
||||
$vars->{'collist'} = \@collist;
|
||||
$vars->{'splitheader'} = $::COOKIE{'SPLITHEADER'} ? 1 : 0;
|
||||
$vars->{collist} = \@collist;
|
||||
|
||||
$vars->{'buffer'} = $::buffer;
|
||||
$vars->{splitheader} = 0;
|
||||
if ($::COOKIE{'SPLITHEADER'}) {
|
||||
$vars->{splitheader} = 1;
|
||||
}
|
||||
|
||||
my %desc = ();
|
||||
foreach my $i (@masterlist) {
|
||||
$desc{$i} = $i;
|
||||
}
|
||||
|
||||
$desc{'summary'} = "Summary (first 60 characters)";
|
||||
$desc{'summaryfull'} = "Full Summary";
|
||||
|
||||
$vars->{desc} = \%desc;
|
||||
$vars->{buffer} = $::buffer;
|
||||
|
||||
# Generate and return the UI (HTML page) from the appropriate template.
|
||||
print "Content-type: text/html\n\n";
|
||||
$template->process("list/change-columns.html.tmpl", $vars)
|
||||
|| ThrowTemplateError($template->error());
|
||||
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
|
||||
|
||||
use AnyDBM_File;
|
||||
use diagnostics;
|
||||
use strict;
|
||||
use vars @::legal_product;
|
||||
|
||||
@@ -66,9 +67,6 @@ sub collect_stats {
|
||||
my $dir = shift;
|
||||
my $product = shift;
|
||||
my $when = localtime (time);
|
||||
my $product_id = get_product_id($product) unless $product eq '-All-';
|
||||
|
||||
die "Unknown product $product" unless ($product_id or $product eq '-All-');
|
||||
|
||||
# NB: Need to mangle the product for the filename, but use the real
|
||||
# product name in the query
|
||||
@@ -84,7 +82,7 @@ sub collect_stats {
|
||||
if( $product eq "-All-" ) {
|
||||
SendSQL("select count(bug_status) from bugs where bug_status='$status'");
|
||||
} else {
|
||||
SendSQL("select count(bug_status) from bugs where bug_status='$status' and product_id=$product_id");
|
||||
SendSQL("select count(bug_status) from bugs where bug_status='$status' and product='$product'");
|
||||
}
|
||||
|
||||
push @row, FetchOneColumn();
|
||||
@@ -94,7 +92,7 @@ sub collect_stats {
|
||||
if( $product eq "-All-" ) {
|
||||
SendSQL("select count(resolution) from bugs where resolution='$resolution'");
|
||||
} else {
|
||||
SendSQL("select count(resolution) from bugs where resolution='$resolution' and product_id=$product_id");
|
||||
SendSQL("select count(resolution) from bugs where resolution='$resolution' and product='$product'");
|
||||
}
|
||||
|
||||
push @row, FetchOneColumn();
|
||||
|
||||
@@ -29,6 +29,7 @@ push @INC, "../."; # this script now lives in contrib
|
||||
|
||||
require "globals.pl";
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
my $EMAIL_TRANSFORM_NONE = "email_transform_none";
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
#
|
||||
# You need to work with bug_email.pl the MIME::Parser installed.
|
||||
#
|
||||
# $Id: bug_email.pl,v 1.9.16.4 2002-08-27 04:50:18 bugreport%peshkin.net Exp $
|
||||
# $Id: bug_email.pl,v 1.9 2001-05-25 12:48:47 jake%acutex.net Exp $
|
||||
###############################################################
|
||||
|
||||
# 02/12/2000 (SML)
|
||||
@@ -66,12 +66,11 @@
|
||||
# - integrate some setup in the checksetup.pl script
|
||||
# - gpg signatures for security
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
use MIME::Parser;
|
||||
|
||||
chdir '..'; # this script lives in contrib
|
||||
push @INC, "contrib/.";
|
||||
push @INC, ".";
|
||||
push @INC, "../."; # this script now lives in contrib
|
||||
|
||||
require "globals.pl";
|
||||
require "BugzillaEmail.pm";
|
||||
@@ -195,7 +194,7 @@ sub CheckPermissions {
|
||||
sub CheckProduct {
|
||||
my $Product = shift;
|
||||
|
||||
SendSQL("select name from products where name = " . SqlQuote($Product));
|
||||
SendSQL("select product from products where product='$Product'");
|
||||
my $Result = FetchOneColumn();
|
||||
if (lc($Result) eq lc($Product)) {
|
||||
return $Result;
|
||||
@@ -210,7 +209,7 @@ sub CheckComponent {
|
||||
my $Product = shift;
|
||||
my $Component = shift;
|
||||
|
||||
SendSQL("select components.name from components, products where components.product_id = products.id AND products.name=" . SqlQuote($Product) . " and components.name=" . SqlQuote($Component));
|
||||
SendSQL("select value from components where program=" . SqlQuote($Product) . " and value=" . SqlQuote($Component) . "");
|
||||
my $Result = FetchOneColumn();
|
||||
if (lc($Result) eq lc($Component)) {
|
||||
return $Result;
|
||||
@@ -225,7 +224,7 @@ sub CheckVersion {
|
||||
my $Product = shift;
|
||||
my $Version = shift;
|
||||
|
||||
SendSQL("select value from versions, products where versions.product_id = products.id AND products.name=" . SqlQuote($Product) . " and value=" . SqlQuote($Version));
|
||||
SendSQL("select value from versions where program=" . SqlQuote($Product) . " and value=" . SqlQuote($Version) . "");
|
||||
my $Result = FetchOneColumn();
|
||||
if (lc($Result) eq lc($Version)) {
|
||||
return $Result;
|
||||
@@ -737,10 +736,10 @@ my $parser = new MIME::Parser;
|
||||
|
||||
# Create and set the output directory:
|
||||
# FIXME: There should be a $BUGZILLA_HOME variable (SML)
|
||||
(-d "data/mimedump-tmp") or mkdir "data/mimedump-tmp",0755 or die "mkdir: $!";
|
||||
(-w "data/mimedump-tmp") or die "can't write to directory";
|
||||
(-d "../data/mimedump-tmp") or mkdir "../data/mimedump-tmp",0755 or die "mkdir: $!";
|
||||
(-w "../data/mimedump-tmp") or die "can't write to directory";
|
||||
|
||||
$parser->output_dir("data/mimedump-tmp");
|
||||
$parser->output_dir("../data/mimedump-tmp");
|
||||
|
||||
# Read the MIME message:
|
||||
my $entity = $parser->read(\*STDIN) or die "couldn't parse MIME stream";
|
||||
@@ -839,9 +838,9 @@ if (! CheckPermissions("CreateBugs", $SenderShort ) ) {
|
||||
|
||||
# Set QA
|
||||
if (Param("useqacontact")) {
|
||||
SendSQL("select initialqacontact from components, products where components.product_id = products.id AND products.name=" .
|
||||
SendSQL("select initialqacontact from components where program=" .
|
||||
SqlQuote($Control{'product'}) .
|
||||
" and components.name=" . SqlQuote($Control{'component'}));
|
||||
" and value=" . SqlQuote($Control{'component'}));
|
||||
$Control{'qacontact'} = FetchOneColumn();
|
||||
}
|
||||
|
||||
@@ -862,7 +861,7 @@ if ( $Product eq "" ) {
|
||||
|
||||
$Text .= "Valid products are:\n\t";
|
||||
|
||||
SendSQL("select name from products ORDER BY name");
|
||||
SendSQL("select product from products");
|
||||
@all_products = FetchAllSQLData();
|
||||
$Text .= join( "\n\t", @all_products ) . "\n\n";
|
||||
$Text .= horLine();
|
||||
@@ -902,7 +901,7 @@ if ( $Component eq "" ) {
|
||||
foreach my $prod ( @all_products ) {
|
||||
$Text .= "\nValid components for product `$prod' are: \n\t";
|
||||
|
||||
SendSQL("SELECT components.name FROM components, products WHERE components.product_id=products.id AND products.name = " . SqlQuote($prod));
|
||||
SendSQL("select value from components where program=" . SqlQuote( $prod ) . "");
|
||||
@val_components = FetchAllSQLData();
|
||||
|
||||
$Text .= join( "\n\t", @val_components ) . "\n";
|
||||
@@ -935,10 +934,9 @@ if ( defined($Control{'assigned_to'})
|
||||
&& $Control{'assigned_to'} !~ /^\s*$/ ) {
|
||||
$Control{'assigned_to'} = DBname_to_id($Control{'assigned_to'});
|
||||
} else {
|
||||
SendSQL("select initialowner from components, products where " .
|
||||
" components.product_id=products.id AND products.name=" .
|
||||
SendSQL("select initialowner from components where program=" .
|
||||
SqlQuote($Control{'product'}) .
|
||||
" and components.name=" . SqlQuote($Control{'component'}));
|
||||
" and value=" . SqlQuote($Control{'component'}));
|
||||
$Control{'assigned_to'} = FetchOneColumn();
|
||||
}
|
||||
|
||||
@@ -982,7 +980,7 @@ if ( $Version eq "" ) {
|
||||
foreach my $prod ( @all_products ) {
|
||||
$Text .= "Valid versions for product " . SqlQuote( $prod ) . " are: \n\t";
|
||||
|
||||
SendSQL("select value from versions, products where versions.product_id=products.id AND products.name=" . SqlQuote( $prod ));
|
||||
SendSQL("select value from versions where program=" . SqlQuote( $prod ) . "");
|
||||
@all_versions = FetchAllSQLData();
|
||||
$anz_versions = @all_versions;
|
||||
$Text .= join( "\n\t", @all_versions ) . "\n" ;
|
||||
@@ -1176,20 +1174,11 @@ END
|
||||
my $query = "insert into bugs (\n" . join(",\n", @used_fields ) .
|
||||
", bug_status, creation_ts, everconfirmed) values ( ";
|
||||
|
||||
# 'Yuck'. Then again, this whole file should be rewritten anyway...
|
||||
$query =~ s/product/product_id/;
|
||||
$query =~ s/component/component_id/;
|
||||
|
||||
my $tmp_reply = "These values were stored by bugzilla:\n";
|
||||
my $val;
|
||||
foreach my $field (@used_fields) {
|
||||
if( $field eq "groupset" ) {
|
||||
$query .= $Control{$field} . ",\n";
|
||||
} elsif ( $field eq 'product' ) {
|
||||
$query .= get_product_id($Control{$field}) . ",\n";
|
||||
} elsif ( $field eq 'component' ) {
|
||||
$query .= get_component_id(get_product_id($Control{'product'}),
|
||||
$Control{$field}) . ",\n";
|
||||
} else {
|
||||
$query .= SqlQuote($Control{$field}) . ",\n";
|
||||
}
|
||||
@@ -1219,8 +1208,8 @@ END
|
||||
my $ever_confirmed = 0;
|
||||
my $state = SqlQuote("UNCONFIRMED");
|
||||
|
||||
SendSQL("SELECT votestoconfirm FROM products WHERE name = " .
|
||||
SqlQuote($Control{'product'}));
|
||||
SendSQL("SELECT votestoconfirm FROM products WHERE product = " .
|
||||
SqlQuote($Control{'product'}) . ";");
|
||||
if (!FetchOneColumn()) {
|
||||
$ever_confirmed = 1;
|
||||
$state = SqlQuote("NEW");
|
||||
@@ -1244,8 +1233,8 @@ END
|
||||
my $long_desc_query = "INSERT INTO longdescs SET bug_id=$id, who=$userid, bug_when=\'$bug_when\', thetext=" . SqlQuote($comment);
|
||||
SendSQL($long_desc_query);
|
||||
|
||||
# Cool, the mail was successful
|
||||
system("./processmail", $id, $SenderShort);
|
||||
# Cool, the mail was successfull
|
||||
system("cd .. ; ./processmail $id '$Sender'");
|
||||
} else {
|
||||
$id = 0xFFFF; # TEST !
|
||||
print "\n-------------------------------------------------------------------------\n";
|
||||
|
||||
@@ -28,12 +28,11 @@
|
||||
# 1. better way to get the body text (I don't know what dump_entity() is
|
||||
# actually doing
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
use MIME::Parser;
|
||||
|
||||
chdir ".."; # this script lives in contrib, change to main
|
||||
push @INC, "contrib";
|
||||
push @INC, "."; # this script lives in contrib
|
||||
push @INC, "../."; # this script lives in contrib
|
||||
require "globals.pl";
|
||||
require "BugzillaEmail.pm";
|
||||
|
||||
@@ -44,10 +43,10 @@ my $Comment = "";
|
||||
|
||||
# Create and set the output directory:
|
||||
# FIXME: There should be a $BUGZILLA_HOME variable (SML)
|
||||
(-d "data/mimedump-tmp") or mkdir "data/mimedump-tmp",0755 or die "mkdir: $!";
|
||||
(-w "data/mimedump-tmp") or die "can't write to directory";
|
||||
(-d "../data/mimedump-tmp") or mkdir "../data/mimedump-tmp",0755 or die "mkdir: $!";
|
||||
(-w "../data/mimedump-tmp") or die "can't write to directory";
|
||||
|
||||
$parser->output_dir("data/mimedump-tmp");
|
||||
$parser->output_dir("../data/mimedump-tmp");
|
||||
|
||||
# Read the MIME message:
|
||||
my $entity = $parser->read(\*STDIN) or die "couldn't parse MIME stream";
|
||||
@@ -116,12 +115,11 @@ my $Body = "Subject: " . $Subject . "\n" . $Comment;
|
||||
my $long_desc_query = "INSERT INTO longdescs SET bug_id=$found_id, who=$userid, bug_when=NOW(), thetext=" . SqlQuote($Body) . ";";
|
||||
SendSQL($long_desc_query);
|
||||
|
||||
system("./processmail", $found_id, $SenderShort);
|
||||
system("cd .. ; ./processmail $found_id '$SenderShort'");
|
||||
|
||||
sub DealWithError {
|
||||
my ($reason) = @_;
|
||||
print $reason . "\n";
|
||||
exit 100;
|
||||
}
|
||||
|
||||
# Yanking this wholesale from bug_email, 'cause I know this works. I'll
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s): Dawn Endico <endico@mozilla.org>
|
||||
# Jacob Steenhagen <jake@bugzilla.org>
|
||||
|
||||
|
||||
# Keep a record of all cvs updates made from a given directory.
|
||||
@@ -27,16 +26,11 @@
|
||||
# and run the cvs command with the date that you want to back
|
||||
# out to. (Probably the second to last entry).
|
||||
|
||||
# Because this script lives in contrib, you may want to
|
||||
# ln -s contrib/cvs-update.sh cvs-update
|
||||
# from your bugzilla install directory so you can run
|
||||
# the script easily from there (./cvs-update)
|
||||
|
||||
#DATE=`date +%e/%m/%Y\ %k:%M:%S\ %Z`
|
||||
DATE=`date`
|
||||
COMMAND="cvs -q update -dP"
|
||||
echo $COMMAND -D \"$DATE\" >> cvs-update.log
|
||||
$COMMAND -A
|
||||
COMMAND="cvs update -d -P -D"
|
||||
echo $COMMAND \"$DATE\" >> cvs-update.log
|
||||
$COMMAND "$DATE"
|
||||
|
||||
|
||||
# sample log file
|
||||
|
||||
@@ -23,61 +23,48 @@
|
||||
# mysqld-watcher.pl - a script that watches the running instance of
|
||||
# mysqld and kills off any long-running SELECTs against the shadow_db
|
||||
#
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
require "globals.pl";
|
||||
|
||||
# some configurables:
|
||||
|
||||
# length of time before a thread is eligible to be killed, in seconds
|
||||
#
|
||||
my $long_query_time = 180;
|
||||
my $long_query_time = 600;
|
||||
#
|
||||
# the From header for any messages sent out
|
||||
#
|
||||
my $mail_from = "root\@mothra.mozilla.org";
|
||||
#
|
||||
# the To header for any messages sent out
|
||||
#
|
||||
my $mail_to = "root";
|
||||
my $mail_from = "root\@lounge.mozilla.org";
|
||||
#
|
||||
# mail transfer agent. this should probably really be converted to a Param().
|
||||
#
|
||||
my $mta_program = "/usr/lib/sendmail -t -ODeliveryMode=deferred";
|
||||
|
||||
# The array of long-running queries
|
||||
# and STDIN is where we get the info about running threads
|
||||
#
|
||||
my $long = {};
|
||||
close(STDIN);
|
||||
open(STDIN, "/usr/bonsaitools/bin/mysqladmin processlist |");
|
||||
|
||||
# Run mysqladmin processlist twice, the first time getting complete queries
|
||||
# and the second time getting just abbreviated queries. We want complete
|
||||
# queries so we know which queries are taking too long to run, but complete
|
||||
# queries with line breaks get missed by this script, so we get abbreviated
|
||||
# queries as well to make sure we don't miss any.
|
||||
foreach my $command ("/opt/mysql/bin/mysqladmin --verbose processlist",
|
||||
"/opt/mysql/bin/mysqladmin processlist")
|
||||
{
|
||||
close(STDIN);
|
||||
open(STDIN, "$command |");
|
||||
# iterate through the running threads
|
||||
#
|
||||
my @LONGEST = (0,0,0,0,0,0,0,0,0);
|
||||
while ( <STDIN> ) {
|
||||
my @F = split(/\|/);
|
||||
|
||||
# iterate through the running threads
|
||||
# if this line is not the correct number of fields, or if the thread-id
|
||||
# field contains Id, skip this line. both these cases indicate that this
|
||||
# line contains pretty-printing gunk and not thread info.
|
||||
#
|
||||
while ( <STDIN> ) {
|
||||
my @F = split(/\|/);
|
||||
next if ( $#F != 9 || $F[1] =~ /Id/);
|
||||
|
||||
# if this line is not the correct number of fields, or if the thread-id
|
||||
# field contains Id, skip this line. both these cases indicate that this
|
||||
# line contains pretty-printing gunk and not thread info.
|
||||
#
|
||||
next if ( $#F != 9 || $F[1] =~ /Id/);
|
||||
|
||||
if ( $F[4] =~ /shadow_bugs/ # shadowbugs database in use
|
||||
&& $F[5] =~ /Query/ # this is actually a query
|
||||
&& $F[6] > $long_query_time # this query has taken too long
|
||||
&& $F[8] =~ /(select|SELECT)/ # only kill a select
|
||||
&& !defined($long->{$F[1]}) ) # haven't seen this one already
|
||||
{
|
||||
$long->{$F[1]} = \@F;
|
||||
system("/opt/mysql/bin/mysqladmin", "kill", $F[1]);
|
||||
}
|
||||
if ( $F[4] =~ /shadow_bugs/ # shadowbugs database in use
|
||||
&& $F[5] =~ /Query/ # this is actually a query
|
||||
&& $F[6] > $long_query_time # this query has taken too long
|
||||
&& $F[8] =~ /(select|SELECT)/ # only kill a select
|
||||
&& $F[6] > $LONGEST[6] ) { # the longest running query seen
|
||||
@LONGEST = @F;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,15 +90,13 @@ sub sendEmail($$$$) {
|
||||
|
||||
# if we found anything, kill the database thread and send mail about it
|
||||
#
|
||||
if (scalar(keys(%$long))) {
|
||||
my $message = "";
|
||||
foreach my $process_id (keys(%$long)) {
|
||||
my $qry = $long->{$process_id};
|
||||
$message .= join(" ", @$qry) . "\n\n";
|
||||
}
|
||||
if ($LONGEST[6] != 0) {
|
||||
|
||||
# fire off an email telling the maintainer that we had to kill some threads
|
||||
system ("/usr/bonsaitools/bin/mysqladmin", "kill", $LONGEST[1]);
|
||||
|
||||
# fire off an email telling the maintainer that we had to kill a thread
|
||||
#
|
||||
sendEmail($mail_from, $mail_to, "long running MySQL thread(s) killed", $message);
|
||||
sendEmail($mail_from, Param("maintainer"),
|
||||
"long running MySQL thread killed",
|
||||
join(" ", @LONGEST) . "\n");
|
||||
}
|
||||
|
||||
|
||||
@@ -24,11 +24,13 @@
|
||||
# Christopher Aillon <christopher@aillon.com>
|
||||
# Gervase Markham <gerv@gerv.net>
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
use lib qw(.);
|
||||
|
||||
require "CGI.pl";
|
||||
require "globals.pl";
|
||||
|
||||
# Shut up misguided -w warnings about "used only once":
|
||||
use vars qw(
|
||||
@@ -41,9 +43,6 @@ ConnectToDatabase();
|
||||
|
||||
# If we're using LDAP for login, then we can't create a new account here.
|
||||
if(Param('useLDAP')) {
|
||||
# Just in case someone already has an account, let them get the correct
|
||||
# footer on the error message
|
||||
quietly_check_login();
|
||||
DisplayError("This site is using LDAP for authentication. Please contact
|
||||
an LDAP administrator to get a new account created.",
|
||||
"Can't create LDAP accounts");
|
||||
@@ -60,11 +59,12 @@ Set-Cookie: Bugzilla_logincookie= ; path=$cookiepath; expires=Sun, 30-Jun-80 00:
|
||||
print "Content-Type: text/html\n\n";
|
||||
|
||||
my $login = $::FORM{'login'};
|
||||
my $realname = trim($::FORM{'realname'});
|
||||
|
||||
if (defined($login)) {
|
||||
# We've been asked to create an account.
|
||||
my $realname = trim($::FORM{'realname'});
|
||||
CheckEmailSyntax($login);
|
||||
trick_taint($login);
|
||||
$vars->{'login'} = $login;
|
||||
|
||||
if (!ValidateNewUser($login)) {
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
|
||||
.bz_private { color: darkred ; background : #f3eeee ; }
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
.bz_private { color:darkred }
|
||||
File diff suppressed because it is too large
Load Diff
@@ -23,10 +23,10 @@
|
||||
|
||||
use vars qw(
|
||||
%FORM
|
||||
%legal_product
|
||||
$userid
|
||||
);
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
|
||||
use lib qw(.);
|
||||
@@ -34,8 +34,6 @@ use lib qw(.);
|
||||
require "CGI.pl";
|
||||
|
||||
ConnectToDatabase();
|
||||
quietly_check_login();
|
||||
|
||||
GetVersionTable();
|
||||
|
||||
if (!defined $::FORM{'product'}) {
|
||||
@@ -44,7 +42,7 @@ if (!defined $::FORM{'product'}) {
|
||||
|
||||
if (Param("usebuggroups")) {
|
||||
# OK, now only add products the user can see
|
||||
confirm_login() unless $::userid;
|
||||
confirm_login();
|
||||
foreach my $p (@::legal_product) {
|
||||
if (!GroupExists($p) || UserInGroup($p)) {
|
||||
$products{$p} = $::proddesc{$p};
|
||||
@@ -74,7 +72,7 @@ if (!defined $::FORM{'product'}) {
|
||||
exit;
|
||||
}
|
||||
|
||||
$::FORM{'product'} = (keys %products)[0];
|
||||
$::FORM{'product'} = (keys %::proddesc)[0];
|
||||
}
|
||||
|
||||
my $product = $::FORM{'product'};
|
||||
@@ -85,16 +83,13 @@ my $product = $::FORM{'product'};
|
||||
# which could enable people guessing product names to determine
|
||||
# whether or not certain products exist in Bugzilla, even if they
|
||||
# cannot get any other information about that product.
|
||||
my $product_id = get_product_id($product);
|
||||
|
||||
if (!$product_id) {
|
||||
$::vars->{'product'} = $product;
|
||||
ThrowUserError("invalid_product_name");
|
||||
}
|
||||
grep($product eq $_ , @::legal_product)
|
||||
|| DisplayError("The product name is invalid.")
|
||||
&& exit;
|
||||
|
||||
# Make sure the user is authorized to access this product.
|
||||
if (Param("usebuggroups") && GroupExists($product)) {
|
||||
confirm_login() unless $::userid;
|
||||
if (Param("usebuggroups") && GroupExists($product) && !$::userid) {
|
||||
confirm_login();
|
||||
UserInGroup($product)
|
||||
|| DisplayError("You are not authorized to access that product.")
|
||||
&& exit;
|
||||
@@ -105,9 +100,9 @@ if (Param("usebuggroups") && GroupExists($product)) {
|
||||
######################################################################
|
||||
|
||||
my @components;
|
||||
SendSQL("SELECT name, initialowner, initialqacontact, description FROM " .
|
||||
"components WHERE product_id = $product_id ORDER BY " .
|
||||
"name");
|
||||
SendSQL("SELECT value, initialowner, initialqacontact, description FROM " .
|
||||
"components WHERE program = " . SqlQuote($product) . " ORDER BY " .
|
||||
"value");
|
||||
while (MoreSQLData()) {
|
||||
my ($name, $initialowner, $initialqacontact, $description) =
|
||||
FetchSQLData();
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
||||
# Contributor(s): Gervase Markham <gerv@gerv.net>
|
||||
|
||||
use diagnostics;
|
||||
use strict;
|
||||
use lib ".";
|
||||
|
||||
@@ -36,7 +37,7 @@ quietly_check_login();
|
||||
SendSQL("SELECT keyworddefs.name, keyworddefs.description,
|
||||
COUNT(keywords.bug_id)
|
||||
FROM keyworddefs LEFT JOIN keywords ON keyworddefs.id=keywords.keywordid
|
||||
GROUP BY keyworddefs.id
|
||||
GROUP BY keyworddefs.id, keyworddefs.name, keyworddefs.description, keywords.bug_id
|
||||
ORDER BY keyworddefs.name");
|
||||
|
||||
my @keywords;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -13,8 +13,8 @@ REL="PREVIOUS"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Copyright Information"
|
||||
HREF="copyright.html"></HEAD
|
||||
TITLE="Purpose and Scope of this Guide"
|
||||
HREF="aboutthisguide.html"></HEAD
|
||||
><BODY
|
||||
CLASS="chapter"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -56,7 +56,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="copyright.html"
|
||||
HREF="aboutthisguide.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -79,26 +79,36 @@ CLASS="TOC"
|
||||
></DT
|
||||
><DT
|
||||
>1.1. <A
|
||||
HREF="aboutthisguide.html"
|
||||
>Purpose and Scope of this Guide</A
|
||||
></DT
|
||||
><DT
|
||||
>1.2. <A
|
||||
HREF="copyright.html"
|
||||
>Copyright Information</A
|
||||
></DT
|
||||
><DT
|
||||
>1.2. <A
|
||||
>1.3. <A
|
||||
HREF="disclaimer.html"
|
||||
>Disclaimer</A
|
||||
></DT
|
||||
><DT
|
||||
>1.3. <A
|
||||
>1.4. <A
|
||||
HREF="newversions.html"
|
||||
>New Versions</A
|
||||
></DT
|
||||
><DT
|
||||
>1.4. <A
|
||||
>1.5. <A
|
||||
HREF="credits.html"
|
||||
>Credits</A
|
||||
></DT
|
||||
><DT
|
||||
>1.5. <A
|
||||
>1.6. <A
|
||||
HREF="translations.html"
|
||||
>Translations</A
|
||||
></DT
|
||||
><DT
|
||||
>1.7. <A
|
||||
HREF="conventions.html"
|
||||
>Document Conventions</A
|
||||
></DT
|
||||
@@ -139,7 +149,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="copyright.html"
|
||||
HREF="aboutthisguide.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -159,7 +169,7 @@ VALIGN="top"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Copyright Information</TD
|
||||
>Purpose and Scope of this Guide</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
184
mozilla/webtools/bugzilla/docs/html/aboutthisguide.html
Normal file
184
mozilla/webtools/bugzilla/docs/html/aboutthisguide.html
Normal file
@@ -0,0 +1,184 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Purpose and Scope of this Guide</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Copyright Information"
|
||||
HREF="copyright.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="about.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 1. About This Guide</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="copyright.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="aboutthisguide">1.1. Purpose and Scope of this Guide</H1
|
||||
><P
|
||||
> Bugzilla is simply the best piece of bug-tracking software the
|
||||
world has ever seen. This document is intended to be the
|
||||
comprehensive guide to the installation, administration,
|
||||
maintenance, and use of the Bugzilla bug-tracking system.
|
||||
</P
|
||||
><P
|
||||
> This release of the Bugzilla Guide is the
|
||||
<EM
|
||||
>2.16</EM
|
||||
> release. It is so named that it
|
||||
may match the current version of Bugzilla. The numbering
|
||||
tradition stems from that used for many free software projects,
|
||||
in which <EM
|
||||
>even-numbered</EM
|
||||
> point releases (1.2,
|
||||
1.14, etc.) are considered "stable releases", intended for
|
||||
public consumption; on the other hand,
|
||||
<EM
|
||||
>odd-numbered</EM
|
||||
> point releases (1.3, 2.09,
|
||||
etc.) are considered unstable <EM
|
||||
>development</EM
|
||||
>
|
||||
releases intended for advanced users, systems administrators,
|
||||
developers, and those who enjoy a lot of pain.
|
||||
</P
|
||||
><P
|
||||
> Newer revisions of the Bugzilla Guide follow the numbering
|
||||
conventions of the main-tree Bugzilla releases, available at
|
||||
<A
|
||||
HREF="http://www.bugzilla.org/"
|
||||
TARGET="_top"
|
||||
>http://www.bugzilla.org/</A
|
||||
>. Intermediate releases will have
|
||||
a minor revision number following a period. The current version
|
||||
of Bugzilla, as of this writing (April 2nd, 2002) is 2.16; if
|
||||
something were seriously wrong with that edition of the Guide,
|
||||
subsequent releases would receive an additional dotted-decimal
|
||||
digit to indicate the update (2.16.1, 2.16.2, etc.).
|
||||
Got it? Good.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="about.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="copyright.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>About This Guide</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="about.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Copyright Information</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -10,11 +10,11 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Troubleshooting"
|
||||
HREF="troubleshooting.html"><LINK
|
||||
TITLE="Win32 Installation Notes"
|
||||
HREF="win32.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Bugzilla Configuration"
|
||||
HREF="parameters.html"></HEAD
|
||||
TITLE="Post-Installation Checklist"
|
||||
HREF="postinstall-check.html"></HEAD
|
||||
><BODY
|
||||
CLASS="chapter"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -42,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="troubleshooting.html"
|
||||
HREF="win32.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -56,7 +56,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="parameters.html"
|
||||
HREF="postinstall-check.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -69,7 +69,7 @@ WIDTH="100%"></DIV
|
||||
CLASS="chapter"
|
||||
><H1
|
||||
><A
|
||||
NAME="administration">Chapter 5. Administering Bugzilla</H1
|
||||
NAME="administration">Chapter 4. Administering Bugzilla</H1
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
@@ -78,138 +78,97 @@ CLASS="TOC"
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>5.1. <A
|
||||
HREF="parameters.html"
|
||||
>Bugzilla Configuration</A
|
||||
>4.1. <A
|
||||
HREF="postinstall-check.html"
|
||||
>Post-Installation Checklist</A
|
||||
></DT
|
||||
><DT
|
||||
>5.2. <A
|
||||
>4.2. <A
|
||||
HREF="useradmin.html"
|
||||
>User Administration</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>5.2.1. <A
|
||||
>4.2.1. <A
|
||||
HREF="useradmin.html#defaultuser"
|
||||
>Creating the Default User</A
|
||||
></DT
|
||||
><DT
|
||||
>5.2.2. <A
|
||||
>4.2.2. <A
|
||||
HREF="useradmin.html#manageusers"
|
||||
>Managing Other Users</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>5.3. <A
|
||||
>4.3. <A
|
||||
HREF="programadmin.html"
|
||||
>Product, Component, Milestone, and Version Administration</A
|
||||
>Product, Component, Milestone, and Version
|
||||
Administration</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>5.3.1. <A
|
||||
>4.3.1. <A
|
||||
HREF="programadmin.html#products"
|
||||
>Products</A
|
||||
></DT
|
||||
><DT
|
||||
>5.3.2. <A
|
||||
>4.3.2. <A
|
||||
HREF="programadmin.html#components"
|
||||
>Components</A
|
||||
></DT
|
||||
><DT
|
||||
>5.3.3. <A
|
||||
>4.3.3. <A
|
||||
HREF="programadmin.html#versions"
|
||||
>Versions</A
|
||||
></DT
|
||||
><DT
|
||||
>5.3.4. <A
|
||||
>4.3.4. <A
|
||||
HREF="programadmin.html#milestones"
|
||||
>Milestones</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>5.4. <A
|
||||
HREF="voting.html"
|
||||
>4.3.5. <A
|
||||
HREF="programadmin.html#voting"
|
||||
>Voting</A
|
||||
></DT
|
||||
><DT
|
||||
>5.5. <A
|
||||
HREF="groups.html"
|
||||
>4.3.6. <A
|
||||
HREF="programadmin.html#groups"
|
||||
>Groups and Group Security</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>5.6. <A
|
||||
>4.4. <A
|
||||
HREF="security.html"
|
||||
>Bugzilla Security</A
|
||||
></DT
|
||||
><DT
|
||||
>5.7. <A
|
||||
HREF="cust-templates.html"
|
||||
>Template Customisation</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>5.7.1. <A
|
||||
HREF="cust-templates.html#AEN1539"
|
||||
>What to Edit</A
|
||||
></DT
|
||||
><DT
|
||||
>5.7.2. <A
|
||||
HREF="cust-templates.html#AEN1558"
|
||||
>How To Edit Templates</A
|
||||
></DT
|
||||
><DT
|
||||
>5.7.3. <A
|
||||
HREF="cust-templates.html#AEN1568"
|
||||
>Template Formats</A
|
||||
></DT
|
||||
><DT
|
||||
>5.7.4. <A
|
||||
HREF="cust-templates.html#AEN1581"
|
||||
>Particular Templates</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>5.8. <A
|
||||
HREF="upgrading.html"
|
||||
>Upgrading to New Releases</A
|
||||
></DT
|
||||
><DT
|
||||
>5.9. <A
|
||||
HREF="integration.html"
|
||||
>Integrating Bugzilla with Third-Party Tools</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>5.9.1. <A
|
||||
HREF="integration.html#bonsai"
|
||||
>Bonsai</A
|
||||
></DT
|
||||
><DT
|
||||
>5.9.2. <A
|
||||
HREF="integration.html#cvs"
|
||||
>CVS</A
|
||||
></DT
|
||||
><DT
|
||||
>5.9.3. <A
|
||||
HREF="integration.html#scm"
|
||||
>Perforce SCM</A
|
||||
></DT
|
||||
><DT
|
||||
>5.9.4. <A
|
||||
HREF="integration.html#tinderbox"
|
||||
>Tinderbox/Tinderbox2</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
><FONT
|
||||
COLOR="RED"
|
||||
> Or, I just got this cool thing installed. Now what the heck do I
|
||||
do with it?
|
||||
</FONT
|
||||
><P
|
||||
> So you followed <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"<A
|
||||
HREF="installation.html"
|
||||
>Bugzilla Installation</A
|
||||
>"</SPAN
|
||||
> to the
|
||||
letter, and logged into Bugzilla for the very first time with your
|
||||
super-duper god account. You sit, contentedly staring at the
|
||||
Bugzilla Query Screen, the worst of the whole mad business of
|
||||
installing this terrific program behind you. It seems, though, you
|
||||
have nothing yet to query! Your first act of business should be to
|
||||
setup the operating parameters for Bugzilla so you can get busy
|
||||
getting data into your bug tracker.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -227,7 +186,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="troubleshooting.html"
|
||||
HREF="win32.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -245,7 +204,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="parameters.html"
|
||||
HREF="postinstall-check.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -255,7 +214,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Troubleshooting</TD
|
||||
>Win32 Installation Notes</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -265,7 +224,7 @@ VALIGN="top"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Bugzilla Configuration</TD
|
||||
>Post-Installation Checklist</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
160
mozilla/webtools/bugzilla/docs/html/bonsai.html
Normal file
160
mozilla/webtools/bugzilla/docs/html/bonsai.html
Normal file
@@ -0,0 +1,160 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Bonsai</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="CVS"
|
||||
HREF="cvs.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Integrating Bugzilla with Third-Party Tools</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cvs.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="bonsai">5.1. Bonsai</H1
|
||||
><P
|
||||
>Bonsai is a web-based tool for managing <A
|
||||
HREF="cvs.html"
|
||||
>CVS, the Concurrent Versioning System</A
|
||||
>
|
||||
. Using Bonsai, administrators can control open/closed status
|
||||
of trees, query a fast relational database back-end for change,
|
||||
branch, and comment information, and view changes made since the
|
||||
last time the tree was closed. These kinds of changes cause the
|
||||
engineer responsible to be <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"on the hook"</SPAN
|
||||
> (include
|
||||
cool URL link here for Hook policies at mozilla.org). Bonsai
|
||||
also includes gateways to <A
|
||||
HREF="tinderbox.html"
|
||||
>Tinderbox, the Mozilla automated build management system</A
|
||||
> and Bugzilla </P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cvs.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Integrating Bugzilla with Third-Party Tools</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>CVS</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
149
mozilla/webtools/bugzilla/docs/html/bsdinstall.html
Normal file
149
mozilla/webtools/bugzilla/docs/html/bsdinstall.html
Normal file
@@ -0,0 +1,149 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>BSD Installation Notes</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Mac OS X Installation Notes"
|
||||
HREF="osx.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Installation General Notes"
|
||||
HREF="geninstall.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="osx.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 3. Installation</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="geninstall.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="bsdinstall">3.4. BSD Installation Notes</H1
|
||||
><P
|
||||
> For instructions on how to set up Bugzilla on FreeBSD, NetBSD, OpenBSD, BSDi, etc. please
|
||||
consult <A
|
||||
HREF="osx.html"
|
||||
>Section 3.3</A
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="osx.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="geninstall.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Mac OS X Installation Notes</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Installation General Notes</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
492
mozilla/webtools/bugzilla/docs/html/bzhacking.html
Normal file
492
mozilla/webtools/bugzilla/docs/html/bzhacking.html
Normal file
@@ -0,0 +1,492 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Hacking Bugzilla</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="The Quicksearch Utility"
|
||||
HREF="quicksearch.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="quicksearch.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Useful Patches and Utilities for Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="bzhacking">D.5. Hacking Bugzilla</H1
|
||||
><P
|
||||
> The following is a guide for reviewers when checking code into Bugzilla's
|
||||
CVS repostory at mozilla.org. If you wish to submit patches to Bugzilla,
|
||||
you should follow the rules and style conventions below. Any code that
|
||||
does not adhere to these basic rules will not be added to Bugzilla's
|
||||
codebase.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN2436">D.5.1. Things that have caused problems and should be avoided</H2
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> Usage of variables in Regular Expressions
|
||||
</P
|
||||
><P
|
||||
> It is very important that you don't use a variable in a regular
|
||||
expression unless that variable is supposed to contain an expression.
|
||||
This especially applies when using grep. You should use:
|
||||
</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> grep ($_ eq $value, @array);
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> -- NOT THIS --
|
||||
</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> grep (/$value/, @array);
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> If you need to use a non-expression variable inside of an expression, be
|
||||
sure to quote it properly (using <TT
|
||||
CLASS="function"
|
||||
>\Q..\E</TT
|
||||
>).
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN2450">D.5.2. Coding Style for Bugzilla</H2
|
||||
><P
|
||||
> While it's true that not all of the code currently in Bugzilla adheres to
|
||||
this (or any) styleguide, it is something that is being worked toward. Therefore,
|
||||
we ask that all new code (submitted patches and new files) follow this guide
|
||||
as closely as possible (if you're only changing 1 or 2 lines, you don't have
|
||||
to reformat the entire file :).
|
||||
</P
|
||||
><P
|
||||
> The Bugzilla development team has decided to adopt the perl style guide as
|
||||
published by Larry Wall. This giude can be found in <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Programming
|
||||
Perl"</SPAN
|
||||
> (the camel book) or by typing <B
|
||||
CLASS="command"
|
||||
>man perlstyle</B
|
||||
> at
|
||||
your favorite shell prompt.
|
||||
</P
|
||||
><P
|
||||
> What appears below if a brief summary, please refer to the perl style
|
||||
guide if you don't see your question covered here. It is much better to submit
|
||||
a patch which fails these criteria than no patch at all, but please try to meet
|
||||
these minimum standards when submitting code to Bugzilla.
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
><UL
|
||||
><LI
|
||||
><P
|
||||
> Whitespace
|
||||
</P
|
||||
><P
|
||||
> Bugzilla's preferred indentation is 4 spaces (no tabs, please).
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Curly braces.
|
||||
</P
|
||||
><P
|
||||
> The opening brace of a block should be on the same line as the statement
|
||||
that is causing the block and the closing brace should be at the same
|
||||
indentation level as that statement, for example:
|
||||
</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> if ($var) {
|
||||
print "The variable is true";
|
||||
}
|
||||
else {
|
||||
print "Try again";
|
||||
}
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> -- NOT THIS --
|
||||
</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> if ($var)
|
||||
{
|
||||
print "The variable is true";
|
||||
}
|
||||
else
|
||||
{
|
||||
print "Try again";
|
||||
}
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Cookies
|
||||
</P
|
||||
><P
|
||||
> Bugzilla uses cookies to ease the user experience, but no new patches
|
||||
should <EM
|
||||
>require</EM
|
||||
> user-side cookies.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> File Names
|
||||
</P
|
||||
><P
|
||||
> File names for bugzilla code and support documention should be legal across
|
||||
multiple platforms. <TT
|
||||
CLASS="computeroutput"
|
||||
>\ / : * ? " < ></TT
|
||||
>
|
||||
and <TT
|
||||
CLASS="computeroutput"
|
||||
>|</TT
|
||||
> are all illegal characters for filenames
|
||||
on various platforms. Also, file names should not have spaces in them as they
|
||||
can cause confusion in CVS and other mozilla.org utilities.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Javascript dependencies
|
||||
</P
|
||||
><P
|
||||
> While Bugzilla uses Javascript to make the user experience easier, no patch
|
||||
to Bugzilla should <EM
|
||||
>require</EM
|
||||
> Javascript.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Patch Format
|
||||
</P
|
||||
><P
|
||||
> All patches submitted for inclusion into Bugzilla should be in the form of a
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"unified diff"</SPAN
|
||||
>. This comes from using <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"diff -u"</SPAN
|
||||
>
|
||||
instead of simply <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"diff"</SPAN
|
||||
> when creating your patch. This will
|
||||
result in quicker acceptance of the patch.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Schema Changes
|
||||
</P
|
||||
><P
|
||||
> If you make schema changes, you should modify <TT
|
||||
CLASS="filename"
|
||||
>sanitycheck.cgi</TT
|
||||
>
|
||||
to support the new schema. All referential columns should be checked.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Taint Mode
|
||||
</P
|
||||
><P
|
||||
> All new cgis must run in Taint mode (Perl taint and DBI taint), and existing cgi's
|
||||
which run in taint mode must not have taint mode turned off.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Templatization
|
||||
</P
|
||||
><P
|
||||
> Patches to Bugzilla need to support templates so they do not force user interface choices
|
||||
on Bugzilla administrators.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Variable Names
|
||||
</P
|
||||
><P
|
||||
> If a variable is scoped globally (<TT
|
||||
CLASS="computeroutput"
|
||||
>$::variable</TT
|
||||
>)
|
||||
its name should be descriptive of what it contains. Local variables can be named
|
||||
a bit looser, provided the context makes their content obvious. For example,
|
||||
<TT
|
||||
CLASS="computeroutput"
|
||||
>$ret</TT
|
||||
> could be used as a staging variable for a
|
||||
routine's return value as the line <TT
|
||||
CLASS="computeroutput"
|
||||
>return $ret;</TT
|
||||
>
|
||||
will make it blatantly obvious what the variable holds and most likely be shown
|
||||
on the same screen as <TT
|
||||
CLASS="computeroutput"
|
||||
>my $ret = "";</TT
|
||||
>.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Cross Database Compatability
|
||||
</P
|
||||
><P
|
||||
> Bugzilla was originally written to work with MySQL and therefore took advantage
|
||||
of some of its features that aren't contained in other RDBMS software. These
|
||||
should be avoided in all new code. Examples of these features are enums and
|
||||
<TT
|
||||
CLASS="function"
|
||||
>encrypt()</TT
|
||||
>.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Cross Platform Compatability
|
||||
</P
|
||||
><P
|
||||
> While Bugzilla was written to be used on Unix based systems (and Unix/Linux is
|
||||
still the only officially supported platform) there are many who desire/need to
|
||||
run Bugzilla on Microsoft Windows boxes. Whenever possible, we should strive
|
||||
not to make the lives of these people any more complicated and avoid doing things
|
||||
that break Bugzilla's ability to run on multiple operating systems.
|
||||
</P
|
||||
></LI
|
||||
></UL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="quicksearch.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>The Quicksearch Utility</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>GNU Free Documentation License</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -13,14 +13,11 @@ REL="UP"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Apache
|
||||
mod_rewrite
|
||||
|
||||
magic"
|
||||
HREF="rewrite.html"><LINK
|
||||
TITLE="The setperl.csh Utility"
|
||||
HREF="setperl.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Bugzilla Variants and Competitors"
|
||||
HREF="variants.html"></HEAD
|
||||
TITLE="The Quicksearch Utility"
|
||||
HREF="quicksearch.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -48,7 +45,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="rewrite.html"
|
||||
HREF="setperl.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -56,13 +53,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix C. Useful Patches and Utilities for Bugzilla</TD
|
||||
>Appendix D. Useful Patches and Utilities for Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="variants.html"
|
||||
HREF="quicksearch.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -76,80 +73,134 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="cmdline">C.2. Command-line Bugzilla Queries</H1
|
||||
NAME="cmdline">D.3. Command-line Bugzilla Queries</H1
|
||||
><P
|
||||
>There are a suite of Unix utilities for querying Bugzilla from the
|
||||
command line. They live in the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>contrib/cmdline</TT
|
||||
>
|
||||
directory. However, they
|
||||
have not yet been updated to work with 2.16 (post-templatisation.).
|
||||
There are three files - <TT
|
||||
CLASS="filename"
|
||||
>query.conf</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>buglist</TT
|
||||
> and <TT
|
||||
CLASS="filename"
|
||||
>bugs</TT
|
||||
>.</P
|
||||
> Users can query Bugzilla from the command line using this suite
|
||||
of utilities.
|
||||
</P
|
||||
><P
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>query.conf</TT
|
||||
>
|
||||
contains the mapping from options to field
|
||||
names and comparison types. Quoted option names are "grepped" for, so it
|
||||
should be easy to edit this file. Comments (#) have no effect; you must
|
||||
make sure these lines do not contain any quoted "option".</P
|
||||
> The query.conf file contains the mapping from options to field
|
||||
names and comparison types. Quoted option names are "grepped"
|
||||
for, so it should be easy to edit this file. Comments (#) have
|
||||
no effect; you must make sure these lines do not contain any
|
||||
quoted "option"
|
||||
</P
|
||||
><P
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>buglist</TT
|
||||
>
|
||||
is a shell script which submits a Bugzilla query and writes
|
||||
the resulting HTML page to stdout. It supports both short options, (such
|
||||
as "-Afoo" or "-Rbar") and long options (such as "--assignedto=foo" or
|
||||
"--reporter=bar"). If the first character of an option is not "-", it is
|
||||
treated as if it were prefixed with "--default=".</P
|
||||
> buglist is a shell script which submits a Bugzilla query and
|
||||
writes the resulting HTML page to stdout. It supports both
|
||||
short options, (such as "-Afoo" or "-Rbar") and long options
|
||||
(such as "--assignedto=foo" or "--reporter=bar"). If the first
|
||||
character of an option is not "-", it is treated as if it were
|
||||
prefixed with "--default=".
|
||||
</P
|
||||
><P
|
||||
>The column list is taken from the COLUMNLIST environment variable.
|
||||
This is equivalent to the "Change Columns" option when you list bugs in
|
||||
buglist.cgi. If you have already used Bugzilla, grep for COLUMNLIST
|
||||
in your cookies file to see your current COLUMNLIST setting.</P
|
||||
><P
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>bugs</TT
|
||||
> is a simple shell script which calls
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>buglist</TT
|
||||
> and extracts the
|
||||
bug numbers from the output. Adding the prefix
|
||||
"http://bugzilla.mozilla.org/buglist.cgi?bug_id=" turns the bug list into
|
||||
a working link if any bugs are found. Counting bugs is easy. Pipe the
|
||||
results through
|
||||
<B
|
||||
> The columlist is taken from the COLUMNLIST environment variable.
|
||||
This is equivalent to the "Change Columns" option when you list
|
||||
bugs in buglist.cgi. If you have already used Bugzilla, use
|
||||
<B
|
||||
CLASS="command"
|
||||
>sed -e 's/,/ /g' | wc | awk '{printf $2 "\n"}'</B
|
||||
>grep COLUMLIST ~/.netscape/cookies</B
|
||||
> to see
|
||||
your current COLUMNLIST setting.
|
||||
</P
|
||||
><P
|
||||
> bugs is a simple shell script which calls buglist and extracts
|
||||
the bug numbers from the output. Adding the prefix
|
||||
"http://bugzilla.mozilla.org/buglist.cgi?bug_id=" turns the bug
|
||||
list into a working link if any bugs are found. Counting bugs is
|
||||
easy. Pipe the results through <B
|
||||
CLASS="command"
|
||||
>sed -e 's/,/ /g' | wc |
|
||||
awk '{printf $2 "\n"}'</B
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>Akkana Peck says she has good results piping
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>buglist</TT
|
||||
> output through
|
||||
<B
|
||||
> Akkana says she has good results piping buglist output through
|
||||
<B
|
||||
CLASS="command"
|
||||
>w3m -T text/html -dump</B
|
||||
>
|
||||
</P
|
||||
><DIV
|
||||
CLASS="procedure"
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> Download three files:
|
||||
</P
|
||||
><OL
|
||||
CLASS="SUBSTEPS"
|
||||
TYPE="a"
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash$</TT
|
||||
> <B
|
||||
CLASS="command"
|
||||
>wget -O
|
||||
query.conf
|
||||
'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26157'</B
|
||||
> </TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash$</TT
|
||||
> <B
|
||||
CLASS="command"
|
||||
>wget -O
|
||||
buglist
|
||||
'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26944'</B
|
||||
> </TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
> <B
|
||||
CLASS="command"
|
||||
>wget -O
|
||||
bugs
|
||||
'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26215'</B
|
||||
> </TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Make your utilities executable:
|
||||
<TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash$</TT
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>chmod u+x buglist bugs</B
|
||||
>
|
||||
</TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -167,7 +218,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="rewrite.html"
|
||||
HREF="setperl.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -185,7 +236,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="variants.html"
|
||||
HREF="quicksearch.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -195,13 +246,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Apache
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
>
|
||||
|
||||
magic</TD
|
||||
>The setperl.csh Utility</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -215,7 +260,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Bugzilla Variants and Competitors</TD
|
||||
>The Quicksearch Utility</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
150
mozilla/webtools/bugzilla/docs/html/contributors.html
Normal file
150
mozilla/webtools/bugzilla/docs/html/contributors.html
Normal file
@@ -0,0 +1,150 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Contributors</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Credits"
|
||||
HREF="credits.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Feedback"
|
||||
HREF="feedback.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="credits.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 1. About This Guide</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="feedback.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="contributors">1.6. Contributors</H1
|
||||
><P
|
||||
> Thanks go to these people for significant contributions to this
|
||||
documentation (in no particular order):
|
||||
</P
|
||||
><P
|
||||
> Andrew Pearson, Spencer Smith, Eric Hanson, Kevin Brannen, Ron
|
||||
Teitelbaum, Jacob Steenhagen, Joe Robins
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="credits.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="feedback.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Credits</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="about.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Feedback</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -13,11 +13,11 @@ REL="UP"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Credits"
|
||||
HREF="credits.html"><LINK
|
||||
TITLE="Translations"
|
||||
HREF="translations.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Introduction"
|
||||
HREF="introduction.html"></HEAD
|
||||
TITLE="Using Bugzilla"
|
||||
HREF="using.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -45,7 +45,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="credits.html"
|
||||
HREF="translations.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -59,7 +59,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="introduction.html"
|
||||
HREF="using.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,13 +73,14 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="conventions">1.5. Document Conventions</H1
|
||||
NAME="conventions">1.7. Document Conventions</H1
|
||||
><P
|
||||
>This document uses the following conventions:</P
|
||||
> This document uses the following conventions
|
||||
</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN178"><P
|
||||
NAME="AEN91"><P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
@@ -105,7 +106,7 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <DIV
|
||||
><DIV
|
||||
CLASS="caution"
|
||||
><P
|
||||
></P
|
||||
@@ -131,8 +132,7 @@ VALIGN="TOP"
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -142,7 +142,7 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <DIV
|
||||
><DIV
|
||||
CLASS="tip"
|
||||
><P
|
||||
></P
|
||||
@@ -163,13 +163,12 @@ ALT="Tip"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Would you like a breath mint?</P
|
||||
>Warm jar lids under the hot tap to loosen them.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -179,7 +178,7 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <DIV
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
@@ -205,8 +204,7 @@ VALIGN="TOP"
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -216,7 +214,7 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <DIV
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
></P
|
||||
@@ -242,8 +240,7 @@ VALIGN="TOP"
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -253,11 +250,10 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>filename</TT
|
||||
>
|
||||
</TD
|
||||
>file.extension</TT
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -267,11 +263,10 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>directory</TT
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -281,11 +276,10 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <B
|
||||
><B
|
||||
CLASS="command"
|
||||
>command</B
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -295,22 +289,19 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="application"
|
||||
>application</SPAN
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <I
|
||||
><I
|
||||
CLASS="foreignphrase"
|
||||
>Prompt</I
|
||||
>
|
||||
|
||||
of users command under bash shell</TD
|
||||
> of users command under bash shell</TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
@@ -320,12 +311,10 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <I
|
||||
><I
|
||||
CLASS="foreignphrase"
|
||||
>Prompt</I
|
||||
>
|
||||
|
||||
of root users command under bash shell</TD
|
||||
> of root users command under bash shell</TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
@@ -335,12 +324,10 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <I
|
||||
><I
|
||||
CLASS="foreignphrase"
|
||||
>Prompt</I
|
||||
>
|
||||
|
||||
of user command under tcsh shell</TD
|
||||
> of user command under tcsh shell</TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
@@ -354,11 +341,10 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="envar"
|
||||
>VARIABLE</TT
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -368,10 +354,9 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <EM
|
||||
><EM
|
||||
>word</EM
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
@@ -381,7 +366,7 @@ VALIGN="MIDDLE"
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="MIDDLE"
|
||||
> <TABLE
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
@@ -394,9 +379,7 @@ CLASS="programlisting"
|
||||
><TT
|
||||
CLASS="sgmltag"
|
||||
><para></TT
|
||||
>
|
||||
Beginning and end of paragraph
|
||||
<TT
|
||||
>Beginning and end of paragraph<TT
|
||||
CLASS="sgmltag"
|
||||
></para></TT
|
||||
></PRE
|
||||
@@ -404,8 +387,7 @@ CLASS="sgmltag"
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
@@ -429,7 +411,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="credits.html"
|
||||
HREF="translations.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -447,7 +429,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="introduction.html"
|
||||
HREF="using.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -457,7 +439,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Credits</TD
|
||||
>Translations</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -471,7 +453,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Introduction</TD
|
||||
>Using Bugzilla</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -13,8 +13,8 @@ REL="UP"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
TITLE="Purpose and Scope of this Guide"
|
||||
HREF="aboutthisguide.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Disclaimer"
|
||||
HREF="disclaimer.html"></HEAD
|
||||
@@ -45,7 +45,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="about.html"
|
||||
HREF="aboutthisguide.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -73,9 +73,9 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="copyright">1.1. Copyright Information</H1
|
||||
NAME="copyright">1.2. Copyright Information</H1
|
||||
><A
|
||||
NAME="AEN31"><TABLE
|
||||
NAME="AEN39"><TABLE
|
||||
BORDER="0"
|
||||
WIDTH="100%"
|
||||
CELLSPACING="0"
|
||||
@@ -95,7 +95,8 @@ VALIGN="TOP"
|
||||
License, Version 1.1 or any later version published by the
|
||||
Free Software Foundation; with no Invariant Sections, no
|
||||
Front-Cover Texts, and with no Back-Cover Texts. A copy of
|
||||
the license is included below.
|
||||
the license is included in the section entitled "GNU Free
|
||||
Documentation License".
|
||||
</P
|
||||
></TD
|
||||
><TD
|
||||
@@ -122,477 +123,6 @@ WIDTH="10%"
|
||||
copyright, or publishing this document in non-electronic form,
|
||||
please contact The Bugzilla Team.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl">1.1.1. GNU Free Documentation License</H2
|
||||
><P
|
||||
>Version 1.1, March 2000</P
|
||||
><A
|
||||
NAME="AEN38"><BLOCKQUOTE
|
||||
CLASS="BLOCKQUOTE"
|
||||
><P
|
||||
>Copyright (C) 2000 Free Software Foundation, Inc. 59 Temple Place,
|
||||
Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and
|
||||
distribute verbatim copies of this license document, but changing it is
|
||||
not allowed.</P
|
||||
></BLOCKQUOTE
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-0">0. PREAMBLE</H3
|
||||
><P
|
||||
>The purpose of this License is to make a manual, textbook, or other
|
||||
written document "free" in the sense of freedom: to assure everyone the
|
||||
effective freedom to copy and redistribute it, with or without modifying
|
||||
it, either commercially or noncommercially. Secondarily, this License
|
||||
preserves for the author and publisher a way to get credit for their
|
||||
work, while not being considered responsible for modifications made by
|
||||
others.</P
|
||||
><P
|
||||
>This License is a kind of "copyleft", which means that derivative
|
||||
works of the document must themselves be free in the same sense. It
|
||||
complements the GNU General Public License, which is a copyleft license
|
||||
designed for free software.</P
|
||||
><P
|
||||
>We have designed this License in order to use it for manuals for
|
||||
free software, because free software needs free documentation: a free
|
||||
program should come with manuals providing the same freedoms that the
|
||||
software does. But this License is not limited to software manuals; it
|
||||
can be used for any textual work, regardless of subject matter or whether
|
||||
it is published as a printed book. We recommend this License principally
|
||||
for works whose purpose is instruction or reference.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-1">1. APPLICABILITY AND DEFINITIONS</H3
|
||||
><P
|
||||
>This License applies to any manual or other work that contains a
|
||||
notice placed by the copyright holder saying it can be distributed under
|
||||
the terms of this License. The "Document", below, refers to any such
|
||||
manual or work. Any member of the public is a licensee, and is addressed
|
||||
as "you".</P
|
||||
><P
|
||||
>A "Modified Version" of the Document means any work containing the
|
||||
Document or a portion of it, either copied verbatim, or with
|
||||
modifications and/or translated into another language.</P
|
||||
><P
|
||||
>A "Secondary Section" is a named appendix or a front-matter section
|
||||
of the Document that deals exclusively with the relationship of the
|
||||
publishers or authors of the Document to the Document's overall subject
|
||||
(or to related matters) and contains nothing that could fall directly
|
||||
within that overall subject. (For example, if the Document is in part a
|
||||
textbook of mathematics, a Secondary Section may not explain any
|
||||
mathematics.) The relationship could be a matter of historical connection
|
||||
with the subject or with related matters, or of legal, commercial,
|
||||
philosophical, ethical or political position regarding them.</P
|
||||
><P
|
||||
>The "Invariant Sections" are certain Secondary Sections whose
|
||||
titles are designated, as being those of Invariant Sections, in the
|
||||
notice that says that the Document is released under this License.</P
|
||||
><P
|
||||
>The "Cover Texts" are certain short passages of text that are
|
||||
listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says
|
||||
that the Document is released under this License.</P
|
||||
><P
|
||||
>A "Transparent" copy of the Document means a machine-readable copy,
|
||||
represented in a format whose specification is available to the general
|
||||
public, whose contents can be viewed and edited directly and
|
||||
straightforwardly with generic text editors or (for images composed of
|
||||
pixels) generic paint programs or (for drawings) some widely available
|
||||
drawing editor, and that is suitable for input to text formatters or for
|
||||
automatic translation to a variety of formats suitable for input to text
|
||||
formatters. A copy made in an otherwise Transparent file format whose
|
||||
markup has been designed to thwart or discourage subsequent modification
|
||||
by readers is not Transparent. A copy that is not "Transparent" is called
|
||||
"Opaque".</P
|
||||
><P
|
||||
>Examples of suitable formats for Transparent copies include plain
|
||||
ASCII without markup, Texinfo input format, LaTeX input format, SGML or
|
||||
XML using a publicly available DTD, and standard-conforming simple HTML
|
||||
designed for human modification. Opaque formats include PostScript, PDF,
|
||||
proprietary formats that can be read and edited only by proprietary word
|
||||
processors, SGML or XML for which the DTD and/or processing tools are not
|
||||
generally available, and the machine-generated HTML produced by some word
|
||||
processors for output purposes only.</P
|
||||
><P
|
||||
>The "Title Page" means, for a printed book, the title page itself,
|
||||
plus such following pages as are needed to hold, legibly, the material
|
||||
this License requires to appear in the title page. For works in formats
|
||||
which do not have any title page as such, "Title Page" means the text
|
||||
near the most prominent appearance of the work's title, preceding the
|
||||
beginning of the body of the text.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-2">2. VERBATIM COPYING</H3
|
||||
><P
|
||||
>You may copy and distribute the Document in any medium, either
|
||||
commercially or noncommercially, provided that this License, the
|
||||
copyright notices, and the license notice saying this License applies to
|
||||
the Document are reproduced in all copies, and that you add no other
|
||||
conditions whatsoever to those of this License. You may not use technical
|
||||
measures to obstruct or control the reading or further copying of the
|
||||
copies you make or distribute. However, you may accept compensation in
|
||||
exchange for copies. If you distribute a large enough number of copies
|
||||
you must also follow the conditions in section 3.</P
|
||||
><P
|
||||
>You may also lend copies, under the same conditions stated above,
|
||||
and you may publicly display copies.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-3">3. COPYING IN QUANTITY</H3
|
||||
><P
|
||||
>If you publish printed copies of the Document numbering more than
|
||||
100, and the Document's license notice requires Cover Texts, you must
|
||||
enclose the copies in covers that carry, clearly and legibly, all these
|
||||
Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts
|
||||
on the back cover. Both covers must also clearly and legibly identify you
|
||||
as the publisher of these copies. The front cover must present the full
|
||||
title with all words of the title equally prominent and visible. You may
|
||||
add other material on the covers in addition. Copying with changes
|
||||
limited to the covers, as long as they preserve the title of the Document
|
||||
and satisfy these conditions, can be treated as verbatim copying in other
|
||||
respects.</P
|
||||
><P
|
||||
>If the required texts for either cover are too voluminous to fit
|
||||
legibly, you should put the first ones listed (as many as fit reasonably)
|
||||
on the actual cover, and continue the rest onto adjacent pages.</P
|
||||
><P
|
||||
>If you publish or distribute Opaque copies of the Document
|
||||
numbering more than 100, you must either include a machine-readable
|
||||
Transparent copy along with each Opaque copy, or state in or with each
|
||||
Opaque copy a publicly-accessible computer-network location containing a
|
||||
complete Transparent copy of the Document, free of added material, which
|
||||
the general network-using public has access to download anonymously at no
|
||||
charge using public-standard network protocols. If you use the latter
|
||||
option, you must take reasonably prudent steps, when you begin
|
||||
distribution of Opaque copies in quantity, to ensure that this
|
||||
Transparent copy will remain thus accessible at the stated location until
|
||||
at least one year after the last time you distribute an Opaque copy
|
||||
(directly or through your agents or retailers) of that edition to the
|
||||
public.</P
|
||||
><P
|
||||
>It is requested, but not required, that you contact the authors of
|
||||
the Document well before redistributing any large number of copies, to
|
||||
give them a chance to provide you with an updated version of the
|
||||
Document.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-4">4. MODIFICATIONS</H3
|
||||
><P
|
||||
>You may copy and distribute a Modified Version of the Document
|
||||
under the conditions of sections 2 and 3 above, provided that you release
|
||||
the Modified Version under precisely this License, with the Modified
|
||||
Version filling the role of the Document, thus licensing distribution and
|
||||
modification of the Modified Version to whoever possesses a copy of it.
|
||||
In addition, you must do these things in the Modified Version:</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="A"
|
||||
><LI
|
||||
><P
|
||||
>Use in the Title Page (and on the covers, if any) a title
|
||||
distinct from that of the Document, and from those of previous
|
||||
versions (which should, if there were any, be listed in the History
|
||||
section of the Document). You may use the same title as a previous
|
||||
version if the original publisher of that version gives
|
||||
permission.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>List on the Title Page, as authors, one or more persons or
|
||||
entities responsible for authorship of the modifications in the
|
||||
Modified Version, together with at least five of the principal
|
||||
authors of the Document (all of its principal authors, if it has less
|
||||
than five).</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>State on the Title page the name of the publisher of the
|
||||
Modified Version, as the publisher.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve all the copyright notices of the Document.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Add an appropriate copyright notice for your modifications
|
||||
adjacent to the other copyright notices.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Include, immediately after the copyright notices, a license
|
||||
notice giving the public permission to use the Modified Version under
|
||||
the terms of this License, in the form shown in the Addendum
|
||||
below.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve in that license notice the full lists of Invariant
|
||||
Sections and required Cover Texts given in the Document's license
|
||||
notice.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Include an unaltered copy of this License.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve the section entitled "History", and its title, and add
|
||||
to it an item stating at least the title, year, new authors, and
|
||||
publisher of the Modified Version as given on the Title Page. If
|
||||
there is no section entitled "History" in the Document, create one
|
||||
stating the title, year, authors, and publisher of the Document as
|
||||
given on its Title Page, then add an item describing the Modified
|
||||
Version as stated in the previous sentence.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve the network location, if any, given in the Document
|
||||
for public access to a Transparent copy of the Document, and likewise
|
||||
the network locations given in the Document for previous versions it
|
||||
was based on. These may be placed in the "History" section. You may
|
||||
omit a network location for a work that was published at least four
|
||||
years before the Document itself, or if the original publisher of the
|
||||
version it refers to gives permission.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>In any section entitled "Acknowledgements" or "Dedications",
|
||||
preserve the section's title, and preserve in the section all the
|
||||
substance and tone of each of the contributor acknowledgements and/or
|
||||
dedications given therein.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve all the Invariant Sections of the Document, unaltered
|
||||
in their text and in their titles. Section numbers or the equivalent
|
||||
are not considered part of the section titles.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Delete any section entitled "Endorsements". Such a section may
|
||||
not be included in the Modified Version.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Do not retitle any existing section as "Endorsements" or to
|
||||
conflict in title with any Invariant Section.</P
|
||||
></LI
|
||||
></OL
|
||||
><P
|
||||
>If the Modified Version includes new front-matter sections or
|
||||
appendices that qualify as Secondary Sections and contain no material
|
||||
copied from the Document, you may at your option designate some or all of
|
||||
these sections as invariant. To do this, add their titles to the list of
|
||||
Invariant Sections in the Modified Version's license notice. These titles
|
||||
must be distinct from any other section titles.</P
|
||||
><P
|
||||
>You may add a section entitled "Endorsements", provided it contains
|
||||
nothing but endorsements of your Modified Version by various parties--for
|
||||
example, statements of peer review or that the text has been approved by
|
||||
an organization as the authoritative definition of a standard.</P
|
||||
><P
|
||||
>You may add a passage of up to five words as a Front-Cover Text,
|
||||
and a passage of up to 25 words as a Back-Cover Text, to the end of the
|
||||
list of Cover Texts in the Modified Version. Only one passage of
|
||||
Front-Cover Text and one of Back-Cover Text may be added by (or through
|
||||
arrangements made by) any one entity. If the Document already includes a
|
||||
cover text for the same cover, previously added by you or by arrangement
|
||||
made by the same entity you are acting on behalf of, you may not add
|
||||
another; but you may replace the old one, on explicit permission from the
|
||||
previous publisher that added the old one.</P
|
||||
><P
|
||||
>The author(s) and publisher(s) of the Document do not by this
|
||||
License give permission to use their names for publicity for or to assert
|
||||
or imply endorsement of any Modified Version.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-5">5. COMBINING DOCUMENTS</H3
|
||||
><P
|
||||
>You may combine the Document with other documents released under
|
||||
this License, under the terms defined in section 4 above for modified
|
||||
versions, provided that you include in the combination all of the
|
||||
Invariant Sections of all of the original documents, unmodified, and list
|
||||
them all as Invariant Sections of your combined work in its license
|
||||
notice.</P
|
||||
><P
|
||||
>The combined work need only contain one copy of this License, and
|
||||
multiple identical Invariant Sections may be replaced with a single copy.
|
||||
If there are multiple Invariant Sections with the same name but different
|
||||
contents, make the title of each such section unique by adding at the end
|
||||
of it, in parentheses, the name of the original author or publisher of
|
||||
that section if known, or else a unique number. Make the same adjustment
|
||||
to the section titles in the list of Invariant Sections in the license
|
||||
notice of the combined work.</P
|
||||
><P
|
||||
>In the combination, you must combine any sections entitled
|
||||
"History" in the various original documents, forming one section entitled
|
||||
"History"; likewise combine any sections entitled "Acknowledgements", and
|
||||
any sections entitled "Dedications". You must delete all sections
|
||||
entitled "Endorsements."</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-6">6. COLLECTIONS OF DOCUMENTS</H3
|
||||
><P
|
||||
>You may make a collection consisting of the Document and other
|
||||
documents released under this License, and replace the individual copies
|
||||
of this License in the various documents with a single copy that is
|
||||
included in the collection, provided that you follow the rules of this
|
||||
License for verbatim copying of each of the documents in all other
|
||||
respects.</P
|
||||
><P
|
||||
>You may extract a single document from such a collection, and
|
||||
distribute it individually under this License, provided you insert a copy
|
||||
of this License into the extracted document, and follow this License in
|
||||
all other respects regarding verbatim copying of that document.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-7">7. AGGREGATION WITH INDEPENDENT WORKS</H3
|
||||
><P
|
||||
>A compilation of the Document or its derivatives with other
|
||||
separate and independent documents or works, in or on a volume of a
|
||||
storage or distribution medium, does not as a whole count as a Modified
|
||||
Version of the Document, provided no compilation copyright is claimed for
|
||||
the compilation. Such a compilation is called an "aggregate", and this
|
||||
License does not apply to the other self-contained works thus compiled
|
||||
with the Document, on account of their being thus compiled, if they are
|
||||
not themselves derivative works of the Document.</P
|
||||
><P
|
||||
>If the Cover Text requirement of section 3 is applicable to these
|
||||
copies of the Document, then if the Document is less than one quarter of
|
||||
the entire aggregate, the Document's Cover Texts may be placed on covers
|
||||
that surround only the Document within the aggregate. Otherwise they must
|
||||
appear on covers around the whole aggregate.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-8">8. TRANSLATION</H3
|
||||
><P
|
||||
>Translation is considered a kind of modification, so you may
|
||||
distribute translations of the Document under the terms of section 4.
|
||||
Replacing Invariant Sections with translations requires special
|
||||
permission from their copyright holders, but you may include translations
|
||||
of some or all Invariant Sections in addition to the original versions of
|
||||
these Invariant Sections. You may include a translation of this License
|
||||
provided that you also include the original English version of this
|
||||
License. In case of a disagreement between the translation and the
|
||||
original English version of this License, the original English version
|
||||
will prevail.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-9">9. TERMINATION</H3
|
||||
><P
|
||||
>You may not copy, modify, sublicense, or distribute the Document
|
||||
except as expressly provided for under this License. Any other attempt to
|
||||
copy, modify, sublicense or distribute the Document is void, and will
|
||||
automatically terminate your rights under this License. However, parties
|
||||
who have received copies, or rights, from you under this License will not
|
||||
have their licenses terminated so long as such parties remain in full
|
||||
compliance.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-10">10. FUTURE REVISIONS OF THIS LICENSE</H3
|
||||
><P
|
||||
>The Free Software Foundation may publish new, revised versions of
|
||||
the GNU Free Documentation License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in
|
||||
detail to address new problems or concerns. See
|
||||
<A
|
||||
HREF="http://www.gnu.org/copyleft/"
|
||||
TARGET="_top"
|
||||
> http://www.gnu.org/copyleft/</A
|
||||
>
|
||||
|
||||
.</P
|
||||
><P
|
||||
>Each version of the License is given a distinguishing version
|
||||
number. If the Document specifies that a particular numbered version of
|
||||
this License "or any later version" applies to it, you have the option of
|
||||
following the terms and conditions either of that specified version or of
|
||||
any later version that has been published (not as a draft) by the Free
|
||||
Software Foundation. If the Document does not specify a version number of
|
||||
this License, you may choose any version ever published (not as a draft)
|
||||
by the Free Software Foundation.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="gfdl-howto">How to use this License for your documents</H3
|
||||
><P
|
||||
>To use this License in a document you have written, include a copy
|
||||
of the License in the document and put the following copyright and
|
||||
license notices just after the title page:</P
|
||||
><A
|
||||
NAME="AEN128"><BLOCKQUOTE
|
||||
CLASS="BLOCKQUOTE"
|
||||
><P
|
||||
>Copyright (c) YEAR YOUR NAME. Permission is granted to copy,
|
||||
distribute and/or modify this document under the terms of the GNU Free
|
||||
Documentation License, Version 1.1 or any later version published by
|
||||
the Free Software Foundation; with the Invariant Sections being LIST
|
||||
THEIR TITLES, with the Front-Cover Texts being LIST, and with the
|
||||
Back-Cover Texts being LIST. A copy of the license is included in the
|
||||
section entitled "GNU Free Documentation License".</P
|
||||
></BLOCKQUOTE
|
||||
><P
|
||||
>If you have no Invariant Sections, write "with no Invariant
|
||||
Sections" instead of saying which ones are invariant. If you have no
|
||||
Front-Cover Texts, write "no Front-Cover Texts" instead of "Front-Cover
|
||||
Texts being LIST"; likewise for Back-Cover Texts.</P
|
||||
><P
|
||||
>If your document contains nontrivial examples of program code, we
|
||||
recommend releasing these examples in parallel under your choice of free
|
||||
software license, such as the GNU General Public License, to permit their
|
||||
use in free software.</P
|
||||
></DIV
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -610,7 +140,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="about.html"
|
||||
HREF="aboutthisguide.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -638,7 +168,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>About This Guide</TD
|
||||
>Purpose and Scope of this Guide</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
|
||||
@@ -16,8 +16,8 @@ REL="PREVIOUS"
|
||||
TITLE="New Versions"
|
||||
HREF="newversions.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Document Conventions"
|
||||
HREF="conventions.html"></HEAD
|
||||
TITLE="Translations"
|
||||
HREF="translations.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -59,7 +59,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="conventions.html"
|
||||
HREF="translations.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,10 +73,10 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="credits">1.4. Credits</H1
|
||||
NAME="credits">1.5. Credits</H1
|
||||
><P
|
||||
> The people listed below have made enormous contributions to the
|
||||
creation of this Guide, through their writing, dedicated hacking efforts,
|
||||
creation of this Guide, through their dedicated hacking efforts,
|
||||
numerous e-mail and IRC support sessions, and overall excellent
|
||||
contribution to the Bugzilla community:
|
||||
</P
|
||||
@@ -86,8 +86,7 @@ HREF="mailto://mbarnson@sisna.com"
|
||||
TARGET="_top"
|
||||
>Matthew P. Barnson</A
|
||||
>
|
||||
for the Herculaean task of pulling together the Bugzilla Guide and
|
||||
shepherding it to 2.14.
|
||||
for pulling together the Bugzilla Guide and shepherding it to 2.14.
|
||||
</P
|
||||
><P
|
||||
> <A
|
||||
@@ -102,18 +101,18 @@ TARGET="_top"
|
||||
> <A
|
||||
HREF="mailto://tara@tequilarista.org"
|
||||
TARGET="_top"
|
||||
>Tara Hernandez</A
|
||||
>
|
||||
for keeping Bugzilla development going
|
||||
strong after Terry left mozilla.org
|
||||
>Tara
|
||||
Hernandez</A
|
||||
> for keeping Bugzilla development going
|
||||
strong after Terry left Mozilla.org
|
||||
</P
|
||||
><P
|
||||
> <A
|
||||
HREF="mailto://dkl@redhat.com"
|
||||
TARGET="_top"
|
||||
>Dave Lawrence</A
|
||||
>
|
||||
for providing insight into the key differences between Red Hat's
|
||||
> for
|
||||
providing insight into the key differences between Red Hat's
|
||||
customized Bugzilla, and being largely responsible for the "Red
|
||||
Hat Bugzilla" appendix
|
||||
</P
|
||||
@@ -127,8 +126,7 @@ TARGET="_top"
|
||||
questions and arguments on irc.mozilla.org in #mozwebtools
|
||||
</P
|
||||
><P
|
||||
> Last but not least, all the members of the
|
||||
<A
|
||||
> Last but not least, all the members of the <A
|
||||
HREF="news://news.mozilla.org/netscape/public/mozilla/webtools"
|
||||
TARGET="_top"
|
||||
> netscape.public.mozilla.webtools</A
|
||||
@@ -140,7 +138,7 @@ TARGET="_top"
|
||||
</P
|
||||
><P
|
||||
> Zach Liption, Andrew Pearson, Spencer Smith, Eric Hanson, Kevin Brannen,
|
||||
Ron Teitelbaum, Jacob Steenhagen, Joe Robins, Gervase Markham.
|
||||
Ron Teitelbaum, Jacob Steenhagen, Joe Robins.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
@@ -177,7 +175,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="conventions.html"
|
||||
HREF="translations.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -201,7 +199,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Document Conventions</TD
|
||||
>Translations</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -16,8 +16,8 @@ REL="PREVIOUS"
|
||||
TITLE="Bugzilla Security"
|
||||
HREF="security.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Upgrading to New Releases"
|
||||
HREF="upgrading.html"></HEAD
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -59,7 +59,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="upgrading.html"
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -97,10 +97,10 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1539">5.7.1. What to Edit</H2
|
||||
NAME="AEN1611">5.7.1. What to Edit</H2
|
||||
><P
|
||||
> There are two different ways of editing of Bugzilla's templates,
|
||||
and which you use depends mainly on how you upgrade Bugzilla. The
|
||||
> There are several ways to take advantage of Bugzilla's templates,
|
||||
and which you use depends on what you want to do. The Bugzilla
|
||||
template directory structure is that there's a top level directory,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
@@ -111,32 +111,26 @@ CLASS="filename"
|
||||
CLASS="filename"
|
||||
>en</TT
|
||||
>. Underneath that, there
|
||||
is the <TT
|
||||
are two directories - <TT
|
||||
CLASS="filename"
|
||||
>default</TT
|
||||
> directory and optionally the
|
||||
> and
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>custom</TT
|
||||
> directory. The <TT
|
||||
>. The <TT
|
||||
CLASS="filename"
|
||||
>default</TT
|
||||
>
|
||||
directory contains all the templates shipped with Bugzilla, whereas
|
||||
the <TT
|
||||
CLASS="filename"
|
||||
>custom</TT
|
||||
> directory does not exist at first and
|
||||
must be created if you want to use it.
|
||||
directory contains all the templates shipped with Bugzilla.
|
||||
</P
|
||||
><P
|
||||
> The first method of making customisations is to directly edit the
|
||||
templates in <TT
|
||||
> One method of making customisations is to directly edit the templates
|
||||
in <TT
|
||||
CLASS="filename"
|
||||
>template/en/default</TT
|
||||
>. This is
|
||||
probably the best method for small changes if you are going to use
|
||||
the CVS method of upgrading, because if you then execute a
|
||||
>. This is probably the
|
||||
best method for small changes, because if you then execute a
|
||||
<B
|
||||
CLASS="command"
|
||||
>cvs update</B
|
||||
@@ -144,74 +138,18 @@ CLASS="command"
|
||||
automagically merged into your modified versions.
|
||||
</P
|
||||
><P
|
||||
> If you use this method, your installation will break if CVS conflicts
|
||||
occur.
|
||||
</P
|
||||
><P
|
||||
> The other method is to copy the templates into a mirrored directory
|
||||
structure under <TT
|
||||
> The other method is to copy the templates into
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>template/en/custom</TT
|
||||
>. The templates
|
||||
in this directory automatically override those in default.
|
||||
This is the technique you
|
||||
need to use if you use the overwriting method of upgrade, because
|
||||
otherwise your changes will be lost. This method is also better if
|
||||
you are using the CVS method of upgrading and are going to make major
|
||||
changes, because it is guaranteed that the contents of this directory
|
||||
will not be touched during an upgrade, and you can then decide whether
|
||||
to continue using your own templates, or make the effort to merge your
|
||||
changes into the new versions by hand.
|
||||
>. This method is better if
|
||||
you are going to make major changes, because it is guaranteed that
|
||||
the contents of this directory will not be touched during an upgrade,
|
||||
and you can then decide whether to continue using your own templates,
|
||||
or make the effort to merge your changes into the new versions by
|
||||
hand.
|
||||
</P
|
||||
><P
|
||||
> If you use this method, your installation may break if incompatible
|
||||
changes are made to the template interface. If such changes are made
|
||||
they will be documented in the release notes, provided you are using a
|
||||
stable release of Bugzilla. If you use using unstable code, you will
|
||||
need to deal with this one yourself, although if possible the changes
|
||||
will be mentioned before they occur in the deprecations section of the
|
||||
previous stable release's release notes.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> Don't directly edit the compiled templates in
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>data/template/*</TT
|
||||
> - your
|
||||
changes will be lost when Template Toolkit recompiles them.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1558">5.7.2. How To Edit Templates</H2
|
||||
><P
|
||||
> The syntax of the Template Toolkit language is beyond the scope of
|
||||
this guide. It's reasonably easy to pick up by looking at the current
|
||||
templates; or, you can read the manual, available on the
|
||||
@@ -219,78 +157,40 @@ NAME="AEN1558">5.7.2. How To Edit Templates</H2
|
||||
HREF="http://www.template-toolkit.org"
|
||||
TARGET="_top"
|
||||
>Template Toolkit home
|
||||
page</A
|
||||
>. However, you should particularly remember (for security
|
||||
reasons) to always HTML filter things which come from the database or
|
||||
user input, to prevent cross-site scripting attacks.
|
||||
</P
|
||||
><P
|
||||
> However, one thing you should take particular care about is the need
|
||||
to properly HTML filter data that has been passed into the template.
|
||||
This means that if the data can possibly contain special HTML characters
|
||||
such as <, and the data was not intended to be HTML, they need to be
|
||||
converted to entity form, ie &lt;. You use the 'html' filter in the
|
||||
Template Toolkit to do this. If you fail to do this, you may open up
|
||||
your installation to cross-site scripting attacks.
|
||||
</P
|
||||
><P
|
||||
> Also note that Bugzilla adds a few filters of its own, that are not
|
||||
in standard Template Toolkit. In particular, the 'url_quote' filter
|
||||
can convert characters that are illegal or have special meaning in URLs,
|
||||
such as &, to the encoded form, ie %26. This actually encodes most
|
||||
characters (but not the common ones such as letters and numbers and so
|
||||
on), including the HTML-special characters, so there's never a need to
|
||||
HTML filter afterwards.
|
||||
</P
|
||||
><P
|
||||
> Editing templates is a good way of doing a "poor man's custom fields".
|
||||
For example, if you don't use the Status Whiteboard, but want to have
|
||||
a free-form text entry box for "Build Identifier", then you can just
|
||||
edit the templates to change the field labels. It's still be called
|
||||
status_whiteboard internally, but your users don't need to know that.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> If you are making template changes that you intend on submitting back
|
||||
for inclusion in standard Bugzilla, you should read the relevant
|
||||
sections of the
|
||||
<A
|
||||
HREF="http://www.bugzilla.org/developerguide.html"
|
||||
TARGET="_top"
|
||||
>Developers'
|
||||
Guide</A
|
||||
page </A
|
||||
>.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1568">5.7.3. Template Formats</H2
|
||||
NAME="AEN1626">5.7.2. Particular Templates</H2
|
||||
><P
|
||||
> There are a few templates you may be particularly interested in
|
||||
customising for your installation.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>global/header.html.tmpl</B
|
||||
> and
|
||||
<B
|
||||
CLASS="command"
|
||||
>global/footer.html.tmpl</B
|
||||
>:
|
||||
These define the header and footer that go on all Bugzilla pages.
|
||||
Editing these is a way to quickly get a distinctive look and
|
||||
feel for your Bugzilla installation.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1632">5.7.3. Template Formats</H2
|
||||
><P
|
||||
> Some CGIs have the ability to use more than one template. For
|
||||
example, buglist.cgi can output bug lists as RDF or two
|
||||
@@ -321,14 +221,7 @@ CLASS="filename"
|
||||
</P
|
||||
><P
|
||||
> You now need to decide what content type you want your template
|
||||
served as. Open up the <TT
|
||||
CLASS="filename"
|
||||
>localconfig</TT
|
||||
> file and find the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>$contenttypes</TT
|
||||
>
|
||||
served as. Open up the localconfig file and find the $contenttypes
|
||||
variable. If your content type is not there, add it. Remember
|
||||
the three- or four-letter tag assigned to you content type.
|
||||
This tag will be part of the template filename.
|
||||
@@ -345,178 +238,6 @@ CLASS="filename"
|
||||
> .
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1581">5.7.4. Particular Templates</H2
|
||||
><P
|
||||
> There are a few templates you may be particularly interested in
|
||||
customising for your installation.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>index.html.tmpl</B
|
||||
>:
|
||||
This is the Bugzilla front page.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>global/header.html.tmpl</B
|
||||
>:
|
||||
This defines the header that goes on all Bugzilla pages.
|
||||
The header includes the banner, which is what appears to users
|
||||
and is probably what you want to edit instead. However the
|
||||
header also includes the HTML HEAD section, so you could for
|
||||
example add a stylesheet or META tag by editing the header.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>global/banner.html.tmpl</B
|
||||
>:
|
||||
This contains the "banner", the part of the header that appears
|
||||
at the top of all Bugzilla pages. The default banner is reasonably
|
||||
barren, so you'll probably want to customise this to give your
|
||||
installation a distinctive look and feel. It is recommended you
|
||||
preserve the Bugzilla version number in some form so the version
|
||||
you are running can be determined, and users know what docs to read.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>global/footer.html.tmpl</B
|
||||
>:
|
||||
This defines the footer that goes on all Bugzilla pages. Editing
|
||||
this is another way to quickly get a distinctive look and feel for
|
||||
your Bugzilla installation.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>bug/create/user-message.html.tmpl</B
|
||||
>:
|
||||
This is a message that appears near the top of the bug reporting page.
|
||||
By modifying this, you can tell your users how they should report
|
||||
bugs.
|
||||
</P
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>bug/create/create.html.tmpl</B
|
||||
> and
|
||||
<B
|
||||
CLASS="command"
|
||||
>bug/create/comment.txt.tmpl</B
|
||||
>:
|
||||
You may wish to get bug submitters to give certain bits of structured
|
||||
information, each in a separate input widget, for which there is not a
|
||||
field in the database. The bug entry system has been designed in an
|
||||
extensible fashion to enable you to define arbitrary fields and widgets,
|
||||
and have their values appear formatted in the initial
|
||||
Description, rather than in database fields. An example of this
|
||||
is the mozilla.org
|
||||
<A
|
||||
HREF="http://bugzilla.mozilla.org/enter_bug.cgi?format=guided"
|
||||
TARGET="_top"
|
||||
>guided
|
||||
bug submission form</A
|
||||
>.
|
||||
</P
|
||||
><P
|
||||
> To make this work, create a custom template for
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>enter_bug.cgi</TT
|
||||
> (the default template, on which you
|
||||
could base it, is <TT
|
||||
CLASS="filename"
|
||||
>create.html.tmpl</TT
|
||||
>),
|
||||
and either call it <TT
|
||||
CLASS="filename"
|
||||
>create.html.tmpl</TT
|
||||
> or use a format and
|
||||
call it <TT
|
||||
CLASS="filename"
|
||||
>create-<formatname>.html.tmpl</TT
|
||||
>.
|
||||
Put it in the <TT
|
||||
CLASS="filename"
|
||||
>custom/bug/create</TT
|
||||
>
|
||||
directory. In it, add widgets for each piece of information you'd like
|
||||
collected - such as a build number, or set of steps to reproduce.
|
||||
</P
|
||||
><P
|
||||
> Then, create a template like
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>custom/bug/create/comment.txt.tmpl</TT
|
||||
>, also named
|
||||
after your format if you are using one, which
|
||||
references the form fields you have created. When a bug report is
|
||||
submitted, the initial comment attached to the bug report will be
|
||||
formatted according to the layout of this template.
|
||||
</P
|
||||
><P
|
||||
> For example, if your enter_bug template had a field
|
||||
<TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
><input type="text" name="buildid" size="30"></PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
and then your comment.txt.tmpl had
|
||||
<TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
>BuildID: [% form.buildid %]</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
then
|
||||
<TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
>BuildID: 20020303</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
would appear in the initial checkin comment.
|
||||
</P
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -552,7 +273,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="upgrading.html"
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -576,7 +297,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Upgrading to New Releases</TD
|
||||
>Integrating Bugzilla with Third-Party Tools</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
174
mozilla/webtools/bugzilla/docs/html/cvs.html
Normal file
174
mozilla/webtools/bugzilla/docs/html/cvs.html
Normal file
@@ -0,0 +1,174 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>CVS</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Bonsai"
|
||||
HREF="bonsai.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Perforce SCM"
|
||||
HREF="scm.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="bonsai.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Integrating Bugzilla with Third-Party Tools</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="scm.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="cvs">5.2. CVS</H1
|
||||
><P
|
||||
>CVS integration is best accomplished, at this point, using
|
||||
the Bugzilla Email Gateway. There have been some files
|
||||
submitted to allow greater CVS integration, but we need to make
|
||||
certain that Bugzilla is not tied into one particular software
|
||||
management package.</P
|
||||
><P
|
||||
> Follow the instructions in the FAQ for enabling Bugzilla e-mail
|
||||
integration. Ensure that your check-in script sends an email to
|
||||
your Bugzilla e-mail gateway with the subject of <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"[Bug
|
||||
XXXX]"</SPAN
|
||||
>, and you can have CVS check-in comments append
|
||||
to your Bugzilla bug. If you have your check-in script include
|
||||
an @resolution field, you can even change the Bugzilla bug
|
||||
state.
|
||||
</P
|
||||
><P
|
||||
> There is also a project, based upon somewhat dated Bugzilla
|
||||
code, to integrate CVS and Bugzilla through CVS' ability to
|
||||
email. Check it out at:
|
||||
<A
|
||||
HREF="http://homepages.kcbbs.gen.nz/~tonyg/"
|
||||
TARGET="_top"
|
||||
> http://homepages.kcbbs.gen.nz/~tonyg/</A
|
||||
>, under the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"cvszilla"</SPAN
|
||||
> link.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="bonsai.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="scm.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Bonsai</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Perforce SCM</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -10,8 +10,8 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="The Bugzilla FAQ"
|
||||
HREF="faq.html"><LINK
|
||||
TITLE="Software Download Links"
|
||||
HREF="downloadlinks.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Database Schema Chart"
|
||||
HREF="dbschema.html"></HEAD
|
||||
@@ -42,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="faq.html"
|
||||
HREF="downloadlinks.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -69,7 +69,7 @@ WIDTH="100%"></DIV
|
||||
CLASS="appendix"
|
||||
><H1
|
||||
><A
|
||||
NAME="database">Appendix B. The Bugzilla Database</H1
|
||||
NAME="database">Appendix C. The Bugzilla Database</H1
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
@@ -78,15 +78,20 @@ CLASS="TOC"
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>B.1. <A
|
||||
>C.1. <A
|
||||
HREF="dbschema.html"
|
||||
>Database Schema Chart</A
|
||||
></DT
|
||||
><DT
|
||||
>B.2. <A
|
||||
>C.2. <A
|
||||
HREF="dbdoc.html"
|
||||
>MySQL Bugzilla Database Introduction</A
|
||||
></DT
|
||||
><DT
|
||||
>C.3. <A
|
||||
HREF="granttables.html"
|
||||
>MySQL Permissions & Grant Tables</A
|
||||
></DT
|
||||
></DL
|
||||
></DIV
|
||||
><DIV
|
||||
@@ -110,9 +115,8 @@ ALT="Note"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>This document really needs to be updated with more fleshed out
|
||||
information about primary keys, interrelationships, and maybe some nifty
|
||||
tables to document dependencies. Any takers?</P
|
||||
> This document really needs to be updated with more fleshed out information about primary keys, interrelationships, and maybe some nifty tables to document dependencies. Any takers?
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
@@ -134,7 +138,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="faq.html"
|
||||
HREF="downloadlinks.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -162,7 +166,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>The Bugzilla FAQ</TD
|
||||
>Software Download Links</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
|
||||
@@ -16,8 +16,8 @@ REL="PREVIOUS"
|
||||
TITLE="Database Schema Chart"
|
||||
HREF="dbschema.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"></HEAD
|
||||
TITLE="MySQL Permissions & Grant Tables"
|
||||
HREF="granttables.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -53,13 +53,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix B. The Bugzilla Database</TD
|
||||
>Appendix C. The Bugzilla Database</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
HREF="granttables.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,171 +73,183 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="dbdoc">B.2. MySQL Bugzilla Database Introduction</H1
|
||||
NAME="dbdoc">C.2. MySQL Bugzilla Database Introduction</H1
|
||||
><P
|
||||
>This information comes straight from my life. I was forced to learn
|
||||
how Bugzilla organizes database because of nitpicky requests from users
|
||||
for tiny changes in wording, rather than having people re-educate
|
||||
themselves or figure out how to work our procedures around the tool. It
|
||||
sucks, but it can and will happen to you, so learn how the schema works
|
||||
and deal with it when it comes.</P
|
||||
> This information comes straight from my life. I was forced to learn how
|
||||
Bugzilla organizes database because of nitpicky requests from users for tiny
|
||||
changes in wording, rather than having people re-educate themselves or
|
||||
figure out how to work our procedures around the tool. It sucks, but it can
|
||||
and will happen to you, so learn how the schema works and deal with it when it
|
||||
comes.
|
||||
</P
|
||||
><P
|
||||
>So, here you are with your brand-new installation of Bugzilla.
|
||||
You've got MySQL set up, Apache working right, Perl DBI and DBD talking
|
||||
to the database flawlessly. Maybe you've even entered a few test bugs to
|
||||
make sure email's working; people seem to be notified of new bugs and
|
||||
changes, and you can enter and edit bugs to your heart's content. Perhaps
|
||||
you've gone through the trouble of setting up a gateway for people to
|
||||
submit bugs to your database via email, have had a few people test it,
|
||||
and received rave reviews from your beta testers.</P
|
||||
> So, here you are with your brand-new installation of Bugzilla. You've got
|
||||
MySQL set up, Apache working right, Perl DBI and DBD talking to the database
|
||||
flawlessly. Maybe you've even entered a few test bugs to make sure email's
|
||||
working; people seem to be notified of new bugs and changes, and you can
|
||||
enter and edit bugs to your heart's content. Perhaps you've gone through the
|
||||
trouble of setting up a gateway for people to submit bugs to your database via
|
||||
email, have had a few people test it, and received rave reviews from your beta
|
||||
testers.
|
||||
</P
|
||||
><P
|
||||
>What's the next thing you do? Outline a training strategy for your
|
||||
development team, of course, and bring them up to speed on the new tool
|
||||
you've labored over for hours.</P
|
||||
> What's the next thing you do? Outline a training strategy for your
|
||||
development team, of course, and bring them up to speed on the new tool you've
|
||||
labored over for hours.
|
||||
</P
|
||||
><P
|
||||
>Your first training session starts off very well! You have a
|
||||
captive audience which seems enraptured by the efficiency embodied in
|
||||
this thing called "Bugzilla". You are caught up describing the nifty
|
||||
features, how people can save favorite queries in the database, set them
|
||||
up as headers and footers on their pages, customize their layouts,
|
||||
generate reports, track status with greater efficiency than ever before,
|
||||
leap tall buildings with a single bound and rescue Jane from the clutches
|
||||
of Certain Death!</P
|
||||
> Your first training session starts off very well! You have a captive
|
||||
audience which seems enraptured by the efficiency embodied in this thing called
|
||||
"Bugzilla". You are caught up describing the nifty features, how people can
|
||||
save favorite queries in the database, set them up as headers and footers on
|
||||
their pages, customize their layouts, generate reports, track status with
|
||||
greater efficiency than ever before, leap tall buildings with a single bound
|
||||
and rescue Jane from the clutches of Certain Death!
|
||||
</P
|
||||
><P
|
||||
>But Certain Death speaks up -- a tiny voice, from the dark corners
|
||||
of the conference room. "I have a concern," the voice hisses from the
|
||||
darkness, "about the use of the word 'verified'.</P
|
||||
> But Certain Death speaks up -- a tiny voice, from the dark corners of the
|
||||
conference room. "I have a concern," the voice hisses from the darkness,
|
||||
"about the use of the word 'verified'.
|
||||
</P
|
||||
><P
|
||||
>The room, previously filled with happy chatter, lapses into
|
||||
reverential silence as Certain Death (better known as the Vice President
|
||||
of Software Engineering) continues. "You see, for two years we've used
|
||||
the word 'verified' to indicate that a developer or quality assurance
|
||||
engineer has confirmed that, in fact, a bug is valid. I don't want to
|
||||
lose two years of training to a new software product. You need to change
|
||||
the bug status of 'verified' to 'approved' as soon as possible. To avoid
|
||||
confusion, of course."</P
|
||||
> The room, previously filled with happy chatter, lapses into reverential
|
||||
silence as Certain Death (better known as the Vice President of Software
|
||||
Engineering) continues. "You see, for two years we've used the word 'verified'
|
||||
to indicate that a developer or quality assurance engineer has confirmed that,
|
||||
in fact, a bug is valid. I don't want to lose two years of training to a
|
||||
new software product. You need to change the bug status of 'verified' to
|
||||
'approved' as soon as possible. To avoid confusion, of course."
|
||||
</P
|
||||
><P
|
||||
>Oh no! Terror strikes your heart, as you find yourself mumbling
|
||||
"yes, yes, I don't think that would be a problem," You review the changes
|
||||
with Certain Death, and continue to jabber on, "no, it's not too big a
|
||||
change. I mean, we have the source code, right? You know, 'Use the
|
||||
Source, Luke' and all that... no problem," All the while you quiver
|
||||
inside like a beached jellyfish bubbling, burbling, and boiling on a hot
|
||||
Jamaican sand dune...</P
|
||||
> Oh no! Terror strikes your heart, as you find yourself mumbling "yes, yes, I
|
||||
don't think that would be a problem," You review the changes with Certain
|
||||
Death, and continue to jabber on, "no, it's not too big a change. I mean, we
|
||||
have the source code, right? You know, 'Use the Source, Luke' and all that...
|
||||
no problem," All the while you quiver inside like a beached jellyfish bubbling,
|
||||
burbling, and boiling on a hot Jamaican sand dune...
|
||||
</P
|
||||
><P
|
||||
>Thus begins your adventure into the heart of Bugzilla. You've been
|
||||
forced to learn about non-portable enum() fields, varchar columns, and
|
||||
tinyint definitions. The Adventure Awaits You!</P
|
||||
> Thus begins your adventure into the heart of Bugzilla. You've been forced
|
||||
to learn about non-portable enum() fields, varchar columns, and tinyint
|
||||
definitions. The Adventure Awaits You!
|
||||
</P
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN2077">B.2.1. Bugzilla Database Basics</H2
|
||||
NAME="AEN2272">C.2.1. Bugzilla Database Basics</H2
|
||||
><P
|
||||
>If you were like me, at this point you're totally clueless about
|
||||
the internals of MySQL, and if it weren't for this executive order from
|
||||
the Vice President you couldn't care less about the difference between
|
||||
a
|
||||
<SPAN
|
||||
> If you were like me, at this point you're totally clueless
|
||||
about the internals of MySQL, and if it weren't for this
|
||||
executive order from the Vice President you couldn't care less
|
||||
about the difference between a <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"bigint"</SPAN
|
||||
>
|
||||
|
||||
and a
|
||||
<SPAN
|
||||
> and a
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"tinyint"</SPAN
|
||||
>
|
||||
|
||||
entry in MySQL. I recommend you refer to the MySQL documentation,
|
||||
available at
|
||||
<A
|
||||
> entry in MySQL. I recommend you refer
|
||||
to the MySQL documentation, available at <A
|
||||
HREF="http://www.mysql.com/doc.html"
|
||||
TARGET="_top"
|
||||
>MySQL.com</A
|
||||
>
|
||||
|
||||
. Below are the basics you need to know about the Bugzilla database.
|
||||
Check the chart above for more details.</P
|
||||
>. Below are the basics you need to know about the Bugzilla database. Check the chart above for more details.
|
||||
</P
|
||||
><P
|
||||
><P
|
||||
> <P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>To connect to your database:</P
|
||||
> To connect to your database:
|
||||
</P
|
||||
><P
|
||||
> <TT
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
>
|
||||
|
||||
<B
|
||||
><B
|
||||
CLASS="command"
|
||||
>mysql</B
|
||||
>
|
||||
|
||||
<TT
|
||||
><TT
|
||||
CLASS="parameter"
|
||||
><I
|
||||
>-u root</I
|
||||
></TT
|
||||
>
|
||||
</P
|
||||
</P
|
||||
><P
|
||||
>If this works without asking you for a password,
|
||||
<EM
|
||||
> If this works without asking you for a password,
|
||||
<EM
|
||||
>shame on you</EM
|
||||
>
|
||||
|
||||
! You should have locked your security down like the installation
|
||||
instructions told you to. You can find details on locking down
|
||||
your database in the Bugzilla FAQ in this directory (under
|
||||
"Security"), or more robust security generalities in the
|
||||
<A
|
||||
HREF="http://www.mysql.com/php/manual.php3?section=Privilege_system"
|
||||
TARGET="_top"
|
||||
>MySQL
|
||||
searchable documentation</A
|
||||
>.
|
||||
</P
|
||||
>! You should have
|
||||
locked your security down like the installation
|
||||
instructions told you to. You can find details on
|
||||
locking down your database in the Bugzilla FAQ in this
|
||||
directory (under "Security"), or more robust security
|
||||
generalities in the MySQL searchable documentation at
|
||||
http://www.mysql.com/php/manual.php3?section=Privilege_system .
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>You should now be at a prompt that looks like this:</P
|
||||
>You should now be at a prompt that looks like
|
||||
this:</P
|
||||
><P
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="prompt"
|
||||
>mysql></TT
|
||||
>
|
||||
</P
|
||||
></P
|
||||
><P
|
||||
>At the prompt, if
|
||||
<SPAN
|
||||
>At the prompt, if <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"bugs"</SPAN
|
||||
>
|
||||
|
||||
is the name you chose in the
|
||||
<TT
|
||||
> is the name
|
||||
you chose in the<TT
|
||||
CLASS="filename"
|
||||
>localconfig</TT
|
||||
>
|
||||
|
||||
file for your Bugzilla database, type:</P
|
||||
> file
|
||||
for your Bugzilla database, type:</P
|
||||
><P
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="prompt"
|
||||
>mysql</TT
|
||||
>
|
||||
|
||||
<B
|
||||
><B
|
||||
CLASS="command"
|
||||
>use bugs;</B
|
||||
>
|
||||
</P
|
||||
></P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Don't forget the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>";"</SPAN
|
||||
> at the end of
|
||||
each line, or you'll be kicking yourself later.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></LI
|
||||
></OL
|
||||
>
|
||||
@@ -247,31 +259,31 @@ CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN2104">B.2.1.1. Bugzilla Database Tables</H3
|
||||
NAME="AEN2301">C.2.1.1. Bugzilla Database Tables</H3
|
||||
><P
|
||||
>Imagine your MySQL database as a series of spreadsheets, and
|
||||
you won't be too far off. If you use this command:</P
|
||||
> Imagine your MySQL database as a series of
|
||||
spreadsheets, and you won't be too far off. If you use this
|
||||
command:</P
|
||||
><P
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="prompt"
|
||||
>mysql></TT
|
||||
>
|
||||
<B
|
||||
><B
|
||||
CLASS="command"
|
||||
>show tables from bugs;</B
|
||||
>
|
||||
</P
|
||||
></P
|
||||
><P
|
||||
>you'll be able to see the names of all the
|
||||
<SPAN
|
||||
>you'll be able to see all the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"spreadsheets"</SPAN
|
||||
>
|
||||
(tables) in your database.</P
|
||||
> (tables) in your database. It
|
||||
is similar to a file system, only faster and more robust for
|
||||
certain types of operations.</P
|
||||
><P
|
||||
>From the command issued above, ou should have some
|
||||
output that looks like this:
|
||||
<TABLE
|
||||
<TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
@@ -307,16 +319,16 @@ CLASS="programlisting"
|
||||
| votes |
|
||||
| watch |
|
||||
+-------------------+
|
||||
</PRE
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
></P
|
||||
><P
|
||||
CLASS="literallayout"
|
||||
><br>
|
||||
<br>
|
||||
Here's an overview of what each table does. Most columns in each table have<br>
|
||||
descriptive names that make it fairly trivial to figure out their jobs.<br>
|
||||
<br>
|
||||
@@ -478,6 +490,21 @@ Although you can query by the enum field,&nbs
|
||||
of "APPROVED" until you make the perl changes. Note that this change I<br>
|
||||
mentioned can also be done by editing checksetup.pl, which automates a lot of<br>
|
||||
this. But you need to know this stuff anyway, right?<br>
|
||||
<br>
|
||||
I hope this database tutorial has been useful for you. If you have comments<br>
|
||||
to add, questions, concerns, etc. please direct them to<br>
|
||||
mbarnson@excitehome.net. Please direct flames to /dev/null :) Have a nice<br>
|
||||
day!<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
===<br>
|
||||
LINKS<br>
|
||||
===<br>
|
||||
<br>
|
||||
Great MySQL tutorial site:<br>
|
||||
http://www.devshed.com/Server_Side/MySQL/<br>
|
||||
<br>
|
||||
</P
|
||||
></DIV
|
||||
></DIV
|
||||
@@ -516,7 +543,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
HREF="granttables.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -540,7 +567,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Useful Patches and Utilities for Bugzilla</TD
|
||||
>MySQL Permissions & Grant Tables</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -53,7 +53,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix B. The Bugzilla Database</TD
|
||||
>Appendix C. The Bugzilla Database</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,7 +73,7 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="dbschema">B.1. Database Schema Chart</H1
|
||||
NAME="dbschema">C.1. Database Schema Chart</H1
|
||||
><P
|
||||
> <DIV
|
||||
CLASS="mediaobject"
|
||||
|
||||
@@ -73,15 +73,16 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="disclaimer">1.2. Disclaimer</H1
|
||||
NAME="disclaimer">1.3. Disclaimer</H1
|
||||
><P
|
||||
> No liability for the contents of this document can be accepted.
|
||||
Use the concepts, examples, and other content at your own risk.
|
||||
This document may contain errors
|
||||
and inaccuracies that may damage your system, cause your partner
|
||||
to leave you, your boss to fire you, your cats to
|
||||
pee on your furniture and clothing, and global thermonuclear
|
||||
war. Proceed with caution.
|
||||
As this is a new edition of this document, there may be errors
|
||||
and inaccuracies that may damage your system. Use of this
|
||||
document may cause your girlfriend to leave you, your cats to
|
||||
pee on your furniture and clothing, your computer to cease
|
||||
functioning, your boss to fire you, and global thermonuclear
|
||||
war. Proceed with caution.
|
||||
</P
|
||||
><P
|
||||
> All copyrights are held by their respective owners, unless
|
||||
@@ -112,7 +113,7 @@ NAME="disclaimer">1.2. Disclaimer</H1
|
||||
team members, Netscape Communications, America Online Inc., and
|
||||
any affiliated developers or sponsors assume no liability for
|
||||
your use of this product. You have the source code to this
|
||||
product, and are responsible for auditing it yourself to ensure
|
||||
product, and are responsible for auditing it yourself to insure
|
||||
your security needs are met.
|
||||
</P
|
||||
></DIV
|
||||
|
||||
237
mozilla/webtools/bugzilla/docs/html/downloadlinks.html
Normal file
237
mozilla/webtools/bugzilla/docs/html/downloadlinks.html
Normal file
@@ -0,0 +1,237 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Software Download Links</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="The Bugzilla FAQ"
|
||||
HREF="faq.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="The Bugzilla Database"
|
||||
HREF="database.html"></HEAD
|
||||
><BODY
|
||||
CLASS="appendix"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="faq.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="database.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="appendix"
|
||||
><H1
|
||||
><A
|
||||
NAME="downloadlinks">Appendix B. Software Download Links</H1
|
||||
><P
|
||||
> All of these sites are current as of April, 2001. Hopefully
|
||||
they'll stay current for a while.
|
||||
</P
|
||||
><P
|
||||
> Apache Web Server: <A
|
||||
HREF="http://www.apache.org/"
|
||||
TARGET="_top"
|
||||
>http://www.apache.org</A
|
||||
>
|
||||
Optional web server for Bugzilla, but recommended because of broad user base and support.
|
||||
</P
|
||||
><P
|
||||
> Bugzilla: <A
|
||||
HREF="http://www.mozilla.org/projects/bugzilla/"
|
||||
TARGET="_top"
|
||||
> http://www.mozilla.org/projects/bugzilla/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> MySQL: <A
|
||||
HREF="http://www.mysql.com/"
|
||||
TARGET="_top"
|
||||
>http://www.mysql.com/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> Perl: <A
|
||||
HREF="http://www.perl.org"
|
||||
TARGET="_top"
|
||||
>http://www.perl.org/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> CPAN: <A
|
||||
HREF="http://www.cpan.org/"
|
||||
TARGET="_top"
|
||||
>http://www.cpan.org/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> DBI Perl module:
|
||||
<A
|
||||
HREF="http://www.cpan.org/modules/by-module/DBI/"
|
||||
TARGET="_top"
|
||||
> http://www.cpan.org/modules/by-module/DBI/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> Data::Dumper module:
|
||||
<A
|
||||
HREF="http://www.cpan.org/modules/by-module/Data/"
|
||||
TARGET="_top"
|
||||
> http://www.cpan.org/modules/by-module/Data/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> MySQL related Perl modules:
|
||||
<A
|
||||
HREF="http://www.cpan.org/modules/by-module/Mysql/"
|
||||
TARGET="_top"
|
||||
> http://www.cpan.org/modules/by-module/Mysql/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> TimeDate Perl module collection:
|
||||
<A
|
||||
HREF="http://www.cpan.org/modules/by-module/Date/"
|
||||
TARGET="_top"
|
||||
> http://www.cpan.org/modules/by-module/Date/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> GD Perl module:
|
||||
<A
|
||||
HREF="http://www.cpan.org/modules/by-module/GD/"
|
||||
TARGET="_top"
|
||||
> http://www.cpan.org/modules/by-module/GD/</A
|
||||
>
|
||||
Alternately, you should be able to find the latest version of
|
||||
GD at <A
|
||||
HREF="http://www.boutell.com/gd/"
|
||||
TARGET="_top"
|
||||
>http://www.boutell.com/gd/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> Chart::Base module:
|
||||
<A
|
||||
HREF="http://www.cpan.org/modules/by-module/Chart/"
|
||||
TARGET="_top"
|
||||
> http://www.cpan.org/modules/by-module/Chart/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> LinuxDoc Software:
|
||||
<A
|
||||
HREF="http://www.linuxdoc.org/"
|
||||
TARGET="_top"
|
||||
>http://www.linuxdoc.org/</A
|
||||
>
|
||||
(for documentation maintenance)
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="faq.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="database.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>The Bugzilla FAQ</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>The Bugzilla Database</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
279
mozilla/webtools/bugzilla/docs/html/errata.html
Normal file
279
mozilla/webtools/bugzilla/docs/html/errata.html
Normal file
@@ -0,0 +1,279 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>ERRATA</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Step-by-step Install"
|
||||
HREF="stepbystep.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 3. Installation</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="stepbystep.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="errata">3.1. ERRATA</H1
|
||||
><P
|
||||
>Here are some miscellaneous notes about possible issues you
|
||||
main run into when you begin your Bugzilla installation.
|
||||
Reference platforms for Bugzilla installation are Redhat Linux
|
||||
7.2, Linux-Mandrake 8.0, and Solaris 8.</P
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
><TBODY
|
||||
><TR
|
||||
><TD
|
||||
> If you are installing Bugzilla on S.u.S.e. Linux, or some
|
||||
other distributions with <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"paranoid"</SPAN
|
||||
> security
|
||||
options, it is possible that the checksetup.pl script may fail
|
||||
with the error: <SPAN
|
||||
CLASS="errorname"
|
||||
>cannot chdir(/var/spool/mqueue):
|
||||
Permission denied</SPAN
|
||||
> This is because your
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>/var/spool/mqueue</TT
|
||||
> directory has a mode of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"drwx------"</SPAN
|
||||
>. Type <B
|
||||
CLASS="command"
|
||||
>chmod 755
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>/var/spool/mqueue</TT
|
||||
></B
|
||||
> as root to
|
||||
fix this problem.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> Bugzilla may be installed on Macintosh OS X (10), which is a
|
||||
unix-based (BSD) operating system. Everything required for
|
||||
Bugzilla on OS X will install cleanly, but the optional GD
|
||||
perl module which is used for bug charting requires some
|
||||
additional setup for installation. Please see the Mac OS X
|
||||
installation section below for details
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> Release Notes for Bugzilla 2.16 are available at
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>docs/rel_notes.txt</TT
|
||||
> in your Bugzilla
|
||||
source distribution.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> The preferred documentation for Bugzilla is available in
|
||||
docs/, with a variety of document types available. Please
|
||||
refer to these documents when installing, configuring, and
|
||||
maintaining your Bugzilla installation.
|
||||
</TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
><P
|
||||
></P
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="warning"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/warning.gif"
|
||||
HSPACE="5"
|
||||
ALT="Warning"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> Bugzilla is not a package where you can just plop it in a directory,
|
||||
twiddle a few things, and you're off. Installing Bugzilla assumes you
|
||||
know your variant of UNIX or Microsoft Windows well, are familiar with the
|
||||
command line, and are comfortable compiling and installing a plethora
|
||||
of third-party utilities. To install Bugzilla on Win32 requires
|
||||
fair Perl proficiency, and if you use a webserver other than Apache you
|
||||
should be intimately familiar with the security mechanisms and CGI
|
||||
environment thereof.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="warning"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/warning.gif"
|
||||
HSPACE="5"
|
||||
ALT="Warning"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> Bugzilla has not undergone a complete security review. Security holes
|
||||
may exist in the code. Great care should be taken both in the installation
|
||||
and usage of this software. Carefully consider the implications of
|
||||
installing other network services with Bugzilla.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="stepbystep.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Installation</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Step-by-step Install</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -79,69 +79,21 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN845">4.2.1. Dependency Charts</H2
|
||||
NAME="AEN836">4.2.1. Dependency Charts</H2
|
||||
><P
|
||||
>As well as the text-based dependency graphs, Bugzilla also
|
||||
supports dependency graphing, using a package called 'dot'.
|
||||
Exactly how this works is controlled by the 'webdotbase' parameter,
|
||||
which can have one of three values:
|
||||
Exactly how this works is controlled by the 'webdotbase' parameter.
|
||||
</P
|
||||
><P
|
||||
> <P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> A complete file path to the command 'dot' (part of
|
||||
<A
|
||||
HREF="http://www.graphviz.org/"
|
||||
TARGET="_top"
|
||||
>GraphViz</A
|
||||
>)
|
||||
will generate the graphs locally
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> A URL prefix pointing to an installation of the webdot package will
|
||||
generate the graphs remotely
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> A blank value will disable dependency graphing.
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>So, to get this working, install
|
||||
<A
|
||||
HREF="http://www.graphviz.org/"
|
||||
TARGET="_top"
|
||||
>GraphViz</A
|
||||
>. If you
|
||||
do that, you need to
|
||||
<A
|
||||
HREF="http://httpd.apache.org/docs/mod/mod_imap.html"
|
||||
TARGET="_top"
|
||||
>enable
|
||||
server-side image maps</A
|
||||
> in Apache.
|
||||
Alternatively, you could set up a webdot server, or use the AT&T
|
||||
public webdot server (the
|
||||
default for the webdotbase param). Note that AT&T's server won't work
|
||||
if Bugzilla is only accessible using HTTPS.
|
||||
</P
|
||||
>(To be written...</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN860">4.2.2. Bug Graphs</H2
|
||||
NAME="AEN840">4.2.2. Bug Graphs</H2
|
||||
><P
|
||||
>As long as you installed the GD and Graph::Base Perl modules you
|
||||
might as well turn on the nifty Bugzilla bug reporting graphs.</P
|
||||
@@ -198,7 +150,7 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN873">4.2.3. The Whining Cron</H2
|
||||
NAME="AEN853">4.2.3. The Whining Cron</H2
|
||||
><P
|
||||
>By now you have a fully functional Bugzilla, but what good are
|
||||
bugs if they're not annoying? To help make those bugs more annoying you
|
||||
@@ -370,294 +322,6 @@ TARGET="_top"
|
||||
"mail", but you may need to change this.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="content-type">4.2.5. Preventing untrusted Bugzilla content from executing malicious
|
||||
Javascript code</H2
|
||||
><P
|
||||
>It is possible for a Bugzilla to execute malicious Javascript
|
||||
code. Due to internationalization concerns, we are unable to
|
||||
incorporate the code changes necessary to fulfill the CERT advisory
|
||||
requirements mentioned in
|
||||
<A
|
||||
HREF="http://www.cet.org/tech_tips/malicious_code_mitigation.html/#3"
|
||||
TARGET="_top"
|
||||
> http://www.cet.org/tech_tips/malicious_code_mitigation.html/#3</A
|
||||
>.
|
||||
Executing the following code snippet from a UNIX command shell will
|
||||
rectify the problem if your Bugzilla installation is intended for an
|
||||
English-speaking audience. As always, be sure your Bugzilla
|
||||
installation has a good backup before making changes, and I recommend
|
||||
you understand what the script is doing before executing it.</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
>bash# perl -pi -e "s/Content-Type\: text\/html/Content-Type\: text\/html\; charset=ISO-8859-1/i" *.cgi *.pl
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>All this one-liner command does is search for all instances of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Content-type: text/html"</SPAN
|
||||
>
|
||||
|
||||
and replaces it with
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Content-Type: text/html; charset=ISO-8859-1"</SPAN
|
||||
>
|
||||
|
||||
. This specification prevents possible Javascript attacks on the
|
||||
browser, and is suggested for all English-speaking sites. For
|
||||
non-English-speaking Bugzilla sites, I suggest changing
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"ISO-8859-1"</SPAN
|
||||
>, above, to
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"UTF-8"</SPAN
|
||||
>.</P
|
||||
><P
|
||||
>Note: using <meta> tags to set the charset is not
|
||||
recommended, as there's a bug in Netscape 4.x which causes pages
|
||||
marked up in this way to load twice.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="htaccess">4.2.6. <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
files and security</H2
|
||||
><P
|
||||
>To enhance the security of your Bugzilla installation, Bugzilla's
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>checksetup.pl</TT
|
||||
> script will generate
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
> <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
</I
|
||||
>
|
||||
|
||||
files which the Apache webserver can use to restrict access to the
|
||||
bugzilla data files.
|
||||
These .htaccess files will not work with Apache 1.2.x - but this
|
||||
has security holes, so you shouldn't be using it anyway.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>If you are using an alternate provider of
|
||||
<SPAN
|
||||
CLASS="productname"
|
||||
>webdot</SPAN
|
||||
>
|
||||
|
||||
services for graphing (as described when viewing
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editparams.cgi</TT
|
||||
>
|
||||
|
||||
in your web browser), you will need to change the ip address in
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>data/webdot/.htaccess</TT
|
||||
>
|
||||
|
||||
to the ip address of the webdot server that you are using.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>The default .htaccess file may not provide adequate access
|
||||
restrictions, depending on your web server configuration. Be sure to
|
||||
check the <Directory> entries for your Bugzilla directory so that
|
||||
the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
|
||||
file is allowed to override web server defaults. For instance, let's
|
||||
assume your installation of Bugzilla is installed to
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>/usr/local/bugzilla</TT
|
||||
>
|
||||
|
||||
. You should have this <Directory> entry in your
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>httpd.conf</TT
|
||||
>
|
||||
|
||||
file:</P
|
||||
><P
|
||||
>
|
||||
<TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> <Directory /usr/local/bugzilla/>
|
||||
Options +FollowSymLinks +Indexes +Includes +ExecCGI
|
||||
AllowOverride All
|
||||
</Directory>
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
|
||||
</P
|
||||
><P
|
||||
>The important part above is
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"AllowOverride All"</SPAN
|
||||
>
|
||||
|
||||
. Without that, the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
|
||||
file created by
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>checksetup.pl</TT
|
||||
>
|
||||
|
||||
will not have sufficient permissions to protect your Bugzilla
|
||||
installation.</P
|
||||
><P
|
||||
>If you are using Internet Information Server (IIS) or another
|
||||
web server which does not observe
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
conventions, you can disable their creation by editing
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>localconfig</TT
|
||||
>
|
||||
and setting the
|
||||
<TT
|
||||
CLASS="varname"
|
||||
>$create_htaccess</TT
|
||||
>
|
||||
variable to
|
||||
<TT
|
||||
CLASS="parameter"
|
||||
><I
|
||||
>0</I
|
||||
></TT
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="mod-throttle">4.2.7. <TT
|
||||
CLASS="filename"
|
||||
>mod_throttle</TT
|
||||
>
|
||||
|
||||
and Security</H2
|
||||
><P
|
||||
>It is possible for a user, by mistake or on purpose, to access
|
||||
the database many times in a row which can result in very slow access
|
||||
speeds for other users. If your Bugzilla installation is experiencing
|
||||
this problem , you may install the Apache module
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>mod_throttle</TT
|
||||
>
|
||||
|
||||
which can limit connections by ip-address. You may download this module
|
||||
at
|
||||
<A
|
||||
HREF="http://www.snert.com/Software/Throttle/"
|
||||
TARGET="_top"
|
||||
> http://www.snert.com/Software/Throttle/</A
|
||||
>.
|
||||
Follow the instructions to install into your Apache install.
|
||||
<EM
|
||||
>This module only functions with the Apache web
|
||||
server!</EM
|
||||
>
|
||||
You may use the
|
||||
<B
|
||||
CLASS="command"
|
||||
>ThrottleClientIP</B
|
||||
>
|
||||
|
||||
command provided by this module to accomplish this goal. See the
|
||||
<A
|
||||
HREF="http://www.snert.com/Software/Throttle/"
|
||||
TARGET="_top"
|
||||
>Module
|
||||
Instructions</A
|
||||
>
|
||||
for more information.</P
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
161
mozilla/webtools/bugzilla/docs/html/feedback.html
Normal file
161
mozilla/webtools/bugzilla/docs/html/feedback.html
Normal file
@@ -0,0 +1,161 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Feedback</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Contributors"
|
||||
HREF="contributors.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Translations"
|
||||
HREF="translations.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="contributors.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 1. About This Guide</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="translations.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="feedback">1.7. Feedback</H1
|
||||
><P
|
||||
> I welcome feedback on this document. Without your submissions
|
||||
and input, this Guide cannot continue to exist. Please mail
|
||||
additions, comments, criticisms, etc. to
|
||||
<TT
|
||||
CLASS="email"
|
||||
><<A
|
||||
HREF="mailto:barnboy@trilobyte.net"
|
||||
>barnboy@trilobyte.net</A
|
||||
>></TT
|
||||
>. Please send flames to
|
||||
<TT
|
||||
CLASS="email"
|
||||
><<A
|
||||
HREF="mailto:devnull@localhost"
|
||||
>devnull@localhost</A
|
||||
>></TT
|
||||
>
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="contributors.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="translations.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Contributors</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="about.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Translations</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
489
mozilla/webtools/bugzilla/docs/html/geninstall.html
Normal file
489
mozilla/webtools/bugzilla/docs/html/geninstall.html
Normal file
@@ -0,0 +1,489 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Installation General Notes</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="BSD Installation Notes"
|
||||
HREF="bsdinstall.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Win32 Installation Notes"
|
||||
HREF="win32.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="bsdinstall.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 3. Installation</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="win32.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="geninstall">3.5. Installation General Notes</H1
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN874">3.5.1. Modifying Your Running System</H2
|
||||
><P
|
||||
> Bugzilla optimizes database lookups by storing all relatively static
|
||||
information in the versioncache file, located in the data/ subdirectory
|
||||
under your installation directory.
|
||||
</P
|
||||
><P
|
||||
> If you make a change to the structural data in your database
|
||||
(the versions table for example), or to the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"constants"</SPAN
|
||||
> encoded in defparams.pl, you will
|
||||
need to remove the cached content from the data directory
|
||||
(by doing a <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"rm data/versioncache"</SPAN
|
||||
>), or your
|
||||
changes won't show up.
|
||||
</P
|
||||
><P
|
||||
> That file gets automatically regenerated whenever it's more than an
|
||||
hour old, so Bugzilla will eventually notice your changes by itself, but
|
||||
generally you want it to notice right away, so that you can test things.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN881">3.5.2. Upgrading From Previous Versions</H2
|
||||
><P
|
||||
> A plain Bugzilla is fairly easy to upgrade from one version to a newer one.
|
||||
However, things get a bit more complicated if you've made changes to
|
||||
Bugzilla's code. In this case, you may have to re-make or reapply those
|
||||
changes.
|
||||
It is recommended that you take a backup of your database and your entire
|
||||
Bugzilla installation before attempting an upgrade. You can upgrade a 'clean'
|
||||
installation by untarring a new tarball over the old installation. If you
|
||||
are upgrading from 2.12 or later, you can type <TT
|
||||
CLASS="filename"
|
||||
>cvs -z3
|
||||
update</TT
|
||||
>, and resolve conflicts if there are any.
|
||||
</P
|
||||
><P
|
||||
> Because the developers of Bugzilla are constantly adding new tables, columns
|
||||
and fields, you'll probably get SQL errors if you just update the code and
|
||||
attempt to use Bugzilla. Always run the checksetup.pl script whenever
|
||||
you upgrade your installation.
|
||||
</P
|
||||
><P
|
||||
> If you are running Bugzilla version 2.8 or lower, and wish to upgrade to
|
||||
the latest version, please consult the file, "UPGRADING-pre-2.8" in the
|
||||
Bugzilla root directory after untarring the archive.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="htaccess">3.5.3. <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
> files and security</H2
|
||||
><P
|
||||
> To enhance the security of your Bugzilla installation,
|
||||
Bugzilla will generate
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
></I
|
||||
> files
|
||||
which the Apache webserver can use to restrict access to
|
||||
the bugzilla data files. The checksetup script will
|
||||
generate the <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
> files. These .htaccess files
|
||||
will not work with Apache 1.2.x - but this has security holes, so you
|
||||
shouldn't be using it anyway.
|
||||
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> If you are using an alternate provider of
|
||||
<SPAN
|
||||
CLASS="productname"
|
||||
>webdot</SPAN
|
||||
> services for graphing
|
||||
(as described when viewing
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editparams.cgi</TT
|
||||
> in your web
|
||||
browser), you will need to change the ip address in
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>data/webdot/.htaccess</TT
|
||||
> to the ip
|
||||
address of the webdot server that you are using.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
|
||||
</P
|
||||
><P
|
||||
> The default .htaccess file may not provide adequate access
|
||||
restrictions, depending on your web server configuration.
|
||||
Be sure to check the <Directory> entries for your
|
||||
Bugzilla directory so that the <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
file is allowed to override web server defaults. For instance,
|
||||
let's assume your installation of Bugzilla is installed to
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>/usr/local/bugzilla</TT
|
||||
>. You should have
|
||||
this <Directory> entry in your <TT
|
||||
CLASS="filename"
|
||||
>httpd.conf</TT
|
||||
>
|
||||
file:
|
||||
</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
>
|
||||
<Directory /usr/local/bugzilla/>
|
||||
Options +FollowSymLinks +Indexes +Includes +ExecCGI
|
||||
AllowOverride All
|
||||
</Directory>
|
||||
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> The important part above is <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"AllowOverride All"</SPAN
|
||||
>.
|
||||
Without that, the <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
> file created by
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>checksetup.pl</TT
|
||||
> will not have sufficient
|
||||
permissions to protect your Bugzilla installation.
|
||||
</P
|
||||
><P
|
||||
> If you are using Internet Information Server or other web
|
||||
server which does not observe <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
conventions, you can disable their creation by editing
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>localconfig</TT
|
||||
> and setting the
|
||||
<TT
|
||||
CLASS="varname"
|
||||
>$create_htaccess</TT
|
||||
> variable to
|
||||
<TT
|
||||
CLASS="parameter"
|
||||
><I
|
||||
>0</I
|
||||
></TT
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="mod-throttle">3.5.4. <TT
|
||||
CLASS="filename"
|
||||
>mod_throttle</TT
|
||||
> and Security</H2
|
||||
><P
|
||||
> It is possible for a user, by mistake or on purpose, to access
|
||||
the database many times in a row which can result in very slow
|
||||
access speeds for other users. If your Bugzilla installation
|
||||
is experiencing this problem , you may install the Apache
|
||||
module <TT
|
||||
CLASS="filename"
|
||||
>mod_throttle</TT
|
||||
> which can limit
|
||||
connections by ip-address. You may download this module at
|
||||
<A
|
||||
HREF="http://www.snert.com/Software/Throttle/"
|
||||
TARGET="_top"
|
||||
>http://www.snert.com/Software/Throttle/</A
|
||||
>. Follow the instructions to install into your Apache install. <EM
|
||||
>This module only functions with the Apache web server!</EM
|
||||
>. You may use the <B
|
||||
CLASS="command"
|
||||
>ThrottleClientIP</B
|
||||
> command provided by this module to accomplish this goal. See the <A
|
||||
HREF="http://www.snert.com/Software/Throttle/"
|
||||
TARGET="_top"
|
||||
>Module Instructions</A
|
||||
> for more information. </P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="content-type">3.5.5. Preventing untrusted Bugzilla content from executing malicious Javascript code</H2
|
||||
><P
|
||||
>It is possible for a Bugzilla to execute malicious
|
||||
Javascript code. Due to internationalization concerns, we are
|
||||
unable to incorporate the code changes necessary to fulfill
|
||||
the CERT advisory requirements mentioned in <A
|
||||
HREF="http://www.cet.org/tech_tips/malicious_code_mitigation.html/#3"
|
||||
TARGET="_top"
|
||||
>http://www.cet.org/tech_tips/malicious_code_mitigation.html/#3</A
|
||||
>. Executing the following code snippet from a UNIX command shell will rectify the problem if your Bugzilla installation is intended for an English-speaking audience. As always, be sure your Bugzilla installation has a good backup before making changes, and I recommend you understand what the script is doing before executing it. </P
|
||||
><P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> bash# cd $BUGZILLA_HOME; for i in `ls *.cgi`; \
|
||||
do cat $i | sed 's/Content-type\: text\/html/Content-Type: text\/html\; charset=ISO-8859-1/' >$i.tmp; \
|
||||
mv $i.tmp $i; done
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></P
|
||||
><P
|
||||
> All this one-liner command does is search for all instances of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Content-type: text/html"</SPAN
|
||||
> and replaces it with
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Content-Type: text/html; charset=ISO-8859-1"</SPAN
|
||||
>.
|
||||
This specification prevents possible Javascript attacks on the
|
||||
browser, and is suggested for all English-speaking sites. For
|
||||
non-english-speaking Bugzilla sites, I suggest changing
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"ISO-8859-1"</SPAN
|
||||
>, above, to <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"UTF-8"</SPAN
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="unixhistory">3.5.6. UNIX Installation Instructions History</H2
|
||||
><P
|
||||
> This document was originally adapted from the Bonsai
|
||||
installation instructions by Terry Weissman
|
||||
<terry@mozilla.org>.
|
||||
</P
|
||||
><P
|
||||
> The February 25, 1999 re-write of this page was done by Ry4an
|
||||
Brase <ry4an@ry4an.org>, with some edits by Terry
|
||||
Weissman, Bryce Nesbitt, Martin Pool, & Dan Mosedale (But
|
||||
don't send bug reports to them; report them using bugzilla, at <A
|
||||
HREF="http://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla"
|
||||
TARGET="_top"
|
||||
>http://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla</A
|
||||
> ).
|
||||
</P
|
||||
><P
|
||||
> This document was heavily modified again Wednesday, March 07
|
||||
2001 to reflect changes for Bugzilla 2.12 release by Matthew
|
||||
P. Barnson. The securing MySQL section should be changed to
|
||||
become standard procedure for Bugzilla installations.
|
||||
</P
|
||||
><P
|
||||
> Finally, the README in its entirety was marked up in SGML and
|
||||
included into the Guide on April 24, 2001 by Matt Barnson.
|
||||
Since that time, it's undergone extensive modification as
|
||||
Bugzilla grew.
|
||||
</P
|
||||
><P
|
||||
> Comments from people using this Guide for the first time are
|
||||
particularly welcome.
|
||||
</P
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="bsdinstall.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="win32.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>BSD Installation Notes</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Win32 Installation Notes</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
165
mozilla/webtools/bugzilla/docs/html/gfdl-0.html
Normal file
165
mozilla/webtools/bugzilla/docs/html/gfdl-0.html
Normal file
@@ -0,0 +1,165 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>PREAMBLE</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="APPLICABILITY AND DEFINITIONS"
|
||||
HREF="gfdl-1.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-1.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-0">0. PREAMBLE</H1
|
||||
><P
|
||||
>The purpose of this License is to make a manual, textbook,
|
||||
or other written document "free" in the sense of freedom: to
|
||||
assure everyone the effective freedom to copy and redistribute it,
|
||||
with or without modifying it, either commercially or
|
||||
noncommercially. Secondarily, this License preserves for the
|
||||
author and publisher a way to get credit for their work, while not
|
||||
being considered responsible for modifications made by
|
||||
others.</P
|
||||
><P
|
||||
>This License is a kind of "copyleft", which means that
|
||||
derivative works of the document must themselves be free in the
|
||||
same sense. It complements the GNU General Public License, which
|
||||
is a copyleft license designed for free software.</P
|
||||
><P
|
||||
>We have designed this License in order to use it for manuals
|
||||
for free software, because free software needs free documentation:
|
||||
a free program should come with manuals providing the same
|
||||
freedoms that the software does. But this License is not limited
|
||||
to software manuals; it can be used for any textual work,
|
||||
regardless of subject matter or whether it is published as a
|
||||
printed book. We recommend this License principally for works
|
||||
whose purpose is instruction or reference.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-1.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>APPLICABILITY AND DEFINITIONS</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
206
mozilla/webtools/bugzilla/docs/html/gfdl-1.html
Normal file
206
mozilla/webtools/bugzilla/docs/html/gfdl-1.html
Normal file
@@ -0,0 +1,206 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>APPLICABILITY AND DEFINITIONS</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="PREAMBLE"
|
||||
HREF="gfdl-0.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="VERBATIM COPYING"
|
||||
HREF="gfdl-2.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-0.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-2.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-1">1. APPLICABILITY AND DEFINITIONS</H1
|
||||
><P
|
||||
>This License applies to any manual or other work that
|
||||
contains a notice placed by the copyright holder saying it can be
|
||||
distributed under the terms of this License. The "Document",
|
||||
below, refers to any such manual or work. Any member of the
|
||||
public is a licensee, and is addressed as "you".</P
|
||||
><P
|
||||
>A "Modified Version" of the Document means any work
|
||||
containing the Document or a portion of it, either copied
|
||||
verbatim, or with modifications and/or translated into another
|
||||
language.</P
|
||||
><P
|
||||
>A "Secondary Section" is a named appendix or a front-matter
|
||||
section of the Document that deals exclusively with the
|
||||
relationship of the publishers or authors of the Document to the
|
||||
Document's overall subject (or to related matters) and contains
|
||||
nothing that could fall directly within that overall subject.
|
||||
(For example, if the Document is in part a textbook of
|
||||
mathematics, a Secondary Section may not explain any mathematics.)
|
||||
The relationship could be a matter of historical connection with
|
||||
the subject or with related matters, or of legal, commercial,
|
||||
philosophical, ethical or political position regarding
|
||||
them.</P
|
||||
><P
|
||||
>The "Invariant Sections" are certain Secondary Sections
|
||||
whose titles are designated, as being those of Invariant Sections,
|
||||
in the notice that says that the Document is released under this
|
||||
License.</P
|
||||
><P
|
||||
>The "Cover Texts" are certain short passages of text that
|
||||
are listed, as Front-Cover Texts or Back-Cover Texts, in the
|
||||
notice that says that the Document is released under this
|
||||
License.</P
|
||||
><P
|
||||
>A "Transparent" copy of the Document means a
|
||||
machine-readable copy, represented in a format whose specification
|
||||
is available to the general public, whose contents can be viewed
|
||||
and edited directly and straightforwardly with generic text
|
||||
editors or (for images composed of pixels) generic paint programs
|
||||
or (for drawings) some widely available drawing editor, and that
|
||||
is suitable for input to text formatters or for automatic
|
||||
translation to a variety of formats suitable for input to text
|
||||
formatters. A copy made in an otherwise Transparent file format
|
||||
whose markup has been designed to thwart or discourage subsequent
|
||||
modification by readers is not Transparent. A copy that is not
|
||||
"Transparent" is called "Opaque".</P
|
||||
><P
|
||||
>Examples of suitable formats for Transparent copies include
|
||||
plain ASCII without markup, Texinfo input format, LaTeX input
|
||||
format, SGML or XML using a publicly available DTD, and
|
||||
standard-conforming simple HTML designed for human modification.
|
||||
Opaque formats include PostScript, PDF, proprietary formats that
|
||||
can be read and edited only by proprietary word processors, SGML
|
||||
or XML for which the DTD and/or processing tools are not generally
|
||||
available, and the machine-generated HTML produced by some word
|
||||
processors for output purposes only.</P
|
||||
><P
|
||||
>The "Title Page" means, for a printed book, the title page
|
||||
itself, plus such following pages as are needed to hold, legibly,
|
||||
the material this License requires to appear in the title page.
|
||||
For works in formats which do not have any title page as such,
|
||||
"Title Page" means the text near the most prominent appearance of
|
||||
the work's title, preceding the beginning of the body of the
|
||||
text.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-0.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-2.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>PREAMBLE</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>VERBATIM COPYING</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
162
mozilla/webtools/bugzilla/docs/html/gfdl-10.html
Normal file
162
mozilla/webtools/bugzilla/docs/html/gfdl-10.html
Normal file
@@ -0,0 +1,162 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>FUTURE REVISIONS OF THIS LICENSE</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="TERMINATION"
|
||||
HREF="gfdl-9.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="How to use this License for your documents"
|
||||
HREF="gfdl-howto.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-9.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-howto.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-10">10. FUTURE REVISIONS OF THIS LICENSE</H1
|
||||
><P
|
||||
>The Free Software Foundation may publish new, revised
|
||||
versions of the GNU Free Documentation License from time to time.
|
||||
Such new versions will be similar in spirit to the present
|
||||
version, but may differ in detail to address new problems or
|
||||
concerns. See <A
|
||||
HREF="http://www.gnu.org/copyleft/"
|
||||
TARGET="_top"
|
||||
>http://www.gnu.org/copyleft/</A
|
||||
>.</P
|
||||
><P
|
||||
>Each version of the License is given a distinguishing
|
||||
version number. If the Document specifies that a particular
|
||||
numbered version of this License "or any later version" applies to
|
||||
it, you have the option of following the terms and conditions
|
||||
either of that specified version or of any later version that has
|
||||
been published (not as a draft) by the Free Software Foundation.
|
||||
If the Document does not specify a version number of this License,
|
||||
you may choose any version ever published (not as a draft) by the
|
||||
Free Software Foundation.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-9.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-howto.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>TERMINATION</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>How to use this License for your documents</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
156
mozilla/webtools/bugzilla/docs/html/gfdl-2.html
Normal file
156
mozilla/webtools/bugzilla/docs/html/gfdl-2.html
Normal file
@@ -0,0 +1,156 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>VERBATIM COPYING</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="APPLICABILITY AND DEFINITIONS"
|
||||
HREF="gfdl-1.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="COPYING IN QUANTITY"
|
||||
HREF="gfdl-3.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-1.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-3.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-2">2. VERBATIM COPYING</H1
|
||||
><P
|
||||
>You may copy and distribute the Document in any medium,
|
||||
either commercially or noncommercially, provided that this
|
||||
License, the copyright notices, and the license notice saying this
|
||||
License applies to the Document are reproduced in all copies, and
|
||||
that you add no other conditions whatsoever to those of this
|
||||
License. You may not use technical measures to obstruct or
|
||||
control the reading or further copying of the copies you make or
|
||||
distribute. However, you may accept compensation in exchange for
|
||||
copies. If you distribute a large enough number of copies you
|
||||
must also follow the conditions in section 3.</P
|
||||
><P
|
||||
>You may also lend copies, under the same conditions stated
|
||||
above, and you may publicly display copies.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-1.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-3.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>APPLICABILITY AND DEFINITIONS</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>COPYING IN QUANTITY</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
180
mozilla/webtools/bugzilla/docs/html/gfdl-3.html
Normal file
180
mozilla/webtools/bugzilla/docs/html/gfdl-3.html
Normal file
@@ -0,0 +1,180 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>COPYING IN QUANTITY</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="VERBATIM COPYING"
|
||||
HREF="gfdl-2.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="MODIFICATIONS"
|
||||
HREF="gfdl-4.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-2.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-4.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-3">3. COPYING IN QUANTITY</H1
|
||||
><P
|
||||
>If you publish printed copies of the Document numbering more
|
||||
than 100, and the Document's license notice requires Cover Texts,
|
||||
you must enclose the copies in covers that carry, clearly and
|
||||
legibly, all these Cover Texts: Front-Cover Texts on the front
|
||||
cover, and Back-Cover Texts on the back cover. Both covers must
|
||||
also clearly and legibly identify you as the publisher of these
|
||||
copies. The front cover must present the full title with all
|
||||
words of the title equally prominent and visible. You may add
|
||||
other material on the covers in addition. Copying with changes
|
||||
limited to the covers, as long as they preserve the title of the
|
||||
Document and satisfy these conditions, can be treated as verbatim
|
||||
copying in other respects.</P
|
||||
><P
|
||||
>If the required texts for either cover are too voluminous to
|
||||
fit legibly, you should put the first ones listed (as many as fit
|
||||
reasonably) on the actual cover, and continue the rest onto
|
||||
adjacent pages.</P
|
||||
><P
|
||||
>If you publish or distribute Opaque copies of the Document
|
||||
numbering more than 100, you must either include a
|
||||
machine-readable Transparent copy along with each Opaque copy, or
|
||||
state in or with each Opaque copy a publicly-accessible
|
||||
computer-network location containing a complete Transparent copy
|
||||
of the Document, free of added material, which the general
|
||||
network-using public has access to download anonymously at no
|
||||
charge using public-standard network protocols. If you use the
|
||||
latter option, you must take reasonably prudent steps, when you
|
||||
begin distribution of Opaque copies in quantity, to ensure that
|
||||
this Transparent copy will remain thus accessible at the stated
|
||||
location until at least one year after the last time you
|
||||
distribute an Opaque copy (directly or through your agents or
|
||||
retailers) of that edition to the public.</P
|
||||
><P
|
||||
>It is requested, but not required, that you contact the
|
||||
authors of the Document well before redistributing any large
|
||||
number of copies, to give them a chance to provide you with an
|
||||
updated version of the Document.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-2.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-4.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>VERBATIM COPYING</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>MODIFICATIONS</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
286
mozilla/webtools/bugzilla/docs/html/gfdl-4.html
Normal file
286
mozilla/webtools/bugzilla/docs/html/gfdl-4.html
Normal file
@@ -0,0 +1,286 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>MODIFICATIONS</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="COPYING IN QUANTITY"
|
||||
HREF="gfdl-3.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="COMBINING DOCUMENTS"
|
||||
HREF="gfdl-5.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-3.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-5.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-4">4. MODIFICATIONS</H1
|
||||
><P
|
||||
>You may copy and distribute a Modified Version of the
|
||||
Document under the conditions of sections 2 and 3 above, provided
|
||||
that you release the Modified Version under precisely this
|
||||
License, with the Modified Version filling the role of the
|
||||
Document, thus licensing distribution and modification of the
|
||||
Modified Version to whoever possesses a copy of it. In addition,
|
||||
you must do these things in the Modified Version:</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="A"
|
||||
><LI
|
||||
><P
|
||||
>Use in the Title Page
|
||||
(and on the covers, if any) a title distinct from that of the
|
||||
Document, and from those of previous versions (which should, if
|
||||
there were any, be listed in the History section of the
|
||||
Document). You may use the same title as a previous version if
|
||||
the original publisher of that version gives permission.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>List on the Title Page,
|
||||
as authors, one or more persons or entities responsible for
|
||||
authorship of the modifications in the Modified Version,
|
||||
together with at least five of the principal authors of the
|
||||
Document (all of its principal authors, if it has less than
|
||||
five).</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>State on the Title page
|
||||
the name of the publisher of the Modified Version, as the
|
||||
publisher.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve all the
|
||||
copyright notices of the Document.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Add an appropriate
|
||||
copyright notice for your modifications adjacent to the other
|
||||
copyright notices.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Include, immediately
|
||||
after the copyright notices, a license notice giving the public
|
||||
permission to use the Modified Version under the terms of this
|
||||
License, in the form shown in the Addendum below.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve in that license
|
||||
notice the full lists of Invariant Sections and required Cover
|
||||
Texts given in the Document's license notice.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Include an unaltered
|
||||
copy of this License.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve the section
|
||||
entitled "History", and its title, and add to it an item stating
|
||||
at least the title, year, new authors, and publisher of the
|
||||
Modified Version as given on the Title Page. If there is no
|
||||
section entitled "History" in the Document, create one stating
|
||||
the title, year, authors, and publisher of the Document as given
|
||||
on its Title Page, then add an item describing the Modified
|
||||
Version as stated in the previous sentence.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve the network
|
||||
location, if any, given in the Document for public access to a
|
||||
Transparent copy of the Document, and likewise the network
|
||||
locations given in the Document for previous versions it was
|
||||
based on. These may be placed in the "History" section. You
|
||||
may omit a network location for a work that was published at
|
||||
least four years before the Document itself, or if the original
|
||||
publisher of the version it refers to gives permission.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>In any section entitled
|
||||
"Acknowledgements" or "Dedications", preserve the section's
|
||||
title, and preserve in the section all the substance and tone of
|
||||
each of the contributor acknowledgements and/or dedications
|
||||
given therein.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Preserve all the
|
||||
Invariant Sections of the Document, unaltered in their text and
|
||||
in their titles. Section numbers or the equivalent are not
|
||||
considered part of the section titles.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Delete any section
|
||||
entitled "Endorsements". Such a section may not be included in
|
||||
the Modified Version.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Do not retitle any
|
||||
existing section as "Endorsements" or to conflict in title with
|
||||
any Invariant Section.</P
|
||||
></LI
|
||||
></OL
|
||||
><P
|
||||
>If the Modified Version includes new front-matter sections
|
||||
or appendices that qualify as Secondary Sections and contain no
|
||||
material copied from the Document, you may at your option
|
||||
designate some or all of these sections as invariant. To do this,
|
||||
add their titles to the list of Invariant Sections in the Modified
|
||||
Version's license notice. These titles must be distinct from any
|
||||
other section titles.</P
|
||||
><P
|
||||
>You may add a section entitled "Endorsements", provided it
|
||||
contains nothing but endorsements of your Modified Version by
|
||||
various parties--for example, statements of peer review or that
|
||||
the text has been approved by an organization as the authoritative
|
||||
definition of a standard.</P
|
||||
><P
|
||||
>You may add a passage of up to five words as a Front-Cover
|
||||
Text, and a passage of up to 25 words as a Back-Cover Text, to the
|
||||
end of the list of Cover Texts in the Modified Version. Only one
|
||||
passage of Front-Cover Text and one of Back-Cover Text may be
|
||||
added by (or through arrangements made by) any one entity. If the
|
||||
Document already includes a cover text for the same cover,
|
||||
previously added by you or by arrangement made by the same entity
|
||||
you are acting on behalf of, you may not add another; but you may
|
||||
replace the old one, on explicit permission from the previous
|
||||
publisher that added the old one.</P
|
||||
><P
|
||||
>The author(s) and publisher(s) of the Document do not by
|
||||
this License give permission to use their names for publicity for
|
||||
or to assert or imply endorsement of any Modified Version.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-3.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-5.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>COPYING IN QUANTITY</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>COMBINING DOCUMENTS</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
165
mozilla/webtools/bugzilla/docs/html/gfdl-5.html
Normal file
165
mozilla/webtools/bugzilla/docs/html/gfdl-5.html
Normal file
@@ -0,0 +1,165 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>COMBINING DOCUMENTS</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="MODIFICATIONS"
|
||||
HREF="gfdl-4.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="COLLECTIONS OF DOCUMENTS"
|
||||
HREF="gfdl-6.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-4.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-6.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-5">5. COMBINING DOCUMENTS</H1
|
||||
><P
|
||||
>You may combine the Document with other documents released
|
||||
under this License, under the terms defined in section 4 above for
|
||||
modified versions, provided that you include in the combination
|
||||
all of the Invariant Sections of all of the original documents,
|
||||
unmodified, and list them all as Invariant Sections of your
|
||||
combined work in its license notice.</P
|
||||
><P
|
||||
>The combined work need only contain one copy of this
|
||||
License, and multiple identical Invariant Sections may be replaced
|
||||
with a single copy. If there are multiple Invariant Sections with
|
||||
the same name but different contents, make the title of each such
|
||||
section unique by adding at the end of it, in parentheses, the
|
||||
name of the original author or publisher of that section if known,
|
||||
or else a unique number. Make the same adjustment to the section
|
||||
titles in the list of Invariant Sections in the license notice of
|
||||
the combined work.</P
|
||||
><P
|
||||
>In the combination, you must combine any sections entitled
|
||||
"History" in the various original documents, forming one section
|
||||
entitled "History"; likewise combine any sections entitled
|
||||
"Acknowledgements", and any sections entitled "Dedications". You
|
||||
must delete all sections entitled "Endorsements."</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-4.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-6.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>MODIFICATIONS</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>COLLECTIONS OF DOCUMENTS</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
155
mozilla/webtools/bugzilla/docs/html/gfdl-6.html
Normal file
155
mozilla/webtools/bugzilla/docs/html/gfdl-6.html
Normal file
@@ -0,0 +1,155 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>COLLECTIONS OF DOCUMENTS</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="COMBINING DOCUMENTS"
|
||||
HREF="gfdl-5.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="AGGREGATION WITH INDEPENDENT WORKS"
|
||||
HREF="gfdl-7.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-5.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-7.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-6">6. COLLECTIONS OF DOCUMENTS</H1
|
||||
><P
|
||||
>You may make a collection consisting of the Document and
|
||||
other documents released under this License, and replace the
|
||||
individual copies of this License in the various documents with a
|
||||
single copy that is included in the collection, provided that you
|
||||
follow the rules of this License for verbatim copying of each of
|
||||
the documents in all other respects.</P
|
||||
><P
|
||||
>You may extract a single document from such a collection,
|
||||
and distribute it individually under this License, provided you
|
||||
insert a copy of this License into the extracted document, and
|
||||
follow this License in all other respects regarding verbatim
|
||||
copying of that document.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-5.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-7.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>COMBINING DOCUMENTS</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>AGGREGATION WITH INDEPENDENT WORKS</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
159
mozilla/webtools/bugzilla/docs/html/gfdl-7.html
Normal file
159
mozilla/webtools/bugzilla/docs/html/gfdl-7.html
Normal file
@@ -0,0 +1,159 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>AGGREGATION WITH INDEPENDENT WORKS</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="COLLECTIONS OF DOCUMENTS"
|
||||
HREF="gfdl-6.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="TRANSLATION"
|
||||
HREF="gfdl-8.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-6.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-8.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-7">7. AGGREGATION WITH INDEPENDENT WORKS</H1
|
||||
><P
|
||||
>A compilation of the Document or its derivatives with other
|
||||
separate and independent documents or works, in or on a volume of
|
||||
a storage or distribution medium, does not as a whole count as a
|
||||
Modified Version of the Document, provided no compilation
|
||||
copyright is claimed for the compilation. Such a compilation is
|
||||
called an "aggregate", and this License does not apply to the
|
||||
other self-contained works thus compiled with the Document, on
|
||||
account of their being thus compiled, if they are not themselves
|
||||
derivative works of the Document.</P
|
||||
><P
|
||||
>If the Cover Text requirement of section 3 is applicable to
|
||||
these copies of the Document, then if the Document is less than
|
||||
one quarter of the entire aggregate, the Document's Cover Texts
|
||||
may be placed on covers that surround only the Document within the
|
||||
aggregate. Otherwise they must appear on covers around the whole
|
||||
aggregate.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-6.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-8.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>COLLECTIONS OF DOCUMENTS</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>TRANSLATION</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
154
mozilla/webtools/bugzilla/docs/html/gfdl-8.html
Normal file
154
mozilla/webtools/bugzilla/docs/html/gfdl-8.html
Normal file
@@ -0,0 +1,154 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>TRANSLATION</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="AGGREGATION WITH INDEPENDENT WORKS"
|
||||
HREF="gfdl-7.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="TERMINATION"
|
||||
HREF="gfdl-9.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-7.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-9.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-8">8. TRANSLATION</H1
|
||||
><P
|
||||
>Translation is considered a kind of modification, so you may
|
||||
distribute translations of the Document under the terms of section
|
||||
4. Replacing Invariant Sections with translations requires
|
||||
special permission from their copyright holders, but you may
|
||||
include translations of some or all Invariant Sections in addition
|
||||
to the original versions of these Invariant Sections. You may
|
||||
include a translation of this License provided that you also
|
||||
include the original English version of this License. In case of
|
||||
a disagreement between the translation and the original English
|
||||
version of this License, the original English version will
|
||||
prevail.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-7.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-9.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>AGGREGATION WITH INDEPENDENT WORKS</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>TERMINATION</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
151
mozilla/webtools/bugzilla/docs/html/gfdl-9.html
Normal file
151
mozilla/webtools/bugzilla/docs/html/gfdl-9.html
Normal file
@@ -0,0 +1,151 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>TERMINATION</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="TRANSLATION"
|
||||
HREF="gfdl-8.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="FUTURE REVISIONS OF THIS LICENSE"
|
||||
HREF="gfdl-10.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-8.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-10.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-9">9. TERMINATION</H1
|
||||
><P
|
||||
>You may not copy, modify, sublicense, or distribute the
|
||||
Document except as expressly provided for under this License. Any
|
||||
other attempt to copy, modify, sublicense or distribute the
|
||||
Document is void, and will automatically terminate your rights
|
||||
under this License. However, parties who have received copies, or
|
||||
rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full
|
||||
compliance.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-8.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-10.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>TRANSLATION</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>FUTURE REVISIONS OF THIS LICENSE</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
171
mozilla/webtools/bugzilla/docs/html/gfdl-howto.html
Normal file
171
mozilla/webtools/bugzilla/docs/html/gfdl-howto.html
Normal file
@@ -0,0 +1,171 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>How to use this License for your documents</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="GNU Free Documentation License"
|
||||
HREF="gfdl.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="FUTURE REVISIONS OF THIS LICENSE"
|
||||
HREF="gfdl-10.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Glossary"
|
||||
HREF="glossary.html"></HEAD
|
||||
><BODY
|
||||
CLASS="sect1"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-10.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix E. GNU Free Documentation License</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="glossary.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="gfdl-howto">How to use this License for your documents</H1
|
||||
><P
|
||||
>To use this License in a document you have written, include
|
||||
a copy of the License in the document and put the following
|
||||
copyright and license notices just after the title page:</P
|
||||
><A
|
||||
NAME="AEN2605"><BLOCKQUOTE
|
||||
CLASS="BLOCKQUOTE"
|
||||
><P
|
||||
> Copyright (c) YEAR YOUR NAME.
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
under the terms of the GNU Free Documentation License, Version 1.1
|
||||
or any later version published by the Free Software Foundation;
|
||||
with the Invariant Sections being LIST THEIR TITLES, with the
|
||||
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
|
||||
A copy of the license is included in the section entitled "GNU
|
||||
Free Documentation License".
|
||||
</P
|
||||
></BLOCKQUOTE
|
||||
><P
|
||||
>If you have no Invariant Sections, write "with no Invariant
|
||||
Sections" instead of saying which ones are invariant. If you have
|
||||
no Front-Cover Texts, write "no Front-Cover Texts" instead of
|
||||
"Front-Cover Texts being LIST"; likewise for Back-Cover
|
||||
Texts.</P
|
||||
><P
|
||||
>If your document contains nontrivial examples of program
|
||||
code, we recommend releasing these examples in parallel under your
|
||||
choice of free software license, such as the GNU General Public
|
||||
License, to permit their use in free software.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-10.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="glossary.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>FUTURE REVISIONS OF THIS LICENSE</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Glossary</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
214
mozilla/webtools/bugzilla/docs/html/gfdl.html
Normal file
214
mozilla/webtools/bugzilla/docs/html/gfdl.html
Normal file
@@ -0,0 +1,214 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>GNU Free Documentation License</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Hacking Bugzilla"
|
||||
HREF="bzhacking.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="PREAMBLE"
|
||||
HREF="gfdl-0.html"></HEAD
|
||||
><BODY
|
||||
CLASS="appendix"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="bzhacking.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="gfdl-0.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="appendix"
|
||||
><H1
|
||||
><A
|
||||
NAME="gfdl">Appendix E. GNU Free Documentation License</H1
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
><DT
|
||||
><B
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>0. <A
|
||||
HREF="gfdl-0.html"
|
||||
>PREAMBLE</A
|
||||
></DT
|
||||
><DT
|
||||
>1. <A
|
||||
HREF="gfdl-1.html"
|
||||
>APPLICABILITY AND DEFINITIONS</A
|
||||
></DT
|
||||
><DT
|
||||
>2. <A
|
||||
HREF="gfdl-2.html"
|
||||
>VERBATIM COPYING</A
|
||||
></DT
|
||||
><DT
|
||||
>3. <A
|
||||
HREF="gfdl-3.html"
|
||||
>COPYING IN QUANTITY</A
|
||||
></DT
|
||||
><DT
|
||||
>4. <A
|
||||
HREF="gfdl-4.html"
|
||||
>MODIFICATIONS</A
|
||||
></DT
|
||||
><DT
|
||||
>5. <A
|
||||
HREF="gfdl-5.html"
|
||||
>COMBINING DOCUMENTS</A
|
||||
></DT
|
||||
><DT
|
||||
>6. <A
|
||||
HREF="gfdl-6.html"
|
||||
>COLLECTIONS OF DOCUMENTS</A
|
||||
></DT
|
||||
><DT
|
||||
>7. <A
|
||||
HREF="gfdl-7.html"
|
||||
>AGGREGATION WITH INDEPENDENT WORKS</A
|
||||
></DT
|
||||
><DT
|
||||
>8. <A
|
||||
HREF="gfdl-8.html"
|
||||
>TRANSLATION</A
|
||||
></DT
|
||||
><DT
|
||||
>9. <A
|
||||
HREF="gfdl-9.html"
|
||||
>TERMINATION</A
|
||||
></DT
|
||||
><DT
|
||||
>10. <A
|
||||
HREF="gfdl-10.html"
|
||||
>FUTURE REVISIONS OF THIS LICENSE</A
|
||||
></DT
|
||||
><DT
|
||||
><A
|
||||
HREF="gfdl-howto.html"
|
||||
>How to use this License for your documents</A
|
||||
></DT
|
||||
></DL
|
||||
></DIV
|
||||
><P
|
||||
>Version 1.1, March 2000</P
|
||||
><A
|
||||
NAME="AEN2515"><BLOCKQUOTE
|
||||
CLASS="BLOCKQUOTE"
|
||||
><P
|
||||
>Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.</P
|
||||
></BLOCKQUOTE
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="bzhacking.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="gfdl-0.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Hacking Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>PREAMBLE</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -10,8 +10,8 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="SourceForge"
|
||||
HREF="variant-sourceforge.html"></HEAD
|
||||
TITLE="How to use this License for your documents"
|
||||
HREF="gfdl-howto.html"></HEAD
|
||||
><BODY
|
||||
CLASS="glossary"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -39,7 +39,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="variant-sourceforge.html"
|
||||
HREF="gfdl-howto.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -68,7 +68,7 @@ CLASS="glossdiv"
|
||||
><H1
|
||||
CLASS="glossdiv"
|
||||
><A
|
||||
NAME="AEN2183">0-9, high ascii</H1
|
||||
NAME="AEN2610">0-9, high ascii</H1
|
||||
><DL
|
||||
><DT
|
||||
><B
|
||||
@@ -76,22 +76,24 @@ NAME="AEN2183">0-9, high ascii</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>Apache web server, and other NCSA-compliant web servers,
|
||||
observe the convention of using files in directories called
|
||||
<TT
|
||||
> Apache web server, and other NCSA-compliant web servers,
|
||||
observe the convention of using files in directories
|
||||
called <TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
|
||||
to restrict access to certain files. In Bugzilla, they are used
|
||||
to keep secret files which would otherwise
|
||||
compromise your installation - e.g. the
|
||||
<TT
|
||||
> files. These
|
||||
restrict parameters of the web server. In Bugzilla, they
|
||||
are used to restrict access to certain files which would
|
||||
otherwise compromise your installation. For instance, the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>localconfig</TT
|
||||
>
|
||||
file contains the password to your database.
|
||||
curious.</P
|
||||
> file contains the
|
||||
password to your database. If this information were
|
||||
generally available, and remote access to your database
|
||||
turned on, you risk corruption of your database by
|
||||
computer criminals or the curious.
|
||||
</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -108,28 +110,23 @@ NAME="gloss-a">A</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>In this context, Apache is the web server most commonly used
|
||||
for serving up
|
||||
<I
|
||||
>In this context, Apache is the web server most
|
||||
commonly used for serving up
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
>Bugzilla</I
|
||||
>
|
||||
|
||||
pages. Contrary to popular belief, the apache web server has nothing
|
||||
to do with the ancient and noble Native American tribe, but instead
|
||||
derived its name from the fact that it was
|
||||
<SPAN
|
||||
> pages. Contrary to
|
||||
popular belief, the apache web server has nothing to do
|
||||
with the ancient and noble Native American tribe, but
|
||||
instead derived its name from the fact that it was
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"a patchy"</SPAN
|
||||
>
|
||||
|
||||
version of the original
|
||||
<SPAN
|
||||
> version of the original
|
||||
<SPAN
|
||||
CLASS="acronym"
|
||||
>NCSA</SPAN
|
||||
>
|
||||
|
||||
world-wide-web server.</P
|
||||
> world-wide-web server.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -146,24 +143,21 @@ NAME="gloss-b">B</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>A
|
||||
<SPAN
|
||||
> A <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"bug"</SPAN
|
||||
>
|
||||
|
||||
in Bugzilla refers to an issue entered into the database which has an
|
||||
associated number, assignments, comments, etc. Some also refer to a
|
||||
<SPAN
|
||||
>"Bug"</SPAN
|
||||
> in Bugzilla refers to an issue
|
||||
entered into the database which has an associated number,
|
||||
assignments, comments, etc. Some also refer to a
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"tickets"</SPAN
|
||||
>
|
||||
or
|
||||
<SPAN
|
||||
> or <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"issues"</SPAN
|
||||
>;
|
||||
in the context of Bugzilla, they are synonymous.</P
|
||||
>; in the
|
||||
context of Bugzilla, they are synonymous.
|
||||
</P
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
@@ -171,10 +165,29 @@ CLASS="QUOTE"
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>Each Bugzilla bug is assigned a number that uniquely identifies
|
||||
that bug. The bug associated with a bug number can be pulled up via a
|
||||
query, or easily from the very front page by typing the number in the
|
||||
"Find" box.</P
|
||||
> Each Bugzilla Bug is assigned a number that uniquely
|
||||
identifies that Bug. The Bug associated with a Bug Number
|
||||
can be pulled up via a query, or easily from the very
|
||||
front page by typing the number in the "Find" box.
|
||||
</P
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
>Bug Life Cycle</B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>A Bug has stages through which it must pass before
|
||||
becoming a <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"closed bug"</SPAN
|
||||
>, including
|
||||
acceptance, resolution, and verification. The <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Bug
|
||||
Life Cycle"</SPAN
|
||||
> is moderately flexible according to
|
||||
the needs of the organization using it, though.</P
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
@@ -182,8 +195,9 @@ CLASS="QUOTE"
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>Bugzilla is the world-leading free software bug tracking system.
|
||||
</P
|
||||
> Bugzilla is the industry-standard bug tracking system. It
|
||||
is quite popular among Open Source enthusiasts.
|
||||
</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -201,39 +215,39 @@ NAME="gloss-component"><B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>A Component is a subsection of a Product. It should be a narrow
|
||||
category, tailored to your organization. All Products must contain at
|
||||
least one Component (and, as a matter of fact, creating a Product
|
||||
with no Components will create an error in Bugzilla).</P
|
||||
> A Component is a subsection of a Product. It should be a
|
||||
narrow category, tailored to your organization. All
|
||||
Products must contain at least one Component (and, as a
|
||||
matter of fact, creating a Product with no Components will
|
||||
create an error in Bugzilla).
|
||||
</P
|
||||
></DD
|
||||
><DT
|
||||
><A
|
||||
NAME="gloss-cpan"><B
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>CPAN</SPAN
|
||||
>
|
||||
</B
|
||||
></B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>CPAN</SPAN
|
||||
>
|
||||
|
||||
stands for the
|
||||
<SPAN
|
||||
> stands for the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Comprehensive Perl Archive Network"</SPAN
|
||||
>.
|
||||
CPAN maintains a large number of extremely useful
|
||||
<I
|
||||
>. CPAN
|
||||
maintains a large number of extremely useful
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
>Perl</I
|
||||
>
|
||||
modules - encapsulated chunks of code for performing a
|
||||
particular task.</P
|
||||
> modules. By themselves, Perl
|
||||
modules generally do nothing, but when used as part of a
|
||||
larger program, they provide much-needed algorithms and
|
||||
functionality.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -250,19 +264,18 @@ NAME="gloss-d">D</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>A daemon is a computer program which runs in the background. In
|
||||
general, most daemons are started at boot time via System V init
|
||||
scripts, or through RC scripts on BSD-based systems.
|
||||
<I
|
||||
>A daemon is a computer program which runs in the
|
||||
background. In general, most daemons are started at boot
|
||||
time via System V init scripts, or through RC scripts on
|
||||
BSD-based systems. <I
|
||||
CLASS="glossterm"
|
||||
>mysqld</I
|
||||
>,
|
||||
the MySQL server, and
|
||||
<I
|
||||
>, the
|
||||
MySQL server, and <I
|
||||
CLASS="glossterm"
|
||||
>apache</I
|
||||
>,
|
||||
a web server, are generally run as daemons.</P
|
||||
>, a web
|
||||
server, are generally run as daemons.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -279,25 +292,43 @@ NAME="gloss-g"></H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>The word
|
||||
<SPAN
|
||||
>The word <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Groups"</SPAN
|
||||
>
|
||||
|
||||
has a very special meaning to Bugzilla. Bugzilla's main security
|
||||
mechanism comes by placing users in groups, and assigning those
|
||||
groups certain privileges to view bugs in particular
|
||||
<I
|
||||
> has a very special
|
||||
meaning to Bugzilla. Bugzilla's main security mechanism
|
||||
comes by lumping users into groups, and assigning those
|
||||
groups certain privileges to
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
>Products</I
|
||||
>
|
||||
in the
|
||||
<I
|
||||
> and
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
>Components</I
|
||||
> in the
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
>Bugzilla</I
|
||||
>
|
||||
database.</P
|
||||
> database.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="glossdiv"
|
||||
><H1
|
||||
CLASS="glossdiv"
|
||||
><A
|
||||
NAME="gloss-i">I</H1
|
||||
><DL
|
||||
><DT
|
||||
><A
|
||||
NAME="gloss-infiniteloop"><B
|
||||
>Infinite Loop</B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>A loop of information that never ends; see recursion.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -314,16 +345,15 @@ NAME="gloss-m">M</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>mysqld is the name of the
|
||||
<I
|
||||
>mysqld is the name of the
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
>daemon</I
|
||||
>
|
||||
|
||||
for the MySQL database. In general, it is invoked automatically
|
||||
through the use of the System V init scripts on GNU/Linux and
|
||||
AT&T System V-based systems, such as Solaris and HP/UX, or
|
||||
through the RC scripts on BSD-based systems.</P
|
||||
> for the MySQL database. In
|
||||
general, it is invoked automatically through the use of
|
||||
the System V init scripts on GNU/Linux and AT&T System
|
||||
V-based systems, such as Solaris and HP/UX, or through the
|
||||
RC scripts on BSD-based systems.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -340,11 +370,55 @@ NAME="gloss-p">P</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>A Product is a broad category of types of bugs, normally
|
||||
representing a single piece of software or entity. In general,
|
||||
there are several Components to a Product. A Product may define a
|
||||
group (used for security) for all bugs entered into
|
||||
its Components.</P
|
||||
>A Product is a broad category of types of bugs. In
|
||||
general, there are several Components to a Product. A
|
||||
Product also defines a default Group (used for Bug
|
||||
Security) for all bugs entered into components beneath
|
||||
it.</P
|
||||
><DIV
|
||||
CLASS="example"
|
||||
><A
|
||||
NAME="AEN2701"><P
|
||||
><B
|
||||
>Example 1. A Sample Product</B
|
||||
></P
|
||||
><P
|
||||
>A company sells a software product called
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"X"</SPAN
|
||||
>. They also maintain some older
|
||||
software called <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Y"</SPAN
|
||||
>, and have a secret
|
||||
project <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Z"</SPAN
|
||||
>. An effective use of Products
|
||||
might be to create Products <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"X"</SPAN
|
||||
>,
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Y"</SPAN
|
||||
>, <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Z"</SPAN
|
||||
>, each with Components
|
||||
of User Interface, Database, and Business Logic. They
|
||||
might also change group permissions so that only those
|
||||
people who are members of Group <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Z"</SPAN
|
||||
> can see
|
||||
components and bugs under Product
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Z"</SPAN
|
||||
>.</P
|
||||
></DIV
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
@@ -352,16 +426,15 @@ NAME="gloss-p">P</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>First written by Larry Wall, Perl is a remarkable program
|
||||
language. It has the benefits of the flexibility of an interpreted
|
||||
scripting language (such as shell script), combined with the speed
|
||||
and power of a compiled language, such as C.
|
||||
<I
|
||||
>First written by Larry Wall, Perl is a remarkable
|
||||
program language. It has the benefits of the flexibility
|
||||
of an interpreted scripting language (such as shell
|
||||
script), combined with the speed and power of a compiled
|
||||
language, such as C. <I
|
||||
CLASS="glossterm"
|
||||
>Bugzilla</I
|
||||
>
|
||||
|
||||
is maintained in Perl.</P
|
||||
> is
|
||||
maintained in Perl.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -378,33 +451,57 @@ NAME="gloss-q">Q</H1
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"QA"</SPAN
|
||||
>,
|
||||
<SPAN
|
||||
>, <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Q/A"</SPAN
|
||||
>, and
|
||||
<SPAN
|
||||
>, and
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Q.A."</SPAN
|
||||
>
|
||||
are short for
|
||||
<SPAN
|
||||
> are short for <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Quality Assurance"</SPAN
|
||||
>.
|
||||
In most large software development organizations, there is a team
|
||||
devoted to ensuring the product meets minimum standards before
|
||||
shipping. This team will also generally want to track the progress of
|
||||
bugs over their life cycle, thus the need for the
|
||||
<SPAN
|
||||
>"Quality
|
||||
Assurance"</SPAN
|
||||
>. In most large software development
|
||||
organizations, there is a team devoted to ensuring the
|
||||
product meets minimum standards before shipping. This
|
||||
team will also generally want to track the progress of
|
||||
bugs over their life cycle, thus the need for the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"QA Contact"</SPAN
|
||||
>
|
||||
|
||||
field in a bug.</P
|
||||
> field in a Bug.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="glossdiv"
|
||||
><H1
|
||||
CLASS="glossdiv"
|
||||
><A
|
||||
NAME="gloss-r">R</H1
|
||||
><DL
|
||||
><DT
|
||||
><A
|
||||
NAME="gloss-recursion"><B
|
||||
>Recursion</B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>The property of a function looking back at itself for
|
||||
something. <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"GNU"</SPAN
|
||||
>, for instance, stands for
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"GNU's Not UNIX"</SPAN
|
||||
>, thus recursing upon itself
|
||||
for definition. For further clarity, see Infinite
|
||||
Loop.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -417,71 +514,57 @@ NAME="gloss-s">S</H1
|
||||
><DL
|
||||
><DT
|
||||
><B
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>SGML</SPAN
|
||||
>
|
||||
</B
|
||||
></B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>SGML</SPAN
|
||||
>
|
||||
|
||||
stands for
|
||||
<SPAN
|
||||
> stands for <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Standard Generalized Markup Language"</SPAN
|
||||
>.
|
||||
Created in the 1980's to provide an extensible means to maintain
|
||||
documentation based upon content instead of presentation,
|
||||
<SPAN
|
||||
>"Standard
|
||||
Generalized Markup Language"</SPAN
|
||||
>. Created in the
|
||||
1980's to provide an extensible means to maintain
|
||||
documentation based upon content instead of presentation,
|
||||
<SPAN
|
||||
CLASS="acronym"
|
||||
>SGML</SPAN
|
||||
>
|
||||
|
||||
has withstood the test of time as a robust, powerful language.
|
||||
<I
|
||||
> has withstood the test of time as
|
||||
a robust, powerful language.
|
||||
<I
|
||||
CLASS="glossterm"
|
||||
> <SPAN
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>XML</SPAN
|
||||
>
|
||||
</I
|
||||
>
|
||||
|
||||
is the
|
||||
<SPAN
|
||||
></I
|
||||
> is the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"baby brother"</SPAN
|
||||
>
|
||||
|
||||
of SGML; any valid
|
||||
<SPAN
|
||||
> of SGML; any valid
|
||||
<SPAN
|
||||
CLASS="acronym"
|
||||
>XML</SPAN
|
||||
>
|
||||
|
||||
document it, by definition, a valid
|
||||
<SPAN
|
||||
> document it, by definition, a valid
|
||||
<SPAN
|
||||
CLASS="acronym"
|
||||
>SGML</SPAN
|
||||
>
|
||||
|
||||
document. The document you are reading is written and maintained in
|
||||
<SPAN
|
||||
> document. The document you are
|
||||
reading is written and maintained in
|
||||
<SPAN
|
||||
CLASS="acronym"
|
||||
>SGML</SPAN
|
||||
>,
|
||||
and is also valid
|
||||
<SPAN
|
||||
>, and is also valid
|
||||
<SPAN
|
||||
CLASS="acronym"
|
||||
>XML</SPAN
|
||||
>
|
||||
|
||||
if you modify the Document Type Definition.</P
|
||||
> if you modify the Document Type
|
||||
Definition.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -499,18 +582,18 @@ NAME="gloss-target-milestone"><B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>Target Milestones are Product goals. They are configurable on a
|
||||
per-Product basis. Most software development houses have a concept of
|
||||
|
||||
<SPAN
|
||||
> Target Milestones are Product goals. They are
|
||||
configurable on a per-Product basis. Most software
|
||||
development houses have a concept of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"milestones"</SPAN
|
||||
>
|
||||
|
||||
where the people funding a project expect certain functionality on
|
||||
certain dates. Bugzilla facilitates meeting these milestones by
|
||||
giving you the ability to declare by which milestone a bug will be
|
||||
fixed, or an enhancement will be implemented.</P
|
||||
> where the people funding a
|
||||
project expect certain functionality on certain dates.
|
||||
Bugzilla facilitates meeting these milestones by giving
|
||||
you the ability to declare by which milestone a bug will be
|
||||
fixed, or an enhancement will be implemented.
|
||||
</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -528,9 +611,9 @@ NAME="zarro-boogs-found"><B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>This is the cryptic response sent by Bugzilla when a query
|
||||
returned no results. It is just a goofy way of saying "Zero Bugs
|
||||
Found".</P
|
||||
>This is the cryptic response sent by Bugzilla when a
|
||||
query returned no results. It is just a goofy way of
|
||||
saying "Zero Bugs Found".</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
@@ -551,7 +634,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="variant-sourceforge.html"
|
||||
HREF="gfdl-howto.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -575,7 +658,7 @@ VALIGN="top"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>SourceForge</TD
|
||||
>How to use this License for your documents</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
|
||||
351
mozilla/webtools/bugzilla/docs/html/granttables.html
Normal file
351
mozilla/webtools/bugzilla/docs/html/granttables.html
Normal file
@@ -0,0 +1,351 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>MySQL Permissions & Grant Tables</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="The Bugzilla Database"
|
||||
HREF="database.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="MySQL Bugzilla Database Introduction"
|
||||
HREF="dbdoc.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="dbdoc.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix C. The Bugzilla Database</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="granttables">C.3. MySQL Permissions & Grant Tables</H1
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>The following portion of documentation comes from my
|
||||
answer to an old discussion of Keystone, a cool product that
|
||||
does trouble-ticket tracking for IT departments. I wrote this
|
||||
post to the Keystone support group regarding MySQL grant
|
||||
table permissions, and how to use them effectively. It is
|
||||
badly in need of updating, as I believe MySQL has added a
|
||||
field or two to the grant tables since this time, but it
|
||||
serves as a decent introduction and troubleshooting document
|
||||
for grant table issues. I used Keynote to track my troubles
|
||||
until I discovered Bugzilla, which gave me a whole new set of
|
||||
troubles to work on : ) Although it is of limited use, it
|
||||
still has SOME use, thus it's still included.</P
|
||||
><P
|
||||
> Please note, however, that I was a relatively new user to
|
||||
MySQL at the time. Some of my suggestions, particularly in
|
||||
how to set up security, showed a terrible lack of
|
||||
security-related database experience.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
CLASS="literallayout"
|
||||
><br>
|
||||
From matt_barnson@singletrac.com Wed Jul 7 09:00:07 1999<br>
|
||||
Date: Mon, 1 Mar 1999 21:37:04 -0700 <br>
|
||||
From: Matthew Barnson matt_barnson@singletrac.com<br>
|
||||
To: keystone-users@homeport.org<br>
|
||||
Subject: [keystone-users] Grant Tables FAQ<br>
|
||||
<br>
|
||||
[The following text is in the "iso-8859-1" character set]<br>
|
||||
[Your display is set for the "US-ASCII" character set]<br>
|
||||
[Some characters may be displayed incorrectly]<br>
|
||||
<br>
|
||||
Maybe we can include this rambling message in the Keystone FAQ? It gets<br>
|
||||
asked a lot, and the only option current listed in the FAQ is<br>
|
||||
"--skip-grant-tables".<br>
|
||||
<br>
|
||||
Really, you can't go wrong by reading section 6 of the MySQL manual, at<br>
|
||||
http://www.mysql.com/Manual/manual.html. I am sure their description is<br>
|
||||
better than mine.<br>
|
||||
<br>
|
||||
MySQL runs fine without permissions set up correctly if you run the mysql<br>
|
||||
daemon with the "--skip-grant-tables" option. Running this way denies<br>
|
||||
access to nobody. Unfortunately, unless you've got yourself firewalled it<br>
|
||||
also opens the potential for abuse if someone knows you're running it.<br>
|
||||
<br>
|
||||
Additionally, the default permissions for MySQL allow anyone at localhost<br>
|
||||
access to the database if the database name begins with "test_" or is named<br>
|
||||
"test" (i.e. "test_keystone"). You can change the name of your database in<br>
|
||||
the keystone.conf file ($sys_dbname). This is the way I am doing it for<br>
|
||||
some of my databases, and it works fine.<br>
|
||||
<br>
|
||||
The methods described below assume you're running MySQL on the same box as<br>
|
||||
your webserver, and that you don't mind if your $sys_dbuser for Keystone has<br>
|
||||
superuser access. See near the bottom of this message for a description of<br>
|
||||
what each field does.<br>
|
||||
<br>
|
||||
Method #1:<br>
|
||||
<br>
|
||||
1. cd /var/lib<br>
|
||||
#location where you'll want to run /usr/bin/mysql_install_db shell<br>
|
||||
script from to get it to work.<br>
|
||||
<br>
|
||||
2. ln -s mysql data <br>
|
||||
# soft links the "mysql" directory to "data", which is what<br>
|
||||
mysql_install_db expects. Alternately, you can edit mysql_install_db and<br>
|
||||
change all the "./data" references to "./mysql".<br>
|
||||
<br>
|
||||
3. Edit /usr/bin/mysql_install_db with your favorite text editor (vi,<br>
|
||||
emacs, jot, pico, etc.)<br>
|
||||
A) Copy the "INSERT INTO db VALUES<br>
|
||||
('%','test\_%','','Y','Y','Y','Y','Y','Y');" and paste it immediately after<br>
|
||||
itself. Chage the 'test\_%' value to 'keystone', or the value of<br>
|
||||
$sys_dbname in keystone.conf.<br>
|
||||
B) If you are running your keystone database with any user, you'll need to<br>
|
||||
copy the "INSERT INTO user VALUES<br>
|
||||
('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');" line after<br>
|
||||
itself and change 'root' to the name of the keystone database user<br>
|
||||
($sys_dbuser) in keystone.conf.<br>
|
||||
<br>
|
||||
# adds entries to the script to create grant tables for specific<br>
|
||||
hosts and users. The user you set up has super-user access ($sys_dbuser) --<br>
|
||||
you may or may not want this. The layout of mysql_install_db is really very<br>
|
||||
uncomplicated.<br>
|
||||
<br>
|
||||
4. /usr/bin/mysqladmin shutdown<br>
|
||||
# ya gotta shut it down before you can reinstall the grant tables!<br>
|
||||
<br>
|
||||
5. rm -i /var/lib/mysql/mysql/*.IS?' and answer 'Y' to the deletion<br>
|
||||
questions.<br>
|
||||
# nuke your current grant tables. This WILL NOT delete any other<br>
|
||||
databases than your grant tables.<br>
|
||||
<br>
|
||||
6. /usr/bin/mysql_install_db<br>
|
||||
# run the script you just edited to install your new grant tables.<br>
|
||||
<br>
|
||||
7. mysqladmin -u root password (new_password) <br>
|
||||
# change the root MySQL password, or else anyone on localhost can<br>
|
||||
login to MySQL as root and make changes. You can skip this step if you want<br>
|
||||
keystone to connect as root with no password.<br>
|
||||
<br>
|
||||
8. mysqladmin -u (webserver_user_name) password (new_password) <br>
|
||||
# change the password of the $sys_dbuser. Note that you will need<br>
|
||||
to change the password in the keystone.conf file as well in $sys_dbpasswd,<br>
|
||||
and if your permissions are set up incorrectly anybody can type the URL to<br>
|
||||
your keystone.conf file and get the password. Not that this will help them<br>
|
||||
much if your permissions are set to @localhost.<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
Method #2: easier, but a pain reproducing if you have to delete your grant<br>
|
||||
tables. This is the "recommended" method for altering grant tables in<br>
|
||||
MySQL. I don't use it because I like the other way :)<br>
|
||||
<br>
|
||||
shell> mysql --user=root keystone<br>
|
||||
<br>
|
||||
mysql> GRANT<br>
|
||||
SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,DROP,RELOAD,SHUTDOWN,PROCESS,<br>
|
||||
FILE,<br>
|
||||
ON keystone.*<br>
|
||||
TO <$sys_dbuser name>@localhost<br>
|
||||
IDENTIFIED BY '(password)'<br>
|
||||
WITH GRANT OPTION;<br>
|
||||
<br>
|
||||
OR<br>
|
||||
<br>
|
||||
mysql> GRANT ALL PRIVILEGES <br>
|
||||
ON keystone.*<br>
|
||||
TO <$sys_dbuser name>@localhost<br>
|
||||
IDENTIFIED BY '(password)'<br>
|
||||
WITH GRANT OPTION;<br>
|
||||
<br>
|
||||
# this grants the required permissions to the keystone ($sys_dbuser)<br>
|
||||
account defined in keystone.conf. However, if you are runnning many<br>
|
||||
different MySQL-based apps, as we are, it's generally better to edit the<br>
|
||||
mysql_install_db script to be able to quickly reproduce your permissions<br>
|
||||
structure again. Note that the FILE privelege and WITH GRANT OPTION may not<br>
|
||||
be in your best interest to include.<br>
|
||||
<br>
|
||||
<br>
|
||||
GRANT TABLE FIELDS EXPLANATION:<br>
|
||||
Quick syntax summary: "%" in MySQL is a wildcard. I.E., if you are<br>
|
||||
defining your DB table and in the 'host' field and enter '%', that means<br>
|
||||
that any host can access that database. Of course, that host must also have<br>
|
||||
a valid db user in order to do anything useful. 'db'=name of database. In<br>
|
||||
our case, it should be "keystone". "user" should be your "$sys_dbuser"<br>
|
||||
defined in keystone.conf. Note that you CANNOT add or change a password by<br>
|
||||
using the "INSERT INTO db (X)" command -- you must change it with the mysql<br>
|
||||
-u command as defined above. Passwords are stored encrypted in the MySQL<br>
|
||||
database, and if you try to enter it directly into the table they will not<br>
|
||||
match.<br>
|
||||
<br>
|
||||
TABLE: USER. Everything after "password" is a privelege granted (Y/N).<br>
|
||||
This table controls individual user global access rights.<br>
|
||||
<br>
|
||||
'host','user','password','select','insert','update','delete','index','alter'<br>
|
||||
,'create','drop','grant','reload','shutdown','process','file'<br>
|
||||
<br>
|
||||
TABLE: DB. This controls access of USERS to databases.<br>
|
||||
<br>
|
||||
'host','db','user','select','insert','update','delete','index','alter','crea<br>
|
||||
te','drop','grant'<br>
|
||||
<br>
|
||||
TABLE: HOST. This controls which HOSTS are allowed what global access<br>
|
||||
rights. Note that the HOST table, USER table, and DB table are very closely<br>
|
||||
connected -- if an authorized USER attempts an SQL request from an<br>
|
||||
unauthorized HOST, she's denied. If a request from an authorized HOST is<br>
|
||||
not an authorized USER, it is denied. If a globally authorized USER does<br>
|
||||
not have rights to a certain DB, she's denied. Get the picture?<br>
|
||||
<br>
|
||||
'host','db','select','insert','update','delete','index','alter','create','dr<br>
|
||||
op','grant'<br>
|
||||
<br>
|
||||
<br>
|
||||
You should now have a working knowledge of MySQL grant tables. If there is<br>
|
||||
anything I've left out of this answer that you feel is pertinent, or if my<br>
|
||||
instructions don't work for you, please let me know and I'll re-post this<br>
|
||||
letter again, corrected. I threw it together one night out of exasperation<br>
|
||||
for all the newbies who don't know squat about MySQL yet, so it is almost<br>
|
||||
guaranteed to have errors.<br>
|
||||
<br>
|
||||
Once again, you can't go wrong by reading section 6 of the MySQL manual. It<br>
|
||||
is more detailed than I!<br>
|
||||
http://www.mysql.com/Manual/manual.html.<br>
|
||||
<br>
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="dbdoc.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>MySQL Bugzilla Database Introduction</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="database.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Useful Patches and Utilities for Bugzilla</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -75,58 +75,200 @@ CLASS="section"
|
||||
><A
|
||||
NAME="groups">5.5. Groups and Group Security</H1
|
||||
><P
|
||||
>Groups allow the administrator
|
||||
>Groups can be very useful in bugzilla, because they allow users
|
||||
to isolate bugs or products that should only be seen by certain people.
|
||||
There are two types of group - Generic Groups, and Product-Based Groups.
|
||||
</P
|
||||
Groups can also be a complicated minefield of interdependencies and
|
||||
weirdness if mismanaged.
|
||||
<DIV
|
||||
CLASS="example"
|
||||
><A
|
||||
NAME="AEN1521"><P
|
||||
><B
|
||||
>Example 5-5. When to Use Group Security</B
|
||||
></P
|
||||
><DIV
|
||||
CLASS="informalexample"
|
||||
><A
|
||||
NAME="AEN1523"><P
|
||||
></P
|
||||
><P
|
||||
> Product-Based Groups are matched with products, and allow you to restrict
|
||||
access to bugs on a per-product basis. They are enabled using the
|
||||
usebuggroups Param. Turning on the usebuggroupsentry
|
||||
Param will mean bugs automatically get added to their product group when
|
||||
filed.
|
||||
</P
|
||||
>Many Bugzilla sites isolate "Security-related" bugs from all
|
||||
other bugs. This way, they can have a fix ready before the security
|
||||
vulnerability is announced to the world. You can create a
|
||||
"Security" product which, by default, has no members, and only add
|
||||
members to the group (in their individual User page, as described
|
||||
under User Administration) who should have priveleged access to
|
||||
"Security" bugs. Alternately, you may create a Group independently
|
||||
of any Product, and change the Group mask on individual bugs to
|
||||
restrict access to members only of certain Groups.</P
|
||||
><P
|
||||
> Generic Groups have no special relationship to products;
|
||||
you create them, and put bugs in them
|
||||
as required. One example of the use of Generic Groups
|
||||
is Mozilla's "Security" group,
|
||||
into which security-sensitive bugs are placed until fixed. Only the
|
||||
Mozilla Security Team are members of this group.
|
||||
</P
|
||||
></P
|
||||
></DIV
|
||||
></DIV
|
||||
>
|
||||
|
||||
Groups only work if you enable the "usebuggroups" paramater. In
|
||||
addition, if the "usebuggroupsentry" parameter is "On", one can
|
||||
restrict access to products by groups, so that only members of a
|
||||
product group are able to view bugs within that product. Group security
|
||||
in Bugzilla can be divided into two categories: Generic and
|
||||
Product-Based.</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
>To create Generic Groups:</P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Groups in Bugzilla are a complicated beast that evolved out of
|
||||
very simple user permission bitmasks, apparently itself derived from
|
||||
common concepts in UNIX access controls. A "bitmask" is a
|
||||
fixed-length number whose value can describe one, and only one, set
|
||||
of states. For instance, UNIX file permissions are assigned bitmask
|
||||
values: "execute" has a value of 1, "write" has a value of 2, and
|
||||
"read" has a value of 4. Add them together, and a file can be read,
|
||||
written to, and executed if it has a bitmask of "7". (This is a
|
||||
simplified example -- anybody who knows UNIX security knows there is
|
||||
much more to it than this. Please bear with me for the purpose of
|
||||
this note.) The only way a bitmask scheme can work is by doubling the
|
||||
bit count for each value. Thus if UNIX wanted to offer another file
|
||||
permission, the next would have to be a value of 8, then the next 16,
|
||||
the next 32, etc.</P
|
||||
><P
|
||||
>Similarly, Bugzilla offers a bitmask to define group
|
||||
permissions, with an internal limit of 64. Several are already
|
||||
occupied by built-in permissions. The way around this limitation is
|
||||
to avoid assigning groups to products if you have many products,
|
||||
avoid bloating of group lists, and religiously prune irrelevant
|
||||
groups. In reality, most installations of Bugzilla support far fewer
|
||||
than 64 groups, so this limitation has not hit for most sites, but it
|
||||
is on the table to be revised for Bugzilla 3.0 because it interferes
|
||||
with the security schemes of some administrators.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
>To enable Generic Group Security ("usebuggroups"):</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>Select the "groups"
|
||||
>Turn "On" "usebuggroups" in the "Edit Parameters"
|
||||
screen.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>You will generally have no groups set up. Select the "groups"
|
||||
link in the footer.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Take a moment to understand the instructions on the "Edit
|
||||
Groups" screen, then select the "Add Group" link.</P
|
||||
Groups" screen. Once you feel confident you understand what is
|
||||
expected of you, select the "Add Group" link.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Fill out the "New Name", "New Description", and
|
||||
"New User RegExp" fields. "New User RegExp" allows you to automatically
|
||||
place all users who fulfill the Regular Expression into the new group.
|
||||
When you have finished, click "Add".</P
|
||||
>Fill out the "New Name" (remember, no spaces!), "New
|
||||
Description", and "New User RegExp" fields. "New User RegExp"
|
||||
allows you to automatically place all users who fulfill the Regular
|
||||
Expression into the new group.
|
||||
<DIV
|
||||
CLASS="example"
|
||||
><A
|
||||
NAME="AEN1538"><P
|
||||
><B
|
||||
>Example 5-6. Creating a New Group</B
|
||||
></P
|
||||
><DIV
|
||||
CLASS="informalexample"
|
||||
><A
|
||||
NAME="AEN1540"><P
|
||||
></P
|
||||
><P
|
||||
>I created a group called DefaultGroup with a description
|
||||
of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"This is simply a group to play with"</SPAN
|
||||
>
|
||||
|
||||
, and a New User RegExp of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>".*@mydomain.tld"</SPAN
|
||||
>
|
||||
|
||||
. This new group automatically includes all Bugzilla users with
|
||||
"@mydomain.tld" at the end of their user id. When I finished,
|
||||
my new group was assigned bit #128.</P
|
||||
><P
|
||||
></P
|
||||
></DIV
|
||||
></DIV
|
||||
>
|
||||
|
||||
When you have finished, select the Add button.</P
|
||||
></LI
|
||||
></OL
|
||||
><P
|
||||
>To use Product-Based Groups:</P
|
||||
>To enable Product-Based Group Security
|
||||
(usebuggroupsentry):</P
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="warning"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/warning.gif"
|
||||
HSPACE="5"
|
||||
ALT="Warning"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Don't forget that you only have 64 groups masks available,
|
||||
total, for your installation of Bugzilla! If you plan on having more
|
||||
than 50 products in your individual Bugzilla installation, and
|
||||
require group security for your products, you should consider either
|
||||
running multiple Bugzillas or using Generic Group Security instead of
|
||||
Product-Based ("usebuggroupsentry") Group Security.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>Turn on "usebuggroups" and "usebuggroupsentry" in the "Edit
|
||||
>Turn "On" "usebuggroups" and "usebuggroupsentry" in the "Edit
|
||||
Parameters" screen.</P
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
@@ -149,8 +291,7 @@ ALT="Warning"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>XXX is this still true?
|
||||
"usebuggroupsentry" has the capacity to prevent the
|
||||
>"usebuggroupsentry" has the capacity to prevent the
|
||||
administrative user from directly altering bugs because of
|
||||
conflicting group permissions. If you plan on using
|
||||
"usebuggroupsentry", you should plan on restricting
|
||||
@@ -165,48 +306,62 @@ VALIGN="TOP"
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>In future, when you create a Product, a matching group will be
|
||||
automatically created. If you need to add a Product Group to
|
||||
a Product which was created before you turned on usebuggroups,
|
||||
then simply create a new group, as outlined above, with the
|
||||
same name as the Product.</P
|
||||
>You will generally have no Groups set up, unless you enabled
|
||||
"usebuggroupsentry" prior to creating any Products. To create
|
||||
"Generic Group Security" groups, follow the instructions given
|
||||
above. To create Product-Based Group security, simply follow the
|
||||
instructions for creating a new Product. If you need to add users
|
||||
to these new groups as you create them, you will find the option to
|
||||
add them to the group available under the "Edit User"
|
||||
screens.</P
|
||||
></LI
|
||||
></OL
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
>You may find this example illustrative for how bug groups work.
|
||||
<DIV
|
||||
CLASS="example"
|
||||
><A
|
||||
NAME="AEN1555"><P
|
||||
><B
|
||||
>Example 5-7. Bugzilla Groups</B
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="warning"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/warning.gif"
|
||||
HSPACE="5"
|
||||
ALT="Warning"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Bugzilla currently has a limit of 64 groups per installation. If
|
||||
you have more than about 50 products, you should consider
|
||||
running multiple Bugzillas. Ask in the newsgroup for other
|
||||
suggestions for working around this restriction.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
CLASS="literallayout"
|
||||
>Bugzilla Groups example ----------------------- For<br>
|
||||
this example, let us suppose we have four groups, call them Group1,<br>
|
||||
Group2, Group3, and Group4. We have 5 users, User1, User2, User3,<br>
|
||||
User4, User5. We have 8 bugs, Bug1, ..., Bug8. Group membership is<br>
|
||||
defined by this chart: (X denotes that user is in that group.) (I<br>
|
||||
apologize for the nasty formatting of this table. Try viewing it in a<br>
|
||||
text-based browser or something for now. -MPB) G G G G r r r r o o o<br>
|
||||
o u u u u p p p p 1 2 3 4 +-+-+-+-+ User1|X| | | | +-+-+-+-+ User2|<br>
|
||||
|X| | | +-+-+-+-+ User3|X| |X| | +-+-+-+-+ User4|X|X|X| | +-+-+-+-+<br>
|
||||
User5| | | | | +-+-+-+-+ Bug restrictions are defined by this chart:<br>
|
||||
(X denotes that bug is restricted to that group.) G G G G r r r r o o<br>
|
||||
o o u u u u p p p p 1 2 3 4 +-+-+-+-+ Bug1| | | | | +-+-+-+-+ Bug2|<br>
|
||||
|X| | | +-+-+-+-+ Bug3| | |X| | +-+-+-+-+ Bug4| | | |X| +-+-+-+-+<br>
|
||||
Bug5|X|X| | | +-+-+-+-+ Bug6|X| |X| | +-+-+-+-+ Bug7|X|X|X| |<br>
|
||||
+-+-+-+-+ Bug8|X|X|X|X| +-+-+-+-+ Who can see each bug? Bug1 has no<br>
|
||||
group restrictions. Therefore, Bug1 can be seen by any user, whatever<br>
|
||||
their group membership. This is going to be the only bug that User5<br>
|
||||
can see, because User5 isn't in any groups. Bug2 can be seen by<br>
|
||||
anyone in Group2, that is User2 and User4. Bug3 can be seen by anyone<br>
|
||||
in Group3, that is User3 and User4. Bug4 can be seen by anyone in<br>
|
||||
Group4. Nobody is in Group4, so none of these users can see Bug4.<br>
|
||||
Bug5 can be seen by anyone who is in _both_ Group1 and Group2. This<br>
|
||||
is only User4. User1 cannot see it because he is not in Group2, and<br>
|
||||
User2 cannot see it because she is not in Group1. Bug6 can be seen by<br>
|
||||
anyone who is in both Group1 and Group3. This would include User3 and<br>
|
||||
User4. Similar to Bug5, User1 cannot see Bug6 because he is not in<br>
|
||||
Group3. Bug7 can be seen by anyone who is in Group1, Group2, and<br>
|
||||
Group3. This is only User4. All of the others are missing at least<br>
|
||||
one of those group privileges, and thus cannot see the bug. Bug8 can<br>
|
||||
be seen by anyone who is in Group1, Group2, Group3, and Group4. There<br>
|
||||
is nobody in all four of these groups, so nobody can see Bug8. It<br>
|
||||
doesn't matter that User4 is in Group1, Group2, and Group3, since he<br>
|
||||
isn't in Group4.</P
|
||||
></DIV
|
||||
><P
|
||||
> Note that group permissions are such that you need to be a member
|
||||
of <EM
|
||||
>all</EM
|
||||
> the groups a bug is in, for whatever
|
||||
reason, to see that bug.
|
||||
>
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
|
||||
@@ -118,10 +118,6 @@ BORDER="0"
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
>george@example.com</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
>ftp://ftp.mozilla.org</TD
|
||||
></TR
|
||||
><TR
|
||||
@@ -149,16 +145,8 @@ NAME="quicksearch">3.2.2. Quicksearch</H2
|
||||
><P
|
||||
>Quicksearch is a single-text-box query tool which uses
|
||||
metacharacters to indicate what is to be searched. For example, typing
|
||||
"<TT
|
||||
CLASS="filename"
|
||||
>foo|bar</TT
|
||||
>"
|
||||
into Quicksearch would search for "foo" or "bar" in the
|
||||
summary and status whiteboard of a bug; adding
|
||||
"<TT
|
||||
CLASS="filename"
|
||||
>:BazProduct</TT
|
||||
>" would
|
||||
"foo|bar" into Quicksearch would search for "foo" or "bar" in the
|
||||
summary and status whiteboard of a bug; adding ":BazProduct" would
|
||||
search only in that product.
|
||||
</P
|
||||
><P
|
||||
@@ -181,7 +169,7 @@ NAME="commenting">3.2.3. Comments</H2
|
||||
>If you are changing the fields on a bug, only comment if
|
||||
either you have something pertinent to say, or Bugzilla requires it.
|
||||
Otherwise, you may spam people unnecessarily with bug mail.
|
||||
To take an example: a user can set up their account to filter out messages
|
||||
To take an example: a user sets up their account to filter out messages
|
||||
where someone just adds themselves to the CC field of a bug
|
||||
(which happens a lot.) If you come along, add yourself to the CC field,
|
||||
and add a comment saying "Adding self to CC", then that person
|
||||
@@ -210,8 +198,8 @@ NAME="attachments">3.2.4. Attachments</H2
|
||||
you are pointing out a single-pixel problem.
|
||||
</P
|
||||
><P
|
||||
>Don't attach simple test cases (e.g. one HTML file, one
|
||||
CSS file and an image) as a ZIP file. Instead, upload them in
|
||||
>Don't attach simple test cases (e.g. one html file and one
|
||||
css file and one image) as a ZIP file. Instead, upload them in
|
||||
reverse order and edit the referring file so that they point to the
|
||||
attached files. This way, the test case works immediately
|
||||
out of the bug.
|
||||
@@ -222,7 +210,7 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN463">3.2.5. Filing Bugs</H2
|
||||
NAME="AEN460">3.2.5. Filing Bugs</H2
|
||||
><P
|
||||
>Try to make sure that everything said in the summary is also
|
||||
said in the first comment. Summaries are often updated and this will
|
||||
|
||||
@@ -13,11 +13,11 @@ REL="UP"
|
||||
TITLE="Using Bugzilla"
|
||||
HREF="using.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Using Bugzilla"
|
||||
HREF="using.html"><LINK
|
||||
TITLE="Why Should We Use Bugzilla?"
|
||||
HREF="why.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Hints and Tips"
|
||||
HREF="hintsandtips.html"></HEAD
|
||||
TITLE="Where can I find my user preferences?"
|
||||
HREF="init4me.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -45,7 +45,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="using.html"
|
||||
HREF="why.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -53,13 +53,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 3. Using Bugzilla</TD
|
||||
>Chapter 2. Using Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="hintsandtips.html"
|
||||
HREF="init4me.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,35 +73,62 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="how">3.1. How do I use Bugzilla?</H1
|
||||
NAME="how">2.3. How do I use Bugzilla?</H1
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
WIDTH="100%"
|
||||
CELLSPACING="0"
|
||||
CELLPADDING="0"
|
||||
CLASS="EPIGRAPH"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><I
|
||||
><P
|
||||
>This section contains information for end-users of Bugzilla.
|
||||
There is a Bugzilla test installation, called
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/"
|
||||
><I
|
||||
>Hey! I'm Woody! Howdy, Howdy, Howdy!</I
|
||||
></P
|
||||
></I
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><P
|
||||
> This section contains information for end-users of Bugzilla.
|
||||
If you are administering a Bugzilla installation, please consult the
|
||||
Installing and Administering Bugzilla portions of this Guide.
|
||||
</P
|
||||
><P
|
||||
> There is a Bugzilla test installation, called
|
||||
<A
|
||||
HREF="http://landfill.tequilarista.org/"
|
||||
TARGET="_top"
|
||||
>Landfill</A
|
||||
>,
|
||||
which you are welcome to play with (if it's up.)
|
||||
However, it does not necessarily
|
||||
have all Bugzilla features enabled, and often runs cutting-edge versions
|
||||
of Bugzilla for testing, so some things may work slightly differently
|
||||
than mentioned here.</P
|
||||
> Landfill</A
|
||||
>, which you are welcome to play with.
|
||||
However, it does not necessarily have all Bugzilla features
|
||||
enabled, and often runs cutting-edge versions of Bugzilla for
|
||||
testing, so some things may work slightly differently than
|
||||
mentioned here.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="myaccount">3.1.1. Create a Bugzilla Account</H2
|
||||
NAME="myaccount">2.3.1. Create a Bugzilla Account</H2
|
||||
><P
|
||||
>If you want to use Bugzilla, first you need to create an account.
|
||||
Consult with the administrator responsible for your installation of
|
||||
Bugzilla for the URL you should use to access it. If you're
|
||||
test-driving Bugzilla, use this URL:
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/"
|
||||
> If you want to use Bugzilla, first you
|
||||
need to create an account. Consult with the administrator
|
||||
responsible for your installation of Bugzilla for the URL you
|
||||
should use to access it. If you're test-driving Bugzilla,
|
||||
use this URL: <A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/"
|
||||
TARGET="_top"
|
||||
> http://landfill.bugzilla.org/bugzilla-tip/</A
|
||||
> http://landfill.tequilarista.org/bugzilla-tip/</A
|
||||
>
|
||||
</P
|
||||
><P
|
||||
@@ -110,313 +137,405 @@ TARGET="_top"
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>Click the
|
||||
<SPAN
|
||||
> Click the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Open a new Bugzilla account"</SPAN
|
||||
>
|
||||
|
||||
link, enter your email address and, optionally, your name in the
|
||||
spaces provided, then click
|
||||
<SPAN
|
||||
> link, enter your
|
||||
email address and, optionally, your name in the spaces provided,
|
||||
then click <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Create Account"</SPAN
|
||||
>
|
||||
|
||||
.</P
|
||||
>.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Within moments, you should receive an email to the address
|
||||
you provided above, which contains your login name (generally the
|
||||
same as the email address), and a password you can use to access
|
||||
your account. This password is randomly generated, and can be
|
||||
changed to something more memorable.</P
|
||||
> Within moments, you should receive an email to the address
|
||||
you provided above, which contains your login name
|
||||
(generally the same as the email address), and a password
|
||||
you can use to access your account. This password is
|
||||
randomly generated, and can be changed to something more memorable.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Click the
|
||||
<SPAN
|
||||
> Click the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Log In"</SPAN
|
||||
>
|
||||
link in the yellow area at the bottom of the page in your browser,
|
||||
enter your email address and password into the spaces provided, and
|
||||
click
|
||||
<SPAN
|
||||
> link in the yellow area at
|
||||
the bottom of the page in your browser, enter your
|
||||
email address and password into the spaces provided, and click
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Login"</SPAN
|
||||
>.
|
||||
</P
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
><P
|
||||
>You are now logged in. Bugzilla uses cookies for authentication
|
||||
so, unless your IP address changes, you should not have to log in
|
||||
again.</P
|
||||
> You are now logged in. Bugzilla uses cookies for authentication, so
|
||||
(unless your IP address changes) you should not have to log in again.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="bug_page">3.1.2. Anatomy of a Bug</H2
|
||||
NAME="bug_page">2.3.2. Anatomy of a Bug</H2
|
||||
><P
|
||||
>The core of Bugzilla is the screen which displays a particular
|
||||
bug. It's a good place to explain some Bugzilla concepts.
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/show_bug.cgi?id=1"
|
||||
> The core of Bugzilla is the screen which displays a particular bug.
|
||||
It's a good place to explain some Bugzilla concepts.
|
||||
<A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/show_bug.cgi?id=1"
|
||||
TARGET="_top"
|
||||
> Bug 1 on Landfill</A
|
||||
>
|
||||
|
||||
is a good example. Note that the labels for most fields are hyperlinks;
|
||||
clicking them will take you to context-sensitive help on that
|
||||
particular field. Fields marked * may not be present on every
|
||||
installation of Bugzilla.</P
|
||||
>Bug 1 on Landfill</A
|
||||
> is a good example. Note that the names of most fields
|
||||
are hyperlinks; clicking them will take you to context-sensitive
|
||||
help on that particular field.
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
> <EM
|
||||
>Product and Component</EM
|
||||
>:
|
||||
Bugs are divided up by Product and Component, with a Product
|
||||
having one or more Components in it. For example,
|
||||
bugzilla.mozilla.org's "Bugzilla" Product is composed of several
|
||||
Components:
|
||||
<P
|
||||
>:
|
||||
Bugs are divided up by Product and Component, with a Product having one
|
||||
or more Components in it. For example, bugzilla.mozilla.org's
|
||||
"Bugzilla" Product is composed of several Components:
|
||||
<P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
><TBODY
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Administration:</EM
|
||||
>
|
||||
Administration of a Bugzilla installation.</TD
|
||||
><EM
|
||||
>Administration</EM
|
||||
>,
|
||||
Administration of a bugzilla installation, including
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editcomponents.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editgroups.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editkeywords.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editparams.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editproducts.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editusers.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>editversions.cgi,</TT
|
||||
> and
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>sanitycheck.cgi</TT
|
||||
>.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Bugzilla-General:</EM
|
||||
>
|
||||
><EM
|
||||
>Bugzilla-General</EM
|
||||
>,
|
||||
Anything that doesn't fit in the other components, or spans
|
||||
multiple components.</TD
|
||||
multiple components.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Creating/Changing Bugs:</EM
|
||||
>
|
||||
Creating, changing, and viewing bugs.</TD
|
||||
><EM
|
||||
>Creating/Changing Bugs</EM
|
||||
>,
|
||||
Creating, changing, and viewing bugs.
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>enter_bug.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>post_bug.cgi</TT
|
||||
>,
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>show_bug.cgi</TT
|
||||
> and
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>process_bug.cgi</TT
|
||||
>.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Documentation:</EM
|
||||
>
|
||||
The Bugzilla documentation, including The Bugzilla Guide.</TD
|
||||
><EM
|
||||
>Documentation</EM
|
||||
>,
|
||||
The bugzilla documentation, including anything in the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>docs/</TT
|
||||
> directory and The Bugzilla Guide
|
||||
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Email:</EM
|
||||
><EM
|
||||
>Email</EM
|
||||
>,
|
||||
Anything to do with email sent by Bugzilla.
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>processmail</TT
|
||||
>
|
||||
Anything to do with email sent by Bugzilla.</TD
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Installation:</EM
|
||||
>
|
||||
The installation process of Bugzilla.</TD
|
||||
><EM
|
||||
>Installation</EM
|
||||
>,
|
||||
The installation process of Bugzilla. This includes
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>checksetup.pl</TT
|
||||
> and whatever else it evolves into.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Query/Buglist:</EM
|
||||
><EM
|
||||
>Query/Buglist</EM
|
||||
>,
|
||||
Anything to do with searching for bugs and viewing the buglists.
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>query.cgi</TT
|
||||
> and
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>buglist.cgi</TT
|
||||
>
|
||||
Anything to do with searching for bugs and viewing the
|
||||
buglists.</TD
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Reporting/Charting:</EM
|
||||
><EM
|
||||
>Reporting/Charting</EM
|
||||
>,
|
||||
Getting reports from Bugzilla.
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>reports.cgi</TT
|
||||
> and
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>duplicates.cgi</TT
|
||||
>
|
||||
Getting reports from Bugzilla.</TD
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>User Accounts:</EM
|
||||
>
|
||||
><EM
|
||||
>User Accounts</EM
|
||||
>,
|
||||
Anything about managing a user account from the user's perspective.
|
||||
Saved queries, creating accounts, changing passwords, logging in,
|
||||
etc.</TD
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>userprefs.cgi</TT
|
||||
>, saved queries, creating accounts,
|
||||
changing passwords, logging in, etc.
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>User Interface:</EM
|
||||
>
|
||||
><EM
|
||||
>User Interface</EM
|
||||
>,
|
||||
General issues having to do with the user interface cosmetics (not
|
||||
functionality) including cosmetic issues, HTML templates,
|
||||
etc.</TD
|
||||
functionality) including cosmetic issues, HTML templates, etc.
|
||||
</TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
><P
|
||||
></P
|
||||
>
|
||||
</P
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Status and Resolution:</EM
|
||||
>
|
||||
|
||||
These define exactly what state the bug is in - from not even
|
||||
being confirmed as a bug, through to being fixed and the fix
|
||||
confirmed by Quality Assurance. The different possible values for
|
||||
Status and Resolution on your installation should be documented in the
|
||||
context-sensitive help for those items.</P
|
||||
> <EM
|
||||
>Status and Resolution</EM
|
||||
>:
|
||||
A bug passes through several Statuses in its lifetime, and ends up in the
|
||||
RESOLVED status, with one of a set of Resolutions (e.g. FIXED, INVALID.)
|
||||
The different possible
|
||||
values for Status and Resolution on your installation will be documented
|
||||
in the context-sensitive help for those items.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Assigned To:</EM
|
||||
>
|
||||
The person responsible for fixing the bug.</P
|
||||
> <EM
|
||||
>Assigned To</EM
|
||||
>:
|
||||
The person responsible for fixing the bug.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>*URL:</EM
|
||||
>
|
||||
A URL associated with the bug, if any.</P
|
||||
> <EM
|
||||
>URL</EM
|
||||
>:
|
||||
A URL associated with the bug, if any.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Summary:</EM
|
||||
>
|
||||
A one-sentence summary of the problem.</P
|
||||
> <EM
|
||||
>Summary</EM
|
||||
>:
|
||||
A one-sentence summary of the problem.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>*Status Whiteboard:</EM
|
||||
>
|
||||
(a.k.a. Whiteboard) A free-form text area for adding short notes
|
||||
and tags to a bug.</P
|
||||
> <EM
|
||||
>Status Whiteboard</EM
|
||||
>: (a.k.a. Whiteboard) A
|
||||
free-form text area for adding short notes and tags to a bug.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>*Keywords:</EM
|
||||
>
|
||||
The administrator can define keywords which you can use to tag and
|
||||
categorise bugs - e.g. The Mozilla Project has keywords like crash
|
||||
and regression.</P
|
||||
> <EM
|
||||
>Keywords</EM
|
||||
>:
|
||||
The administrator can define keywords which you can use to tag and
|
||||
categorise bugs - e.g. The Mozilla Project has keywords like crash
|
||||
and regression.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Platform and OS:</EM
|
||||
>
|
||||
These indicate the computing environment where the bug was
|
||||
found.</P
|
||||
> <EM
|
||||
>Platform and OS</EM
|
||||
>:
|
||||
These indicate the computing environment where the bug was found.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Version:</EM
|
||||
>
|
||||
The "Version" field is usually used for versions of a product which
|
||||
have been released, and is set to indicate which versions of a
|
||||
Component have the particular problem the bug report is
|
||||
about.</P
|
||||
> <EM
|
||||
>Version</EM
|
||||
>:
|
||||
The "Version" field is usually used for versions of a product which have
|
||||
been released, and is set to indicate which versions of a Component
|
||||
have the particular problem the bug report is about.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Priority:</EM
|
||||
>
|
||||
The bug assignee uses this field to prioritise his or her bugs.
|
||||
It's a good idea not to change this on other people's bugs.</P
|
||||
> <EM
|
||||
>Priority</EM
|
||||
>:
|
||||
The bug assignee uses this field to prioritise his or her bugs. It's
|
||||
a good idea not to change this on other people's bugs.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Severity:</EM
|
||||
>
|
||||
This indicates how severe the problem is - from blocker
|
||||
("application unusable") to trivial ("minor cosmetic issue"). You
|
||||
can also use this field to indicate whether a bug is an enhancement
|
||||
request.</P
|
||||
> <EM
|
||||
>Severity</EM
|
||||
>:
|
||||
This indicates how severe the problem is - from blocker ("application
|
||||
unusable") to trivial ("minor cosmetic issue"). You can also use this
|
||||
field to indicate whether a bug is an enhancement request.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>*Target:</EM
|
||||
>
|
||||
(a.k.a. Target Milestone) A future version by which the bug is to
|
||||
be fixed. e.g. The Bugzilla Project's milestones for future
|
||||
Bugzilla versions are 2.18, 2.20, 3.0, etc. Milestones are not
|
||||
restricted to numbers, thought - you can use any text strings, such
|
||||
as dates.</P
|
||||
> <EM
|
||||
>Target</EM
|
||||
>:
|
||||
(a.k.a. Target Milestone) A future version by which the bug is to be
|
||||
fixed. e.g. The Bugzilla Project's milestones for future
|
||||
Bugzilla versions are 2.18, 2.20, 3.0, etc. Milestones are
|
||||
not restricted to numbers, thought - you can use any text strings,
|
||||
such as dates.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Reporter:</EM
|
||||
>
|
||||
The person who filed the bug.</P
|
||||
> <EM
|
||||
>Reporter</EM
|
||||
>:
|
||||
The person who filed the bug.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>CC list:</EM
|
||||
>
|
||||
A list of people who get mail when the bug changes.</P
|
||||
> <EM
|
||||
>CC list</EM
|
||||
>:
|
||||
A list of people who get mail when the bug changes.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Attachments:</EM
|
||||
>
|
||||
You can attach files (e.g. testcases or patches) to bugs. If there
|
||||
are any attachments, they are listed in this section.</P
|
||||
> <EM
|
||||
>Attachments</EM
|
||||
>:
|
||||
You can attach files (e.g. testcases or patches) to bugs. If there are
|
||||
any attachments, they are listed in this section.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>*Dependencies:</EM
|
||||
>
|
||||
If this bug cannot be fixed unless other bugs are fixed (depends
|
||||
on), or this bug stops other bugs being fixed (blocks), their
|
||||
numbers are recorded here.</P
|
||||
> <EM
|
||||
>Dependencies</EM
|
||||
>:
|
||||
If this bug cannot be fixed unless other bugs are fixed (depends on), or
|
||||
this bug stops other bugs being fixed (blocks), their numbers are
|
||||
recorded here.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>*Votes:</EM
|
||||
>
|
||||
Whether this bug has any votes.</P
|
||||
> <EM
|
||||
>Votes</EM
|
||||
>:
|
||||
Whether this bug has any votes.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>Additional Comments:</EM
|
||||
>
|
||||
You can add your two cents to the bug discussion here, if you have
|
||||
something worthwhile to say.</P
|
||||
> <EM
|
||||
>Additional Comments</EM
|
||||
>:
|
||||
You can add your two cents to the bug discussion here, if you have
|
||||
something worthwhile to say.
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
@@ -425,98 +544,92 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="query">3.1.3. Searching for Bugs</H2
|
||||
NAME="query">2.3.3. Searching for Bugs</H2
|
||||
><P
|
||||
>The Bugzilla Search page is is the interface where you can find
|
||||
any bug report, comment, or patch currently in the Bugzilla system. You
|
||||
can play with it here:
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/query.cgi"
|
||||
> The Bugzilla Search page is is the interface where you can
|
||||
find any bug report, comment, or patch currently in the
|
||||
Bugzilla system. You can play with it here:
|
||||
<A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/query.cgi"
|
||||
TARGET="_top"
|
||||
> landfill.bugzilla.org/bugzilla-tip/query.cgi</A
|
||||
>
|
||||
|
||||
.</P
|
||||
> landfill.tequilarista.org/bugzilla-tip/query.cgi</A
|
||||
>.
|
||||
</P
|
||||
><P
|
||||
>The Search page has controls for selecting different possible
|
||||
values for all of the fields in a bug, as described above. Once you've
|
||||
defined a search, you can either run it, or save it as a Remembered
|
||||
Query, which can optionally appear in the footer of your pages.</P
|
||||
> The Search page has controls for selecting different possible values
|
||||
for all of the fields in a bug, as described above. Once you've defined
|
||||
a search, you can either run it, or save it as a Remembered Query, which
|
||||
can optionally appear in the footer of your pages.
|
||||
</P
|
||||
><P
|
||||
>Highly advanced querying is done using Boolean Charts, which have
|
||||
their own
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/booleanchart.html"
|
||||
> Highly advanced querying is done using Boolean Charts, which have their
|
||||
own <A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/booleanchart.html"
|
||||
TARGET="_top"
|
||||
> context-sensitive help</A
|
||||
>
|
||||
|
||||
.</P
|
||||
>context-sensitive help</A
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="list">3.1.4. Bug Lists</H2
|
||||
NAME="list">2.3.4. Bug Lists</H2
|
||||
><P
|
||||
>If you run a search, a list of matching bugs will be returned.
|
||||
The default search is to return all open bugs on the system - don't try
|
||||
running this search on a Bugzilla installation with a lot of
|
||||
bugs!</P
|
||||
> If you run a search, a list of matching bugs will be returned.
|
||||
The default search is to return all open bugs on the system -
|
||||
don't try running this search on a Bugzilla installation with
|
||||
a lot of bugs!
|
||||
</P
|
||||
><P
|
||||
>The format of the list is configurable. For example, it can be
|
||||
sorted by clicking the column headings. Other useful features can be
|
||||
accessed using the links at the bottom of the list:
|
||||
<P
|
||||
> The format of the list is configurable. For example, it can be
|
||||
sorted by clicking the column headings. Other useful features
|
||||
can be accessed using the links at the bottom of the list:
|
||||
<P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
><TBODY
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Long Format:</EM
|
||||
>
|
||||
|
||||
this gives you a large page with a non-editable summary of the fields
|
||||
of each bug.</TD
|
||||
><EM
|
||||
>Long Format</EM
|
||||
>: this gives you a large page
|
||||
with a non-editable summary of the fields of each bug.</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Change Columns:</EM
|
||||
>
|
||||
|
||||
change the bug attributes which appear in the list.</TD
|
||||
><EM
|
||||
>Change Columns</EM
|
||||
>: change the bug
|
||||
attributes which appear in the list.</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Change several bugs at once:</EM
|
||||
>
|
||||
|
||||
If your account is sufficiently empowered, you can make the same
|
||||
change to all the bugs in the list - for example, changing their
|
||||
owner.</TD
|
||||
><EM
|
||||
>Change several bugs at once</EM
|
||||
>: If
|
||||
your account is sufficiently empowered, you can make the same
|
||||
change to all the bugs in the list - for example, changing their
|
||||
owner.</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Send mail to bug owners:</EM
|
||||
>
|
||||
|
||||
Sends mail to the owners of all bugs on the list.</TD
|
||||
><EM
|
||||
>Send mail to bug owners</EM
|
||||
>: Sends mail
|
||||
to the owners of all bugs on the list.</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <EM
|
||||
>Edit this query:</EM
|
||||
>
|
||||
|
||||
If you didn't get exactly the results you were looking for, you can
|
||||
return to the Query page through this link and make small revisions
|
||||
to the query you just made so you get more accurate results.</TD
|
||||
><EM
|
||||
>Edit this query</EM
|
||||
>: If you didn't
|
||||
get exactly the results you were looking for, you can
|
||||
return to the Query page through this link and make small
|
||||
revisions to the query you just made so you get more
|
||||
accurate results.</TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
@@ -530,56 +643,80 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="bugreports">3.1.5. Filing Bugs</H2
|
||||
NAME="bugreports">2.3.5. Filing Bugs</H2
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
WIDTH="100%"
|
||||
CELLSPACING="0"
|
||||
CELLPADDING="0"
|
||||
CLASS="EPIGRAPH"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><I
|
||||
><P
|
||||
>Years of bug writing experience has been distilled for your
|
||||
reading pleasure into the
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/bugwritinghelp.html"
|
||||
><I
|
||||
>And all this time, I thought we were taking bugs <EM
|
||||
>out</EM
|
||||
>...</I
|
||||
></P
|
||||
></I
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><P
|
||||
> Years of bug writing experience has been distilled for your reading
|
||||
pleasure into the <A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/bugwritinghelp.html"
|
||||
TARGET="_top"
|
||||
> Bug Writing Guidelines</A
|
||||
>.
|
||||
While some of the advice is Mozilla-specific, the basic principles of
|
||||
reporting Reproducible, Specific bugs, isolating the Product you are
|
||||
using, the Version of the Product, the Component which failed, the
|
||||
Hardware Platform, and Operating System you were using at the time of
|
||||
the failure go a long way toward ensuring accurate, responsible fixes
|
||||
for the bug that bit you.</P
|
||||
> Bug Writing Guidelines</A
|
||||
>.
|
||||
While some of the advice is Mozilla-specific, the basic principles of reporting Reproducible, Specific bugs, isolating the Product you are using, the Version of the Product, the Component which failed, the Hardware Platform, and Operating System you were using at the time of the failure go a long way toward ensuring accurate, responsible fixes for the bug that bit you.
|
||||
</P
|
||||
><P
|
||||
>The procedure for filing a test bug is as follows:</P
|
||||
> The procedure for filing a test bug is as follows:
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>Go to
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/"
|
||||
> Go to <A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/"
|
||||
TARGET="_top"
|
||||
> Landfill</A
|
||||
>
|
||||
in your browser and click
|
||||
<A
|
||||
HREF="http://landfill.bugzilla.org/bugzilla-tip/enter_bug.cgi"
|
||||
>Landfill</A
|
||||
>
|
||||
in your browser and click
|
||||
<A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/enter_bug.cgi"
|
||||
TARGET="_top"
|
||||
> Enter a new bug report</A
|
||||
> Enter a new bug report</A
|
||||
>.
|
||||
</P
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Select a product - any one will do.</P
|
||||
> Select a product - any one will do.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Fill in the fields. Bugzilla should have made reasonable
|
||||
guesses, based upon your browser, for the "Platform" and "OS"
|
||||
drop-down boxes. If they are wrong, change them.</P
|
||||
> Fill in the fields.
|
||||
Bugzilla should have made reasonable guesses, based upon
|
||||
your browser, for the "Platform" and "OS" drop-down
|
||||
boxes. If they are wrong, change them.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Select "Commit" and send in your bug report.</P
|
||||
> Select "Commit" and send in your bug report.
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
@@ -600,7 +737,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="using.html"
|
||||
HREF="why.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -618,7 +755,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="hintsandtips.html"
|
||||
HREF="init4me.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -628,7 +765,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Using Bugzilla</TD
|
||||
>Why Should We Use Bugzilla?</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -642,7 +779,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Hints and Tips</TD
|
||||
>Where can I find my user preferences?</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -47,33 +47,32 @@ NAME="AEN2">The Bugzilla Guide</H1
|
||||
CLASS="author"
|
||||
><A
|
||||
NAME="AEN5">Matthew P. Barnson</H3
|
||||
><H3
|
||||
CLASS="author"
|
||||
><A
|
||||
NAME="AEN9">The Bugzilla Team</H3
|
||||
><DIV
|
||||
CLASS="affiliation"
|
||||
><DIV
|
||||
CLASS="address"
|
||||
><P
|
||||
CLASS="address"
|
||||
>mbarnson@sisna.com</P
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
><DIV
|
||||
CLASS="abstract"
|
||||
><A
|
||||
NAME="AEN13"><P
|
||||
NAME="AEN12"><P
|
||||
></P
|
||||
><P
|
||||
> This is the documentation for Bugzilla, the mozilla.org
|
||||
bug-tracking system.
|
||||
Bugzilla is an enterprise-class piece of software
|
||||
that powers issue-tracking for hundreds of
|
||||
organizations around the world, tracking millions of bugs.
|
||||
> This is the documentation for Bugzilla, the mozilla.org
|
||||
bug-tracking system.
|
||||
Bugzilla is an enterprise-class piece of software
|
||||
that powers issue-tracking for hundreds of
|
||||
organizations around the world, tracking millions of bugs.
|
||||
</P
|
||||
><P
|
||||
>
|
||||
This documentation is maintained in DocBook 4.1.2 XML format.
|
||||
Changes are best submitted as plain text or SGML diffs, attached
|
||||
to a bug filed in
|
||||
<A
|
||||
HREF="http://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla&component=Documentation"
|
||||
TARGET="_top"
|
||||
>mozilla.org's Bugzilla</A
|
||||
>.
|
||||
> This documentation is maintained in DocBook 4.1.2 XML format.
|
||||
Changes are best submitted as plain text or SGML diffs, attached
|
||||
to a Bugzilla bug.
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
@@ -96,26 +95,36 @@ HREF="about.html"
|
||||
><DL
|
||||
><DT
|
||||
>1.1. <A
|
||||
HREF="aboutthisguide.html"
|
||||
>Purpose and Scope of this Guide</A
|
||||
></DT
|
||||
><DT
|
||||
>1.2. <A
|
||||
HREF="copyright.html"
|
||||
>Copyright Information</A
|
||||
></DT
|
||||
><DT
|
||||
>1.2. <A
|
||||
>1.3. <A
|
||||
HREF="disclaimer.html"
|
||||
>Disclaimer</A
|
||||
></DT
|
||||
><DT
|
||||
>1.3. <A
|
||||
>1.4. <A
|
||||
HREF="newversions.html"
|
||||
>New Versions</A
|
||||
></DT
|
||||
><DT
|
||||
>1.4. <A
|
||||
>1.5. <A
|
||||
HREF="credits.html"
|
||||
>Credits</A
|
||||
></DT
|
||||
><DT
|
||||
>1.5. <A
|
||||
>1.6. <A
|
||||
HREF="translations.html"
|
||||
>Translations</A
|
||||
></DT
|
||||
><DT
|
||||
>1.7. <A
|
||||
HREF="conventions.html"
|
||||
>Document Conventions</A
|
||||
></DT
|
||||
@@ -123,8 +132,8 @@ HREF="conventions.html"
|
||||
></DD
|
||||
><DT
|
||||
>2. <A
|
||||
HREF="introduction.html"
|
||||
>Introduction</A
|
||||
HREF="using.html"
|
||||
>Using Bugzilla</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
@@ -138,118 +147,158 @@ HREF="whatis.html"
|
||||
HREF="why.html"
|
||||
>Why Should We Use Bugzilla?</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>3. <A
|
||||
HREF="using.html"
|
||||
>Using Bugzilla</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>3.1. <A
|
||||
>2.3. <A
|
||||
HREF="how.html"
|
||||
>How do I use Bugzilla?</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2. <A
|
||||
HREF="hintsandtips.html"
|
||||
>Hints and Tips</A
|
||||
>2.4. <A
|
||||
HREF="init4me.html"
|
||||
>Where can I find my user preferences?</A
|
||||
></DT
|
||||
><DT
|
||||
>3.3. <A
|
||||
HREF="userpreferences.html"
|
||||
>User Preferences</A
|
||||
>2.5. <A
|
||||
HREF="usingbz-conc.html"
|
||||
>Using Bugzilla-Conclusion</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>4. <A
|
||||
>3. <A
|
||||
HREF="installation.html"
|
||||
>Installation</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>4.1. <A
|
||||
>3.1. <A
|
||||
HREF="errata.html"
|
||||
>ERRATA</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2. <A
|
||||
HREF="stepbystep.html"
|
||||
>Step-by-step Install</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2. <A
|
||||
HREF="extraconfig.html"
|
||||
>Optional Additional Configuration</A
|
||||
></DT
|
||||
><DT
|
||||
>4.3. <A
|
||||
HREF="win32.html"
|
||||
>Win32 Installation Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>4.4. <A
|
||||
>3.3. <A
|
||||
HREF="osx.html"
|
||||
>Mac OS X Installation Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>4.5. <A
|
||||
HREF="troubleshooting.html"
|
||||
>Troubleshooting</A
|
||||
>3.4. <A
|
||||
HREF="bsdinstall.html"
|
||||
>BSD Installation Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>3.5. <A
|
||||
HREF="geninstall.html"
|
||||
>Installation General Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>3.6. <A
|
||||
HREF="win32.html"
|
||||
>Win32 Installation Notes</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>5. <A
|
||||
>4. <A
|
||||
HREF="administration.html"
|
||||
>Administering Bugzilla</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>5.1. <A
|
||||
HREF="parameters.html"
|
||||
>Bugzilla Configuration</A
|
||||
>4.1. <A
|
||||
HREF="postinstall-check.html"
|
||||
>Post-Installation Checklist</A
|
||||
></DT
|
||||
><DT
|
||||
>5.2. <A
|
||||
>4.2. <A
|
||||
HREF="useradmin.html"
|
||||
>User Administration</A
|
||||
></DT
|
||||
><DT
|
||||
>5.3. <A
|
||||
>4.3. <A
|
||||
HREF="programadmin.html"
|
||||
>Product, Component, Milestone, and Version Administration</A
|
||||
>Product, Component, Milestone, and Version
|
||||
Administration</A
|
||||
></DT
|
||||
><DT
|
||||
>5.4. <A
|
||||
HREF="voting.html"
|
||||
>Voting</A
|
||||
></DT
|
||||
><DT
|
||||
>5.5. <A
|
||||
HREF="groups.html"
|
||||
>Groups and Group Security</A
|
||||
></DT
|
||||
><DT
|
||||
>5.6. <A
|
||||
>4.4. <A
|
||||
HREF="security.html"
|
||||
>Bugzilla Security</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>5.7. <A
|
||||
HREF="cust-templates.html"
|
||||
>Template Customisation</A
|
||||
></DT
|
||||
><DT
|
||||
>5.8. <A
|
||||
HREF="upgrading.html"
|
||||
>Upgrading to New Releases</A
|
||||
></DT
|
||||
><DT
|
||||
>5.9. <A
|
||||
>5. <A
|
||||
HREF="integration.html"
|
||||
>Integrating Bugzilla with Third-Party Tools</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>5.1. <A
|
||||
HREF="bonsai.html"
|
||||
>Bonsai</A
|
||||
></DT
|
||||
><DT
|
||||
>5.2. <A
|
||||
HREF="cvs.html"
|
||||
>CVS</A
|
||||
></DT
|
||||
><DT
|
||||
>5.3. <A
|
||||
HREF="scm.html"
|
||||
>Perforce SCM</A
|
||||
></DT
|
||||
><DT
|
||||
>5.4. <A
|
||||
HREF="tinderbox.html"
|
||||
>Tinderbox/Tinderbox2</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>6. <A
|
||||
HREF="variants.html"
|
||||
>Bugzilla Variants and Competitors</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>6.1. <A
|
||||
HREF="rhbugzilla.html"
|
||||
>Red Hat Bugzilla</A
|
||||
></DT
|
||||
><DT
|
||||
>6.2. <A
|
||||
HREF="variant-fenris.html"
|
||||
>Loki Bugzilla (Fenris)</A
|
||||
></DT
|
||||
><DT
|
||||
>6.3. <A
|
||||
HREF="variant-issuezilla.html"
|
||||
>Issuezilla</A
|
||||
></DT
|
||||
><DT
|
||||
>6.4. <A
|
||||
HREF="variant-scarab.html"
|
||||
>Scarab</A
|
||||
></DT
|
||||
><DT
|
||||
>6.5. <A
|
||||
HREF="variant-perforce.html"
|
||||
>Perforce SCM</A
|
||||
></DT
|
||||
><DT
|
||||
>6.6. <A
|
||||
HREF="variant-sourceforge.html"
|
||||
>SourceForge</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
@@ -259,84 +308,136 @@ HREF="faq.html"
|
||||
></DT
|
||||
><DT
|
||||
>B. <A
|
||||
HREF="downloadlinks.html"
|
||||
>Software Download Links</A
|
||||
></DT
|
||||
><DT
|
||||
>C. <A
|
||||
HREF="database.html"
|
||||
>The Bugzilla Database</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>B.1. <A
|
||||
>C.1. <A
|
||||
HREF="dbschema.html"
|
||||
>Database Schema Chart</A
|
||||
></DT
|
||||
><DT
|
||||
>B.2. <A
|
||||
>C.2. <A
|
||||
HREF="dbdoc.html"
|
||||
>MySQL Bugzilla Database Introduction</A
|
||||
></DT
|
||||
><DT
|
||||
>C.3. <A
|
||||
HREF="granttables.html"
|
||||
>MySQL Permissions & Grant Tables</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>C. <A
|
||||
>D. <A
|
||||
HREF="patches.html"
|
||||
>Useful Patches and Utilities for Bugzilla</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>C.1. <A
|
||||
>D.1. <A
|
||||
HREF="rewrite.html"
|
||||
>Apache
|
||||
<TT
|
||||
>Apache <TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
>
|
||||
|
||||
magic</A
|
||||
> magic</A
|
||||
></DT
|
||||
><DT
|
||||
>C.2. <A
|
||||
>D.2. <A
|
||||
HREF="setperl.html"
|
||||
>The setperl.csh Utility</A
|
||||
></DT
|
||||
><DT
|
||||
>D.3. <A
|
||||
HREF="cmdline.html"
|
||||
>Command-line Bugzilla Queries</A
|
||||
></DT
|
||||
><DT
|
||||
>D.4. <A
|
||||
HREF="quicksearch.html"
|
||||
>The Quicksearch Utility</A
|
||||
></DT
|
||||
><DT
|
||||
>D.5. <A
|
||||
HREF="bzhacking.html"
|
||||
>Hacking Bugzilla</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>D. <A
|
||||
HREF="variants.html"
|
||||
>Bugzilla Variants and Competitors</A
|
||||
>E. <A
|
||||
HREF="gfdl.html"
|
||||
>GNU Free Documentation License</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>D.1. <A
|
||||
HREF="rhbugzilla.html"
|
||||
>Red Hat Bugzilla</A
|
||||
>0. <A
|
||||
HREF="gfdl-0.html"
|
||||
>PREAMBLE</A
|
||||
></DT
|
||||
><DT
|
||||
>D.2. <A
|
||||
HREF="variant-fenris.html"
|
||||
>Loki Bugzilla (Fenris)</A
|
||||
>1. <A
|
||||
HREF="gfdl-1.html"
|
||||
>APPLICABILITY AND DEFINITIONS</A
|
||||
></DT
|
||||
><DT
|
||||
>D.3. <A
|
||||
HREF="variant-issuezilla.html"
|
||||
>Issuezilla</A
|
||||
>2. <A
|
||||
HREF="gfdl-2.html"
|
||||
>VERBATIM COPYING</A
|
||||
></DT
|
||||
><DT
|
||||
>D.4. <A
|
||||
HREF="variant-scarab.html"
|
||||
>Scarab</A
|
||||
>3. <A
|
||||
HREF="gfdl-3.html"
|
||||
>COPYING IN QUANTITY</A
|
||||
></DT
|
||||
><DT
|
||||
>D.5. <A
|
||||
HREF="variant-perforce.html"
|
||||
>Perforce SCM</A
|
||||
>4. <A
|
||||
HREF="gfdl-4.html"
|
||||
>MODIFICATIONS</A
|
||||
></DT
|
||||
><DT
|
||||
>D.6. <A
|
||||
HREF="variant-sourceforge.html"
|
||||
>SourceForge</A
|
||||
>5. <A
|
||||
HREF="gfdl-5.html"
|
||||
>COMBINING DOCUMENTS</A
|
||||
></DT
|
||||
><DT
|
||||
>6. <A
|
||||
HREF="gfdl-6.html"
|
||||
>COLLECTIONS OF DOCUMENTS</A
|
||||
></DT
|
||||
><DT
|
||||
>7. <A
|
||||
HREF="gfdl-7.html"
|
||||
>AGGREGATION WITH INDEPENDENT WORKS</A
|
||||
></DT
|
||||
><DT
|
||||
>8. <A
|
||||
HREF="gfdl-8.html"
|
||||
>TRANSLATION</A
|
||||
></DT
|
||||
><DT
|
||||
>9. <A
|
||||
HREF="gfdl-9.html"
|
||||
>TERMINATION</A
|
||||
></DT
|
||||
><DT
|
||||
>10. <A
|
||||
HREF="gfdl-10.html"
|
||||
>FUTURE REVISIONS OF THIS LICENSE</A
|
||||
></DT
|
||||
><DT
|
||||
><A
|
||||
HREF="gfdl-howto.html"
|
||||
>How to use this License for your documents</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
@@ -356,22 +457,76 @@ CLASS="LOT"
|
||||
>List of Examples</B
|
||||
></DT
|
||||
><DT
|
||||
>3-1. <A
|
||||
HREF="stepbystep.html#AEN641"
|
||||
>Setting up bonsaitools symlink</A
|
||||
></DT
|
||||
><DT
|
||||
>3-2. <A
|
||||
HREF="stepbystep.html#AEN732"
|
||||
>Running checksetup.pl as the web user</A
|
||||
></DT
|
||||
><DT
|
||||
>3-3. <A
|
||||
HREF="win32.html#AEN985"
|
||||
>Installing ActivePerl ppd Modules on Microsoft Windows</A
|
||||
></DT
|
||||
><DT
|
||||
>3-4. <A
|
||||
HREF="win32.html#AEN998"
|
||||
>Installing OpenInteract ppd Modules manually on Microsoft
|
||||
Windows</A
|
||||
></DT
|
||||
><DT
|
||||
>3-5. <A
|
||||
HREF="win32.html#AEN1180"
|
||||
>Removing encrypt() for Windows NT Bugzilla version
|
||||
2.12 or earlier</A
|
||||
></DT
|
||||
><DT
|
||||
>4-1. <A
|
||||
HREF="win32.html#AEN989"
|
||||
>Installing ActivePerl ppd Modules on Microsoft
|
||||
Windows</A
|
||||
HREF="programadmin.html#AEN1405"
|
||||
>Creating some Components</A
|
||||
></DT
|
||||
><DT
|
||||
>4-2. <A
|
||||
HREF="win32.html#AEN1002"
|
||||
>Installing OpenInteract ppd Modules manually on Microsoft
|
||||
Windows</A
|
||||
HREF="programadmin.html#AEN1434"
|
||||
>Common Use of Versions</A
|
||||
></DT
|
||||
><DT
|
||||
>4-3. <A
|
||||
HREF="win32.html#AEN1184"
|
||||
>Removing encrypt() for Windows NT Bugzilla version 2.12 or
|
||||
earlier</A
|
||||
HREF="programadmin.html#AEN1438"
|
||||
>A Different Use of Versions</A
|
||||
></DT
|
||||
><DT
|
||||
>4-4. <A
|
||||
HREF="programadmin.html#AEN1466"
|
||||
>Using SortKey with Target Milestone</A
|
||||
></DT
|
||||
><DT
|
||||
>4-5. <A
|
||||
HREF="programadmin.html#AEN1502"
|
||||
>When to Use Group Security</A
|
||||
></DT
|
||||
><DT
|
||||
>4-6. <A
|
||||
HREF="programadmin.html#AEN1519"
|
||||
>Creating a New Group</A
|
||||
></DT
|
||||
><DT
|
||||
>4-7. <A
|
||||
HREF="programadmin.html#AEN1536"
|
||||
>Bugzilla Groups</A
|
||||
></DT
|
||||
><DT
|
||||
>D-1. <A
|
||||
HREF="setperl.html#AEN2380"
|
||||
>Using Setperl to set your perl path</A
|
||||
></DT
|
||||
><DT
|
||||
>1. <A
|
||||
HREF="glossary.html#AEN2701"
|
||||
>A Sample Product</A
|
||||
></DT
|
||||
></DL
|
||||
></DIV
|
||||
|
||||
451
mozilla/webtools/bugzilla/docs/html/init4me.html
Normal file
451
mozilla/webtools/bugzilla/docs/html/init4me.html
Normal file
@@ -0,0 +1,451 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Where can I find my user preferences?</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Using Bugzilla"
|
||||
HREF="using.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="How do I use Bugzilla?"
|
||||
HREF="how.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Using Bugzilla-Conclusion"
|
||||
HREF="usingbz-conc.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="how.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 2. Using Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="usingbz-conc.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="init4me">2.4. Where can I find my user preferences?</H1
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
WIDTH="100%"
|
||||
CELLSPACING="0"
|
||||
CELLPADDING="0"
|
||||
CLASS="EPIGRAPH"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><I
|
||||
><P
|
||||
><I
|
||||
>Indiana, it feels like we walking on fortune cookies!</I
|
||||
></P
|
||||
><P
|
||||
><I
|
||||
>These ain't fortune cookies, kid...</I
|
||||
></P
|
||||
></I
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><P
|
||||
> Customized User Preferences offer tremendous versatility to your
|
||||
individual Bugzilla experience. Let's plunge into what you can
|
||||
do! The first step is to click the "Edit prefs" link at the
|
||||
footer of each page once you have logged in to <A
|
||||
HREF="http://landfill.tequilarista.org/bugzilla-tip/query.cgi?GoAheadAndLogIn=1"
|
||||
TARGET="_top"
|
||||
> Landfill</A
|
||||
>.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="accountsettings">2.4.1. Account Settings</H2
|
||||
><P
|
||||
> On this page, you can change your basic Account Settings,
|
||||
including your password and full name. For security reasons,
|
||||
in order to change anything on this page you must type your
|
||||
<EM
|
||||
>current</EM
|
||||
> password into the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Old
|
||||
Password"</SPAN
|
||||
> field. If you wish to change your
|
||||
password, type the new password you want into the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"New
|
||||
Password"</SPAN
|
||||
> field and again into the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Re-enter
|
||||
new password"</SPAN
|
||||
> field to ensure you typed your new
|
||||
password correctly. Select the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Submit"</SPAN
|
||||
> button
|
||||
and you are done.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="emailsettings">2.4.2. Email Settings</H2
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="notification">2.4.2.1. Email Notification</H3
|
||||
><P
|
||||
> Here you can reduce or increase the amount of email sent you
|
||||
from Bugzilla. Although this is referred to as
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Advanced Email Filtering Options"</SPAN
|
||||
>, they are,
|
||||
in fact, the standard email filter set. All of them are
|
||||
self-explanatory, but you can use the filters in interesting
|
||||
ways. For instance, some people (notably Quality Assurance
|
||||
personnel) often only care to receive updates regarding a
|
||||
bug when the bug changes state, so they can track bugs on
|
||||
their flow charts and know when it is time to pull the bug
|
||||
onto a quality assurance platform for inspection. Other
|
||||
people set up email gateways to
|
||||
<A
|
||||
HREF="bonsai.html"
|
||||
>Bonsai, the Mozilla automated CVS management system</A
|
||||
> or <A
|
||||
HREF="tinderbox.html"
|
||||
>Tinderbox, the Mozilla automated build management system</A
|
||||
>, and
|
||||
restrict which types of Bugzilla information are fed to
|
||||
these systems..
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="newemailtech">2.4.2.2. New Email Technology</H3
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> This option may not be available in all Bugzilla
|
||||
installations, depending upon the preferences of the
|
||||
systems administrator responsible for the setup of your
|
||||
Bugzilla. However, if you really want this functionality,
|
||||
ask her to "enable newemailtech in Params" and "make it
|
||||
the default for all new users", referring her to the
|
||||
Administration section of this Guide.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
> Disregard the warnings about "experimental and bleeding
|
||||
edge"; the code to handle email in a cleaner manner than
|
||||
that historically used for Bugzilla is quite robust and
|
||||
well-tested now.
|
||||
</P
|
||||
><P
|
||||
> I recommend you enable the option, "Click here to sign up
|
||||
(and risk any bugs)". Your email-box will thank you for it.
|
||||
The fundamental shift in "newemailtech" is away from
|
||||
standard UNIX "diff" output, which is quite ugly, to a
|
||||
prettier, better laid-out email.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="watchsettings">2.4.2.3. "Watching" Users</H3
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> This option may not be available in all Bugzilla
|
||||
installations, depending upon the preferences of the
|
||||
systems administrator responsible for the setup of your
|
||||
Bugzilla. However, if you really want this functionality,
|
||||
ask her to "enable watchers in Params".
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
> By entering user email names into the "Users to watch" text
|
||||
entry box, delineated by commas, you can watch bugs of other
|
||||
users. This powerful functionality enables seamless
|
||||
transitions as developers change projects, managers wish to
|
||||
get in touch with the issues faced by their direct reports,
|
||||
or users go on vacation. If any of these three situations
|
||||
apply to you, you will undoubtedly find this feature quite
|
||||
convenient.
|
||||
</P
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="footersettings">2.4.3. Page Footer</H2
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> By default, this page is quite barren. However, go explore
|
||||
the Query Page some more; you will find that you can store
|
||||
numerous queries on the server, so if you regularly run a
|
||||
particular query it is just a drop-down menu away. On this
|
||||
page of Preferences, if you have many stored queries you can
|
||||
elect to have them always one-click away!
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
> If you have many stored queries on the server, here you will
|
||||
find individual drop-downs for each stored query. Each
|
||||
drop-down gives you the option of that query appearing on the
|
||||
footer of every page in Bugzilla! This gives you powerful
|
||||
one-click access to any complex searches you may set up, and
|
||||
is an excellent way to impress your boss...
|
||||
</P
|
||||
><DIV
|
||||
CLASS="tip"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="tip"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/tip.gif"
|
||||
HSPACE="5"
|
||||
ALT="Tip"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>By default, the "My Bugs" link appears at the bottom of
|
||||
each page. However, this query gives you both the bugs you
|
||||
have reported, as well as those you are assigned. One of
|
||||
the most common uses for this page is to remove the "My
|
||||
Bugs" link, replacing it with two other queries, commonly
|
||||
called "My Bug Reports" and "My Bugs" (but only referencing
|
||||
bugs assigned to you). This allows you to distinguish those
|
||||
bugs you have reported from those you are assigned. I
|
||||
commonly set up complex Boolean queries in the Query page
|
||||
and link them to my footer in this page. When they are
|
||||
significantly complex, a one-click reference can save hours
|
||||
of work.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="permissionsettings">2.4.4. Permissions</H2
|
||||
><P
|
||||
> This is a purely informative page which outlines your current
|
||||
permissions on this installation of Bugzilla. If you have
|
||||
permissions to grant certain permissions to other users, the
|
||||
"other users" link appears on this page as well as the footer.
|
||||
For more information regarding user administration, please
|
||||
consult the Administration section of this Guide.
|
||||
</P
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="how.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="usingbz-conc.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>How do I use Bugzilla?</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="using.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Using Bugzilla-Conclusion</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -10,11 +10,11 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="User Preferences"
|
||||
HREF="userpreferences.html"><LINK
|
||||
TITLE="Using Bugzilla-Conclusion"
|
||||
HREF="usingbz-conc.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Step-by-step Install"
|
||||
HREF="stepbystep.html"></HEAD
|
||||
TITLE="ERRATA"
|
||||
HREF="errata.html"></HEAD
|
||||
><BODY
|
||||
CLASS="chapter"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -42,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="userpreferences.html"
|
||||
HREF="usingbz-conc.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -56,7 +56,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="stepbystep.html"
|
||||
HREF="errata.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -69,7 +69,7 @@ WIDTH="100%"></DIV
|
||||
CLASS="chapter"
|
||||
><H1
|
||||
><A
|
||||
NAME="installation">Chapter 4. Installation</H1
|
||||
NAME="installation">Chapter 3. Installation</H1
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
@@ -78,176 +78,205 @@ CLASS="TOC"
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>4.1. <A
|
||||
>3.1. <A
|
||||
HREF="errata.html"
|
||||
>ERRATA</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2. <A
|
||||
HREF="stepbystep.html"
|
||||
>Step-by-step Install</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>4.1.1. <A
|
||||
HREF="stepbystep.html#AEN492"
|
||||
>3.2.1. <A
|
||||
HREF="stepbystep.html#AEN441"
|
||||
>Introduction</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.2. <A
|
||||
HREF="stepbystep.html#AEN496"
|
||||
>Package List</A
|
||||
>3.2.2. <A
|
||||
HREF="stepbystep.html#AEN447"
|
||||
>Installing the Prerequisites</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.3. <A
|
||||
>3.2.3. <A
|
||||
HREF="stepbystep.html#install-mysql"
|
||||
>MySQL</A
|
||||
>Installing MySQL Database</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.4. <A
|
||||
>3.2.4. <A
|
||||
HREF="stepbystep.html#install-perl"
|
||||
>Perl</A
|
||||
>Perl (5.004 or greater)</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.5. <A
|
||||
HREF="stepbystep.html#perl-modules"
|
||||
>Perl Modules</A
|
||||
>3.2.5. <A
|
||||
HREF="stepbystep.html#AEN534"
|
||||
>DBI Perl Module</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.6. <A
|
||||
HREF="stepbystep.html#AEN669"
|
||||
>3.2.6. <A
|
||||
HREF="stepbystep.html#AEN572"
|
||||
>Data::Dumper Perl Module</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.7. <A
|
||||
HREF="stepbystep.html#AEN577"
|
||||
>MySQL related Perl Module Collection</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.8. <A
|
||||
HREF="stepbystep.html#AEN586"
|
||||
>TimeDate Perl Module Collection</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.9. <A
|
||||
HREF="stepbystep.html#AEN590"
|
||||
>GD Perl Module (1.8.3)</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.10. <A
|
||||
HREF="stepbystep.html#AEN599"
|
||||
>Chart::Base Perl Module (0.99c)</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.11. <A
|
||||
HREF="stepbystep.html#AEN603"
|
||||
>DB_File Perl Module</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.12. <A
|
||||
HREF="stepbystep.html#AEN606"
|
||||
>HTTP Server</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.7. <A
|
||||
HREF="stepbystep.html#AEN688"
|
||||
>Bugzilla</A
|
||||
>3.2.13. <A
|
||||
HREF="stepbystep.html#AEN625"
|
||||
>Installing the Bugzilla Files</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.8. <A
|
||||
HREF="stepbystep.html#AEN705"
|
||||
>3.2.14. <A
|
||||
HREF="stepbystep.html#AEN654"
|
||||
>Setting Up the MySQL Database</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.9. <A
|
||||
HREF="stepbystep.html#AEN741"
|
||||
><TT
|
||||
>3.2.15. <A
|
||||
HREF="stepbystep.html#AEN701"
|
||||
>Tweaking <TT
|
||||
CLASS="filename"
|
||||
>checksetup.pl</TT
|
||||
>localconfig</TT
|
||||
></A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.10. <A
|
||||
HREF="stepbystep.html#AEN773"
|
||||
>Securing MySQL</A
|
||||
>3.2.16. <A
|
||||
HREF="stepbystep.html#AEN739"
|
||||
>Setting Up Maintainers Manually (Optional)</A
|
||||
></DT
|
||||
><DT
|
||||
>4.1.11. <A
|
||||
HREF="stepbystep.html#AEN839"
|
||||
>Configuring Bugzilla</A
|
||||
>3.2.17. <A
|
||||
HREF="stepbystep.html#AEN750"
|
||||
>The Whining Cron (Optional)</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.18. <A
|
||||
HREF="stepbystep.html#AEN760"
|
||||
>Bug Graphs (Optional)</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.19. <A
|
||||
HREF="stepbystep.html#AEN772"
|
||||
>Securing MySQL</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>4.2. <A
|
||||
HREF="extraconfig.html"
|
||||
>Optional Additional Configuration</A
|
||||
>3.3. <A
|
||||
HREF="osx.html"
|
||||
>Mac OS X Installation Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>3.4. <A
|
||||
HREF="bsdinstall.html"
|
||||
>BSD Installation Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>3.5. <A
|
||||
HREF="geninstall.html"
|
||||
>Installation General Notes</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>4.2.1. <A
|
||||
HREF="extraconfig.html#AEN845"
|
||||
>Dependency Charts</A
|
||||
>3.5.1. <A
|
||||
HREF="geninstall.html#AEN874"
|
||||
>Modifying Your Running System</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2.2. <A
|
||||
HREF="extraconfig.html#AEN860"
|
||||
>Bug Graphs</A
|
||||
>3.5.2. <A
|
||||
HREF="geninstall.html#AEN881"
|
||||
>Upgrading From Previous Versions</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2.3. <A
|
||||
HREF="extraconfig.html#AEN873"
|
||||
>The Whining Cron</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2.4. <A
|
||||
HREF="extraconfig.html#bzldap"
|
||||
>LDAP Authentication</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2.5. <A
|
||||
HREF="extraconfig.html#content-type"
|
||||
>Preventing untrusted Bugzilla content from executing malicious
|
||||
Javascript code</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2.6. <A
|
||||
HREF="extraconfig.html#htaccess"
|
||||
>3.5.3. <A
|
||||
HREF="geninstall.html#htaccess"
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>.htaccess</TT
|
||||
>
|
||||
files and security</A
|
||||
> files and security</A
|
||||
></DT
|
||||
><DT
|
||||
>4.2.7. <A
|
||||
HREF="extraconfig.html#mod-throttle"
|
||||
>3.5.4. <A
|
||||
HREF="geninstall.html#mod-throttle"
|
||||
><TT
|
||||
CLASS="filename"
|
||||
>mod_throttle</TT
|
||||
>
|
||||
|
||||
and Security</A
|
||||
> and Security</A
|
||||
></DT
|
||||
><DT
|
||||
>3.5.5. <A
|
||||
HREF="geninstall.html#content-type"
|
||||
>Preventing untrusted Bugzilla content from executing malicious Javascript code</A
|
||||
></DT
|
||||
><DT
|
||||
>3.5.6. <A
|
||||
HREF="geninstall.html#unixhistory"
|
||||
>UNIX Installation Instructions History</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>4.3. <A
|
||||
>3.6. <A
|
||||
HREF="win32.html"
|
||||
>Win32 Installation Notes</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>4.3.1. <A
|
||||
>3.6.1. <A
|
||||
HREF="win32.html#wininstall"
|
||||
>Win32 Installation: Step-by-step</A
|
||||
></DT
|
||||
><DT
|
||||
>4.3.2. <A
|
||||
>3.6.2. <A
|
||||
HREF="win32.html#addlwintips"
|
||||
>Additional Windows Tips</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>4.4. <A
|
||||
HREF="osx.html"
|
||||
>Mac OS X Installation Notes</A
|
||||
></DT
|
||||
><DT
|
||||
>4.5. <A
|
||||
HREF="troubleshooting.html"
|
||||
>Troubleshooting</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>4.5.1. <A
|
||||
HREF="troubleshooting.html#AEN1218"
|
||||
>Bundle::Bugzilla makes me upgrade to Perl 5.6.1</A
|
||||
></DT
|
||||
><DT
|
||||
>4.5.2. <A
|
||||
HREF="troubleshooting.html#AEN1223"
|
||||
>DBD::Sponge::db prepare failed</A
|
||||
></DT
|
||||
><DT
|
||||
>4.5.3. <A
|
||||
HREF="troubleshooting.html#paranoid-security"
|
||||
>cannot chdir(/var/spool/mqueue)</A
|
||||
>3.6.3. <A
|
||||
HREF="win32.html#bzldap"
|
||||
>Bugzilla LDAP Integration</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
><P
|
||||
> These installation instructions are presented assuming you are
|
||||
installing on a UNIX or completely POSIX-compliant system. If
|
||||
you are installing on Microsoft Windows or another oddball
|
||||
operating system, please consult the appropriate sections in
|
||||
this installation guide for notes on how to be successful.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -265,7 +294,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="userpreferences.html"
|
||||
HREF="usingbz-conc.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -283,7 +312,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="stepbystep.html"
|
||||
HREF="errata.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -293,7 +322,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>User Preferences</TD
|
||||
>Using Bugzilla-Conclusion</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -303,7 +332,7 @@ VALIGN="top"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Step-by-step Install</TD
|
||||
>ERRATA</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -9,17 +9,14 @@ CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Upgrading to New Releases"
|
||||
HREF="upgrading.html"><LINK
|
||||
TITLE="Bugzilla Security"
|
||||
HREF="security.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="The Bugzilla FAQ"
|
||||
HREF="faq.html"></HEAD
|
||||
TITLE="Bonsai"
|
||||
HREF="bonsai.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
CLASS="chapter"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
@@ -45,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="upgrading.html"
|
||||
HREF="security.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -53,13 +50,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Administering Bugzilla</TD
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="faq.html"
|
||||
HREF="bonsai.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -69,112 +66,38 @@ ACCESSKEY="N"
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
CLASS="chapter"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="integration">5.9. Integrating Bugzilla with Third-Party Tools</H1
|
||||
NAME="integration">Chapter 5. Integrating Bugzilla with Third-Party Tools</H1
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="bonsai">5.9.1. Bonsai</H2
|
||||
><P
|
||||
>Bonsai is a web-based tool for managing
|
||||
<A
|
||||
HREF="integration.html#cvs"
|
||||
>CVS, the Concurrent Versioning System</A
|
||||
>
|
||||
|
||||
. Using Bonsai, administrators can control open/closed status of trees,
|
||||
query a fast relational database back-end for change, branch, and comment
|
||||
information, and view changes made since the last time the tree was
|
||||
closed. Bonsai
|
||||
also integrates with
|
||||
<A
|
||||
HREF="integration.html#tinderbox"
|
||||
>Tinderbox, the Mozilla automated build management system</A
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="cvs">5.9.2. CVS</H2
|
||||
><P
|
||||
>CVS integration is best accomplished, at this point, using the
|
||||
Bugzilla Email Gateway.</P
|
||||
><P
|
||||
>Follow the instructions in this Guide for enabling Bugzilla e-mail
|
||||
integration. Ensure that your check-in script sends an email to your
|
||||
Bugzilla e-mail gateway with the subject of
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"[Bug XXXX]"</SPAN
|
||||
>,
|
||||
and you can have CVS check-in comments append to your Bugzilla bug. If
|
||||
you have your check-in script include an @resolution field, you can even
|
||||
change the Bugzilla bug state.</P
|
||||
><P
|
||||
>There is also a CVSZilla project, based upon somewhat dated
|
||||
Bugzilla code, to integrate CVS and Bugzilla through CVS' ability to
|
||||
email. Check it out at:
|
||||
<A
|
||||
HREF="http://homepages.kcbbs.gen.nz/~tonyg/"
|
||||
TARGET="_top"
|
||||
> http://homepages.kcbbs.gen.nz/~tonyg/</A
|
||||
>.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="scm">5.9.3. Perforce SCM</H2
|
||||
><P
|
||||
>You can find the project page for Bugzilla and Teamtrack Perforce
|
||||
integration (p4dti) at:
|
||||
<A
|
||||
HREF="http://www.ravenbrook.com/project/p4dti/"
|
||||
TARGET="_top"
|
||||
> http://www.ravenbrook.com/project/p4dti</A
|
||||
>
|
||||
|
||||
.
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"p4dti"</SPAN
|
||||
>
|
||||
|
||||
is now an officially supported product from Perforce, and you can find
|
||||
the "Perforce Public Depot" p4dti page at
|
||||
<A
|
||||
HREF="http://public.perforce.com/public/perforce/p4dti/index.html"
|
||||
TARGET="_top"
|
||||
> http://public.perforce.com/public/perforce/p4dti/index.html</A
|
||||
>
|
||||
|
||||
.</P
|
||||
><P
|
||||
>Integration of Perforce with Bugzilla, once patches are applied, is
|
||||
seamless. Perforce replication information will appear below the comments
|
||||
of each bug. Be certain you have a matching set of patches for the
|
||||
Bugzilla version you are installing. p4dti is designed to support
|
||||
multiple defect trackers, and maintains its own documentation for it.
|
||||
Please consult the pages linked above for further information.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="tinderbox">5.9.4. Tinderbox/Tinderbox2</H2
|
||||
><P
|
||||
>We need Tinderbox integration information.</P
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
><DT
|
||||
><B
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>5.1. <A
|
||||
HREF="bonsai.html"
|
||||
>Bonsai</A
|
||||
></DT
|
||||
><DT
|
||||
>5.2. <A
|
||||
HREF="cvs.html"
|
||||
>CVS</A
|
||||
></DT
|
||||
><DT
|
||||
>5.3. <A
|
||||
HREF="scm.html"
|
||||
>Perforce SCM</A
|
||||
></DT
|
||||
><DT
|
||||
>5.4. <A
|
||||
HREF="tinderbox.html"
|
||||
>Tinderbox/Tinderbox2</A
|
||||
></DT
|
||||
></DL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
@@ -193,7 +116,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="upgrading.html"
|
||||
HREF="security.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -211,7 +134,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="faq.html"
|
||||
HREF="bonsai.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -221,21 +144,17 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Upgrading to New Releases</TD
|
||||
>Bugzilla Security</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>The Bugzilla FAQ</TD
|
||||
>Bonsai</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -73,10 +73,9 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="newversions">1.3. New Versions</H1
|
||||
NAME="newversions">1.4. New Versions</H1
|
||||
><P
|
||||
> This is the 2.16 version of The Bugzilla Guide. It is so named
|
||||
to match the current version of Bugzilla. If you are
|
||||
> This is the 2.16 version of The Bugzilla Guide. If you are
|
||||
reading this from any source other than those below, please
|
||||
check one of these mirrors to make sure you are reading an
|
||||
up-to-date version of the Guide.
|
||||
@@ -111,27 +110,15 @@ TARGET="_top"
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> The latest version of this document can always be checked out via CVS.
|
||||
Please follow the instructions available at
|
||||
<A
|
||||
> The latest version of this document can be checked out via CVS.
|
||||
Please follow the instructions available at <A
|
||||
HREF="http://www.mozilla.org/cvs.html"
|
||||
TARGET="_top"
|
||||
>the Mozilla CVS page</A
|
||||
>,
|
||||
and check out the <TT
|
||||
>, and check out the <TT
|
||||
CLASS="filename"
|
||||
>mozilla/webtools/bugzilla/docs/</TT
|
||||
>
|
||||
subtree.
|
||||
</P
|
||||
><P
|
||||
> The Bugzilla Guide is currently only available in English.
|
||||
If you would like to volunteer to translate it, please contact
|
||||
<A
|
||||
HREF="mailto:justdave@syndicomm.com"
|
||||
TARGET="_top"
|
||||
>Dave Miller</A
|
||||
>.
|
||||
> branch.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
|
||||
@@ -13,11 +13,11 @@ REL="UP"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Win32 Installation Notes"
|
||||
HREF="win32.html"><LINK
|
||||
TITLE="Step-by-step Install"
|
||||
HREF="stepbystep.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Troubleshooting"
|
||||
HREF="troubleshooting.html"></HEAD
|
||||
TITLE="BSD Installation Notes"
|
||||
HREF="bsdinstall.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -45,7 +45,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="win32.html"
|
||||
HREF="stepbystep.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -53,13 +53,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 4. Installation</TD
|
||||
>Chapter 3. Installation</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="troubleshooting.html"
|
||||
HREF="bsdinstall.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,116 +73,151 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="osx">4.4. Mac OS X Installation Notes</H1
|
||||
NAME="osx">3.3. Mac OS X Installation Notes</H1
|
||||
><P
|
||||
>There are a lot of common libraries and utilities out there that
|
||||
Apple did not include with Mac OS X, but which run perfectly well on it.
|
||||
The GD library, which Bugzilla needs to do bug graphs, is one of
|
||||
these.</P
|
||||
> There are a lot of common libraries and utilities out there
|
||||
that Apple did not include with Mac OS X, but which run
|
||||
perfectly well on it. The GD library, which Bugzilla needs to
|
||||
do bug graphs, is one of these.
|
||||
</P
|
||||
><P
|
||||
>The easiest way to get a lot of these is with a program called
|
||||
Fink, which is similar in nature to the CPAN installer, but installs
|
||||
common GNU utilities. Fink is available from
|
||||
<http://sourceforge.net/projects/fink/>.</P
|
||||
> The easiest way to get a lot of these is with a program called
|
||||
Fink, which is similar in nature to the CPAN installer, but
|
||||
installs common GNU utilities. Fink is available from
|
||||
<http://sourceforge.net/projects/fink/>.
|
||||
</P
|
||||
><P
|
||||
>Follow the instructions for setting up Fink. Once it's installed,
|
||||
you'll want to run the following as root:
|
||||
<B
|
||||
> Follow the instructions for setting up Fink. Once it's
|
||||
installed, you'll want to run the following as root:
|
||||
<B
|
||||
CLASS="command"
|
||||
>fink install gd</B
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>It will prompt you for a number of dependencies, type 'y' and hit
|
||||
enter to install all of the dependencies. Then watch it work.</P
|
||||
><P
|
||||
>To prevent creating conflicts with the software that Apple installs
|
||||
by default, Fink creates its own directory tree at /sw where it installs
|
||||
most of the software that it installs. This means your libraries and
|
||||
headers for libgd will be at /sw/lib and /sw/include instead of /usr/lib
|
||||
and /usr/local/include. Because of these changed locations for the
|
||||
libraries, the Perl GD module will not install directly via CPAN, because it
|
||||
looks for the specific paths instead of getting them from your
|
||||
environment. But there's a way around that :-)</P
|
||||
><P
|
||||
>Instead of typing
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"install GD"</SPAN
|
||||
>
|
||||
at the
|
||||
<TT
|
||||
CLASS="prompt"
|
||||
>cpan></TT
|
||||
>
|
||||
prompt, type
|
||||
<B
|
||||
CLASS="command"
|
||||
>look GD</B
|
||||
>.
|
||||
This should go through the motions of downloading the latest version of
|
||||
the GD module, then it will open a shell and drop you into the build
|
||||
directory. Apply <A
|
||||
HREF="../sgml/gd-makefile.patch"
|
||||
TARGET="_top"
|
||||
>this patch</A
|
||||
>
|
||||
to the Makefile.PL file (save the
|
||||
patch into a file and use the command
|
||||
<B
|
||||
CLASS="command"
|
||||
>patch < patchfile</B
|
||||
>.)
|
||||
> It will prompt you for a number of dependencies, type 'y' and
|
||||
hit enter to install all of the dependencies. Then watch it
|
||||
work.
|
||||
</P
|
||||
><P
|
||||
>Then, run these commands to finish the installation of the GD
|
||||
module:
|
||||
<P
|
||||
> To prevent creating conflicts with the software that Apple
|
||||
installs by default, Fink creates its own directory tree at
|
||||
/sw where it installs most of the software that it installs.
|
||||
This means your libraries and headers for libgd will be at
|
||||
/sw/lib and /sw/include instead of /usr/lib and
|
||||
/usr/local/include. Because of these changed locations for
|
||||
the libraries, the Perl GD module will not install directly
|
||||
via CPAN (it looks for the specific paths instead of getting
|
||||
them from your environment). But there's a way around that
|
||||
:-)
|
||||
</P
|
||||
><P
|
||||
> Instead of typing <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"install GD"</SPAN
|
||||
> at the
|
||||
<TT
|
||||
CLASS="prompt"
|
||||
>cpan></TT
|
||||
> prompt, type <B
|
||||
CLASS="command"
|
||||
>look
|
||||
GD</B
|
||||
>. This should go through the motions of
|
||||
downloading the latest version of the GD module, then it will
|
||||
open a shell and drop you into the build directory. Apply the
|
||||
following patch to the Makefile.PL file (save the patch into a
|
||||
file and use the command <B
|
||||
CLASS="command"
|
||||
>patch <
|
||||
patchfile</B
|
||||
>:
|
||||
</P
|
||||
><P
|
||||
> <TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
WIDTH="100%"
|
||||
><TR
|
||||
><TD
|
||||
><FONT
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
>
|
||||
|
||||
--- GD-1.33/Makefile.PL Fri Aug 4 16:59:22 2000
|
||||
+++ GD-1.33-darwin/Makefile.PL Tue Jun 26 01:29:32 2001
|
||||
@@ -3,8 +3,8 @@
|
||||
warn "NOTICE: This module requires libgd 1.8.3 or higher (shared library version 4.X).\n";
|
||||
|
||||
# =====> PATHS: CHECK AND ADJUST <=====
|
||||
-my @INC = qw(-I/usr/local/include -I/usr/local/include/gd);
|
||||
-my @LIBPATH = qw(-L/usr/lib/X11 -L/usr/X11R6/lib -L/usr/X11/lib -L/usr/local/lib );
|
||||
+my @INC = qw(-I/sw/include -I/sw/include/gd -I/usr/local/include -I/usr/local/include/gd);
|
||||
+my @LIBPATH = qw(-L/usr/lib/X11 -L/usr/X11R6/lib -L/usr/X11/lib -L/sw/lib -L/usr/local/lib);
|
||||
my @LIBS = qw(-lgd -lpng -lz);
|
||||
|
||||
# FEATURE FLAGS
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
push @LIBS,'-lttf' if $TTF;
|
||||
push @LIBS,'-ljpeg' if $JPEG;
|
||||
-push @LIBS, '-lm' unless $^O eq 'MSWin32';
|
||||
+push @LIBS, '-lm' unless ($^O =~ /^MSWin32|darwin$/);
|
||||
|
||||
# FreeBSD 3.3 with libgd built from ports croaks if -lXpm is specified
|
||||
if ($^O ne 'freebsd' && $^O ne 'MSWin32') {
|
||||
|
||||
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> Then, run these commands to finish the installation of the perl module:
|
||||
<P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
><TBODY
|
||||
><TR
|
||||
><TD
|
||||
> <B
|
||||
><B
|
||||
CLASS="command"
|
||||
>perl Makefile.PL</B
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <B
|
||||
><B
|
||||
CLASS="command"
|
||||
>make</B
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <B
|
||||
><B
|
||||
CLASS="command"
|
||||
>make test</B
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <B
|
||||
><B
|
||||
CLASS="command"
|
||||
>make install</B
|
||||
>
|
||||
</TD
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
>And don't forget to run
|
||||
<B
|
||||
>And don't forget to run <B
|
||||
CLASS="command"
|
||||
>exit</B
|
||||
>
|
||||
|
||||
to get back to CPAN.</TD
|
||||
> to get back to cpan.</TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
@@ -190,6 +225,9 @@ CLASS="command"
|
||||
></P
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> Happy Hacking!
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -207,7 +245,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="win32.html"
|
||||
HREF="stepbystep.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -225,7 +263,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="troubleshooting.html"
|
||||
HREF="bsdinstall.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -235,7 +273,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Win32 Installation Notes</TD
|
||||
>Step-by-step Install</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -249,7 +287,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Troubleshooting</TD
|
||||
>BSD Installation Notes</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -1,435 +0,0 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Bugzilla Configuration</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="User Administration"
|
||||
HREF="useradmin.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="useradmin.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="parameters">5.1. Bugzilla Configuration</H1
|
||||
><P
|
||||
>Bugzilla is configured by changing various parameters, accessed
|
||||
from the "Edit parameters" link in the page footer. Here are
|
||||
some of the key parameters on that page. You should run down this
|
||||
list and set them appropriately after installing Bugzilla.</P
|
||||
><DIV
|
||||
CLASS="procedure"
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>maintainer</B
|
||||
>:
|
||||
The maintainer parameter is the email address of the person
|
||||
responsible for maintaining this
|
||||
Bugzilla installation. The address need not be that of a valid Bugzilla
|
||||
account.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>urlbase</B
|
||||
>:
|
||||
This parameter defines the fully qualified domain name and web
|
||||
server path to your Bugzilla installation.</P
|
||||
><P
|
||||
>For example, if your Bugzilla query page is
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>http://www.foo.com/bugzilla/query.cgi</TT
|
||||
>,
|
||||
set your <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"urlbase"</SPAN
|
||||
>
|
||||
to <TT
|
||||
CLASS="filename"
|
||||
>http://www.foo.com/bugzilla/</TT
|
||||
>.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>usebuggroups</B
|
||||
>:
|
||||
This dictates whether or not to implement group-based security for
|
||||
Bugzilla. If set, Bugzilla bugs can have an associated 'group',
|
||||
defining which users are allowed to see and edit the
|
||||
bug.</P
|
||||
><P
|
||||
>Set "usebuggroups" to "on"
|
||||
<EM
|
||||
>only</EM
|
||||
>
|
||||
if you may wish to restrict access to particular bugs to certain
|
||||
groups of users. I suggest leaving
|
||||
this parameter <EM
|
||||
>off</EM
|
||||
>
|
||||
while initially testing your Bugzilla.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>usebuggroupsentry</B
|
||||
>:
|
||||
Bugzilla Products can have a group associated with them, so that
|
||||
certain users can only see bugs in certain products. When this parameter
|
||||
is set to <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"on"</SPAN
|
||||
>, this places all newly-created bugs in the
|
||||
group for their product immediately.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>shadowdb</B
|
||||
>:
|
||||
You run into an interesting problem when Bugzilla reaches a
|
||||
high level of continuous activity. MySQL supports only table-level
|
||||
write locking. What this means is that if someone needs to make a
|
||||
change to a bug, they will lock the entire table until the operation
|
||||
is complete. Locking for write also blocks reads until the write is
|
||||
complete. The
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"shadowdb"</SPAN
|
||||
>
|
||||
parameter was designed to get around this limitation. While only a
|
||||
single user is allowed to write to a table at a time, reads can
|
||||
continue unimpeded on a read-only shadow copy of the database.
|
||||
Although your database size will double, a shadow database can cause
|
||||
an enormous performance improvement when implemented on extremely
|
||||
high-traffic Bugzilla databases.</P
|
||||
><P
|
||||
> As a guide, mozilla.org began needing
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"shadowdb"</SPAN
|
||||
>
|
||||
when they reached around 40,000 Bugzilla users with several hundred
|
||||
Bugzilla bug changes and comments per day.</P
|
||||
><P
|
||||
>The value of the parameter defines the name of the
|
||||
shadow bug database.
|
||||
Set "shadowdb" to e.g. "bug_shadowdb" if you will be running a
|
||||
*very* large installation of Bugzilla.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Enabling "shadowdb" can adversely affect the stability of
|
||||
your installation of Bugzilla. You should regularly check that your
|
||||
database is in sync. It is often advisable to force a shadow
|
||||
database sync nightly via
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"cron"</SPAN
|
||||
>.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>If you use the "shadowdb" option, it is only natural that you
|
||||
should turn the "queryagainstshadowdb" option on as well. Otherwise
|
||||
you are replicating data into a shadow database for no reason!</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>shutdownhtml</B
|
||||
>:
|
||||
|
||||
If you need to shut down Bugzilla to perform administration, enter
|
||||
some descriptive HTML here and anyone who tries to use Bugzilla will
|
||||
receive a page to that effect. Obviously, editparams.cgi will
|
||||
still be accessible so you can remove the HTML and re-enable Bugzilla.
|
||||
:-)
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>passwordmail</B
|
||||
>:
|
||||
|
||||
Every time a user creates an account, the text of
|
||||
this parameter (with substitutions) is sent to the new user along with
|
||||
their password message.</P
|
||||
><P
|
||||
>Add any text you wish to the "passwordmail" parameter box. For
|
||||
instance, many people choose to use this box to give a quick training
|
||||
blurb about how to use Bugzilla at your site.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>useqacontact</B
|
||||
>:
|
||||
|
||||
This allows you to define an email address for each component, in
|
||||
addition
|
||||
to that of the default owner, who will be sent carbon copies of
|
||||
incoming bugs.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>usestatuswhiteboard</B
|
||||
>:
|
||||
This defines whether you wish to have a free-form, overwritable field
|
||||
associated with each bug. The advantage of the Status Whiteboard is
|
||||
that it can be deleted or modified with ease, and provides an
|
||||
easily-searchable field for indexing some bugs that have some trait
|
||||
in common.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>whinedays</B
|
||||
>:
|
||||
Set this to the number of days you want to let bugs go
|
||||
in the NEW or REOPENED state before notifying people they have
|
||||
untouched new bugs. If you do not plan to use this feature, simply do
|
||||
not set up the whining cron job described in the installation
|
||||
instructions, or set this value to "0" (never whine).</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>commenton*</B
|
||||
>:
|
||||
All these
|
||||
fields allow you to dictate what changes can pass without comment,
|
||||
and which must have a comment from the person who changed them.
|
||||
Often, administrators will allow users to add themselves to the CC
|
||||
list, accept bugs, or change the Status Whiteboard without adding a
|
||||
comment as to their reasons for the change, yet require that most
|
||||
other changes come with an explanation.</P
|
||||
><P
|
||||
>Set the "commenton" options according to your site policy. It
|
||||
is a wise idea to require comments when users resolve, reassign, or
|
||||
reopen bugs at the very least.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>It is generally far better to require a developer comment
|
||||
when resolving bugs than not. Few things are more annoying to bug
|
||||
database users than having a developer mark a bug "fixed" without
|
||||
any comment as to what the fix was (or even that it was truly
|
||||
fixed!)</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <B
|
||||
CLASS="command"
|
||||
>supportwatchers</B
|
||||
>:
|
||||
|
||||
Turning on this option allows users to ask to receive copies of
|
||||
all a particular other user's bug email. This is, of
|
||||
course, subject to the groupset restrictions on the bug; if the
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"watcher"</SPAN
|
||||
>
|
||||
would not normally be allowed to view a bug, the watcher cannot get
|
||||
around the system by setting herself up to watch the bugs of someone
|
||||
with bugs outside her privileges. They would still only receive email
|
||||
updates for those bugs she could normally view.</P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="useradmin.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>User Administration</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -10,13 +10,10 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="MySQL Bugzilla Database Introduction"
|
||||
HREF="dbdoc.html"><LINK
|
||||
TITLE="MySQL Permissions & Grant Tables"
|
||||
HREF="granttables.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Apache
|
||||
mod_rewrite
|
||||
|
||||
magic"
|
||||
TITLE="Apache mod_rewrite magic"
|
||||
HREF="rewrite.html"></HEAD
|
||||
><BODY
|
||||
CLASS="appendix"
|
||||
@@ -45,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="dbdoc.html"
|
||||
HREF="granttables.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -72,7 +69,7 @@ WIDTH="100%"></DIV
|
||||
CLASS="appendix"
|
||||
><H1
|
||||
><A
|
||||
NAME="patches">Appendix C. Useful Patches and Utilities for Bugzilla</H1
|
||||
NAME="patches">Appendix D. Useful Patches and Utilities for Bugzilla</H1
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
@@ -81,26 +78,51 @@ CLASS="TOC"
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>C.1. <A
|
||||
>D.1. <A
|
||||
HREF="rewrite.html"
|
||||
>Apache
|
||||
<TT
|
||||
>Apache <TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
>
|
||||
|
||||
magic</A
|
||||
> magic</A
|
||||
></DT
|
||||
><DT
|
||||
>C.2. <A
|
||||
>D.2. <A
|
||||
HREF="setperl.html"
|
||||
>The setperl.csh Utility</A
|
||||
></DT
|
||||
><DT
|
||||
>D.3. <A
|
||||
HREF="cmdline.html"
|
||||
>Command-line Bugzilla Queries</A
|
||||
></DT
|
||||
><DT
|
||||
>D.4. <A
|
||||
HREF="quicksearch.html"
|
||||
>The Quicksearch Utility</A
|
||||
></DT
|
||||
><DT
|
||||
>D.5. <A
|
||||
HREF="bzhacking.html"
|
||||
>Hacking Bugzilla</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>D.5.1. <A
|
||||
HREF="bzhacking.html#AEN2436"
|
||||
>Things that have caused problems and should be avoided</A
|
||||
></DT
|
||||
><DT
|
||||
>D.5.2. <A
|
||||
HREF="bzhacking.html#AEN2450"
|
||||
>Coding Style for Bugzilla</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
><P
|
||||
>Are you looking for a way to put your Bugzilla into overdrive? Catch
|
||||
some of the niftiest tricks here in this section.</P
|
||||
>Are you looking for a way to put your Bugzilla into overdrive? Catch some of the niftiest tricks here in this section.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -118,7 +140,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="dbdoc.html"
|
||||
HREF="granttables.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -146,7 +168,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>MySQL Bugzilla Database Introduction</TD
|
||||
>MySQL Permissions & Grant Tables</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -156,13 +178,10 @@ VALIGN="top"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Apache
|
||||
<TT
|
||||
>Apache <TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
>
|
||||
|
||||
magic</TD
|
||||
> magic</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
565
mozilla/webtools/bugzilla/docs/html/postinstall-check.html
Normal file
565
mozilla/webtools/bugzilla/docs/html/postinstall-check.html
Normal file
@@ -0,0 +1,565 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Post-Installation Checklist</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="User Administration"
|
||||
HREF="useradmin.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 4. Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="useradmin.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="postinstall-check">4.1. Post-Installation Checklist</H1
|
||||
><P
|
||||
> After installation, follow the checklist below to help ensure
|
||||
that you have a successful installation. If you do not see a
|
||||
recommended setting for a parameter, consider leaving it at the
|
||||
default while you perform your initial tests on your Bugzilla
|
||||
setup.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="procedure"
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> Bring up <TT
|
||||
CLASS="filename"
|
||||
>editparams.cgi</TT
|
||||
> in your web
|
||||
browser. This should be available as the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"edit
|
||||
parameters"</SPAN
|
||||
> link from any Bugzilla screen once you
|
||||
have logged in.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>The <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"maintainer"</SPAN
|
||||
> is the email address of
|
||||
the person responsible for maintaining this Bugzilla
|
||||
installation. The maintainer need not be a valid Bugzilla
|
||||
user. Error pages, error emails, and administrative mail
|
||||
will be sent with the maintainer as the return email
|
||||
address.</P
|
||||
><P
|
||||
> Set <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"maintainer"</SPAN
|
||||
> to <EM
|
||||
>your</EM
|
||||
> email address.
|
||||
This allows Bugzilla's error messages to display your email
|
||||
address and allow people to contact you for help.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>The <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"urlbase"</SPAN
|
||||
> parameter defines the fully
|
||||
qualified domain name and web server path to your Bugzilla
|
||||
installation.</P
|
||||
><P
|
||||
> For example, if your bugzilla query page is
|
||||
http://www.foo.com/bugzilla/query.cgi, set your
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"urlbase"</SPAN
|
||||
> is http://www.foo.com/bugzilla/.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"usebuggroups"</SPAN
|
||||
> dictates whether or not to
|
||||
implement group-based security for Bugzilla. If set,
|
||||
Bugzilla bugs can have an associated groupmask defining
|
||||
which groups of users are allowed to see and edit the
|
||||
bug.</P
|
||||
><P
|
||||
> Set "usebuggroups" to "on" <EM
|
||||
>only</EM
|
||||
> if you
|
||||
may wish to restrict access to products. I suggest leaving
|
||||
this parameter <EM
|
||||
>off</EM
|
||||
> while initially
|
||||
testing your Bugzilla.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"usebuggroupsentry"</SPAN
|
||||
>, when set to
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"on"</SPAN
|
||||
>, requires that all bugs have an associated
|
||||
groupmask when submitted. This parameter is made for those
|
||||
installations where product isolation is a necessity.
|
||||
</P
|
||||
><P
|
||||
> Set "usebuggroupsentry" to "on" if you absolutely need to
|
||||
restrict access to bugs from the moment they are submitted
|
||||
through resolution. Once again, if you are simply testing
|
||||
your installation, I suggest against turning this parameter
|
||||
on; the strict security checking may stop you from being
|
||||
able to modify your new entries.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> You run into an interesting problem when Bugzilla reaches a
|
||||
high level of continuous activity. MySQL supports only
|
||||
table-level write locking. What this means is that if
|
||||
someone needs to make a change to a bug, they will lock the
|
||||
entire table until the operation is complete. Locking for
|
||||
write also blocks reads until the write is complete. The
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"shadowdb"</SPAN
|
||||
> parameter was designed to get around
|
||||
this limitation. While only a single user is allowed to
|
||||
write to a table at a time, reads can continue unimpeded on
|
||||
a read-only shadow copy of the database. Although your
|
||||
database size will double, a shadow database can cause an
|
||||
enormous performance improvement when implemented on
|
||||
extremely high-traffic Bugzilla databases.
|
||||
</P
|
||||
><P
|
||||
> Set "shadowdb" to "bug_shadowdb" if you will be running a
|
||||
*very* large installation of Bugzilla. The shadow database
|
||||
enables many simultaneous users to read and write to the
|
||||
database without interfering with one another.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> Enabling "shadowdb" can adversely affect the stability
|
||||
of your installation of Bugzilla. You should regularly
|
||||
check that your database is in sync. It is often
|
||||
advisable to force a shadow database sync nightly via
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"cron"</SPAN
|
||||
>.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
> Once again, in testing you should avoid this option
|
||||
-- use it if or when you <EM
|
||||
>need</EM
|
||||
> to use
|
||||
it, and have repeatedly run into the problem it was designed
|
||||
to solve -- very long wait times while attempting to commit
|
||||
a change to the database. Mozilla.org began needing
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"shadowdb"</SPAN
|
||||
> when they reached around 40,000
|
||||
Bugzilla users with several hundred Bugzilla bug changes and
|
||||
comments per day.
|
||||
</P
|
||||
><P
|
||||
> If you use the "shadowdb" option, it is only natural that
|
||||
you should turn the "queryagainstshadowdb" option "On" as
|
||||
well. Otherwise you are replicating data into a shadow
|
||||
database for no reason!
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"headerhtml"</SPAN
|
||||
>, <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"footerhtml"</SPAN
|
||||
>,
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"errorhtml"</SPAN
|
||||
>, <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"bannerhtml"</SPAN
|
||||
>, and
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"blurbhtml"</SPAN
|
||||
> are all templates which control
|
||||
display of headers, footers, errors, banners, and additional
|
||||
data. We could go into some detail regarding the usage of
|
||||
these, but it is really best just to monkey around with them
|
||||
a bit to see what they do. I strongly recommend you copy
|
||||
your <TT
|
||||
CLASS="filename"
|
||||
>data/params</TT
|
||||
> file somewhere safe
|
||||
before playing with these values, though. If they are
|
||||
changed dramatically, it may make it impossible for you to
|
||||
display Bugzilla pages to fix the problem until you have
|
||||
restored your <TT
|
||||
CLASS="filename"
|
||||
>data/params</TT
|
||||
> file.</P
|
||||
><P
|
||||
> If you have custom logos or HTML you must put in place to
|
||||
fit within your site design guidelines, place the code in
|
||||
the "headerhtml", "footerhtml", "errorhtml", "bannerhtml",
|
||||
or "blurbhtml" text boxes.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> The "headerhtml" text box is the HTML printed out
|
||||
<EM
|
||||
>before</EM
|
||||
> any other code on the page,
|
||||
except the CONTENT-TYPE header sent by the Bugzilla
|
||||
engine. If you have a special banner, put the code for
|
||||
it in "bannerhtml". You may want to leave these settings
|
||||
at the defaults initially.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"passwordmail"</SPAN
|
||||
> is rather simple. Every
|
||||
time a user creates an account, the text of this parameter
|
||||
is read as the text to send to the new user along with their
|
||||
password message.</P
|
||||
><P
|
||||
> Add any text you wish to the "passwordmail" parameter box.
|
||||
For instance, many people choose to use this box to give a
|
||||
quick training blurb about how to use Bugzilla at your site.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"useqacontact"</SPAN
|
||||
> allows you to define an
|
||||
email address for each component, in addition to that of the
|
||||
default owner, who will be sent carbon copies of incoming
|
||||
bugs. The critical difference between a QA Contact and an
|
||||
Owner is that the QA Contact follows the component. If you
|
||||
reassign a bug from component A to component B, the QA
|
||||
Contact for that bug will change with the reassignment,
|
||||
regardless of owner.</P
|
||||
><P
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"usestatuswhiteboard"</SPAN
|
||||
> defines whether you
|
||||
wish to have a free-form, overwritable field associated with
|
||||
each bug. The advantage of the Status Whiteboard is that it
|
||||
can be deleted or modified with ease, and provides an
|
||||
easily-searchable field for indexing some bugs that have
|
||||
some trait in common. Many people will put <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"help
|
||||
wanted"</SPAN
|
||||
>, <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"stalled"</SPAN
|
||||
>, or <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"waiting
|
||||
on reply from somebody"</SPAN
|
||||
> messages into the Status
|
||||
Whiteboard field so those who peruse the bugs are aware of
|
||||
their status even more than that which can be indicated by
|
||||
the Resolution fields.</P
|
||||
><P
|
||||
> Do you want to use the QA Contact ("useqacontact") and
|
||||
status whiteboard ("usestatuswhiteboard") fields? These
|
||||
fields are useful because they allow for more flexibility,
|
||||
particularly when you have an existing Quality Assurance
|
||||
and/or Release Engineering team, but they may not be needed
|
||||
for many smaller installations.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Set "whinedays" to the amount of days you want to let bugs
|
||||
go in the "New" or "Reopened" state before notifying people
|
||||
they have untouched new bugs. If you do not plan to use
|
||||
this feature, simply do not set up the whining cron job
|
||||
described in the installation instructions, or set this
|
||||
value to "0" (never whine).
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
><SPAN
|
||||
CLASS="QUOTE"
|
||||
>"commenton"</SPAN
|
||||
> fields allow you to dictate
|
||||
what changes can pass without comment, and which must have a
|
||||
comment from the person who changed them. Often,
|
||||
administrators will allow users to add themselves to the CC
|
||||
list, accept bugs, or change the Status Whiteboard without
|
||||
adding a comment as to their reasons for the change, yet
|
||||
require that most other changes come with an
|
||||
explanation.</P
|
||||
><P
|
||||
> Set the "commenton" options according to your site policy.
|
||||
It is a wise idea to require comments when users resolve,
|
||||
reassign, or reopen bugs at the very least.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> It is generally far better to require a developer
|
||||
comment when resolving bugs than not. Few things are
|
||||
more annoying to bug database users than having a
|
||||
developer mark a bug "fixed" without any comment as to
|
||||
what the fix was (or even that it was truly fixed!)
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>The <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"supportwatchers"</SPAN
|
||||
> option can be an
|
||||
exceptionally powerful tool in the hands of a power Bugzilla
|
||||
user. By enabling this option, you allow users to receive
|
||||
email updates whenever other users receive email updates.
|
||||
This is, of course, subject to the groupset restrictions on
|
||||
the bug; if the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"watcher"</SPAN
|
||||
> would not normally be
|
||||
allowed to view a bug, the watcher cannot get around the
|
||||
system by setting herself up to watch the bugs of someone
|
||||
with bugs outside her privileges. She would still only
|
||||
receive email updates for those bugs she could normally
|
||||
view.</P
|
||||
><P
|
||||
>For Bugzilla sites which require strong inter-Product
|
||||
security to prevent snooping, watchers are not a good
|
||||
idea.</P
|
||||
><P
|
||||
> However, for most sites you should set
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"supportwatchers"</SPAN
|
||||
> to "On". This feature is
|
||||
helpful for team leads to monitor progress in their
|
||||
respective areas, and can offer many other benefits, such as
|
||||
allowing a developer to pick up a former engineer's bugs
|
||||
without requiring her to change all the information in the
|
||||
bug.
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="useradmin.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>User Administration</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
File diff suppressed because it is too large
Load Diff
197
mozilla/webtools/bugzilla/docs/html/quicksearch.html
Normal file
197
mozilla/webtools/bugzilla/docs/html/quicksearch.html
Normal file
@@ -0,0 +1,197 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>The Quicksearch Utility</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Command-line Bugzilla Queries"
|
||||
HREF="cmdline.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Hacking Bugzilla"
|
||||
HREF="bzhacking.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Useful Patches and Utilities for Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="bzhacking.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="quicksearch">D.4. The Quicksearch Utility</H1
|
||||
><P
|
||||
> Quicksearch is a new, experimental feature of the 2.12 release.
|
||||
It consist of two Javascript files, "quicksearch.js" and
|
||||
"localconfig.js", and two documentation files,
|
||||
"quicksearch.html" and "quicksearchhack.html"
|
||||
</P
|
||||
><P
|
||||
> The index.html page has been updated to include the QuickSearch
|
||||
text box.
|
||||
</P
|
||||
><P
|
||||
> To take full advantage of the query power, the Bugzilla
|
||||
maintainer must edit "localconfig.js" according to the value
|
||||
sets used in the local installation.
|
||||
</P
|
||||
><P
|
||||
> Currently, keywords must be hard-coded in localconfig.js. If
|
||||
they are not, keywords are not automatically recognized. This
|
||||
means, if localconfig.js is left unconfigured, that searching
|
||||
for a bug with the "foo" keyword will only find bugs with "foo"
|
||||
in the summary, status whiteboard, product or component name,
|
||||
but not those with the keyword "foo".
|
||||
</P
|
||||
><P
|
||||
> Workarounds for Bugzilla users:
|
||||
<P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
><TBODY
|
||||
><TR
|
||||
><TD
|
||||
>search for '!foo' (this will find only bugs with the
|
||||
keyword "foo"</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
>search 'foo,!foo' (equivalent to 'foo OR
|
||||
keyword:foo')</TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
><P
|
||||
></P
|
||||
>
|
||||
</P
|
||||
><P
|
||||
> When this tool is ported from client-side JavaScript to
|
||||
server-side Perl, the requirement for hard-coding keywords can
|
||||
be fixed. <A
|
||||
HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=70907"
|
||||
TARGET="_top"
|
||||
>This bug</A
|
||||
> has details.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="bzhacking.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Command-line Bugzilla Queries</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Hacking Bugzilla</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -1,10 +1,7 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Apache
|
||||
mod_rewrite
|
||||
|
||||
magic</TITLE
|
||||
>Apache mod_rewrite magic</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
@@ -19,8 +16,8 @@ REL="PREVIOUS"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Command-line Bugzilla Queries"
|
||||
HREF="cmdline.html"></HEAD
|
||||
TITLE="The setperl.csh Utility"
|
||||
HREF="setperl.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -56,13 +53,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix C. Useful Patches and Utilities for Bugzilla</TD
|
||||
>Appendix D. Useful Patches and Utilities for Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
HREF="setperl.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -76,37 +73,30 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="rewrite">C.1. Apache
|
||||
<TT
|
||||
NAME="rewrite">D.1. Apache <TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
>
|
||||
|
||||
magic</H1
|
||||
> magic</H1
|
||||
><P
|
||||
>Apache's
|
||||
<TT
|
||||
>Apache's <TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
>
|
||||
|
||||
module lets you do some truly amazing things with URL rewriting. Here are
|
||||
a couple of examples of what you can do.</P
|
||||
> module lets you do some truly amazing things with URL rewriting. Here are a couple of examples of what you can do.</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>Make it so if someone types
|
||||
<TT
|
||||
> Make it so if someone types
|
||||
<TT
|
||||
CLASS="computeroutput"
|
||||
>http://www.foo.com/12345</TT
|
||||
>
|
||||
|
||||
, Bugzilla spits back http://www.foo.com/show_bug.cgi?id=12345. Try
|
||||
setting up your VirtualHost section for Bugzilla with a rule like
|
||||
this:</P
|
||||
>,
|
||||
Bugzilla spits back
|
||||
http://www.foo.com/show_bug.cgi?id=12345. Try setting up
|
||||
your VirtualHost section for Bugzilla with a rule like
|
||||
this:</P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
BGCOLOR="#E0E0E0"
|
||||
@@ -117,11 +107,13 @@ WIDTH="100%"
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> <VirtualHost 12.34.56.78>
|
||||
>
|
||||
<VirtualHost 12.34.56.78>
|
||||
RewriteEngine On
|
||||
RewriteRule ^/([0-9]+)$ http://foo.bar.com/show_bug.cgi?id=$1 [L,R]
|
||||
</VirtualHost>
|
||||
</PRE
|
||||
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
@@ -129,14 +121,14 @@ RewriteRule ^/([0-9]+)$ http://foo.bar.com/show_bug.cgi?id=$1 [L,R]
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>There are many, many more things you can do with mod_rewrite.
|
||||
Please refer to the mod_rewrite documentation at
|
||||
<A
|
||||
>There are many, many more things you can do with
|
||||
mod_rewrite. As time goes on, I will include many more in
|
||||
the Guide. For now, though, please refer to the mod_rewrite
|
||||
documentation at <A
|
||||
HREF="http://www.apache.org"
|
||||
TARGET="_top"
|
||||
>http://www.apache.org</A
|
||||
>.
|
||||
</P
|
||||
></P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
@@ -174,7 +166,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
HREF="setperl.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -198,7 +190,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Command-line Bugzilla Queries</TD
|
||||
>The setperl.csh Utility</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -53,7 +53,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Bugzilla Variants and Competitors</TD
|
||||
>Chapter 6. Bugzilla Variants and Competitors</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,22 +73,22 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="rhbugzilla">D.1. Red Hat Bugzilla</H1
|
||||
NAME="rhbugzilla">6.1. Red Hat Bugzilla</H1
|
||||
><P
|
||||
>Red Hat Bugzilla is a fork of Bugzilla 2.8.
|
||||
One of its major benefits is the ability
|
||||
to work with Oracle, MySQL, and PostGreSQL databases serving as the
|
||||
back-end, instead of just MySQL. Dave Lawrence of Red Hat is
|
||||
active in the Bugzilla community, and we hope to see a reunification
|
||||
of the fork before too long.</P
|
||||
> Red Hat Bugzilla is probably the most popular Bugzilla variant
|
||||
on the planet. One of the major benefits of Red Hat Bugzilla is
|
||||
the ability to work with Oracle, MySQL, and PostGreSQL databases
|
||||
serving as the back-end, instead of just MySQL. Dave Lawrence
|
||||
has worked very hard to keep Red Hat Bugzilla up-to-date, and
|
||||
many people prefer the snappier-looking page layout of Red Hat
|
||||
Bugzilla to the default Mozilla-standard formatting.
|
||||
</P
|
||||
><P
|
||||
>URL:
|
||||
<A
|
||||
>URL: <A
|
||||
HREF="http://bugzilla.redhat.com/bugzilla/"
|
||||
TARGET="_top"
|
||||
> http://bugzilla.redhat.com/bugzilla/</A
|
||||
>
|
||||
</P
|
||||
>http://bugzilla.redhat.com/bugzilla/</A
|
||||
></P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
|
||||
166
mozilla/webtools/bugzilla/docs/html/scm.html
Normal file
166
mozilla/webtools/bugzilla/docs/html/scm.html
Normal file
@@ -0,0 +1,166 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Perforce SCM</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="CVS"
|
||||
HREF="cvs.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Tinderbox/Tinderbox2"
|
||||
HREF="tinderbox.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cvs.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Integrating Bugzilla with Third-Party Tools</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="tinderbox.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="scm">5.3. Perforce SCM</H1
|
||||
><P
|
||||
> You can find the project page for Bugzilla and Teamtrack
|
||||
Perforce integration (p4dti) at: <A
|
||||
HREF="http://www.ravenbrook.com/project/p4dti/"
|
||||
TARGET="_top"
|
||||
> http://www.ravenbrook.com/project/p4dti</A
|
||||
> . <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"p4dti"</SPAN
|
||||
> is now an officially supported product from Perforce, and you can find the "Perforce Public Depot" p4dti page at <A
|
||||
HREF="http://public.perforce.com/public/perforce/p4dti/index.html"
|
||||
TARGET="_top"
|
||||
> http://public.perforce.com/public/perforce/p4dti/index.html</A
|
||||
>.
|
||||
</P
|
||||
><P
|
||||
> Integration of Perforce with Bugzilla, once patches are applied,
|
||||
is seamless. Perforce replication information will appear below
|
||||
the comments of each bug. Be certain you have a matching set of
|
||||
patches for the Bugzilla version you are installing. p4dti is
|
||||
designed to support multiple defect trackers, and maintains its
|
||||
own documentation for it. Please consult the pages linked above
|
||||
for further information.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cvs.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="tinderbox.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>CVS</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Tinderbox/Tinderbox2</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -13,11 +13,12 @@ REL="UP"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Groups and Group Security"
|
||||
HREF="groups.html"><LINK
|
||||
TITLE="Product, Component, Milestone, and Version
|
||||
Administration"
|
||||
HREF="programadmin.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Template Customisation"
|
||||
HREF="cust-templates.html"></HEAD
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -45,7 +46,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="groups.html"
|
||||
HREF="programadmin.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -53,13 +54,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Administering Bugzilla</TD
|
||||
>Chapter 4. Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cust-templates.html"
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,37 +74,32 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="security">5.6. Bugzilla Security</H1
|
||||
><DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
></P
|
||||
NAME="security">4.4. Bugzilla Security</H1
|
||||
><TABLE
|
||||
CLASS="warning"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
WIDTH="100%"
|
||||
CELLSPACING="0"
|
||||
CELLPADDING="0"
|
||||
CLASS="EPIGRAPH"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/warning.gif"
|
||||
HSPACE="5"
|
||||
ALT="Warning"></TD
|
||||
WIDTH="45%"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><I
|
||||
><P
|
||||
>Poorly-configured MySQL and Bugzilla installations have
|
||||
given attackers full access to systems in the past. Please take these
|
||||
guidelines seriously, even for Bugzilla machines hidden away behind
|
||||
your firewall. 80% of all computer trespassers are insiders, not
|
||||
anonymous crackers.</P
|
||||
><I
|
||||
>Putting your money in a wall safe is better protection than
|
||||
depending on the fact that no one knows that you hide your
|
||||
money in a mayonnaise jar in your fridge.</I
|
||||
></P
|
||||
></I
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
@@ -125,65 +121,19 @@ ALT="Note"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>These instructions must, of necessity, be somewhat vague since
|
||||
Bugzilla runs on so many different platforms. If you have refinements
|
||||
of these directions for specific platforms, please submit them to
|
||||
<A
|
||||
HREF="mailto://mozilla-webtools@mozilla.org"
|
||||
TARGET="_top"
|
||||
> mozilla-webtools@mozilla.org</A
|
||||
>
|
||||
> Poorly-configured MySQL, Bugzilla, and FTP installations have
|
||||
given attackers full access to systems in the past. Please
|
||||
take these guidelines seriously, even for Bugzilla machines
|
||||
hidden away behind your firewall. 80% of all computer
|
||||
trespassers are insiders, not anonymous crackers.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
>To secure your installation:
|
||||
|
||||
<P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>Ensure you are running at least MysQL version 3.22.32 or newer.
|
||||
Earlier versions had notable security holes and (from a security
|
||||
point of view) poor default configuration choices.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>There is no substitute for understanding the tools on your
|
||||
system!</EM
|
||||
>
|
||||
|
||||
Read
|
||||
<A
|
||||
HREF="http://www.mysql.com/doc/P/r/Privilege_system.html"
|
||||
TARGET="_top"
|
||||
> The MySQL Privilege System</A
|
||||
>
|
||||
until you can recite it from memory!</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Lock down /etc/inetd.conf. Heck, disable inet entirely on this
|
||||
box. It should only listen to port 25 for Sendmail and port 80 for
|
||||
Apache.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Do not run Apache as
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"nobody"</SPAN
|
||||
>
|
||||
|
||||
. This will require very lax permissions in your Bugzilla
|
||||
directories. Run it, instead, as a user with a name, set via your
|
||||
httpd.conf file.
|
||||
<DIV
|
||||
> Secure your installation.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
@@ -204,77 +154,126 @@ ALT="Note"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"nobody"</SPAN
|
||||
> These instructions must, of necessity, be somewhat vague
|
||||
since Bugzilla runs on so many different platforms. If you
|
||||
have refinements of these directions for specific platforms,
|
||||
please submit them to <A
|
||||
HREF="mailto://mozilla-webtools@mozilla.org"
|
||||
TARGET="_top"
|
||||
>mozilla-webtools@mozilla.org</A
|
||||
>
|
||||
|
||||
is a real user on UNIX systems. Having a process run as user id
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"nobody"</SPAN
|
||||
>
|
||||
|
||||
is absolutely no protection against system crackers versus using
|
||||
any other user account. As a general security measure, I recommend
|
||||
you create unique user ID's for each daemon running on your system
|
||||
and, if possible, use "chroot" to jail that process away from the
|
||||
rest of your system.</P
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
<P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> Ensure you are running at least MysQL version 3.22.32 or
|
||||
newer. Earlier versions had notable security holes and
|
||||
poorly secured default configuration choices.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Ensure you have adequate access controls for the
|
||||
$BUGZILLA_HOME/data/ directory, as well as the
|
||||
$BUGZILLA_HOME/localconfig file.
|
||||
The localconfig file stores your "bugs" database account password.
|
||||
In addition, some
|
||||
files under $BUGZILLA_HOME/data/ store sensitive information.
|
||||
</P
|
||||
><P
|
||||
>Bugzilla provides default .htaccess files to protect the most
|
||||
common Apache installations. However, you should verify these are
|
||||
adequate according to the site-wide security policy of your web
|
||||
server, and ensure that the .htaccess files are allowed to
|
||||
"override" default permissions set in your Apache configuration
|
||||
files. Covering Apache security is beyond the scope of this Guide;
|
||||
please consult the Apache documentation for details.</P
|
||||
><P
|
||||
>If you are using a web server that does not support the
|
||||
.htaccess control method,
|
||||
<EM
|
||||
>you are at risk!</EM
|
||||
>
|
||||
|
||||
After installing, check to see if you can view the file
|
||||
"localconfig" in your web browser (e.g.:
|
||||
<A
|
||||
HREF="http://bugzilla.mozilla.org/localconfig"
|
||||
><EM
|
||||
>There is no substitute for understanding the
|
||||
tools on your system!</EM
|
||||
> Read <A
|
||||
HREF="http://www.mysql.com/documentation/mysql/bychapter/manual_Privilege_system.html"
|
||||
TARGET="_top"
|
||||
> http://bugzilla.mozilla.org/localconfig</A
|
||||
>
|
||||
|
||||
). If you can read the contents of this file, your web server has
|
||||
not secured your bugzilla directory properly and you must fix this
|
||||
problem before deploying Bugzilla. If, however, it gives you a
|
||||
"Forbidden" error, then it probably respects the .htaccess
|
||||
conventions and you are good to go.</P
|
||||
> The MySQL Privilege System</A
|
||||
> until you can recite it from memory!</P
|
||||
><P
|
||||
>When you run checksetup.pl, the script will attempt to modify
|
||||
various permissions on files which Bugzilla uses. If you do not have
|
||||
a webservergroup set in the localconfig file, then Bugzilla will have
|
||||
to make certain files world readable and/or writable.
|
||||
<EM
|
||||
>THIS IS INSECURE!</EM
|
||||
> At the very least, ensure you password the "mysql -u root"
|
||||
account and the "bugs" account, establish grant table
|
||||
rights (consult the Keystone guide in Appendix C: The
|
||||
Bugzilla Database for some easy-to-use details) that do
|
||||
not allow CREATE, DROP, RELOAD, SHUTDOWN, and PROCESS for
|
||||
user "bugs". I wrote up the Keystone advice back when I
|
||||
knew far less about security than I do now : )
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Lock down /etc/inetd.conf. Heck, disable inet entirely on
|
||||
this box. It should only listen to port 25 for Sendmail
|
||||
and port 80 for Apache.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Do not run Apache as <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"nobody"</SPAN
|
||||
>. This will
|
||||
require very lax permissions in your Bugzilla directories.
|
||||
Run it, instead, as a user with a name, set via your
|
||||
httpd.conf file.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"nobody"</SPAN
|
||||
> is a real user on UNIX systems.
|
||||
Having a process run as user id <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"nobody"</SPAN
|
||||
>
|
||||
|
||||
. This means that anyone who can get access to your system can do
|
||||
whatever they want to your Bugzilla installation.</P
|
||||
is absolutely no protection against system crackers
|
||||
versus using any other user account. As a general
|
||||
security measure, I recommend you create unique user
|
||||
ID's for each daemon running on your system and, if
|
||||
possible, use "chroot" to jail that process away from
|
||||
the rest of your system.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Ensure you have adequate access controls for the
|
||||
$BUGZILLA_HOME/data/ and $BUGZILLA_HOME/shadow/
|
||||
directories, as well as the $BUGZILLA_HOME/localconfig and
|
||||
$BUGZILLA_HOME/globals.pl files. The localconfig file
|
||||
stores your "bugs" user password, which would be terrible
|
||||
to have in the hands of a criminal, while the "globals.pl"
|
||||
stores some default information regarding your
|
||||
installation which could aid a system cracker. In
|
||||
addition, some files under $BUGZILLA_HOME/data/ store
|
||||
sensitive information, and $BUGZILLA_HOME/shadow/ stores
|
||||
bug information for faster retrieval. If you fail to
|
||||
secure these directories and this file, you will expose
|
||||
bug information to those who may not be allowed to see it.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
@@ -296,56 +295,116 @@ ALT="Note"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>This also means that if your webserver runs all cgi scripts
|
||||
as the same user/group, anyone on the system who can run cgi
|
||||
scripts will be able to take control of your Bugzilla
|
||||
installation.</P
|
||||
> Bugzilla provides default .htaccess files to protect the
|
||||
most common Apache installations. However, you should
|
||||
verify these are adequate according to the site-wide
|
||||
security policy of your web server, and ensure that the
|
||||
.htaccess files are allowed to "override" default
|
||||
permissions set in your Apache configuration files.
|
||||
Covering Apache security is beyond the scope of this
|
||||
Guide; please consult the Apache documentation for
|
||||
details.
|
||||
</P
|
||||
><P
|
||||
> If you are using a web server that does not support the
|
||||
.htaccess control method, <EM
|
||||
>you are at
|
||||
risk!</EM
|
||||
> After installing, check to see if
|
||||
you can view the file "localconfig" in your web browser
|
||||
(e.g.: <A
|
||||
HREF="http://bugzilla.mozilla.org/localconfig"
|
||||
TARGET="_top"
|
||||
> http://bugzilla.mozilla.org/localconfig</A
|
||||
>). If you can read the contents of this file, your web server has not secured your bugzilla directory properly and you must fix this problem before deploying Bugzilla. If, however, it gives you a "Forbidden" error, then it probably respects the .htaccess conventions and you are good to go.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
>On Apache, you can use .htaccess files to protect access to
|
||||
these directories, as outlined in
|
||||
<A
|
||||
> When you run checksetup.pl, the script will attempt to modify various
|
||||
permissions on files which Bugzilla uses. If you do not have a
|
||||
webservergroup set in the localconfig file, then Bugzilla will have to
|
||||
make certain files world readable and/or writable. <EM
|
||||
>THIS IS
|
||||
INSECURE!</EM
|
||||
>. This means that anyone who can get access to
|
||||
your system can do whatever they want to your Bugzilla installation.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> This also means that if your webserver runs all cgi scripts as the
|
||||
same user/group, anyone on the system who can run cgi scripts will
|
||||
be able to take control of your Bugzilla installation.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
><P
|
||||
> On Apache, you can use .htaccess files to protect access
|
||||
to these directories, as outlined in <A
|
||||
HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=57161"
|
||||
TARGET="_top"
|
||||
>Bug
|
||||
57161</A
|
||||
>
|
||||
|
||||
for the localconfig file, and
|
||||
<A
|
||||
>Bug 57161</A
|
||||
> for the localconfig file, and <A
|
||||
HREF="http://bugzilla.mozilla.org/show_bug.cgi?id=65572"
|
||||
TARGET="_top"
|
||||
>Bug
|
||||
65572</A
|
||||
>
|
||||
|
||||
for adequate protection in your data/ directory.</P
|
||||
> Bug 65572</A
|
||||
> for adequate protection in your data/ and shadow/ directories.
|
||||
</P
|
||||
><P
|
||||
>Note the instructions which follow are Apache-specific. If you
|
||||
use IIS, Netscape, or other non-Apache web servers, please consult
|
||||
your system documentation for how to secure these files from being
|
||||
transmitted to curious users.</P
|
||||
> Note the instructions which follow are Apache-specific.
|
||||
If you use IIS, Netscape, or other non-Apache web servers,
|
||||
please consult your system documentation for how to secure
|
||||
these files from being transmitted to curious users.
|
||||
</P
|
||||
><P
|
||||
>Place the following text into a file named ".htaccess",
|
||||
readable by your web server, in your $BUGZILLA_HOME/data directory.
|
||||
<P
|
||||
> Place the following text into a file named ".htaccess",
|
||||
readable by your web server, in your $BUGZILLA_HOME/data
|
||||
directory. <P
|
||||
CLASS="literallayout"
|
||||
><Files comments> allow from all </Files><br>
|
||||
deny from all</P
|
||||
> <Files comments> allow<br>
|
||||
from all </Files> deny from all </P
|
||||
>
|
||||
</P
|
||||
</P
|
||||
><P
|
||||
>Place the following text into a file named ".htaccess",
|
||||
readable by your web server, in your $BUGZILLA_HOME/ directory.
|
||||
<P
|
||||
> Place the following text into a file named ".htaccess",
|
||||
readable by your web server, in your $BUGZILLA_HOME/
|
||||
directory. <P
|
||||
CLASS="literallayout"
|
||||
><Files localconfig> deny from all </Files><br>
|
||||
allow from all</P
|
||||
> <Files localconfig> deny<br>
|
||||
from all </Files> allow from all </P
|
||||
>
|
||||
</P
|
||||
</P
|
||||
><P
|
||||
> Place the following text into a file named ".htaccess",
|
||||
readable by your web server, in your $BUGZILLA_HOME/shadow
|
||||
directory. <P
|
||||
CLASS="literallayout"
|
||||
> deny from all </P
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
>
|
||||
@@ -367,7 +426,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="groups.html"
|
||||
HREF="programadmin.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -385,7 +444,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cust-templates.html"
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -395,7 +454,8 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Groups and Group Security</TD
|
||||
>Product, Component, Milestone, and Version
|
||||
Administration</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -409,7 +469,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Template Customisation</TD
|
||||
>Integrating Bugzilla with Third-Party Tools</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
312
mozilla/webtools/bugzilla/docs/html/setperl.html
Normal file
312
mozilla/webtools/bugzilla/docs/html/setperl.html
Normal file
@@ -0,0 +1,312 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>The setperl.csh Utility</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Useful Patches and Utilities for Bugzilla"
|
||||
HREF="patches.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Apache mod_rewrite magic"
|
||||
HREF="rewrite.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Command-line Bugzilla Queries"
|
||||
HREF="cmdline.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="rewrite.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Useful Patches and Utilities for Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="setperl">D.2. The setperl.csh Utility</H1
|
||||
><P
|
||||
> You can use the "setperl.csh" utility to quickly and
|
||||
easily change the path to perl on all your Bugzilla files. This
|
||||
is a C-shell script; if you do not have "csh" or "tcsh" in the
|
||||
search path on your system, it will not work!
|
||||
</P
|
||||
><DIV
|
||||
CLASS="procedure"
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> Download the "setperl.csh" utility to your Bugzilla
|
||||
directory and make it executable.
|
||||
</P
|
||||
><OL
|
||||
CLASS="SUBSTEPS"
|
||||
TYPE="a"
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>cd /your/path/to/bugzilla</B
|
||||
>
|
||||
</TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
> <B
|
||||
CLASS="command"
|
||||
>wget -O
|
||||
setperl.csh
|
||||
'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=10795'</B
|
||||
> </TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
> <B
|
||||
CLASS="command"
|
||||
>chmod
|
||||
u+x setperl.csh</B
|
||||
> </TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Prepare (and fix) Bugzilla file permissions.
|
||||
</P
|
||||
><OL
|
||||
CLASS="SUBSTEPS"
|
||||
TYPE="a"
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>chmod u+w *</B
|
||||
>
|
||||
</TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
> <B
|
||||
CLASS="command"
|
||||
>chmod
|
||||
u+x duplicates.cgi</B
|
||||
> </TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>chmod a-x bug_status.html</B
|
||||
>
|
||||
</TT
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Run the script:
|
||||
</P
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>./setperl.csh /your/path/to/perl</B
|
||||
>
|
||||
</TT
|
||||
>
|
||||
<DIV
|
||||
CLASS="example"
|
||||
><A
|
||||
NAME="AEN2380"><P
|
||||
><B
|
||||
>Example D-1. Using Setperl to set your perl path</B
|
||||
></P
|
||||
><P
|
||||
> <TT
|
||||
CLASS="computeroutput"
|
||||
> <TT
|
||||
CLASS="prompt"
|
||||
>bash#</TT
|
||||
>
|
||||
<B
|
||||
CLASS="command"
|
||||
>./setperl.csh /usr/bin/perl</B
|
||||
>
|
||||
</TT
|
||||
>
|
||||
</P
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="rewrite.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Apache <TT
|
||||
CLASS="filename"
|
||||
>mod_rewrite</TT
|
||||
> magic</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="patches.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Command-line Bugzilla Queries</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
File diff suppressed because it is too large
Load Diff
144
mozilla/webtools/bugzilla/docs/html/tinderbox.html
Normal file
144
mozilla/webtools/bugzilla/docs/html/tinderbox.html
Normal file
@@ -0,0 +1,144 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Tinderbox/Tinderbox2</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Perforce SCM"
|
||||
HREF="scm.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Bugzilla Variants and Competitors"
|
||||
HREF="variants.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="scm.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Integrating Bugzilla with Third-Party Tools</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="variants.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="tinderbox">5.4. Tinderbox/Tinderbox2</H1
|
||||
><P
|
||||
>We need Tinderbox integration information.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="scm.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="variants.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Perforce SCM</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Bugzilla Variants and Competitors</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
156
mozilla/webtools/bugzilla/docs/html/translations.html
Normal file
156
mozilla/webtools/bugzilla/docs/html/translations.html
Normal file
@@ -0,0 +1,156 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Translations</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="About This Guide"
|
||||
HREF="about.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Credits"
|
||||
HREF="credits.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Document Conventions"
|
||||
HREF="conventions.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="credits.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 1. About This Guide</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="conventions.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="translations">1.6. Translations</H1
|
||||
><P
|
||||
> The Bugzilla Guide needs translators! Please volunteer your
|
||||
translation into the language of your choice. If you will
|
||||
translate this Guide, please notify the members of the
|
||||
mozilla-webtools mailing list at
|
||||
<TT
|
||||
CLASS="email"
|
||||
><<A
|
||||
HREF="mailto:mozilla-webtools@mozilla.org"
|
||||
>mozilla-webtools@mozilla.org</A
|
||||
>></TT
|
||||
>, and arrange with
|
||||
The Bugzilla Team to check it into CVS.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="credits.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="conventions.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Credits</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="about.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Document Conventions</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -13,8 +13,8 @@ REL="UP"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Mac OS X Installation Notes"
|
||||
HREF="osx.html"><LINK
|
||||
TITLE="General Installation Notes"
|
||||
HREF="geninstall.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"></HEAD
|
||||
@@ -45,7 +45,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="osx.html"
|
||||
HREF="geninstall.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -73,7 +73,7 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="troubleshooting">4.5. Troubleshooting</H1
|
||||
NAME="troubleshooting">4.6. Troubleshooting</H1
|
||||
><P
|
||||
>This section gives solutions to common Bugzilla installation
|
||||
problems.
|
||||
@@ -83,30 +83,7 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1218">4.5.1. Bundle::Bugzilla makes me upgrade to Perl 5.6.1</H2
|
||||
><P
|
||||
> Try executing <B
|
||||
CLASS="command"
|
||||
>perl -MCPAN -e 'install CPAN'</B
|
||||
>
|
||||
and then continuing.
|
||||
</P
|
||||
><P
|
||||
> Certain older versions of the CPAN toolset were somewhat naive about how
|
||||
to upgrade Perl modules. When a couple of modules got rolled into the core
|
||||
Perl distribution for 5.6.1, CPAN thought that the best way to get those
|
||||
modules up to date was to haul down the Perl distribution itself and
|
||||
build it. Needless to say, this has caused headaches for just about
|
||||
everybody. Upgrading to a newer version of CPAN with the
|
||||
commandline above should fix things.
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="AEN1223">4.5.2. DBD::Sponge::db prepare failed</H2
|
||||
NAME="AEN1208">4.6.1. DBD::Sponge::db prepare failed</H2
|
||||
><P
|
||||
> The following error message may appear due to a bug in DBD::mysql
|
||||
(over which the Bugzilla team have no control):
|
||||
@@ -121,22 +98,18 @@ WIDTH="100%"
|
||||
COLOR="#000000"
|
||||
><PRE
|
||||
CLASS="programlisting"
|
||||
> DBD::Sponge::db prepare failed: Cannot determine NUM_OF_FIELDS at D:/Perl/site/lib/DBD/mysql.pm line 248.
|
||||
> "DBD::Sponge::db prepare failed: Cannot determine NUM_OF_FIELDS at D:/Perl/site/lib/DBD/mysql.pm line 248.
|
||||
SV = NULL(0x0) at 0x20fc444
|
||||
REFCNT = 1
|
||||
FLAGS = (PADBUSY,PADMY)
|
||||
FLAGS = (PADBUSY,PADMY)"
|
||||
</PRE
|
||||
></FONT
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><P
|
||||
> To fix this, go to
|
||||
<TT
|
||||
CLASS="filename"
|
||||
><path-to-perl>/lib/DBD/sponge.pm</TT
|
||||
>
|
||||
in your Perl installation and replace
|
||||
> To fix this, go to <path-to-perl>/lib/DBD/sponge.pm in your Perl
|
||||
installation and replace
|
||||
</P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
@@ -190,7 +163,7 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="paranoid-security">4.5.3. cannot chdir(/var/spool/mqueue)</H2
|
||||
NAME="paranoid-security">4.6.2. cannot chdir(/var/spool/mqueue)</H2
|
||||
><P
|
||||
>If you are installing Bugzilla on SuSE Linux, or some other
|
||||
distributions with
|
||||
@@ -258,7 +231,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="osx.html"
|
||||
HREF="geninstall.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -286,7 +259,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Mac OS X Installation Notes</TD
|
||||
>General Installation Notes</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
|
||||
@@ -1,178 +0,0 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Upgrading to New Releases</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Template Customisation"
|
||||
HREF="cust-templates.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Integrating Bugzilla with Third-Party Tools"
|
||||
HREF="integration.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cust-templates.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="upgrading">5.8. Upgrading to New Releases</H1
|
||||
><P
|
||||
>A plain Bugzilla is fairly easy to upgrade from one version to a
|
||||
newer one. Always read the release notes to see if there are any issues
|
||||
that you might need to take note of. It is recommended that you take a
|
||||
backup of your database and your entire Bugzilla installation before attempting an
|
||||
upgrade. You can upgrade a 'clean' installation by untarring a new
|
||||
tarball over the old installation. If you are upgrading from 2.12 or
|
||||
later, and have cvs installed, you can type <TT
|
||||
CLASS="filename"
|
||||
>cvs -z3 update</TT
|
||||
>,
|
||||
and resolve conflicts if there are any.
|
||||
</P
|
||||
><P
|
||||
>However, things get a bit more complicated if you've made
|
||||
changes to Bugzilla's code. In this case, you may have to re-make or
|
||||
reapply those changes. One good method is to take a diff of your customised
|
||||
version against the original, so you can survey all that you've changed.
|
||||
Hopefully, templatisation will reduce the need for
|
||||
this in the future.</P
|
||||
><P
|
||||
>From version 2.8 onwards, Bugzilla databases can be automatically
|
||||
carried forward during an upgrade. However, because the developers of
|
||||
Bugzilla are constantly adding new
|
||||
tables, columns and fields, you'll probably get SQL errors if you just
|
||||
update the code and attempt to use Bugzilla. Always run the
|
||||
<TT
|
||||
CLASS="filename"
|
||||
>checksetup.pl</TT
|
||||
>
|
||||
script whenever you upgrade your installation.</P
|
||||
><P
|
||||
>If you are running Bugzilla version 2.8 or lower, and wish to
|
||||
upgrade to the latest version, please consult the file,
|
||||
"UPGRADING-pre-2.8" in the Bugzilla root directory after untarring the
|
||||
archive.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cust-templates.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="integration.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Template Customisation</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="administration.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Integrating Bugzilla with Third-Party Tools</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -13,10 +13,11 @@ REL="UP"
|
||||
TITLE="Administering Bugzilla"
|
||||
HREF="administration.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Bugzilla Configuration"
|
||||
HREF="parameters.html"><LINK
|
||||
TITLE="Post-Installation Checklist"
|
||||
HREF="postinstall-check.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Product, Component, Milestone, and Version Administration"
|
||||
TITLE="Product, Component, Milestone, and Version
|
||||
Administration"
|
||||
HREF="programadmin.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
@@ -45,7 +46,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="parameters.html"
|
||||
HREF="postinstall-check.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -53,7 +54,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 5. Administering Bugzilla</TD
|
||||
>Chapter 4. Administering Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,19 +74,26 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="useradmin">5.2. User Administration</H1
|
||||
NAME="useradmin">4.2. User Administration</H1
|
||||
><P
|
||||
> User administration is one of the easiest parts of Bugzilla.
|
||||
Keeping it from getting out of hand, however, can become a
|
||||
challenge.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="defaultuser">5.2.1. Creating the Default User</H2
|
||||
NAME="defaultuser">4.2.1. Creating the Default User</H2
|
||||
><P
|
||||
>When you first run checksetup.pl after installing Bugzilla, it
|
||||
will prompt you for the administrative username (email address) and
|
||||
password for this "super user". If for some reason you delete
|
||||
the "super user" account, re-running checksetup.pl will again prompt
|
||||
you for this username and password.</P
|
||||
> When you first run checksetup.pl after installing Bugzilla, it
|
||||
will prompt you for the administrative username (email
|
||||
address) and password for this "super user". If for some
|
||||
reason you were to delete the "super user" account, re-running
|
||||
checksetup.pl will again prompt you for this username and
|
||||
password.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="tip"
|
||||
><P
|
||||
@@ -107,60 +115,36 @@ ALT="Tip"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>If you wish to add more administrative users, you must use the
|
||||
MySQL interface. Run "mysql" from the command line, and use these
|
||||
commands:
|
||||
<P
|
||||
></P
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
><TBODY
|
||||
><TR
|
||||
><TD
|
||||
> <TT
|
||||
> If you wish to add more administrative users, you must use the
|
||||
MySQL interface. Run "mysql" from the command line, and use
|
||||
these commands ("mysql>" denotes the mysql prompt, not
|
||||
something you should type in):
|
||||
<B
|
||||
CLASS="command"
|
||||
><TT
|
||||
CLASS="prompt"
|
||||
>mysql></TT
|
||||
> use bugs;</B
|
||||
>
|
||||
<B
|
||||
<B
|
||||
CLASS="command"
|
||||
>use bugs;</B
|
||||
>
|
||||
</TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
> <TT
|
||||
><TT
|
||||
CLASS="prompt"
|
||||
>mysql></TT
|
||||
> update profiles set
|
||||
groupset=0x7ffffffffffffff where login_name = "(user's
|
||||
login name)"; </B
|
||||
>
|
||||
|
||||
<B
|
||||
CLASS="command"
|
||||
> update profiles set groupset=0x7ffffffffffffff where login_name =
|
||||
"(user's login name)";
|
||||
</B
|
||||
>
|
||||
</TD
|
||||
></TR
|
||||
></TBODY
|
||||
></TABLE
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
>
|
||||
</P
|
||||
><P
|
||||
>Yes, that is
|
||||
<EM
|
||||
>Yes, that is <EM
|
||||
>fourteen</EM
|
||||
>
|
||||
|
||||
<SPAN
|
||||
<SPAN
|
||||
CLASS="QUOTE"
|
||||
>"f"</SPAN
|
||||
>
|
||||
|
||||
's. A whole lot of f-ing going on if you want to create a new
|
||||
administator.</P
|
||||
>'s. A whole lot of f-ing going on if you
|
||||
want to create a new administator.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
@@ -171,32 +155,125 @@ CLASS="section"
|
||||
><H2
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="manageusers">5.2.2. Managing Other Users</H2
|
||||
NAME="manageusers">4.2.2. Managing Other Users</H2
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="createnewusers">5.2.2.1. Creating new users</H3
|
||||
><P
|
||||
>Your users can create their own user accounts by clicking the
|
||||
"New Account" link at the bottom of each page (assuming they
|
||||
aren't logged in as someone else already.) However, should you
|
||||
desire to create user accounts ahead of time, here is how you do
|
||||
it.</P
|
||||
NAME="login">4.2.2.1. Logging In</H3
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
>After logging in, click the "Users" link at the footer of
|
||||
the query page, and then click "Add a new user".</P
|
||||
> Open the index.html page for your Bugzilla installation
|
||||
in your browser window.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
>Fill out the form presented. This page is self-explanatory.
|
||||
When done, click "Submit".</P
|
||||
> Click the "Query Existing Bug Reports" link.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Click the "Log In" link at the foot of the page.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Type your email address, and the password which was
|
||||
emailed to you when you created your Bugzilla account,
|
||||
into the spaces provided.
|
||||
</P
|
||||
></LI
|
||||
></OL
|
||||
><P
|
||||
>Congratulations, you are logged in!</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="createnewusers">4.2.2.2. Creating new users</H3
|
||||
><P
|
||||
> Your users can create their own user accounts by clicking
|
||||
the "New Account" link at the bottom of each page. However,
|
||||
should you desire to create user accounts ahead of time,
|
||||
here is how you do it.
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
><OL
|
||||
TYPE="1"
|
||||
><LI
|
||||
><P
|
||||
> After logging in, click the "Users" link at the footer
|
||||
of the query page.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> To see a specific user, type a portion of their login
|
||||
name in the box provided and click "submit". To see all
|
||||
users, simply click the "submit" button. You must click
|
||||
"submit" here to be able to add a new user.
|
||||
</P
|
||||
><DIV
|
||||
CLASS="tip"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="tip"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/tip.gif"
|
||||
HSPACE="5"
|
||||
ALT="Tip"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> More functionality is available via the list on the
|
||||
right-hand side of the text entry box. You can match
|
||||
what you type as a case-insensitive substring (the
|
||||
default) of all users on your system, a case-sensitive
|
||||
regular expression (please see the <B
|
||||
CLASS="command"
|
||||
>man
|
||||
regexp</B
|
||||
> manual page for details on regular
|
||||
expression syntax), or a <EM
|
||||
>reverse</EM
|
||||
>
|
||||
regular expression match, where every user name which
|
||||
does NOT match the regular expression is selected.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Click the "Add New User" link at the bottom of the user
|
||||
list
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> Fill out the form presented. This page is
|
||||
self-explanatory. When done, click "submit".
|
||||
</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
@@ -218,24 +295,22 @@ ALT="Note"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>Adding a user this way will
|
||||
<EM
|
||||
> Adding a user this way will <EM
|
||||
>not</EM
|
||||
>
|
||||
|
||||
send an email informing them of their username and password.
|
||||
While useful for creating dummy accounts (watchers which
|
||||
shuttle mail to another system, for instance, or email
|
||||
addresses which are a mailing list), in general it is
|
||||
preferable to log out and use the
|
||||
<SPAN
|
||||
send an email informing them of their username and
|
||||
password. While useful for creating dummy accounts
|
||||
(watchers which shuttle mail to another system, for
|
||||
instance, or email addresses which are a mailing
|
||||
list), in general it is preferable to log out and use
|
||||
the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"New Account"</SPAN
|
||||
>
|
||||
|
||||
button to create users, as it will pre-populate all the
|
||||
required fields and also notify the user of her account name
|
||||
and password.</P
|
||||
> button to create users,
|
||||
as it will pre-populate all the required fields and
|
||||
also notify the user of her account name and
|
||||
password.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
@@ -248,73 +323,133 @@ CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="modifyusers">5.2.2.2. Modifying Users</H3
|
||||
NAME="disableusers">4.2.2.3. Disabling Users</H3
|
||||
><P
|
||||
>To see a specific user, search for their login name
|
||||
in the box provided on the "Edit Users" page. To see all users,
|
||||
leave the box blank.</P
|
||||
> I bet you noticed that big "Disabled Text" entry box
|
||||
available from the "Add New User" screen, when you edit an
|
||||
account? By entering any text in this box and selecting
|
||||
"submit", you have prevented the user from using Bugzilla
|
||||
via the web interface. Your explanation, written in this
|
||||
text box, will be presented to the user the next time she
|
||||
attempts to use the system.
|
||||
<DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
>You can search in different ways the listbox to the right
|
||||
of the text entry box. You can match by
|
||||
case-insensitive substring (the default),
|
||||
regular expression, or a
|
||||
<EM
|
||||
>reverse</EM
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="warning"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/warning.gif"
|
||||
HSPACE="5"
|
||||
ALT="Warning"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> Don't disable your own administrative account, or you
|
||||
will hate life!
|
||||
</P
|
||||
><P
|
||||
>At this time, <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"Disabled Text"</SPAN
|
||||
> does not
|
||||
prevent a user from using the email interface. If you
|
||||
have the email interface enabled, they can still
|
||||
continue to submit bugs and comments that way. We need
|
||||
a patch to fix this.</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
regular expression match, which finds every user name which does NOT
|
||||
match the regular expression. (Please see
|
||||
the <B
|
||||
CLASS="command"
|
||||
>man regexp</B
|
||||
>
|
||||
manual page for details on regular expression syntax.)
|
||||
</P
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H3
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="modifyusers">4.2.2.4. Modifying Users</H3
|
||||
><P
|
||||
>Once you have found your user, you can change the following
|
||||
fields:</P
|
||||
> Here I will attempt to describe the function of each option
|
||||
on the Edit User screen.
|
||||
</P
|
||||
><P
|
||||
></P
|
||||
><UL
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
> <EM
|
||||
>Login Name</EM
|
||||
>:
|
||||
This is generally the user's full email address. However, if you
|
||||
have are using the emailsuffix Param, this may just be the user's
|
||||
login name. Note that users can now change their login names
|
||||
themselves (to any valid email address.)
|
||||
</P
|
||||
>: This is generally the
|
||||
user's email address. However, if you have edited your
|
||||
system parameters, this may just be the user's login
|
||||
name or some other identifier.
|
||||
<DIV
|
||||
CLASS="tip"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="tip"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/tip.gif"
|
||||
HSPACE="5"
|
||||
ALT="Tip"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> For compatability reasons, you should probably stick
|
||||
with email addresses as user login names. It will
|
||||
make your life easier.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
> <EM
|
||||
>Real Name</EM
|
||||
>: The user's real name. Note that
|
||||
Bugzilla does not require this to create an account.</P
|
||||
>: Duh!
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
> <EM
|
||||
>Password</EM
|
||||
>:
|
||||
You can change the user's password here. Users can automatically
|
||||
request a new password, so you shouldn't need to do this often.
|
||||
If you want to disable an account, see Disable Text below.
|
||||
</P
|
||||
>: You can change the user
|
||||
password here. It is normal to only see asterisks.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
> <EM
|
||||
>Disable Text</EM
|
||||
>:
|
||||
If you type anything in this box, including just a space, the
|
||||
user is prevented from logging in, or making any changes to
|
||||
bugs via the web interface.
|
||||
The HTML you type in this box is presented to the user when
|
||||
they attempt to perform these actions, and should explain
|
||||
why the account was disabled.
|
||||
<DIV
|
||||
>: If you type anything
|
||||
in this box, including just a space, the user account is
|
||||
disabled from making any changes to bugs via the web
|
||||
interface, and what you type in this box is presented as
|
||||
the reason.
|
||||
<DIV
|
||||
CLASS="warning"
|
||||
><P
|
||||
></P
|
||||
@@ -341,8 +476,7 @@ VALIGN="TOP"
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
|
||||
<DIV
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
@@ -363,110 +497,143 @@ ALT="Note"></TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
>The user can still submit bugs via
|
||||
the e-mail gateway, if you set it up, even if the disabled text
|
||||
field is filled in. The e-mail gateway should
|
||||
<EM
|
||||
> As of this writing, the user can still submit bugs
|
||||
via the e-mail gateway, if you set it up, despite
|
||||
the disabled text field. The e-mail gateway should
|
||||
<EM
|
||||
>not</EM
|
||||
>
|
||||
be enabled for secure installations of Bugzilla.</P
|
||||
> be enabled for secure
|
||||
installations of Bugzilla.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
><groupname></EM
|
||||
>:
|
||||
If you have created some groups, e.g. "securitysensitive", then
|
||||
checkboxes will appear here to allow you to add users to, or
|
||||
remove them from, these groups.
|
||||
</P
|
||||
> <EM
|
||||
>CanConfirm</EM
|
||||
>: This field is only used
|
||||
if you have enabled "unconfirmed" status in your
|
||||
parameters screen. If you enable this for a user, that
|
||||
user can then move bugs from "Unconfirmed" to
|
||||
"Confirmed" status (e.g.: "New" status). Be judicious
|
||||
about allowing users to turn this bit on for other
|
||||
users.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>canconfirm</EM
|
||||
>:
|
||||
This field is only used if you have enabled the "unconfirmed"
|
||||
status. If you enable this for a user,
|
||||
that user can then move bugs from "Unconfirmed" to a "Confirmed"
|
||||
status (e.g.: "New" status).</P
|
||||
> <EM
|
||||
>Creategroups</EM
|
||||
>: This option will
|
||||
allow a user to create and destroy groups in Bugzilla.
|
||||
Unless you are using the Bugzilla GroupSentry security
|
||||
option "usebuggroupsentry" in your parameters, this
|
||||
setting has no effect.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>creategroups</EM
|
||||
>:
|
||||
This option will allow a user to create and destroy groups in
|
||||
Bugzilla.</P
|
||||
> <EM
|
||||
>Editbugs</EM
|
||||
>: Unless a user has this
|
||||
bit set, they can only edit those bugs for which they
|
||||
are the assignee or the reporter.
|
||||
<DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
></P
|
||||
><TABLE
|
||||
CLASS="note"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="25"
|
||||
ALIGN="CENTER"
|
||||
VALIGN="TOP"
|
||||
><IMG
|
||||
SRC="../images/note.gif"
|
||||
HSPACE="5"
|
||||
ALT="Note"></TD
|
||||
><TD
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><P
|
||||
> Leaving this option unchecked does not prevent users
|
||||
from adding comments to a bug! They simply cannot
|
||||
change a bug priority, severity, etc. unless they
|
||||
are the assignee or reporter.
|
||||
</P
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
>
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>editbugs</EM
|
||||
>:
|
||||
Unless a user has this bit set, they can only edit those bugs
|
||||
for which they are the assignee or the reporter. Even if this
|
||||
option is unchecked, users can still add comments to bugs.
|
||||
</P
|
||||
> <EM
|
||||
>Editcomponents</EM
|
||||
>: This flag allows a
|
||||
user to create new products and components, as well as
|
||||
modify and destroy those that have no bugs associated
|
||||
with them. If a product or component has bugs
|
||||
associated with it, those bugs must be moved to a
|
||||
different product or component before Bugzilla will
|
||||
allow them to be destroyed. The name of a product or
|
||||
component can be changed without affecting the
|
||||
associated bugs, but it tends to annoy the hell out of
|
||||
your users when these change a lot.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>editcomponents</EM
|
||||
>:
|
||||
This flag allows a user to create new products and components,
|
||||
as well as modify and destroy those that have no bugs associated
|
||||
with them. If a product or component has bugs associated with it,
|
||||
those bugs must be moved to a different product or component
|
||||
before Bugzilla will allow them to be destroyed.
|
||||
</P
|
||||
> <EM
|
||||
>Editkeywords</EM
|
||||
>: If you use Bugzilla's
|
||||
keyword functionality, enabling this feature allows a
|
||||
user can create and destroy keywords. As always, the
|
||||
keywords for existing bugs containing the keyword the
|
||||
user wishes to destroy must be changed before Bugzilla
|
||||
will allow it to die. You must be very careful about
|
||||
creating too many new keywords if you run a very large
|
||||
Bugzilla installation; keywords are global variables
|
||||
across products, and you can often run into a phenomenon
|
||||
called "keyword bloat". This confuses users, and then
|
||||
the feature goes unused.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>editkeywords</EM
|
||||
>:
|
||||
If you use Bugzilla's keyword functionality, enabling this
|
||||
feature allows a user to create and destroy keywords. As always,
|
||||
the keywords for existing bugs containing the keyword the user
|
||||
wishes to destroy must be changed before Bugzilla will allow it
|
||||
to die.</P
|
||||
> <EM
|
||||
>Editusers</EM
|
||||
>: This flag allows a user
|
||||
do what you're doing right now: edit other users. This
|
||||
will allow those with the right to do so to remove
|
||||
administrator privileges from other users or grant them
|
||||
to themselves. Enable with care.
|
||||
</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>editusers</EM
|
||||
>:
|
||||
This flag allows a user to do what you're doing right now: edit
|
||||
other users. This will allow those with the right to do so to
|
||||
remove administrator privileges from other users or grant them to
|
||||
themselves. Enable with care.</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
>tweakparams</EM
|
||||
>:
|
||||
This flag allows a user to change Bugzilla's Params
|
||||
(using <TT
|
||||
CLASS="filename"
|
||||
>editparams.cgi</TT
|
||||
>.)</P
|
||||
></LI
|
||||
><LI
|
||||
><P
|
||||
> <EM
|
||||
><productname></EM
|
||||
>:
|
||||
This allows an administrator to specify the products in which
|
||||
a user can see bugs. The user must still have the
|
||||
"editbugs" privilege to edit bugs in these products.</P
|
||||
> <EM
|
||||
>PRODUCT</EM
|
||||
>: PRODUCT bugs access. This
|
||||
allows an administrator, with product-level granularity,
|
||||
to specify in which products a user can edit bugs. The
|
||||
user must still have the "editbugs" privelege to edit
|
||||
bugs in this area; this simply restricts them from even
|
||||
seeing bugs outside these boundaries if the
|
||||
administrator has enabled the group sentry parameter
|
||||
"usebuggroupsentry". Unless you are using bug groups,
|
||||
this option has no effect.
|
||||
</P
|
||||
></LI
|
||||
></UL
|
||||
></DIV
|
||||
@@ -488,7 +655,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="parameters.html"
|
||||
HREF="postinstall-check.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -516,7 +683,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Bugzilla Configuration</TD
|
||||
>Post-Installation Checklist</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -530,7 +697,8 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Product, Component, Milestone, and Version Administration</TD
|
||||
>Product, Component, Milestone, and Version
|
||||
Administration</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -118,7 +118,8 @@ NAME="emailsettings">3.3.2. Email Settings</H2
|
||||
"Users to watch" text entry box you can receive a copy of all the
|
||||
bugmail of other users (security settings permitting.) This powerful
|
||||
functionality enables seamless transitions as developers change
|
||||
projects or users go on holiday.</P
|
||||
projects, managers wish to get in touch with the issues faced by their
|
||||
direct reports, or users go on vacation.</P
|
||||
><DIV
|
||||
CLASS="note"
|
||||
><P
|
||||
|
||||
@@ -10,11 +10,11 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Why Should We Use Bugzilla?"
|
||||
HREF="why.html"><LINK
|
||||
TITLE="Document Conventions"
|
||||
HREF="conventions.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="How do I use Bugzilla?"
|
||||
HREF="how.html"></HEAD
|
||||
TITLE="What is Bugzilla?"
|
||||
HREF="whatis.html"></HEAD
|
||||
><BODY
|
||||
CLASS="chapter"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -42,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="why.html"
|
||||
HREF="conventions.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -56,7 +56,7 @@ WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="how.html"
|
||||
HREF="whatis.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -69,7 +69,30 @@ WIDTH="100%"></DIV
|
||||
CLASS="chapter"
|
||||
><H1
|
||||
><A
|
||||
NAME="using">Chapter 3. Using Bugzilla</H1
|
||||
NAME="using">Chapter 2. Using Bugzilla</H1
|
||||
><TABLE
|
||||
BORDER="0"
|
||||
WIDTH="100%"
|
||||
CELLSPACING="0"
|
||||
CELLPADDING="0"
|
||||
CLASS="EPIGRAPH"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
> </TD
|
||||
><TD
|
||||
WIDTH="45%"
|
||||
ALIGN="LEFT"
|
||||
VALIGN="TOP"
|
||||
><I
|
||||
><P
|
||||
><I
|
||||
>What, Why, How, & Where?</I
|
||||
></P
|
||||
></I
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
@@ -78,102 +101,83 @@ CLASS="TOC"
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>3.1. <A
|
||||
>2.1. <A
|
||||
HREF="whatis.html"
|
||||
>What is Bugzilla?</A
|
||||
></DT
|
||||
><DT
|
||||
>2.2. <A
|
||||
HREF="why.html"
|
||||
>Why Should We Use Bugzilla?</A
|
||||
></DT
|
||||
><DT
|
||||
>2.3. <A
|
||||
HREF="how.html"
|
||||
>How do I use Bugzilla?</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>3.1.1. <A
|
||||
>2.3.1. <A
|
||||
HREF="how.html#myaccount"
|
||||
>Create a Bugzilla Account</A
|
||||
></DT
|
||||
><DT
|
||||
>3.1.2. <A
|
||||
>2.3.2. <A
|
||||
HREF="how.html#bug_page"
|
||||
>Anatomy of a Bug</A
|
||||
></DT
|
||||
><DT
|
||||
>3.1.3. <A
|
||||
>2.3.3. <A
|
||||
HREF="how.html#query"
|
||||
>Searching for Bugs</A
|
||||
></DT
|
||||
><DT
|
||||
>3.1.4. <A
|
||||
>2.3.4. <A
|
||||
HREF="how.html#list"
|
||||
>Bug Lists</A
|
||||
></DT
|
||||
><DT
|
||||
>3.1.5. <A
|
||||
>2.3.5. <A
|
||||
HREF="how.html#bugreports"
|
||||
>Filing Bugs</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>3.2. <A
|
||||
HREF="hintsandtips.html"
|
||||
>Hints and Tips</A
|
||||
>2.4. <A
|
||||
HREF="init4me.html"
|
||||
>Where can I find my user preferences?</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>3.2.1. <A
|
||||
HREF="hintsandtips.html#AEN434"
|
||||
>Autolinkification</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.2. <A
|
||||
HREF="hintsandtips.html#quicksearch"
|
||||
>Quicksearch</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.3. <A
|
||||
HREF="hintsandtips.html#commenting"
|
||||
>Comments</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.4. <A
|
||||
HREF="hintsandtips.html#attachments"
|
||||
>Attachments</A
|
||||
></DT
|
||||
><DT
|
||||
>3.2.5. <A
|
||||
HREF="hintsandtips.html#AEN463"
|
||||
>Filing Bugs</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>3.3. <A
|
||||
HREF="userpreferences.html"
|
||||
>User Preferences</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>3.3.1. <A
|
||||
HREF="userpreferences.html#accountsettings"
|
||||
>2.4.1. <A
|
||||
HREF="init4me.html#accountsettings"
|
||||
>Account Settings</A
|
||||
></DT
|
||||
><DT
|
||||
>3.3.2. <A
|
||||
HREF="userpreferences.html#emailsettings"
|
||||
>2.4.2. <A
|
||||
HREF="init4me.html#emailsettings"
|
||||
>Email Settings</A
|
||||
></DT
|
||||
><DT
|
||||
>3.3.3. <A
|
||||
HREF="userpreferences.html#footersettings"
|
||||
>2.4.3. <A
|
||||
HREF="init4me.html#footersettings"
|
||||
>Page Footer</A
|
||||
></DT
|
||||
><DT
|
||||
>3.3.4. <A
|
||||
HREF="userpreferences.html#permissionsettings"
|
||||
>2.4.4. <A
|
||||
HREF="init4me.html#permissionsettings"
|
||||
>Permissions</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>2.5. <A
|
||||
HREF="usingbz-conc.html"
|
||||
>Using Bugzilla-Conclusion</A
|
||||
></DT
|
||||
></DL
|
||||
></DIV
|
||||
></DIV
|
||||
@@ -193,7 +197,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="why.html"
|
||||
HREF="conventions.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -211,7 +215,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="how.html"
|
||||
HREF="whatis.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -221,7 +225,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Why Should We Use Bugzilla?</TD
|
||||
>Document Conventions</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
@@ -231,7 +235,7 @@ VALIGN="top"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>How do I use Bugzilla?</TD
|
||||
>What is Bugzilla?</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
152
mozilla/webtools/bugzilla/docs/html/usingbz-conc.html
Normal file
152
mozilla/webtools/bugzilla/docs/html/usingbz-conc.html
Normal file
@@ -0,0 +1,152 @@
|
||||
<HTML
|
||||
><HEAD
|
||||
><TITLE
|
||||
>Using Bugzilla-Conclusion</TITLE
|
||||
><META
|
||||
NAME="GENERATOR"
|
||||
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
|
||||
"><LINK
|
||||
REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="UP"
|
||||
TITLE="Using Bugzilla"
|
||||
HREF="using.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Where can I find my user preferences?"
|
||||
HREF="init4me.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Installation"
|
||||
HREF="installation.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
VLINK="#840084"
|
||||
ALINK="#0000FF"
|
||||
><DIV
|
||||
CLASS="NAVHEADER"
|
||||
><TABLE
|
||||
SUMMARY="Header navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TH
|
||||
COLSPAN="3"
|
||||
ALIGN="center"
|
||||
>The Bugzilla Guide</TH
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="init4me.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Chapter 2. Using Bugzilla</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
></TABLE
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="usingbz-conc">2.5. Using Bugzilla-Conclusion</H1
|
||||
><P
|
||||
> Thank you for reading through this portion of the Bugzilla
|
||||
Guide. I anticipate it may not yet meet the needs of all
|
||||
readers. If you have additional comments or corrections to
|
||||
make, please submit your contributions to the <A
|
||||
HREF="mailto://mozilla-webtools@mozilla.org"
|
||||
TARGET="_top"
|
||||
>mozilla-webtools</A
|
||||
> mailing list/newsgroup. The mailing list is mirrored to the netscape.public.mozilla.webtools newsgroup, and the newsgroup is mirrored to mozilla-webtools@mozilla.org
|
||||
</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
><HR
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"><TABLE
|
||||
SUMMARY="Footer navigation table"
|
||||
WIDTH="100%"
|
||||
BORDER="0"
|
||||
CELLPADDING="0"
|
||||
CELLSPACING="0"
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="init4me.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="index.html"
|
||||
ACCESSKEY="H"
|
||||
>Home</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="installation.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
></TR
|
||||
><TR
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Where can I find my user preferences?</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="using.html"
|
||||
ACCESSKEY="U"
|
||||
>Up</A
|
||||
></TD
|
||||
><TD
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Installation</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
></BODY
|
||||
></HTML
|
||||
>
|
||||
@@ -53,7 +53,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Bugzilla Variants and Competitors</TD
|
||||
>Chapter 6. Bugzilla Variants and Competitors</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,12 +73,13 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="variant-fenris">D.2. Loki Bugzilla (Fenris)</H1
|
||||
NAME="variant-fenris">6.2. Loki Bugzilla (Fenris)</H1
|
||||
><P
|
||||
>Fenris was a fork from Bugzilla made by Loki Games; when
|
||||
Loki went into receivership, it died. While Loki's other code lives on,
|
||||
its custodians recommend Bugzilla for future bug-tracker deployments.
|
||||
</P
|
||||
>Fenris can be found at <A
|
||||
HREF="http://fenris.lokigames.com/"
|
||||
TARGET="_top"
|
||||
>http://fenris.lokigames.com</A
|
||||
>. It is a fork from Bugzilla.</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
|
||||
@@ -53,7 +53,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Bugzilla Variants and Competitors</TD
|
||||
>Chapter 6. Bugzilla Variants and Competitors</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,15 +73,24 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="variant-issuezilla">D.3. Issuezilla</H1
|
||||
NAME="variant-issuezilla">6.3. Issuezilla</H1
|
||||
><P
|
||||
>Issuezilla was another fork from Bugzilla, made by collab.net and
|
||||
hosted at tigris.org. It is also dead; the primary focus of bug-tracking
|
||||
at tigris.org is their Java-based bug-tracker,
|
||||
<A
|
||||
>Issuezilla is another fork from Bugzilla, and seems nearly
|
||||
as popular as the Red Hat Bugzilla fork. Some Issuezilla team
|
||||
members are regular contributors to the Bugzilla mailing
|
||||
list/newsgroup. Issuezilla is not the primary focus of
|
||||
bug-tracking at tigris.org, however. Their Java-based
|
||||
bug-tracker, <A
|
||||
HREF="variant-scarab.html"
|
||||
>Scarab</A
|
||||
>.</P
|
||||
>Scarab, a newfangled Java-based issue tracker</A
|
||||
>, is under heavy development
|
||||
and looks promising!</P
|
||||
><P
|
||||
>URL: <A
|
||||
HREF="http://issuezilla.tigris.org/servlets/ProjectHome"
|
||||
TARGET="_top"
|
||||
>http://issuezilla.tigris.org/servlets/ProjectHome</A
|
||||
></P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
|
||||
@@ -53,7 +53,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Bugzilla Variants and Competitors</TD
|
||||
>Chapter 6. Bugzilla Variants and Competitors</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,23 +73,19 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="variant-perforce">D.5. Perforce SCM</H1
|
||||
NAME="variant-perforce">6.5. Perforce SCM</H1
|
||||
><P
|
||||
>Although Perforce isn't really a bug tracker, it can be used as
|
||||
such through the <SPAN
|
||||
>Although Perforce isn't really a bug tracker, it can be used
|
||||
as such through the <SPAN
|
||||
CLASS="QUOTE"
|
||||
>"jobs"</SPAN
|
||||
>
|
||||
functionality.</P
|
||||
> functionality.</P
|
||||
><P
|
||||
>URL:
|
||||
<A
|
||||
><A
|
||||
HREF="http://www.perforce.com/perforce/technotes/note052.html"
|
||||
TARGET="_top"
|
||||
> http://www.perforce.com/perforce/technotes/note052.html
|
||||
</A
|
||||
>
|
||||
</P
|
||||
>http://www.perforce.com/perforce/technotes/note052.html</A
|
||||
>http://www.perforce.com/perforce/technotes/note052.html</P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
|
||||
@@ -53,7 +53,7 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Bugzilla Variants and Competitors</TD
|
||||
>Chapter 6. Bugzilla Variants and Competitors</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
@@ -73,18 +73,19 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="variant-scarab">D.4. Scarab</H1
|
||||
NAME="variant-scarab">6.4. Scarab</H1
|
||||
><P
|
||||
>Scarab is a new open source bug-tracking system built using Java
|
||||
Serlet technology. It is currently at version 1.0 beta 8.</P
|
||||
>Scarab is a promising new bug-tracking system built using
|
||||
Java Serlet technology. As of this writing, no source code has
|
||||
been released as a package, but you can obtain the code from
|
||||
CVS.
|
||||
</P
|
||||
><P
|
||||
>URL:
|
||||
<A
|
||||
>URL: <A
|
||||
HREF="http://scarab.tigris.org/"
|
||||
TARGET="_top"
|
||||
>http://scarab.tigris.org</A
|
||||
>
|
||||
</P
|
||||
></P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
|
||||
@@ -16,8 +16,8 @@ REL="PREVIOUS"
|
||||
TITLE="Perforce SCM"
|
||||
HREF="variant-perforce.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Glossary"
|
||||
HREF="glossary.html"></HEAD
|
||||
TITLE="The Bugzilla FAQ"
|
||||
HREF="faq.html"></HEAD
|
||||
><BODY
|
||||
CLASS="section"
|
||||
BGCOLOR="#FFFFFF"
|
||||
@@ -53,13 +53,13 @@ ACCESSKEY="P"
|
||||
WIDTH="80%"
|
||||
ALIGN="center"
|
||||
VALIGN="bottom"
|
||||
>Appendix D. Bugzilla Variants and Competitors</TD
|
||||
>Chapter 6. Bugzilla Variants and Competitors</TD
|
||||
><TD
|
||||
WIDTH="10%"
|
||||
ALIGN="right"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="glossary.html"
|
||||
HREF="faq.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -73,19 +73,19 @@ CLASS="section"
|
||||
><H1
|
||||
CLASS="section"
|
||||
><A
|
||||
NAME="variant-sourceforge">D.6. SourceForge</H1
|
||||
NAME="variant-sourceforge">6.6. SourceForge</H1
|
||||
><P
|
||||
>SourceForge is a way of coordinating geographically
|
||||
distributed free software and open source projects over the Internet.
|
||||
It has a built-in bug tracker, but it's not highly thought of.</P
|
||||
>SourceForge is more of a way of coordinating geographically
|
||||
distributed free software and open source projects over the
|
||||
Internet than strictly a bug tracker, but if you're hunting for
|
||||
bug-tracking for your open project, it may be just what the
|
||||
software engineer ordered!</P
|
||||
><P
|
||||
>URL:
|
||||
<A
|
||||
>URL: <A
|
||||
HREF="http://www.sourceforge.net"
|
||||
TARGET="_top"
|
||||
> http://www.sourceforge.net</A
|
||||
>
|
||||
</P
|
||||
>http://www.sourceforge.net</A
|
||||
></P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -121,7 +121,7 @@ WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="glossary.html"
|
||||
HREF="faq.html"
|
||||
ACCESSKEY="N"
|
||||
>Next</A
|
||||
></TD
|
||||
@@ -145,7 +145,7 @@ ACCESSKEY="U"
|
||||
WIDTH="33%"
|
||||
ALIGN="right"
|
||||
VALIGN="top"
|
||||
>Glossary</TD
|
||||
>The Bugzilla FAQ</TD
|
||||
></TR
|
||||
></TABLE
|
||||
></DIV
|
||||
|
||||
@@ -10,13 +10,13 @@ REL="HOME"
|
||||
TITLE="The Bugzilla Guide"
|
||||
HREF="index.html"><LINK
|
||||
REL="PREVIOUS"
|
||||
TITLE="Command-line Bugzilla Queries"
|
||||
HREF="cmdline.html"><LINK
|
||||
TITLE="Tinderbox/Tinderbox2"
|
||||
HREF="tinderbox.html"><LINK
|
||||
REL="NEXT"
|
||||
TITLE="Red Hat Bugzilla"
|
||||
HREF="rhbugzilla.html"></HEAD
|
||||
><BODY
|
||||
CLASS="appendix"
|
||||
CLASS="chapter"
|
||||
BGCOLOR="#FFFFFF"
|
||||
TEXT="#000000"
|
||||
LINK="#0000FF"
|
||||
@@ -42,7 +42,7 @@ WIDTH="10%"
|
||||
ALIGN="left"
|
||||
VALIGN="bottom"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
HREF="tinderbox.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -66,10 +66,10 @@ ACCESSKEY="N"
|
||||
ALIGN="LEFT"
|
||||
WIDTH="100%"></DIV
|
||||
><DIV
|
||||
CLASS="appendix"
|
||||
CLASS="chapter"
|
||||
><H1
|
||||
><A
|
||||
NAME="variants">Appendix D. Bugzilla Variants and Competitors</H1
|
||||
NAME="variants">Chapter 6. Bugzilla Variants and Competitors</H1
|
||||
><DIV
|
||||
CLASS="TOC"
|
||||
><DL
|
||||
@@ -78,48 +78,46 @@ CLASS="TOC"
|
||||
>Table of Contents</B
|
||||
></DT
|
||||
><DT
|
||||
>D.1. <A
|
||||
>6.1. <A
|
||||
HREF="rhbugzilla.html"
|
||||
>Red Hat Bugzilla</A
|
||||
></DT
|
||||
><DT
|
||||
>D.2. <A
|
||||
>6.2. <A
|
||||
HREF="variant-fenris.html"
|
||||
>Loki Bugzilla (Fenris)</A
|
||||
></DT
|
||||
><DT
|
||||
>D.3. <A
|
||||
>6.3. <A
|
||||
HREF="variant-issuezilla.html"
|
||||
>Issuezilla</A
|
||||
></DT
|
||||
><DT
|
||||
>D.4. <A
|
||||
>6.4. <A
|
||||
HREF="variant-scarab.html"
|
||||
>Scarab</A
|
||||
></DT
|
||||
><DT
|
||||
>D.5. <A
|
||||
>6.5. <A
|
||||
HREF="variant-perforce.html"
|
||||
>Perforce SCM</A
|
||||
></DT
|
||||
><DT
|
||||
>D.6. <A
|
||||
>6.6. <A
|
||||
HREF="variant-sourceforge.html"
|
||||
>SourceForge</A
|
||||
></DT
|
||||
></DL
|
||||
></DIV
|
||||
><P
|
||||
>I created this section to answer questions about Bugzilla competitors
|
||||
and variants, then found a wonderful site which covers an awful lot of what
|
||||
I wanted to discuss. Rather than quote it in its entirety, I'll simply
|
||||
refer you here:
|
||||
<A
|
||||
>I created this section to answer questions about Bugzilla
|
||||
competitors and variants, then found a wonderful site which covers
|
||||
an awful lot of what I wanted to discuss. Rather than quote it in
|
||||
its entirety, I'll simply refer you here: <A
|
||||
HREF="http://linas.org/linux/pm.html"
|
||||
TARGET="_top"
|
||||
> http://linas.org/linux/pm.html</A
|
||||
>
|
||||
</P
|
||||
>http://linas.org/linux/pm.html</A
|
||||
></P
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="NAVFOOTER"
|
||||
@@ -137,7 +135,7 @@ WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
><A
|
||||
HREF="cmdline.html"
|
||||
HREF="tinderbox.html"
|
||||
ACCESSKEY="P"
|
||||
>Prev</A
|
||||
></TD
|
||||
@@ -165,7 +163,7 @@ ACCESSKEY="N"
|
||||
WIDTH="33%"
|
||||
ALIGN="left"
|
||||
VALIGN="top"
|
||||
>Command-line Bugzilla Queries</TD
|
||||
>Tinderbox/Tinderbox2</TD
|
||||
><TD
|
||||
WIDTH="34%"
|
||||
ALIGN="center"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user