Commit b54d65e4 authored by barnboy%trilobyte.net's avatar barnboy%trilobyte.net

Initial conversion to XML format from SGML.

Note this is a work-in-progress. It compiles cleanly, but I am not yet submitting compiled HTML and text. There is one notable problem: nsgmls barfs on the <imagedata> tag in database.sgml during validation. openjade handles it fine. Weird.
parent b2bd185e
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" [
<!-- Include macros --> <!-- Include macros -->
<!ENTITY about SYSTEM "about.sgml"> <!ENTITY about SYSTEM "about.sgml">
...@@ -148,16 +148,16 @@ try to avoid clutter and feel free to waste space in the code to make it more re ...@@ -148,16 +148,16 @@ try to avoid clutter and feel free to waste space in the code to make it more re
Bugzilla is an enterprise-class set of software utilities Bugzilla is an enterprise-class set of software utilities
that, when used together, power issue-tracking for hundreds of that, when used together, power issue-tracking for hundreds of
organizations around the world, tracking millions of bugs. organizations around the world, tracking millions of bugs.
While it is easy to use and quite flexible, it is very While it is easy to use and quite flexible, it is
difficult for a novice to install and maintain. Although we difficult for a novice to install and maintain. Although we
have provided step-by-step directions, Bugzilla is not always have provided step-by-step directions, Bugzilla is not always
easy to get working. Please be sure the person responsible easy to get working. Please be sure the person responsible
for installing and maintaining this software is a qualified for installing and maintaining this software is a qualified
professional on operating system upon which you install professional for the operating system upon which you install
Bugzilla. Bugzilla.
</para> </para>
<para> <para>
THIS DOCUMENTATION IS MAINTAINED IN DOCBOOK 4.1 SGML FORMAT. THIS DOCUMENTATION IS MAINTAINED IN DOCBOOK 4.1.2 XML FORMAT.
IF YOU WISH TO MAKE CORRECTIONS, PLEASE MAKE THEM IN PLAIN IF YOU WISH TO MAKE CORRECTIONS, PLEASE MAKE THEM IN PLAIN
TEXT OR SGML DIFFS AGAINST THE SOURCE. I CANNOT ACCEPT TEXT OR SGML DIFFS AGAINST THE SOURCE. I CANNOT ACCEPT
ADDITIONS TO THE GUIDE WRITTEN IN HTML! ADDITIONS TO THE GUIDE WRITTEN IN HTML!
...@@ -165,18 +165,18 @@ try to avoid clutter and feel free to waste space in the code to make it more re ...@@ -165,18 +165,18 @@ try to avoid clutter and feel free to waste space in the code to make it more re
</abstract> </abstract>
<KEYWORDSET> <keywordset>
<KEYWORD>Bugzilla</KEYWORD> <keyword>Bugzilla</keyword>
<KEYWORD>Guide</KEYWORD> <keyword>Guide</keyword>
<KEYWORD>installation</KEYWORD> <keyword>installation</keyword>
<KEYWORD>FAQ</KEYWORD> <keyword>FAQ</keyword>
<KEYWORD>administration</KEYWORD> <keyword>administration</keyword>
<KEYWORD>integration</KEYWORD> <keyword>integration</keyword>
<KEYWORD>MySQL</KEYWORD> <keyword>MySQL</keyword>
<KEYWORD>Mozilla</KEYWORD> <keyword>Mozilla</keyword>
<KEYWORD>webtools</KEYWORD> <keyword>webtools</keyword>
</KEYWORDSET> </keywordset>
</BOOKINFO> </bookinfo>
<!-- About This Guide --> <!-- About This Guide -->
&about; &about;
...@@ -203,7 +203,7 @@ try to avoid clutter and feel free to waste space in the code to make it more re ...@@ -203,7 +203,7 @@ try to avoid clutter and feel free to waste space in the code to make it more re
&faq; &faq;
<!-- Appendix: Required Bugzilla Software Links --> <!-- Appendix: Required Bugzilla Software Links -->
&requiredsoftware &requiredsoftware;
<!-- Appendix: The Database Schema --> <!-- Appendix: The Database Schema -->
&database; &database;
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</subtitle> </subtitle>
<para> <para>
So you followed <quote><xref linkend="installation"></quote> to the So you followed <quote><xref linkend="installation" /></quote> to the
letter, and logged into Bugzilla for the very first time with your letter, and logged into Bugzilla for the very first time with your
super-duper god account. You sit, contentedly staring at the super-duper god account. You sit, contentedly staring at the
Bugzilla Query Screen, the worst of the whole mad business of Bugzilla Query Screen, the worst of the whole mad business of
...@@ -623,7 +623,7 @@ ...@@ -623,7 +623,7 @@
<subtitle>Formerly, and in some spots still, called <subtitle>Formerly, and in some spots still, called
"Programs"</subtitle> "Programs"</subtitle>
<para> <para>
<glossterm linkend="gloss_product" baseform="product">Products</glossterm> are <glossterm linkend="gloss-product" baseform="product">Products</glossterm> are
the broadest category in Bugzilla, and you should have the the broadest category in Bugzilla, and you should have the
least of these. If your company makes computer games, you least of these. If your company makes computer games, you
should have one product per game, and possibly a few special should have one product per game, and possibly a few special
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<para> <para>
<mediaobject> <mediaobject>
<imageobject> <imageobject>
<imagedata fileref="../images/dbschema.jpg" format="jpg"> <imagedata fileref="../images/dbschema.jpg" format="JPG" />
</imageobject> </imageobject>
<textobject> <textobject>
...@@ -359,7 +359,7 @@ http://www.devshed.com/Server_Side/MySQL/ ...@@ -359,7 +359,7 @@ http://www.devshed.com/Server_Side/MySQL/
</section> </section>
<section id="granttables"> <section id="granttables">
<title>MySQL Permissions & Grant Tables</title> <title>MySQL Permissions &amp; Grant Tables</title>
<note> <note>
<para>The following portion of documentation comes from my <para>The following portion of documentation comes from my
...@@ -480,7 +480,7 @@ mysql> GRANT ...@@ -480,7 +480,7 @@ mysql> GRANT
SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,DROP,RELOAD,SHUTDOWN,PROCESS, SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,DROP,RELOAD,SHUTDOWN,PROCESS,
FILE, FILE,
ON keystone.* ON keystone.*
TO <$sys_dbuser name>@localhost TO &lt;$sys_dbuser name>@localhost
IDENTIFIED BY '(password)' IDENTIFIED BY '(password)'
WITH GRANT OPTION; WITH GRANT OPTION;
...@@ -488,7 +488,7 @@ OR ...@@ -488,7 +488,7 @@ OR
mysql> GRANT ALL PRIVELEGES mysql> GRANT ALL PRIVELEGES
ON keystone.* ON keystone.*
TO <$sys_dbuser name>@localhost TO &lt;$sys_dbuser name>@localhost
IDENTIFIED BY '(password)' IDENTIFIED BY '(password)'
WITH GRANT OPTION; WITH GRANT OPTION;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<qandaset> <qandaset>
<qandadiv id="faq_general"> <qandadiv id="faq-general">
<title>General Questions</title> <title>General Questions</title>
<qandaentry> <qandaentry>
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
</qandadiv> </qandadiv>
<qandadiv id="faq_redhat"> <qandadiv id="faq-redhat">
<title>Red Hat Bugzilla</title> <title>Red Hat Bugzilla</title>
<para> <para>
<note> <note>
...@@ -496,7 +496,7 @@ ...@@ -496,7 +496,7 @@
</qandadiv> </qandadiv>
<qandadiv id="faq_loki"> <qandadiv id="faq-loki">
<title>Loki Bugzilla (AKA Fenris)</title> <title>Loki Bugzilla (AKA Fenris)</title>
<qandaentry> <qandaentry>
...@@ -515,7 +515,7 @@ ...@@ -515,7 +515,7 @@
</qandadiv> </qandadiv>
<qandadiv id="faq_phb"> <qandadiv id="faq-phb">
<title>Pointy-Haired-Boss Questions</title> <title>Pointy-Haired-Boss Questions</title>
<para> <para>
<note> <note>
...@@ -1011,7 +1011,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1011,7 +1011,7 @@ if ($::FORM{sub} eq 'PutFooter') {
your Bugzilla install can run untended for years. If your your Bugzilla install can run untended for years. If your
Bugzilla strategy is critical to your business workflow, hire somebody Bugzilla strategy is critical to your business workflow, hire somebody
with reasonable UNIX or Perl skills to handle your process management and with reasonable UNIX or Perl skills to handle your process management and
bug-tracking maintenance & customization. bug-tracking maintenance &amp; customization.
</para> </para>
</answer> </answer>
</qandaentry> </qandaentry>
...@@ -1032,7 +1032,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1032,7 +1032,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandaentry> </qandaentry>
</qandadiv> </qandadiv>
<qandadiv id="faq_install"> <qandadiv id="faq-install">
<title>Bugzilla Installation</title> <title>Bugzilla Installation</title>
<qandaentry> <qandaentry>
<question> <question>
...@@ -1078,7 +1078,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1078,7 +1078,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandadiv> </qandadiv>
<qandadiv id="faq_security"> <qandadiv id="faq-security">
<title>Bugzilla Security</title> <title>Bugzilla Security</title>
<qandaentry> <qandaentry>
...@@ -1133,7 +1133,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1133,7 +1133,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandaentry> </qandaentry>
</qandadiv> </qandadiv>
<qandadiv id="faq_email"> <qandadiv id="faq-email">
<title>Bugzilla Email</title> <title>Bugzilla Email</title>
<qandaentry> <qandaentry>
...@@ -1263,7 +1263,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1263,7 +1263,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandaentry> </qandaentry>
</qandadiv> </qandadiv>
<qandadiv id="faq_db"> <qandadiv id="faq-db">
<title>Bugzilla Database</title> <title>Bugzilla Database</title>
<qandaentry> <qandaentry>
...@@ -1451,7 +1451,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1451,7 +1451,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandadiv> </qandadiv>
<qandadiv id="faq_nt"> <qandadiv id="faq-nt">
<title>Bugzilla and Win32</title> <title>Bugzilla and Win32</title>
<qandaentry> <qandaentry>
...@@ -1662,7 +1662,7 @@ A: Sure! Here ya go! ...@@ -1662,7 +1662,7 @@ A: Sure! Here ya go!
</qandadiv> </qandadiv>
<qandadiv id="faq_use"> <qandadiv id="faq-use">
<title>Bugzilla Usage</title> <title>Bugzilla Usage</title>
<qandaentry> <qandaentry>
...@@ -1754,7 +1754,7 @@ A: Sure! Here ya go! ...@@ -1754,7 +1754,7 @@ A: Sure! Here ya go!
</qandadiv> </qandadiv>
<qandadiv id="faq_hacking"> <qandadiv id="faq-hacking">
<title>Bugzilla Hacking</title> <title>Bugzilla Hacking</title>
<qandaentry> <qandaentry>
...@@ -1862,7 +1862,7 @@ A: Sure! Here ya go! ...@@ -1862,7 +1862,7 @@ A: Sure! Here ya go!
</qandaset> </qandaset>
</APPENDIX> </appendix>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
......
...@@ -357,7 +357,7 @@ Keywords ...@@ -357,7 +357,7 @@ Keywords
group is more important than the previous, and therefore appears group is more important than the previous, and therefore appears
closer to the top. closer to the top.
Keyword Grouping & Ordering Keyword Grouping &amp; Ordering
We could further enhance both the global and bug specific keyword list We could further enhance both the global and bug specific keyword list
by grouping keywords. We should always have a "flat" view of by grouping keywords. We should always have a "flat" view of
......
...@@ -18,7 +18,7 @@ Everyone is permitted to copy and distribute verbatim copies ...@@ -18,7 +18,7 @@ Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.</para> of this license document, but changing it is not allowed.</para>
</blockquote> </blockquote>
<sect1 label="0" id="gfdl_0"> <sect1 label="0" id="gfdl-0">
<title>PREAMBLE</title> <title>PREAMBLE</title>
<para>The purpose of this License is to make a manual, textbook, <para>The purpose of this License is to make a manual, textbook,
...@@ -45,7 +45,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -45,7 +45,7 @@ of this license document, but changing it is not allowed.</para>
whose purpose is instruction or reference.</para> whose purpose is instruction or reference.</para>
</sect1> </sect1>
<sect1 label="1" id="gfdl_1"> <sect1 label="1" id="gfdl-1">
<title>APPLICABILITY AND DEFINITIONS</title> <title>APPLICABILITY AND DEFINITIONS</title>
<para>This License applies to any manual or other work that <para>This License applies to any manual or other work that
...@@ -113,7 +113,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -113,7 +113,7 @@ of this license document, but changing it is not allowed.</para>
text.</para> text.</para>
</sect1> </sect1>
<sect1 label="2" id="gfdl_2"> <sect1 label="2" id="gfdl-2">
<title>VERBATIM COPYING</title> <title>VERBATIM COPYING</title>
<para>You may copy and distribute the Document in any medium, <para>You may copy and distribute the Document in any medium,
...@@ -131,7 +131,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -131,7 +131,7 @@ of this license document, but changing it is not allowed.</para>
above, and you may publicly display copies.</para> above, and you may publicly display copies.</para>
</sect1> </sect1>
<sect1 label="3" id="gfdl_3"> <sect1 label="3" id="gfdl-3">
<title>COPYING IN QUANTITY</title> <title>COPYING IN QUANTITY</title>
<para>If you publish printed copies of the Document numbering more <para>If you publish printed copies of the Document numbering more
...@@ -173,7 +173,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -173,7 +173,7 @@ of this license document, but changing it is not allowed.</para>
updated version of the Document.</para> updated version of the Document.</para>
</sect1> </sect1>
<sect1 label="4" id="gfdl_4"> <sect1 label="4" id="gfdl-4">
<title>MODIFICATIONS</title> <title>MODIFICATIONS</title>
<para>You may copy and distribute a Modified Version of the <para>You may copy and distribute a Modified Version of the
...@@ -304,7 +304,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -304,7 +304,7 @@ of this license document, but changing it is not allowed.</para>
or to assert or imply endorsement of any Modified Version.</para> or to assert or imply endorsement of any Modified Version.</para>
</sect1> </sect1>
<sect1 label="5" id="gfdl_5"> <sect1 label="5" id="gfdl-5">
<title>COMBINING DOCUMENTS</title> <title>COMBINING DOCUMENTS</title>
<para>You may combine the Document with other documents released <para>You may combine the Document with other documents released
...@@ -331,7 +331,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -331,7 +331,7 @@ of this license document, but changing it is not allowed.</para>
must delete all sections entitled "Endorsements."</para> must delete all sections entitled "Endorsements."</para>
</sect1> </sect1>
<sect1 label="6" id="gfdl_6"> <sect1 label="6" id="gfdl-6">
<title>COLLECTIONS OF DOCUMENTS</title> <title>COLLECTIONS OF DOCUMENTS</title>
<para>You may make a collection consisting of the Document and <para>You may make a collection consisting of the Document and
...@@ -348,7 +348,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -348,7 +348,7 @@ of this license document, but changing it is not allowed.</para>
copying of that document.</para> copying of that document.</para>
</sect1> </sect1>
<sect1 label="7" id="gfdl_7"> <sect1 label="7" id="gfdl-7">
<title>AGGREGATION WITH INDEPENDENT WORKS</title> <title>AGGREGATION WITH INDEPENDENT WORKS</title>
<para>A compilation of the Document or its derivatives with other <para>A compilation of the Document or its derivatives with other
...@@ -369,7 +369,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -369,7 +369,7 @@ of this license document, but changing it is not allowed.</para>
aggregate.</para> aggregate.</para>
</sect1> </sect1>
<sect1 label="8" id="gfdl_8"> <sect1 label="8" id="gfdl-8">
<title>TRANSLATION</title> <title>TRANSLATION</title>
<para>Translation is considered a kind of modification, so you may <para>Translation is considered a kind of modification, so you may
...@@ -385,7 +385,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -385,7 +385,7 @@ of this license document, but changing it is not allowed.</para>
prevail.</para> prevail.</para>
</sect1> </sect1>
<sect1 label="9" id="gfdl_9"> <sect1 label="9" id="gfdl-9">
<title>TERMINATION</title> <title>TERMINATION</title>
<para>You may not copy, modify, sublicense, or distribute the <para>You may not copy, modify, sublicense, or distribute the
...@@ -398,7 +398,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -398,7 +398,7 @@ of this license document, but changing it is not allowed.</para>
compliance.</para> compliance.</para>
</sect1> </sect1>
<sect1 label="10" id="gfdl_10"> <sect1 label="10" id="gfdl-10">
<title>FUTURE REVISIONS OF THIS LICENSE</title> <title>FUTURE REVISIONS OF THIS LICENSE</title>
<para>The Free Software Foundation may publish new, revised <para>The Free Software Foundation may publish new, revised
...@@ -419,7 +419,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -419,7 +419,7 @@ of this license document, but changing it is not allowed.</para>
Free Software Foundation.</para> Free Software Foundation.</para>
</sect1> </sect1>
<sect1 label="" id="gfdl_howto"> <sect1 label="" id="gfdl-howto">
<title>How to use this License for your documents</title> <title>How to use this License for your documents</title>
<para>To use this License in a document you have written, include <para>To use this License in a document you have written, include
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_a"> <glossdiv id="gloss-a">
<title>A</title> <title>A</title>
<glossentry> <glossentry>
<glossterm>Apache</glossterm> <glossterm>Apache</glossterm>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_b"> <glossdiv id="gloss-b">
<title>B</title> <title>B</title>
<glossentry> <glossentry>
<glossterm>Bug</glossterm> <glossterm>Bug</glossterm>
...@@ -89,9 +89,9 @@ ...@@ -89,9 +89,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_c"> <glossdiv id="gloss-c">
<title></title> <title></title>
<glossentry id="gloss_component"> <glossentry id="gloss-component">
<glossterm>Component</glossterm> <glossterm>Component</glossterm>
<glossdef> <glossdef>
<para> <para>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
</para> </para>
</glossdef> </glossdef>
</glossentry> </glossentry>
<glossentry id="gloss_cpan"> <glossentry id="gloss-cpan">
<glossterm><acronym>CPAN</acronym></glossterm> <glossterm><acronym>CPAN</acronym></glossterm>
<glossdef> <glossdef>
<para><acronym>CPAN</acronym> stands for the <para><acronym>CPAN</acronym> stands for the
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_d"> <glossdiv id="gloss-d">
<title>D</title> <title>D</title>
<glossentry> <glossentry>
<glossterm>daemon</glossterm> <glossterm>daemon</glossterm>
...@@ -132,7 +132,7 @@ ...@@ -132,7 +132,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_g"> <glossdiv id="gloss-g">
<title></title> <title></title>
<glossentry> <glossentry>
<glossterm>Groups</glossterm> <glossterm>Groups</glossterm>
...@@ -148,9 +148,9 @@ ...@@ -148,9 +148,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_i"> <glossdiv id="gloss-i">
<title>I</title> <title>I</title>
<glossentry id="gloss_infiniteloop"> <glossentry id="gloss-infiniteloop">
<glossterm>Infinite Loop</glossterm> <glossterm>Infinite Loop</glossterm>
<glossdef> <glossdef>
<para>A loop of information that never ends; see recursion.</para> <para>A loop of information that never ends; see recursion.</para>
...@@ -158,7 +158,7 @@ ...@@ -158,7 +158,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_m"> <glossdiv id="gloss-m">
<title>M</title> <title>M</title>
<glossentry> <glossentry>
<glossterm>mysqld</glossterm> <glossterm>mysqld</glossterm>
...@@ -173,10 +173,10 @@ ...@@ -173,10 +173,10 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_p"> <glossdiv id="gloss-p">
<title>P</title> <title>P</title>
<glossentry> <glossentry>
<glossterm id="gloss_product">Product</glossterm> <glossterm id="gloss-product">Product</glossterm>
<glossdef> <glossdef>
<para>A Product is a broad category of types of bugs. In <para>A Product is a broad category of types of bugs. In
general, there are several Components to a Product. A general, there are several Components to a Product. A
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_q"> <glossdiv id="gloss-q">
<title>Q</title> <title>Q</title>
<glossentry> <glossentry>
<glossterm>QA</glossterm> <glossterm>QA</glossterm>
...@@ -229,9 +229,9 @@ ...@@ -229,9 +229,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_r"> <glossdiv id="gloss-r">
<title>R</title> <title>R</title>
<glossentry id="gloss_recursion" xreflabel="Recursion"> <glossentry id="gloss-recursion" xreflabel="Recursion">
<glossterm>Recursion</glossterm> <glossterm>Recursion</glossterm>
<glossdef> <glossdef>
<para>The property of a function looking back at itself for <para>The property of a function looking back at itself for
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_s"> <glossdiv id="gloss-s">
<title>S</title> <title>S</title>
<glossentry> <glossentry>
<glossterm><acronym>SGML</acronym></glossterm> <glossterm><acronym>SGML</acronym></glossterm>
...@@ -266,9 +266,9 @@ ...@@ -266,9 +266,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_t"> <glossdiv id="gloss-t">
<title>T</title> <title>T</title>
<glossentry id="gloss_target_milestone" xreflabel="Target Milestone"> <glossentry id="gloss-target-milestone" xreflabel="Target Milestone">
<glossterm>Target Milestone</glossterm> <glossterm>Target Milestone</glossterm>
<glossdef> <glossdef>
<para> <para>
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_z"> <glossdiv id="gloss-z">
<title>Z</title> <title>Z</title>
<glossentry id="zarro-boogs-found" xreflabel="Zarro Boogs Found"> <glossentry id="zarro-boogs-found" xreflabel="Zarro Boogs Found">
<glossterm>Zarro Boogs Found</glossterm> <glossterm>Zarro Boogs Found</glossterm>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<section id="bonsai" xreflabel="Bonsai, the Mozilla automated CVS management system"> <section id="bonsai" xreflabel="Bonsai, the Mozilla automated CVS management system">
<title>Bonsai</title> <title>Bonsai</title>
<para>Bonsai is a web-based tool for managing <xref <para>Bonsai is a web-based tool for managing <xref
linkend="cvs"> linkend="cvs" />
. Using Bonsai, administrators can control open/closed status . Using Bonsai, administrators can control open/closed status
of trees, query a fast relational database back-end for change, of trees, query a fast relational database back-end for change,
branch, and comment information, and view changes made since the branch, and comment information, and view changes made since the
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
engineer responsible to be <quote>on the hook</quote> (include engineer responsible to be <quote>on the hook</quote> (include
cool URL link here for Hook policies at mozilla.org). Bonsai cool URL link here for Hook policies at mozilla.org). Bonsai
also includes gateways to <xref also includes gateways to <xref
linkend="tinderbox"> and Bugzilla </para> linkend="tinderbox" /> and Bugzilla </para>
</section> </section>
<section id="cvs" xreflabel="CVS, the Concurrent Versioning System"> <section id="cvs" xreflabel="CVS, the Concurrent Versioning System">
......
...@@ -31,7 +31,7 @@ Chapter: Using Bugzilla ...@@ -31,7 +31,7 @@ Chapter: Using Bugzilla
<title>Using Bugzilla</title> <title>Using Bugzilla</title>
<epigraph> <epigraph>
<para> <para>
What, Why, How, & Where? What, Why, How, &amp; Where?
</para> </para>
</epigraph> </epigraph>
...@@ -612,7 +612,7 @@ system against which all others are measured. ...@@ -612,7 +612,7 @@ system against which all others are measured.
<para>And all this time, I thought we were taking bugs <emphasis>out</emphasis>...</para> <para>And all this time, I thought we were taking bugs <emphasis>out</emphasis>...</para>
</epigraph> </epigraph>
<section id="bug_writing"> <section id="bug-writing">
<title>Writing a Great Bug Report</title> <title>Writing a Great Bug Report</title>
<para> <para>
Before we plunge into writing your first bug report, I Before we plunge into writing your first bug report, I
...@@ -701,7 +701,7 @@ system against which all others are measured. ...@@ -701,7 +701,7 @@ system against which all others are measured.
</para> </para>
</section> </section>
<section id="bug_manage"> <section id="bug-manage">
<title>Managing your Bug Reports</title> <title>Managing your Bug Reports</title>
<para> <para>
OK, you should have a link to the bug you just created near OK, you should have a link to the bug you just created near
...@@ -812,7 +812,7 @@ system against which all others are measured. ...@@ -812,7 +812,7 @@ system against which all others are measured.
their flow charts and know when it is time to pull the bug their flow charts and know when it is time to pull the bug
onto a quality assurance platform for inspection. Other onto a quality assurance platform for inspection. Other
people set up email gateways to people set up email gateways to
<xref linkend="bonsai"> or <xref linkend="tinderbox">, and <xref linkend="bonsai" /> or <xref linkend="tinderbox" />, and
restrict which types of Bugzilla information are fed to restrict which types of Bugzilla information are fed to
these systems.. these systems..
</para> </para>
......
...@@ -23,25 +23,25 @@ ...@@ -23,25 +23,25 @@
url="http://bugzilla.redhat.com/bugzilla/">http://bugzilla.redhat.com/bugzilla/</ulink></para> url="http://bugzilla.redhat.com/bugzilla/">http://bugzilla.redhat.com/bugzilla/</ulink></para>
</section> </section>
<section id="variant_fenris" xreflabel="Loki Bugzilla, a.k.a. Fenris"> <section id="variant-fenris" xreflabel="Loki Bugzilla, a.k.a. Fenris">
<title>Loki Bugzilla (Fenris)</title> <title>Loki Bugzilla (Fenris)</title>
<para>Fenris can be found at <ulink <para>Fenris can be found at <ulink
url="http://fenris.lokigames.com/">http://fenris.lokigames.com</ulink>. It is a fork from Bugzilla.</para> url="http://fenris.lokigames.com/">http://fenris.lokigames.com</ulink>. It is a fork from Bugzilla.</para>
</section> </section>
<section id="variant_issuezilla" xreflabel="Issuezilla"> <section id="variant-issuezilla" xreflabel="Issuezilla">
<title>Issuezilla</title> <title>Issuezilla</title>
<para>Issuezilla is another fork from Bugzilla, and seems nearly <para>Issuezilla is another fork from Bugzilla, and seems nearly
as popular as the Red Hat Bugzilla fork. Some Issuezilla team as popular as the Red Hat Bugzilla fork. Some Issuezilla team
members are regular contributors to the Bugzilla mailing members are regular contributors to the Bugzilla mailing
list/newsgroup. Issuezilla is not the primary focus of list/newsgroup. Issuezilla is not the primary focus of
bug-tracking at tigris.org, however. Their Java-based bug-tracking at tigris.org, however. Their Java-based
bug-tracker, <xref linkend="variant_scarab">, is under heavy development bug-tracker, <xref linkend="variant-scarab" />, is under heavy development
and looks promising!</para> and looks promising!</para>
<para>URL: <ulink url="http://issuezilla.tigris.org/servlets/ProjectHome">http://issuezilla.tigris.org/servlets/ProjectHome</ulink></para> <para>URL: <ulink url="http://issuezilla.tigris.org/servlets/ProjectHome">http://issuezilla.tigris.org/servlets/ProjectHome</ulink></para>
</section> </section>
<section id="variant_scarab" xreflabel="Scarab, a newfangled Java-based issue tracker"> <section id="variant-scarab" xreflabel="Scarab, a newfangled Java-based issue tracker">
<title>Scarab</title> <title>Scarab</title>
<para>Scarab is a promising new bug-tracking system built using <para>Scarab is a promising new bug-tracking system built using
Java Serlet technology. As of this writing, no source code has Java Serlet technology. As of this writing, no source code has
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<para>URL: <ulink url="http://scarab.tigris.org/">http://scarab.tigris.org</ulink></para> <para>URL: <ulink url="http://scarab.tigris.org/">http://scarab.tigris.org</ulink></para>
</section> </section>
<section id="variant_perforce" xreflabel="Using Perforce to track bugs"> <section id="variant-perforce" xreflabel="Using Perforce to track bugs">
<title>Perforce SCM</title> <title>Perforce SCM</title>
<para>Although Perforce isn't really a bug tracker, it can be used <para>Although Perforce isn't really a bug tracker, it can be used
as such through the <quote>jobs</quote> functionality.</para> as such through the <quote>jobs</quote> functionality.</para>
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
url="http://www.perforce.com/perforce/technotes/note052.html"></ulink>http://www.perforce.com/perforce/technotes/note052.html</para> url="http://www.perforce.com/perforce/technotes/note052.html"></ulink>http://www.perforce.com/perforce/technotes/note052.html</para>
</section> </section>
<section id="variant_sourceforge" xreflabel="SourceForge"> <section id="variant-sourceforge" xreflabel="SourceForge">
<title>SourceForge</title> <title>SourceForge</title>
<para>SourceForge is more of a way of coordinating geographically <para>SourceForge is more of a way of coordinating geographically
distributed free software and open source projects over the distributed free software and open source projects over the
......
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" [
<!-- Include macros --> <!-- Include macros -->
<!ENTITY about SYSTEM "about.sgml"> <!ENTITY about SYSTEM "about.sgml">
...@@ -148,16 +148,16 @@ try to avoid clutter and feel free to waste space in the code to make it more re ...@@ -148,16 +148,16 @@ try to avoid clutter and feel free to waste space in the code to make it more re
Bugzilla is an enterprise-class set of software utilities Bugzilla is an enterprise-class set of software utilities
that, when used together, power issue-tracking for hundreds of that, when used together, power issue-tracking for hundreds of
organizations around the world, tracking millions of bugs. organizations around the world, tracking millions of bugs.
While it is easy to use and quite flexible, it is very While it is easy to use and quite flexible, it is
difficult for a novice to install and maintain. Although we difficult for a novice to install and maintain. Although we
have provided step-by-step directions, Bugzilla is not always have provided step-by-step directions, Bugzilla is not always
easy to get working. Please be sure the person responsible easy to get working. Please be sure the person responsible
for installing and maintaining this software is a qualified for installing and maintaining this software is a qualified
professional on operating system upon which you install professional for the operating system upon which you install
Bugzilla. Bugzilla.
</para> </para>
<para> <para>
THIS DOCUMENTATION IS MAINTAINED IN DOCBOOK 4.1 SGML FORMAT. THIS DOCUMENTATION IS MAINTAINED IN DOCBOOK 4.1.2 XML FORMAT.
IF YOU WISH TO MAKE CORRECTIONS, PLEASE MAKE THEM IN PLAIN IF YOU WISH TO MAKE CORRECTIONS, PLEASE MAKE THEM IN PLAIN
TEXT OR SGML DIFFS AGAINST THE SOURCE. I CANNOT ACCEPT TEXT OR SGML DIFFS AGAINST THE SOURCE. I CANNOT ACCEPT
ADDITIONS TO THE GUIDE WRITTEN IN HTML! ADDITIONS TO THE GUIDE WRITTEN IN HTML!
...@@ -165,18 +165,18 @@ try to avoid clutter and feel free to waste space in the code to make it more re ...@@ -165,18 +165,18 @@ try to avoid clutter and feel free to waste space in the code to make it more re
</abstract> </abstract>
<KEYWORDSET> <keywordset>
<KEYWORD>Bugzilla</KEYWORD> <keyword>Bugzilla</keyword>
<KEYWORD>Guide</KEYWORD> <keyword>Guide</keyword>
<KEYWORD>installation</KEYWORD> <keyword>installation</keyword>
<KEYWORD>FAQ</KEYWORD> <keyword>FAQ</keyword>
<KEYWORD>administration</KEYWORD> <keyword>administration</keyword>
<KEYWORD>integration</KEYWORD> <keyword>integration</keyword>
<KEYWORD>MySQL</KEYWORD> <keyword>MySQL</keyword>
<KEYWORD>Mozilla</KEYWORD> <keyword>Mozilla</keyword>
<KEYWORD>webtools</KEYWORD> <keyword>webtools</keyword>
</KEYWORDSET> </keywordset>
</BOOKINFO> </bookinfo>
<!-- About This Guide --> <!-- About This Guide -->
&about; &about;
...@@ -203,7 +203,7 @@ try to avoid clutter and feel free to waste space in the code to make it more re ...@@ -203,7 +203,7 @@ try to avoid clutter and feel free to waste space in the code to make it more re
&faq; &faq;
<!-- Appendix: Required Bugzilla Software Links --> <!-- Appendix: Required Bugzilla Software Links -->
&requiredsoftware &requiredsoftware;
<!-- Appendix: The Database Schema --> <!-- Appendix: The Database Schema -->
&database; &database;
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</subtitle> </subtitle>
<para> <para>
So you followed <quote><xref linkend="installation"></quote> to the So you followed <quote><xref linkend="installation" /></quote> to the
letter, and logged into Bugzilla for the very first time with your letter, and logged into Bugzilla for the very first time with your
super-duper god account. You sit, contentedly staring at the super-duper god account. You sit, contentedly staring at the
Bugzilla Query Screen, the worst of the whole mad business of Bugzilla Query Screen, the worst of the whole mad business of
...@@ -623,7 +623,7 @@ ...@@ -623,7 +623,7 @@
<subtitle>Formerly, and in some spots still, called <subtitle>Formerly, and in some spots still, called
"Programs"</subtitle> "Programs"</subtitle>
<para> <para>
<glossterm linkend="gloss_product" baseform="product">Products</glossterm> are <glossterm linkend="gloss-product" baseform="product">Products</glossterm> are
the broadest category in Bugzilla, and you should have the the broadest category in Bugzilla, and you should have the
least of these. If your company makes computer games, you least of these. If your company makes computer games, you
should have one product per game, and possibly a few special should have one product per game, and possibly a few special
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<para> <para>
<mediaobject> <mediaobject>
<imageobject> <imageobject>
<imagedata fileref="../images/dbschema.jpg" format="jpg"> <imagedata fileref="../images/dbschema.jpg" format="JPG" />
</imageobject> </imageobject>
<textobject> <textobject>
...@@ -359,7 +359,7 @@ http://www.devshed.com/Server_Side/MySQL/ ...@@ -359,7 +359,7 @@ http://www.devshed.com/Server_Side/MySQL/
</section> </section>
<section id="granttables"> <section id="granttables">
<title>MySQL Permissions & Grant Tables</title> <title>MySQL Permissions &amp; Grant Tables</title>
<note> <note>
<para>The following portion of documentation comes from my <para>The following portion of documentation comes from my
...@@ -480,7 +480,7 @@ mysql> GRANT ...@@ -480,7 +480,7 @@ mysql> GRANT
SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,DROP,RELOAD,SHUTDOWN,PROCESS, SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,DROP,RELOAD,SHUTDOWN,PROCESS,
FILE, FILE,
ON keystone.* ON keystone.*
TO <$sys_dbuser name>@localhost TO &lt;$sys_dbuser name>@localhost
IDENTIFIED BY '(password)' IDENTIFIED BY '(password)'
WITH GRANT OPTION; WITH GRANT OPTION;
...@@ -488,7 +488,7 @@ OR ...@@ -488,7 +488,7 @@ OR
mysql> GRANT ALL PRIVELEGES mysql> GRANT ALL PRIVELEGES
ON keystone.* ON keystone.*
TO <$sys_dbuser name>@localhost TO &lt;$sys_dbuser name>@localhost
IDENTIFIED BY '(password)' IDENTIFIED BY '(password)'
WITH GRANT OPTION; WITH GRANT OPTION;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<qandaset> <qandaset>
<qandadiv id="faq_general"> <qandadiv id="faq-general">
<title>General Questions</title> <title>General Questions</title>
<qandaentry> <qandaentry>
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
</qandadiv> </qandadiv>
<qandadiv id="faq_redhat"> <qandadiv id="faq-redhat">
<title>Red Hat Bugzilla</title> <title>Red Hat Bugzilla</title>
<para> <para>
<note> <note>
...@@ -496,7 +496,7 @@ ...@@ -496,7 +496,7 @@
</qandadiv> </qandadiv>
<qandadiv id="faq_loki"> <qandadiv id="faq-loki">
<title>Loki Bugzilla (AKA Fenris)</title> <title>Loki Bugzilla (AKA Fenris)</title>
<qandaentry> <qandaentry>
...@@ -515,7 +515,7 @@ ...@@ -515,7 +515,7 @@
</qandadiv> </qandadiv>
<qandadiv id="faq_phb"> <qandadiv id="faq-phb">
<title>Pointy-Haired-Boss Questions</title> <title>Pointy-Haired-Boss Questions</title>
<para> <para>
<note> <note>
...@@ -1011,7 +1011,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1011,7 +1011,7 @@ if ($::FORM{sub} eq 'PutFooter') {
your Bugzilla install can run untended for years. If your your Bugzilla install can run untended for years. If your
Bugzilla strategy is critical to your business workflow, hire somebody Bugzilla strategy is critical to your business workflow, hire somebody
with reasonable UNIX or Perl skills to handle your process management and with reasonable UNIX or Perl skills to handle your process management and
bug-tracking maintenance & customization. bug-tracking maintenance &amp; customization.
</para> </para>
</answer> </answer>
</qandaentry> </qandaentry>
...@@ -1032,7 +1032,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1032,7 +1032,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandaentry> </qandaentry>
</qandadiv> </qandadiv>
<qandadiv id="faq_install"> <qandadiv id="faq-install">
<title>Bugzilla Installation</title> <title>Bugzilla Installation</title>
<qandaentry> <qandaentry>
<question> <question>
...@@ -1078,7 +1078,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1078,7 +1078,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandadiv> </qandadiv>
<qandadiv id="faq_security"> <qandadiv id="faq-security">
<title>Bugzilla Security</title> <title>Bugzilla Security</title>
<qandaentry> <qandaentry>
...@@ -1133,7 +1133,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1133,7 +1133,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandaentry> </qandaentry>
</qandadiv> </qandadiv>
<qandadiv id="faq_email"> <qandadiv id="faq-email">
<title>Bugzilla Email</title> <title>Bugzilla Email</title>
<qandaentry> <qandaentry>
...@@ -1263,7 +1263,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1263,7 +1263,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandaentry> </qandaentry>
</qandadiv> </qandadiv>
<qandadiv id="faq_db"> <qandadiv id="faq-db">
<title>Bugzilla Database</title> <title>Bugzilla Database</title>
<qandaentry> <qandaentry>
...@@ -1451,7 +1451,7 @@ if ($::FORM{sub} eq 'PutFooter') { ...@@ -1451,7 +1451,7 @@ if ($::FORM{sub} eq 'PutFooter') {
</qandadiv> </qandadiv>
<qandadiv id="faq_nt"> <qandadiv id="faq-nt">
<title>Bugzilla and Win32</title> <title>Bugzilla and Win32</title>
<qandaentry> <qandaentry>
...@@ -1662,7 +1662,7 @@ A: Sure! Here ya go! ...@@ -1662,7 +1662,7 @@ A: Sure! Here ya go!
</qandadiv> </qandadiv>
<qandadiv id="faq_use"> <qandadiv id="faq-use">
<title>Bugzilla Usage</title> <title>Bugzilla Usage</title>
<qandaentry> <qandaentry>
...@@ -1754,7 +1754,7 @@ A: Sure! Here ya go! ...@@ -1754,7 +1754,7 @@ A: Sure! Here ya go!
</qandadiv> </qandadiv>
<qandadiv id="faq_hacking"> <qandadiv id="faq-hacking">
<title>Bugzilla Hacking</title> <title>Bugzilla Hacking</title>
<qandaentry> <qandaentry>
...@@ -1862,7 +1862,7 @@ A: Sure! Here ya go! ...@@ -1862,7 +1862,7 @@ A: Sure! Here ya go!
</qandaset> </qandaset>
</APPENDIX> </appendix>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
......
...@@ -18,7 +18,7 @@ Everyone is permitted to copy and distribute verbatim copies ...@@ -18,7 +18,7 @@ Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.</para> of this license document, but changing it is not allowed.</para>
</blockquote> </blockquote>
<sect1 label="0" id="gfdl_0"> <sect1 label="0" id="gfdl-0">
<title>PREAMBLE</title> <title>PREAMBLE</title>
<para>The purpose of this License is to make a manual, textbook, <para>The purpose of this License is to make a manual, textbook,
...@@ -45,7 +45,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -45,7 +45,7 @@ of this license document, but changing it is not allowed.</para>
whose purpose is instruction or reference.</para> whose purpose is instruction or reference.</para>
</sect1> </sect1>
<sect1 label="1" id="gfdl_1"> <sect1 label="1" id="gfdl-1">
<title>APPLICABILITY AND DEFINITIONS</title> <title>APPLICABILITY AND DEFINITIONS</title>
<para>This License applies to any manual or other work that <para>This License applies to any manual or other work that
...@@ -113,7 +113,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -113,7 +113,7 @@ of this license document, but changing it is not allowed.</para>
text.</para> text.</para>
</sect1> </sect1>
<sect1 label="2" id="gfdl_2"> <sect1 label="2" id="gfdl-2">
<title>VERBATIM COPYING</title> <title>VERBATIM COPYING</title>
<para>You may copy and distribute the Document in any medium, <para>You may copy and distribute the Document in any medium,
...@@ -131,7 +131,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -131,7 +131,7 @@ of this license document, but changing it is not allowed.</para>
above, and you may publicly display copies.</para> above, and you may publicly display copies.</para>
</sect1> </sect1>
<sect1 label="3" id="gfdl_3"> <sect1 label="3" id="gfdl-3">
<title>COPYING IN QUANTITY</title> <title>COPYING IN QUANTITY</title>
<para>If you publish printed copies of the Document numbering more <para>If you publish printed copies of the Document numbering more
...@@ -173,7 +173,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -173,7 +173,7 @@ of this license document, but changing it is not allowed.</para>
updated version of the Document.</para> updated version of the Document.</para>
</sect1> </sect1>
<sect1 label="4" id="gfdl_4"> <sect1 label="4" id="gfdl-4">
<title>MODIFICATIONS</title> <title>MODIFICATIONS</title>
<para>You may copy and distribute a Modified Version of the <para>You may copy and distribute a Modified Version of the
...@@ -304,7 +304,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -304,7 +304,7 @@ of this license document, but changing it is not allowed.</para>
or to assert or imply endorsement of any Modified Version.</para> or to assert or imply endorsement of any Modified Version.</para>
</sect1> </sect1>
<sect1 label="5" id="gfdl_5"> <sect1 label="5" id="gfdl-5">
<title>COMBINING DOCUMENTS</title> <title>COMBINING DOCUMENTS</title>
<para>You may combine the Document with other documents released <para>You may combine the Document with other documents released
...@@ -331,7 +331,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -331,7 +331,7 @@ of this license document, but changing it is not allowed.</para>
must delete all sections entitled "Endorsements."</para> must delete all sections entitled "Endorsements."</para>
</sect1> </sect1>
<sect1 label="6" id="gfdl_6"> <sect1 label="6" id="gfdl-6">
<title>COLLECTIONS OF DOCUMENTS</title> <title>COLLECTIONS OF DOCUMENTS</title>
<para>You may make a collection consisting of the Document and <para>You may make a collection consisting of the Document and
...@@ -348,7 +348,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -348,7 +348,7 @@ of this license document, but changing it is not allowed.</para>
copying of that document.</para> copying of that document.</para>
</sect1> </sect1>
<sect1 label="7" id="gfdl_7"> <sect1 label="7" id="gfdl-7">
<title>AGGREGATION WITH INDEPENDENT WORKS</title> <title>AGGREGATION WITH INDEPENDENT WORKS</title>
<para>A compilation of the Document or its derivatives with other <para>A compilation of the Document or its derivatives with other
...@@ -369,7 +369,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -369,7 +369,7 @@ of this license document, but changing it is not allowed.</para>
aggregate.</para> aggregate.</para>
</sect1> </sect1>
<sect1 label="8" id="gfdl_8"> <sect1 label="8" id="gfdl-8">
<title>TRANSLATION</title> <title>TRANSLATION</title>
<para>Translation is considered a kind of modification, so you may <para>Translation is considered a kind of modification, so you may
...@@ -385,7 +385,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -385,7 +385,7 @@ of this license document, but changing it is not allowed.</para>
prevail.</para> prevail.</para>
</sect1> </sect1>
<sect1 label="9" id="gfdl_9"> <sect1 label="9" id="gfdl-9">
<title>TERMINATION</title> <title>TERMINATION</title>
<para>You may not copy, modify, sublicense, or distribute the <para>You may not copy, modify, sublicense, or distribute the
...@@ -398,7 +398,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -398,7 +398,7 @@ of this license document, but changing it is not allowed.</para>
compliance.</para> compliance.</para>
</sect1> </sect1>
<sect1 label="10" id="gfdl_10"> <sect1 label="10" id="gfdl-10">
<title>FUTURE REVISIONS OF THIS LICENSE</title> <title>FUTURE REVISIONS OF THIS LICENSE</title>
<para>The Free Software Foundation may publish new, revised <para>The Free Software Foundation may publish new, revised
...@@ -419,7 +419,7 @@ of this license document, but changing it is not allowed.</para> ...@@ -419,7 +419,7 @@ of this license document, but changing it is not allowed.</para>
Free Software Foundation.</para> Free Software Foundation.</para>
</sect1> </sect1>
<sect1 label="" id="gfdl_howto"> <sect1 label="" id="gfdl-howto">
<title>How to use this License for your documents</title> <title>How to use this License for your documents</title>
<para>To use this License in a document you have written, include <para>To use this License in a document you have written, include
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_a"> <glossdiv id="gloss-a">
<title>A</title> <title>A</title>
<glossentry> <glossentry>
<glossterm>Apache</glossterm> <glossterm>Apache</glossterm>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_b"> <glossdiv id="gloss-b">
<title>B</title> <title>B</title>
<glossentry> <glossentry>
<glossterm>Bug</glossterm> <glossterm>Bug</glossterm>
...@@ -89,9 +89,9 @@ ...@@ -89,9 +89,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_c"> <glossdiv id="gloss-c">
<title></title> <title></title>
<glossentry id="gloss_component"> <glossentry id="gloss-component">
<glossterm>Component</glossterm> <glossterm>Component</glossterm>
<glossdef> <glossdef>
<para> <para>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
</para> </para>
</glossdef> </glossdef>
</glossentry> </glossentry>
<glossentry id="gloss_cpan"> <glossentry id="gloss-cpan">
<glossterm><acronym>CPAN</acronym></glossterm> <glossterm><acronym>CPAN</acronym></glossterm>
<glossdef> <glossdef>
<para><acronym>CPAN</acronym> stands for the <para><acronym>CPAN</acronym> stands for the
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_d"> <glossdiv id="gloss-d">
<title>D</title> <title>D</title>
<glossentry> <glossentry>
<glossterm>daemon</glossterm> <glossterm>daemon</glossterm>
...@@ -132,7 +132,7 @@ ...@@ -132,7 +132,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_g"> <glossdiv id="gloss-g">
<title></title> <title></title>
<glossentry> <glossentry>
<glossterm>Groups</glossterm> <glossterm>Groups</glossterm>
...@@ -148,9 +148,9 @@ ...@@ -148,9 +148,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_i"> <glossdiv id="gloss-i">
<title>I</title> <title>I</title>
<glossentry id="gloss_infiniteloop"> <glossentry id="gloss-infiniteloop">
<glossterm>Infinite Loop</glossterm> <glossterm>Infinite Loop</glossterm>
<glossdef> <glossdef>
<para>A loop of information that never ends; see recursion.</para> <para>A loop of information that never ends; see recursion.</para>
...@@ -158,7 +158,7 @@ ...@@ -158,7 +158,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_m"> <glossdiv id="gloss-m">
<title>M</title> <title>M</title>
<glossentry> <glossentry>
<glossterm>mysqld</glossterm> <glossterm>mysqld</glossterm>
...@@ -173,10 +173,10 @@ ...@@ -173,10 +173,10 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_p"> <glossdiv id="gloss-p">
<title>P</title> <title>P</title>
<glossentry> <glossentry>
<glossterm id="gloss_product">Product</glossterm> <glossterm id="gloss-product">Product</glossterm>
<glossdef> <glossdef>
<para>A Product is a broad category of types of bugs. In <para>A Product is a broad category of types of bugs. In
general, there are several Components to a Product. A general, there are several Components to a Product. A
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_q"> <glossdiv id="gloss-q">
<title>Q</title> <title>Q</title>
<glossentry> <glossentry>
<glossterm>QA</glossterm> <glossterm>QA</glossterm>
...@@ -229,9 +229,9 @@ ...@@ -229,9 +229,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_r"> <glossdiv id="gloss-r">
<title>R</title> <title>R</title>
<glossentry id="gloss_recursion" xreflabel="Recursion"> <glossentry id="gloss-recursion" xreflabel="Recursion">
<glossterm>Recursion</glossterm> <glossterm>Recursion</glossterm>
<glossdef> <glossdef>
<para>The property of a function looking back at itself for <para>The property of a function looking back at itself for
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_s"> <glossdiv id="gloss-s">
<title>S</title> <title>S</title>
<glossentry> <glossentry>
<glossterm><acronym>SGML</acronym></glossterm> <glossterm><acronym>SGML</acronym></glossterm>
...@@ -266,9 +266,9 @@ ...@@ -266,9 +266,9 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_t"> <glossdiv id="gloss-t">
<title>T</title> <title>T</title>
<glossentry id="gloss_target_milestone" xreflabel="Target Milestone"> <glossentry id="gloss-target-milestone" xreflabel="Target Milestone">
<glossterm>Target Milestone</glossterm> <glossterm>Target Milestone</glossterm>
<glossdef> <glossdef>
<para> <para>
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
</glossentry> </glossentry>
</glossdiv> </glossdiv>
<glossdiv id="gloss_z"> <glossdiv id="gloss-z">
<title>Z</title> <title>Z</title>
<glossentry id="zarro-boogs-found" xreflabel="Zarro Boogs Found"> <glossentry id="zarro-boogs-found" xreflabel="Zarro Boogs Found">
<glossterm>Zarro Boogs Found</glossterm> <glossterm>Zarro Boogs Found</glossterm>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<section id="bonsai" xreflabel="Bonsai, the Mozilla automated CVS management system"> <section id="bonsai" xreflabel="Bonsai, the Mozilla automated CVS management system">
<title>Bonsai</title> <title>Bonsai</title>
<para>Bonsai is a web-based tool for managing <xref <para>Bonsai is a web-based tool for managing <xref
linkend="cvs"> linkend="cvs" />
. Using Bonsai, administrators can control open/closed status . Using Bonsai, administrators can control open/closed status
of trees, query a fast relational database back-end for change, of trees, query a fast relational database back-end for change,
branch, and comment information, and view changes made since the branch, and comment information, and view changes made since the
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
engineer responsible to be <quote>on the hook</quote> (include engineer responsible to be <quote>on the hook</quote> (include
cool URL link here for Hook policies at mozilla.org). Bonsai cool URL link here for Hook policies at mozilla.org). Bonsai
also includes gateways to <xref also includes gateways to <xref
linkend="tinderbox"> and Bugzilla </para> linkend="tinderbox" /> and Bugzilla </para>
</section> </section>
<section id="cvs" xreflabel="CVS, the Concurrent Versioning System"> <section id="cvs" xreflabel="CVS, the Concurrent Versioning System">
......
...@@ -31,7 +31,7 @@ Chapter: Using Bugzilla ...@@ -31,7 +31,7 @@ Chapter: Using Bugzilla
<title>Using Bugzilla</title> <title>Using Bugzilla</title>
<epigraph> <epigraph>
<para> <para>
What, Why, How, & Where? What, Why, How, &amp; Where?
</para> </para>
</epigraph> </epigraph>
...@@ -612,7 +612,7 @@ system against which all others are measured. ...@@ -612,7 +612,7 @@ system against which all others are measured.
<para>And all this time, I thought we were taking bugs <emphasis>out</emphasis>...</para> <para>And all this time, I thought we were taking bugs <emphasis>out</emphasis>...</para>
</epigraph> </epigraph>
<section id="bug_writing"> <section id="bug-writing">
<title>Writing a Great Bug Report</title> <title>Writing a Great Bug Report</title>
<para> <para>
Before we plunge into writing your first bug report, I Before we plunge into writing your first bug report, I
...@@ -701,7 +701,7 @@ system against which all others are measured. ...@@ -701,7 +701,7 @@ system against which all others are measured.
</para> </para>
</section> </section>
<section id="bug_manage"> <section id="bug-manage">
<title>Managing your Bug Reports</title> <title>Managing your Bug Reports</title>
<para> <para>
OK, you should have a link to the bug you just created near OK, you should have a link to the bug you just created near
...@@ -812,7 +812,7 @@ system against which all others are measured. ...@@ -812,7 +812,7 @@ system against which all others are measured.
their flow charts and know when it is time to pull the bug their flow charts and know when it is time to pull the bug
onto a quality assurance platform for inspection. Other onto a quality assurance platform for inspection. Other
people set up email gateways to people set up email gateways to
<xref linkend="bonsai"> or <xref linkend="tinderbox">, and <xref linkend="bonsai" /> or <xref linkend="tinderbox" />, and
restrict which types of Bugzilla information are fed to restrict which types of Bugzilla information are fed to
these systems.. these systems..
</para> </para>
......
...@@ -23,25 +23,25 @@ ...@@ -23,25 +23,25 @@
url="http://bugzilla.redhat.com/bugzilla/">http://bugzilla.redhat.com/bugzilla/</ulink></para> url="http://bugzilla.redhat.com/bugzilla/">http://bugzilla.redhat.com/bugzilla/</ulink></para>
</section> </section>
<section id="variant_fenris" xreflabel="Loki Bugzilla, a.k.a. Fenris"> <section id="variant-fenris" xreflabel="Loki Bugzilla, a.k.a. Fenris">
<title>Loki Bugzilla (Fenris)</title> <title>Loki Bugzilla (Fenris)</title>
<para>Fenris can be found at <ulink <para>Fenris can be found at <ulink
url="http://fenris.lokigames.com/">http://fenris.lokigames.com</ulink>. It is a fork from Bugzilla.</para> url="http://fenris.lokigames.com/">http://fenris.lokigames.com</ulink>. It is a fork from Bugzilla.</para>
</section> </section>
<section id="variant_issuezilla" xreflabel="Issuezilla"> <section id="variant-issuezilla" xreflabel="Issuezilla">
<title>Issuezilla</title> <title>Issuezilla</title>
<para>Issuezilla is another fork from Bugzilla, and seems nearly <para>Issuezilla is another fork from Bugzilla, and seems nearly
as popular as the Red Hat Bugzilla fork. Some Issuezilla team as popular as the Red Hat Bugzilla fork. Some Issuezilla team
members are regular contributors to the Bugzilla mailing members are regular contributors to the Bugzilla mailing
list/newsgroup. Issuezilla is not the primary focus of list/newsgroup. Issuezilla is not the primary focus of
bug-tracking at tigris.org, however. Their Java-based bug-tracking at tigris.org, however. Their Java-based
bug-tracker, <xref linkend="variant_scarab">, is under heavy development bug-tracker, <xref linkend="variant-scarab" />, is under heavy development
and looks promising!</para> and looks promising!</para>
<para>URL: <ulink url="http://issuezilla.tigris.org/servlets/ProjectHome">http://issuezilla.tigris.org/servlets/ProjectHome</ulink></para> <para>URL: <ulink url="http://issuezilla.tigris.org/servlets/ProjectHome">http://issuezilla.tigris.org/servlets/ProjectHome</ulink></para>
</section> </section>
<section id="variant_scarab" xreflabel="Scarab, a newfangled Java-based issue tracker"> <section id="variant-scarab" xreflabel="Scarab, a newfangled Java-based issue tracker">
<title>Scarab</title> <title>Scarab</title>
<para>Scarab is a promising new bug-tracking system built using <para>Scarab is a promising new bug-tracking system built using
Java Serlet technology. As of this writing, no source code has Java Serlet technology. As of this writing, no source code has
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<para>URL: <ulink url="http://scarab.tigris.org/">http://scarab.tigris.org</ulink></para> <para>URL: <ulink url="http://scarab.tigris.org/">http://scarab.tigris.org</ulink></para>
</section> </section>
<section id="variant_perforce" xreflabel="Using Perforce to track bugs"> <section id="variant-perforce" xreflabel="Using Perforce to track bugs">
<title>Perforce SCM</title> <title>Perforce SCM</title>
<para>Although Perforce isn't really a bug tracker, it can be used <para>Although Perforce isn't really a bug tracker, it can be used
as such through the <quote>jobs</quote> functionality.</para> as such through the <quote>jobs</quote> functionality.</para>
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
url="http://www.perforce.com/perforce/technotes/note052.html"></ulink>http://www.perforce.com/perforce/technotes/note052.html</para> url="http://www.perforce.com/perforce/technotes/note052.html"></ulink>http://www.perforce.com/perforce/technotes/note052.html</para>
</section> </section>
<section id="variant_sourceforge" xreflabel="SourceForge"> <section id="variant-sourceforge" xreflabel="SourceForge">
<title>SourceForge</title> <title>SourceForge</title>
<para>SourceForge is more of a way of coordinating geographically <para>SourceForge is more of a way of coordinating geographically
distributed free software and open source projects over the distributed free software and open source projects over the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment