]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Regenerated files from another set of 2.16 doc fixes.
authorgerv%gerv.net <>
Sat, 13 Jul 2002 14:53:58 +0000 (14:53 +0000)
committergerv%gerv.net <>
Sat, 13 Jul 2002 14:53:58 +0000 (14:53 +0000)
14 files changed:
docs/html/administration.html
docs/html/cust-templates.html
docs/html/dbdoc.html
docs/html/extraconfig.html
docs/html/faq.html
docs/html/glossary.html
docs/html/hintsandtips.html
docs/html/index.html
docs/html/installation.html
docs/html/stepbystep.html
docs/html/troubleshooting.html
docs/html/upgrading.html
docs/html/using.html
docs/html/win32.html

index df31d4ee4ec9624baa3e069563e1ac37749050e1..06b0592414aa2ebae9a8aeec3b60193c4b26d45f 100644 (file)
@@ -154,18 +154,18 @@ HREF="cust-templates.html"
 ><DL
 ><DT
 >5.7.1. <A
-HREF="cust-templates.html#AEN1524"
+HREF="cust-templates.html#AEN1529"
 >What to Edit</A
 ></DT
 ><DT
 >5.7.2. <A
-HREF="cust-templates.html#AEN1542"
->Particular Templates</A
+HREF="cust-templates.html#AEN1551"
+>Template Formats</A
 ></DT
 ><DT
 >5.7.3. <A
-HREF="cust-templates.html#AEN1563"
->Template Formats</A
+HREF="cust-templates.html#AEN1564"
+>Particular Templates</A
 ></DT
 ></DL
 ></DD
index 9cfc419c5ae4cb4fe8aea562ec3e941eec1ed2b7..010897c24030b20a4f2b33d5fb13267bd2383709 100644 (file)
@@ -97,7 +97,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1524">5.7.1. What to Edit</H2
+NAME="AEN1529">5.7.1. What to Edit</H2
 ><P
 >&#13;        There are several ways to take advantage of Bugzilla's templates,
         and which you use depends on what you want to do. The Bugzilla
@@ -118,7 +118,11 @@ CLASS="filename"
         <TT
 CLASS="filename"
 >custom</TT
->. The <TT
+> (you may have to create
+        <TT
+CLASS="filename"
+>custom</TT
+> yourself.) The <TT
 CLASS="filename"
 >default</TT
 >
@@ -148,7 +152,26 @@ CLASS="filename"
         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.
+        hand. This is also the correct method to use if you upgrade Bugzilla
+        by untarring tarballs over the top, rather than using CVS. It's perfectly
+        acceptable to mix and match these two methods.
+      </P
+><P
+>&#13;        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
+><P
+>&#13;        If you are making changes to contribute back to Bugzilla (and we'd
+        love to have them), then please read the 
+        <A
+HREF="http://www.bugzilla.org/developerguide.html"
+TARGET="_top"
+>Developers 
+        Guide</A
+> first.
       </P
 ><P
 >&#13;        The syntax of the Template Toolkit language is beyond the scope of
@@ -159,7 +182,9 @@ 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
 ><DIV
 CLASS="note"
@@ -199,7 +224,67 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1542">5.7.2. Particular Templates</H2
+NAME="AEN1551">5.7.2. Template Formats</H2
+><P
+>&#13;        Some CGIs have the ability to use more than one template. For
+        example, buglist.cgi can output bug lists as RDF or two
+        different forms of HTML (complex and simple). (Try this out
+        by appending <TT
+CLASS="filename"
+>&#38;format=simple</TT
+> to a buglist.cgi
+        URL on your Bugzilla installation.) This
+        mechanism, called template 'formats', is extensible.
+      </P
+><P
+>&#13;        To see if a CGI supports multiple output formats, grep the
+        CGI for "ValidateOutputFormat". If it's not present, adding
+        multiple format support isn't too hard - see how it's done in
+        other CGIs.
+      </P
+><P
+>&#13;        To make a new format template for a CGI which supports this, 
+        open a current template for
+        that CGI and take note of the INTERFACE comment (if present.) This 
+        comment defines what variables are passed into this template. If 
+        there isn't one, I'm afraid you'll have to read the template and
+        the code to find out what information you get. 
+      </P
+><P
+>&#13;        Write your template in whatever markup or text style is appropriate.
+      </P
+><P
+>&#13;        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
+>
+        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.
+      </P
+><P
+>&#13;        Save the template as <TT
+CLASS="filename"
+>&#60;stubname&#62;-&#60;formatname&#62;.&#60;contenttypetag&#62;.tmpl</TT
+>. 
+        Try out the template by calling the CGI as 
+        <TT
+CLASS="filename"
+>&#60;cginame&#62;.cgi?format=&#60;formatname&#62;</TT
+> .
+      </P
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="AEN1564">5.7.3. Particular Templates</H2
 ><P
 >&#13;        There are a few templates you may be particularly interested in
         customising for your installation.
@@ -207,6 +292,13 @@ NAME="AEN1542">5.7.2. Particular Templates</H2
 ><P
 >&#13;        <B
 CLASS="command"
+>index.html.tmpl</B
+>:
+        This is the Bugzilla front page.
+      </P
+><P
+>&#13;        <B
+CLASS="command"
 >global/header.html.tmpl</B
 > and
         <B
@@ -231,7 +323,14 @@ CLASS="command"
         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.)
+        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
 >&#13;        To make this work, create a custom template for 
@@ -246,8 +345,8 @@ CLASS="filename"
         and either call it <TT
 CLASS="filename"
 >create.html.tmpl</TT
-> or
-        <TT
+> or use a format and
+        call it <TT
 CLASS="filename"
 >create-&#60;formatname&#62;.html.tmpl</TT
 >.
@@ -263,7 +362,8 @@ CLASS="filename"
         <TT
 CLASS="filename"
 >custom/bug/create/comment.txt.tmpl</TT
->, which
+>, 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.
@@ -280,8 +380,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->&#13;        &#60;input type="text" name="buildid" size="30"&#62;
-        </PRE
+>&#60;input type="text" name="buildid" size="30"&#62;</PRE
 ></FONT
 ></TD
 ></TR
@@ -298,8 +397,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->&#13;        BuildID: [% form.buildid %]
-        </PRE
+>BuildID: [% form.buildid %]</PRE
 ></FONT
 ></TD
 ></TR
@@ -316,8 +414,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->&#13;        BuildID: 20020303
-        </PRE
+>BuildID: 20020303</PRE
 ></FONT
 ></TD
 ></TR
@@ -326,59 +423,6 @@ CLASS="programlisting"
         would appear in the initial checkin comment.
       </P
 ></DIV
-><DIV
-CLASS="section"
-><H2
-CLASS="section"
-><A
-NAME="AEN1563">5.7.3. Template Formats</H2
-><P
->&#13;        Some CGIs have the ability to use more than one template. For
-        example, buglist.cgi can output bug lists as RDF or two
-        different forms of HTML (complex and simple). (Try this out
-        by appending <TT
-CLASS="filename"
->&#38;format=simple</TT
-> to a buglist.cgi
-        URL on your Bugzilla installation.) This
-        mechanism, called template 'formats', is extensible.
-      </P
-><P
->&#13;        To see if a CGI supports multiple output formats, grep the
-        CGI for "ValidateOutputFormat". If it's not present, adding
-        multiple format support isn't too hard - see how it's done in
-        other CGIs.
-      </P
-><P
->&#13;        To make a new format template for a CGI which supports this, 
-        open a current template for
-        that CGI and take note of the INTERFACE comment (if present.) This 
-        comment defines what variables are passed into this template. If 
-        there isn't one, I'm afraid you'll have to read the template and
-        the code to find out what information you get. 
-      </P
-><P
->&#13;        Write your template in whatever markup or text style is appropriate.
-      </P
-><P
->&#13;        You now need to decide what content type you want your template
-        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.
-      </P
-><P
->&#13;        Save the template as <TT
-CLASS="filename"
->&#60;stubname&#62;-&#60;formatname&#62;.&#60;contenttypetag&#62;.tmpl</TT
->. 
-        Try out the template by calling the CGI as 
-        <TT
-CLASS="filename"
->&#60;cginame&#62;.cgi?format=&#60;formatname&#62;</TT
-> .
-      </P
-></DIV
 ></DIV
 ><DIV
 CLASS="NAVFOOTER"
index 7e825aff939e335b2f193c19db7181977080e6cb..21dbd2ddb1b1d754bf273615c425bf7b667e337a 100644 (file)
@@ -133,7 +133,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN2040">B.2.1. Bugzilla Database Basics</H2
+NAME="AEN2055">B.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
@@ -247,7 +247,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN2067">B.2.1.1. Bugzilla Database Tables</H3
+NAME="AEN2082">B.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
index 735e2c9b07f7c1e8d8c78970dfa42a99bd57a8f2..79279a0ef8b4713ae48192e559c9e04652e7a4d3 100644 (file)
@@ -79,7 +79,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN840">4.2.1. Dependency Charts</H2
+NAME="AEN845">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'.
@@ -141,7 +141,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN855">4.2.2. Bug Graphs</H2
+NAME="AEN860">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 +198,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN868">4.2.3. The Whining Cron</H2
+NAME="AEN873">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
index 7e8b580c4d3a6ed17193b7dba4c3ce7aade64d61..18f29302c77806ee29805328e86c9b04d07515cd 100644 (file)
@@ -85,64 +85,64 @@ HREF="faq.html#faq-general"
 ><DL
 ><DT
 >A.1.1. <A
-HREF="faq.html#AEN1612"
+HREF="faq.html#AEN1627"
 >&#13;     Where can I find information about Bugzilla?</A
 ></DT
 ><DT
 >A.1.2. <A
-HREF="faq.html#AEN1618"
+HREF="faq.html#AEN1633"
 >&#13;     What license is Bugzilla distributed under?
          </A
 ></DT
 ><DT
 >A.1.3. <A
-HREF="faq.html#AEN1624"
+HREF="faq.html#AEN1639"
 >&#13;     How do I get commercial support for Bugzilla?
          </A
 ></DT
 ><DT
 >A.1.4. <A
-HREF="faq.html#AEN1631"
+HREF="faq.html#AEN1646"
 >&#13;     What major companies or projects are currently using Bugzilla
            for bug-tracking?
          </A
 ></DT
 ><DT
 >A.1.5. <A
-HREF="faq.html#AEN1656"
+HREF="faq.html#AEN1671"
 >&#13;     Who maintains Bugzilla?
          </A
 ></DT
 ><DT
 >A.1.6. <A
-HREF="faq.html#AEN1662"
+HREF="faq.html#AEN1677"
 >&#13;     How does Bugzilla stack up against other bug-tracking databases?
          </A
 ></DT
 ><DT
 >A.1.7. <A
-HREF="faq.html#AEN1668"
+HREF="faq.html#AEN1683"
 >&#13;     Why doesn't Bugzilla offer this or that feature or compatability
            with this other tracking software?
          </A
 ></DT
 ><DT
 >A.1.8. <A
-HREF="faq.html#AEN1675"
+HREF="faq.html#AEN1690"
 >&#13;     Why MySQL?  I'm interested in seeing Bugzilla run on
            Oracle/Sybase/Msql/PostgreSQL/MSSQL.
          </A
 ></DT
 ><DT
 >A.1.9. <A
-HREF="faq.html#AEN1680"
+HREF="faq.html#AEN1695"
 >&#13;     Why do the scripts say "/usr/bonsaitools/bin/perl" instead of
            "/usr/bin/perl" or something else?
          </A
 ></DT
 ><DT
 >A.1.10. <A
-HREF="faq.html#AEN1686"
+HREF="faq.html#AEN1701"
 >&#13;     Is there an easy way to change the Bugzilla cookie name?
          </A
 ></DT
@@ -151,47 +151,47 @@ HREF="faq.html#AEN1686"
 ><DT
 >2. <A
 HREF="faq.html#faq-phb"
->Pointy-Haired-Boss Questions</A
+>Managerial Questions</A
 ></DT
 ><DD
 ><DL
 ><DT
 >A.2.1. <A
-HREF="faq.html#AEN1696"
+HREF="faq.html#AEN1711"
 >&#13;     Is Bugzilla web-based, or do you have to have specific software or
            a specific operating system on your machine?
          </A
 ></DT
 ><DT
 >A.2.2. <A
-HREF="faq.html#AEN1701"
+HREF="faq.html#AEN1716"
 >&#13;     Can Bugzilla integrate with
            Perforce (SCM software)?
          </A
 ></DT
 ><DT
 >A.2.3. <A
-HREF="faq.html#AEN1706"
+HREF="faq.html#AEN1721"
 >&#13;     Does Bugzilla allow the user to track multiple projects?
          </A
 ></DT
 ><DT
 >A.2.4. <A
-HREF="faq.html#AEN1711"
+HREF="faq.html#AEN1726"
 >&#13;     If I am on many projects, and search for all bugs assigned to me, will
            Bugzilla list them for me and allow me to sort by project, severity etc?
          </A
 ></DT
 ><DT
 >A.2.5. <A
-HREF="faq.html#AEN1716"
+HREF="faq.html#AEN1731"
 >&#13;     Does Bugzilla allow attachments (text, screenshots, URLs etc)? If yes,
            are there any that are NOT allowed?
          </A
 ></DT
 ><DT
 >A.2.6. <A
-HREF="faq.html#AEN1721"
+HREF="faq.html#AEN1736"
 >&#13;     Does Bugzilla allow us to define our own priorities and levels? Do we
            have complete freedom to change the labels of fields and format of them, and
            the choice of acceptable values?
@@ -199,35 +199,35 @@ HREF="faq.html#AEN1721"
 ></DT
 ><DT
 >A.2.7. <A
-HREF="faq.html#AEN1728"
+HREF="faq.html#AEN1743"
 >&#13;     Does Bugzilla provide any reporting features, metrics, graphs, etc? You
            know, the type of stuff that management likes to see. :)
          </A
 ></DT
 ><DT
 >A.2.8. <A
-HREF="faq.html#AEN1735"
+HREF="faq.html#AEN1750"
 >&#13;     Is there email notification and if so, what do you see when you get an
            email?
          </A
 ></DT
 ><DT
 >A.2.9. <A
-HREF="faq.html#AEN1740"
+HREF="faq.html#AEN1755"
 >&#13;     Can email notification be set up to send to multiple
            people, some on the To List, CC List, BCC List etc?
          </A
 ></DT
 ><DT
 >A.2.10. <A
-HREF="faq.html#AEN1745"
+HREF="faq.html#AEN1760"
 >&#13;     Do users have to have any particular
            type of email application?
          </A
 ></DT
 ><DT
 >A.2.11. <A
-HREF="faq.html#AEN1752"
+HREF="faq.html#AEN1767"
 >&#13;     Does Bugzilla allow data to be imported and exported? If I had outsiders
            write up a bug report using a MS Word bug template, could that template be
            imported into "matching" fields? If I wanted to take the results of a query
@@ -236,28 +236,28 @@ HREF="faq.html#AEN1752"
 ></DT
 ><DT
 >A.2.12. <A
-HREF="faq.html#AEN1760"
+HREF="faq.html#AEN1775"
 >&#13;     Has anyone converted Bugzilla to another language to be used in other
            countries? Is it localizable?
          </A
 ></DT
 ><DT
 >A.2.13. <A
-HREF="faq.html#AEN1765"
+HREF="faq.html#AEN1780"
 >&#13;     Can a user create and save reports? Can they do this in Word format?
            Excel format?
          </A
 ></DT
 ><DT
 >A.2.14. <A
-HREF="faq.html#AEN1770"
+HREF="faq.html#AEN1785"
 >&#13;     Does Bugzilla have the ability to search by word, phrase, compound
            search?
          </A
 ></DT
 ><DT
 >A.2.15. <A
-HREF="faq.html#AEN1775"
+HREF="faq.html#AEN1790"
 >&#13;      Does Bugzilla provide record locking when there is simultaneous access
            to the same bug? Does the second person get a notice that the bug is in use
            or how are they notified?
@@ -265,19 +265,19 @@ HREF="faq.html#AEN1775"
 ></DT
 ><DT
 >A.2.16. <A
-HREF="faq.html#AEN1780"
+HREF="faq.html#AEN1795"
 >&#13;     Are there any backup features provided?
          </A
 ></DT
 ><DT
 >A.2.17. <A
-HREF="faq.html#AEN1786"
+HREF="faq.html#AEN1801"
 >&#13;     Can users be on the system while a backup is in progress?
          </A
 ></DT
 ><DT
 >A.2.18. <A
-HREF="faq.html#AEN1791"
+HREF="faq.html#AEN1806"
 >&#13;     What type of human resources are needed to be on staff to install and
            maintain Bugzilla? Specifically, what type of skills does the person need to
            have? I need to find out if we were to go with Bugzilla, what types of
@@ -287,7 +287,7 @@ HREF="faq.html#AEN1791"
 ></DT
 ><DT
 >A.2.19. <A
-HREF="faq.html#AEN1797"
+HREF="faq.html#AEN1812"
 >&#13;     What time frame are we looking at if we decide to hire people to install
            and maintain the Bugzilla? Is this something that takes hours or weeks to
            install and a couple of hours per week to maintain and customize or is this
@@ -297,7 +297,7 @@ HREF="faq.html#AEN1797"
 ></DT
 ><DT
 >A.2.20. <A
-HREF="faq.html#AEN1802"
+HREF="faq.html#AEN1817"
 >&#13;     Is there any licensing fee or other fees for using Bugzilla? Any
            out-of-pocket cost other than the bodies needed as identified above?
          </A
@@ -313,20 +313,20 @@ HREF="faq.html#faq-security"
 ><DL
 ><DT
 >A.3.1. <A
-HREF="faq.html#AEN1809"
+HREF="faq.html#AEN1824"
 >&#13;     How do I completely disable MySQL security if it's giving me problems
            (I've followed the instructions in the installation section of this guide)?
          </A
 ></DT
 ><DT
 >A.3.2. <A
-HREF="faq.html#AEN1815"
+HREF="faq.html#AEN1830"
 >&#13;     Are there any security problems with Bugzilla?
          </A
 ></DT
 ><DT
 >A.3.3. <A
-HREF="faq.html#AEN1820"
+HREF="faq.html#AEN1835"
 >&#13;     I've implemented the security fixes mentioned in Chris Yeh's security
            advisory of 5/10/2000 advising not to run MySQL as root, and am running into
            problems with MySQL no longer working correctly.
@@ -343,48 +343,48 @@ HREF="faq.html#faq-email"
 ><DL
 ><DT
 >A.4.1. <A
-HREF="faq.html#AEN1827"
+HREF="faq.html#AEN1842"
 >&#13;     I have a user who doesn't want to receive any more email from Bugzilla.
            How do I stop it entirely for this user?
          </A
 ></DT
 ><DT
 >A.4.2. <A
-HREF="faq.html#AEN1832"
+HREF="faq.html#AEN1847"
 >&#13;     I'm evaluating/testing Bugzilla, and don't want it to send email to
            anyone but me. How do I do it?
          </A
 ></DT
 ><DT
 >A.4.3. <A
-HREF="faq.html#AEN1837"
+HREF="faq.html#AEN1852"
 >&#13;     I want whineatnews.pl to whine at something more, or other than, only new
            bugs. How do I do it?
          </A
 ></DT
 ><DT
 >A.4.4. <A
-HREF="faq.html#AEN1843"
+HREF="faq.html#AEN1858"
 >&#13;     I don't like/want to use Procmail to hand mail off to bug_email.pl.
            What alternatives do I have?
          </A
 ></DT
 ><DT
 >A.4.5. <A
-HREF="faq.html#AEN1850"
+HREF="faq.html#AEN1865"
 >&#13;     How do I set up the email interface to submit/change bugs via email?
          </A
 ></DT
 ><DT
 >A.4.6. <A
-HREF="faq.html#AEN1855"
+HREF="faq.html#AEN1870"
 >&#13;     Email takes FOREVER to reach me from Bugzilla -- it's extremely slow.
            What gives?
          </A
 ></DT
 ><DT
 >A.4.7. <A
-HREF="faq.html#AEN1862"
+HREF="faq.html#AEN1877"
 >&#13;      How come email from Bugzilla changes never reaches me?
          </A
 ></DT
@@ -399,39 +399,39 @@ HREF="faq.html#faq-db"
 ><DL
 ><DT
 >A.5.1. <A
-HREF="faq.html#AEN1870"
+HREF="faq.html#AEN1885"
 >&#13;     I've heard Bugzilla can be used with Oracle?
          </A
 ></DT
 ><DT
 >A.5.2. <A
-HREF="faq.html#AEN1875"
+HREF="faq.html#AEN1890"
 >&#13;     I think my database might be corrupted, or contain invalid entries. What
            do I do?
          </A
 ></DT
 ><DT
 >A.5.3. <A
-HREF="faq.html#AEN1883"
+HREF="faq.html#AEN1898"
 >&#13;     I want to manually edit some entries in my database. How?
          </A
 ></DT
 ><DT
 >A.5.4. <A
-HREF="faq.html#AEN1888"
+HREF="faq.html#AEN1903"
 >&#13;     I try to add myself as a user, but Bugzilla always tells me my password is wrong.
          </A
 ></DT
 ><DT
 >A.5.5. <A
-HREF="faq.html#AEN1893"
+HREF="faq.html#AEN1908"
 >&#13;     I think I've set up MySQL permissions correctly, but Bugzilla still can't
            connect.
          </A
 ></DT
 ><DT
 >A.5.6. <A
-HREF="faq.html#AEN1898"
+HREF="faq.html#AEN1913"
 >&#13;     How do I synchronize bug information among multiple different Bugzilla
            databases?
          </A
@@ -447,26 +447,26 @@ HREF="faq.html#faq-nt"
 ><DL
 ><DT
 >A.6.1. <A
-HREF="faq.html#AEN1907"
+HREF="faq.html#AEN1922"
 >&#13;     What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
          </A
 ></DT
 ><DT
 >A.6.2. <A
-HREF="faq.html#AEN1912"
+HREF="faq.html#AEN1927"
 >&#13;     Is there a "Bundle::Bugzilla" equivalent for Win32?
          </A
 ></DT
 ><DT
 >A.6.3. <A
-HREF="faq.html#AEN1917"
+HREF="faq.html#AEN1932"
 >&#13;     CGI's are failing with a "something.cgi is not a valid Windows NT
            application" error. Why?
          </A
 ></DT
 ><DT
 >A.6.4. <A
-HREF="faq.html#AEN1925"
+HREF="faq.html#AEN1940"
 >&#13;     I'm having trouble with the perl modules for NT not being able to talk to
            to the database.
          </A
@@ -482,40 +482,40 @@ HREF="faq.html#faq-use"
 ><DL
 ><DT
 >A.7.1. <A
-HREF="faq.html#AEN1946"
+HREF="faq.html#AEN1961"
 >&#13;     How do I change my user name (email address) in Bugzilla?
          </A
 ></DT
 ><DT
 >A.7.2. <A
-HREF="faq.html#AEN1951"
+HREF="faq.html#AEN1966"
 >&#13;     The query page is very confusing.  Isn't there a simpler way to query?
          </A
 ></DT
 ><DT
 >A.7.3. <A
-HREF="faq.html#AEN1956"
+HREF="faq.html#AEN1971"
 >&#13;     I'm confused by the behavior of the "accept" button in the Show Bug form.
            Why doesn't it assign the bug to me when I accept it?
          </A
 ></DT
 ><DT
 >A.7.4. <A
-HREF="faq.html#AEN1966"
+HREF="faq.html#AEN1981"
 >&#13;     I can't upload anything into the database via the "Create Attachment"
            link.  What am I doing wrong?
          </A
 ></DT
 ><DT
 >A.7.5. <A
-HREF="faq.html#AEN1971"
+HREF="faq.html#AEN1986"
 >&#13;     Email submissions to Bugzilla that have attachments end up asking me to
            save it as a "cgi" file.
          </A
 ></DT
 ><DT
 >A.7.6. <A
-HREF="faq.html#AEN1976"
+HREF="faq.html#AEN1991"
 >&#13;     How do I change a keyword in Bugzilla, once some bugs are using it?
          </A
 ></DT
@@ -530,20 +530,20 @@ HREF="faq.html#faq-hacking"
 ><DL
 ><DT
 >A.8.1. <A
-HREF="faq.html#AEN1983"
+HREF="faq.html#AEN1998"
 >&#13;     What bugs are in Bugzilla right now?
          </A
 ></DT
 ><DT
 >A.8.2. <A
-HREF="faq.html#AEN1992"
+HREF="faq.html#AEN2007"
 >&#13;     How can I change the default priority to a null value?  For instance, have the default
            priority be "---" instead of "P2"?
          </A
 ></DT
 ><DT
 >A.8.3. <A
-HREF="faq.html#AEN1998"
+HREF="faq.html#AEN2013"
 >&#13;     What's the best way to submit patches?  What guidelines should I follow?
          </A
 ></DT
@@ -561,7 +561,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1612"><B
+NAME="AEN1627"><B
 >A.1.1. </B
 >
            Where can I find information about Bugzilla?</P
@@ -587,7 +587,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1618"><B
+NAME="AEN1633"><B
 >A.1.2. </B
 >
            What license is Bugzilla distributed under?
@@ -614,7 +614,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1624"><B
+NAME="AEN1639"><B
 >A.1.3. </B
 >
            How do I get commercial support for Bugzilla?
@@ -649,7 +649,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1631"><B
+NAME="AEN1646"><B
 >A.1.4. </B
 >
            What major companies or projects are currently using Bugzilla
@@ -757,7 +757,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1656"><B
+NAME="AEN1671"><B
 >A.1.5. </B
 >
            Who maintains Bugzilla?
@@ -785,7 +785,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1662"><B
+NAME="AEN1677"><B
 >A.1.6. </B
 >
            How does Bugzilla stack up against other bug-tracking databases?
@@ -821,7 +821,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1668"><B
+NAME="AEN1683"><B
 >A.1.7. </B
 >
            Why doesn't Bugzilla offer this or that feature or compatability
@@ -859,7 +859,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1675"><B
+NAME="AEN1690"><B
 >A.1.8. </B
 >
            Why MySQL?  I'm interested in seeing Bugzilla run on
@@ -883,7 +883,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1680"><B
+NAME="AEN1695"><B
 >A.1.9. </B
 >
            Why do the scripts say "/usr/bonsaitools/bin/perl" instead of
@@ -914,7 +914,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1686"><B
+NAME="AEN1701"><B
 >A.1.10. </B
 >
            Is there an easy way to change the Bugzilla cookie name?
@@ -935,7 +935,7 @@ CLASS="answer"
 CLASS="qandadiv"
 ><H3
 ><A
-NAME="faq-phb">2. Pointy-Haired-Boss Questions</H3
+NAME="faq-phb">2. Managerial Questions</H3
 ><P
 >&#13; <DIV
 CLASS="note"
@@ -958,8 +958,7 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;     The title of this section doesn't mean you're a PHB -- it just means
-           you probably HAVE a PHB who wants to know this :)
+>&#13;     Questions likely to be asked by managers. :-)
          </P
 ></TD
 ></TR
@@ -973,7 +972,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1696"><B
+NAME="AEN1711"><B
 >A.2.1. </B
 >
            Is Bugzilla web-based, or do you have to have specific software or
@@ -997,7 +996,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1701"><B
+NAME="AEN1716"><B
 >A.2.2. </B
 >
            Can Bugzilla integrate with
@@ -1021,7 +1020,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1706"><B
+NAME="AEN1721"><B
 >A.2.3. </B
 >
            Does Bugzilla allow the user to track multiple projects?
@@ -1046,7 +1045,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1711"><B
+NAME="AEN1726"><B
 >A.2.4. </B
 >
            If I am on many projects, and search for all bugs assigned to me, will
@@ -1069,7 +1068,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1716"><B
+NAME="AEN1731"><B
 >A.2.5. </B
 >
            Does Bugzilla allow attachments (text, screenshots, URLs etc)? If yes,
@@ -1096,7 +1095,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1721"><B
+NAME="AEN1736"><B
 >A.2.6. </B
 >
            Does Bugzilla allow us to define our own priorities and levels? Do we
@@ -1131,7 +1130,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1728"><B
+NAME="AEN1743"><B
 >A.2.7. </B
 >
            Does Bugzilla provide any reporting features, metrics, graphs, etc? You
@@ -1149,7 +1148,7 @@ HREF="http://bugzilla.mozilla.org/reports.cgi"
 TARGET="_top"
 >&#13;     http://bugzilla.mozilla.org/reports.cgi</A
 > for basic reporting
-           facilities.
+           and graphing facilities.
          </P
 ><P
 >&#13;     For more advanced reporting, I recommend hooking up a professional
@@ -1167,7 +1166,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1735"><B
+NAME="AEN1750"><B
 >A.2.8. </B
 >
            Is there email notification and if so, what do you see when you get an
@@ -1192,7 +1191,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1740"><B
+NAME="AEN1755"><B
 >A.2.9. </B
 >
            Can email notification be set up to send to multiple
@@ -1215,7 +1214,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1745"><B
+NAME="AEN1760"><B
 >A.2.10. </B
 >
            Do users have to have any particular
@@ -1272,7 +1271,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1752"><B
+NAME="AEN1767"><B
 >A.2.11. </B
 >
            Does Bugzilla allow data to be imported and exported? If I had outsiders
@@ -1317,7 +1316,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1760"><B
+NAME="AEN1775"><B
 >A.2.12. </B
 >
            Has anyone converted Bugzilla to another language to be used in other
@@ -1343,7 +1342,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1765"><B
+NAME="AEN1780"><B
 >A.2.13. </B
 >
            Can a user create and save reports? Can they do this in Word format?
@@ -1366,7 +1365,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1770"><B
+NAME="AEN1785"><B
 >A.2.14. </B
 >
            Does Bugzilla have the ability to search by word, phrase, compound
@@ -1390,7 +1389,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1775"><B
+NAME="AEN1790"><B
 >A.2.15. </B
 >
             Does Bugzilla provide record locking when there is simultaneous access
@@ -1415,7 +1414,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1780"><B
+NAME="AEN1795"><B
 >A.2.16. </B
 >
            Are there any backup features provided?
@@ -1443,7 +1442,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1786"><B
+NAME="AEN1801"><B
 >A.2.17. </B
 >
            Can users be on the system while a backup is in progress?
@@ -1467,7 +1466,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1791"><B
+NAME="AEN1806"><B
 >A.2.18. </B
 >
            What type of human resources are needed to be on staff to install and
@@ -1484,8 +1483,7 @@ CLASS="answer"
 > </B
 >
            If Bugzilla is set up correctly from the start, continuing maintenance
-      needs
-           are minimal and can be completed by unskilled labor.
+      needs are minimal and can be done easily using the web interface.
          </P
 ><P
 >&#13;     Commercial Bug-tracking software typically costs somewhere upwards
@@ -1501,7 +1499,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1797"><B
+NAME="AEN1812"><B
 >A.2.19. </B
 >
            What time frame are we looking at if we decide to hire people to install
@@ -1532,7 +1530,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1802"><B
+NAME="AEN1817"><B
 >A.2.20. </B
 >
            Is there any licensing fee or other fees for using Bugzilla? Any
@@ -1562,7 +1560,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1809"><B
+NAME="AEN1824"><B
 >A.3.1. </B
 >
            How do I completely disable MySQL security if it's giving me problems
@@ -1589,7 +1587,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1815"><B
+NAME="AEN1830"><B
 >A.3.2. </B
 >
            Are there any security problems with Bugzilla?
@@ -1615,7 +1613,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1820"><B
+NAME="AEN1835"><B
 >A.3.3. </B
 >
            I've implemented the security fixes mentioned in Chris Yeh's security
@@ -1647,7 +1645,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1827"><B
+NAME="AEN1842"><B
 >A.4.1. </B
 >
            I have a user who doesn't want to receive any more email from Bugzilla.
@@ -1671,7 +1669,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1832"><B
+NAME="AEN1847"><B
 >A.4.2. </B
 >
            I'm evaluating/testing Bugzilla, and don't want it to send email to
@@ -1695,7 +1693,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1837"><B
+NAME="AEN1852"><B
 >A.4.3. </B
 >
            I want whineatnews.pl to whine at something more, or other than, only new
@@ -1725,7 +1723,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1843"><B
+NAME="AEN1858"><B
 >A.4.4. </B
 >
            I don't like/want to use Procmail to hand mail off to bug_email.pl.
@@ -1741,7 +1739,7 @@ CLASS="answer"
            You can call bug_email.pl directly from your aliases file, with
            an entry like this:
            <A
-NAME="AEN1847"><BLOCKQUOTE
+NAME="AEN1862"><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
 ><P
 >&#13;         bugzilla-daemon: "|/usr/local/bin/bugzilla/contrib/bug_email.pl"
@@ -1760,7 +1758,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1850"><B
+NAME="AEN1865"><B
 >A.4.5. </B
 >
            How do I set up the email interface to submit/change bugs via email?
@@ -1783,7 +1781,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1855"><B
+NAME="AEN1870"><B
 >A.4.6. </B
 >
            Email takes FOREVER to reach me from Bugzilla -- it's extremely slow.
@@ -1816,7 +1814,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1862"><B
+NAME="AEN1877"><B
 >A.4.7. </B
 >
             How come email from Bugzilla changes never reaches me?
@@ -1852,7 +1850,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1870"><B
+NAME="AEN1885"><B
 >A.5.1. </B
 >
            I've heard Bugzilla can be used with Oracle?
@@ -1877,7 +1875,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1875"><B
+NAME="AEN1890"><B
 >A.5.2. </B
 >
            I think my database might be corrupted, or contain invalid entries. What
@@ -1922,7 +1920,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1883"><B
+NAME="AEN1898"><B
 >A.5.3. </B
 >
            I want to manually edit some entries in my database. How?
@@ -1949,7 +1947,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1888"><B
+NAME="AEN1903"><B
 >A.5.4. </B
 >
            I try to add myself as a user, but Bugzilla always tells me my password is wrong.
@@ -1973,7 +1971,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1893"><B
+NAME="AEN1908"><B
 >A.5.5. </B
 >
            I think I've set up MySQL permissions correctly, but Bugzilla still can't
@@ -2000,7 +1998,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1898"><B
+NAME="AEN1913"><B
 >A.5.6. </B
 >
            How do I synchronize bug information among multiple different Bugzilla
@@ -2042,7 +2040,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1907"><B
+NAME="AEN1922"><B
 >A.6.1. </B
 >
            What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
@@ -2065,7 +2063,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1912"><B
+NAME="AEN1927"><B
 >A.6.2. </B
 >
            Is there a "Bundle::Bugzilla" equivalent for Win32?
@@ -2089,7 +2087,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1917"><B
+NAME="AEN1932"><B
 >A.6.3. </B
 >
            CGI's are failing with a "something.cgi is not a valid Windows NT
@@ -2110,7 +2108,7 @@ CLASS="answer"
 ><P
 >&#13;     Microsoft has some advice on this matter, as well:
            <A
-NAME="AEN1922"><BLOCKQUOTE
+NAME="AEN1937"><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
 ><P
 >&#13;         "Set application mappings. In the ISM, map the extension for the script
@@ -2133,7 +2131,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1925"><B
+NAME="AEN1940"><B
 >A.6.4. </B
 >
            I'm having trouble with the perl modules for NT not being able to talk to
@@ -2206,7 +2204,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1946"><B
+NAME="AEN1961"><B
 >A.7.1. </B
 >
            How do I change my user name (email address) in Bugzilla?
@@ -2229,7 +2227,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1951"><B
+NAME="AEN1966"><B
 >A.7.2. </B
 >
            The query page is very confusing.  Isn't there a simpler way to query?
@@ -2253,7 +2251,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1956"><B
+NAME="AEN1971"><B
 >A.7.3. </B
 >
            I'm confused by the behavior of the "accept" button in the Show Bug form.
@@ -2306,7 +2304,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1966"><B
+NAME="AEN1981"><B
 >A.7.4. </B
 >
            I can't upload anything into the database via the "Create Attachment"
@@ -2331,7 +2329,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1971"><B
+NAME="AEN1986"><B
 >A.7.5. </B
 >
            Email submissions to Bugzilla that have attachments end up asking me to
@@ -2356,7 +2354,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1976"><B
+NAME="AEN1991"><B
 >A.7.6. </B
 >
            How do I change a keyword in Bugzilla, once some bugs are using it?
@@ -2386,7 +2384,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1983"><B
+NAME="AEN1998"><B
 >A.8.1. </B
 >
            What bugs are in Bugzilla right now?
@@ -2430,7 +2428,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1992"><B
+NAME="AEN2007"><B
 >A.8.2. </B
 >
            How can I change the default priority to a null value?  For instance, have the default
@@ -2460,7 +2458,7 @@ CLASS="qandaentry"
 CLASS="question"
 ><P
 ><A
-NAME="AEN1998"><B
+NAME="AEN2013"><B
 >A.8.3. </B
 >
            What's the best way to submit patches?  What guidelines should I follow?
index 87a2984a4ad02c7511f43dd914b5445ea51f825d..e830ed58247170b3be6787cd65e0f85b2dfef47a 100644 (file)
@@ -68,7 +68,7 @@ CLASS="glossdiv"
 ><H1
 CLASS="glossdiv"
 ><A
-NAME="AEN2146">0-9, high ascii</H1
+NAME="AEN2161">0-9, high ascii</H1
 ><DL
 ><DT
 ><B
index 79bc1686a9bf236f1845641529aef1cc4bdc3435..c20131bd4f9e56b4c3e1d4c124ba038dbe848041 100644 (file)
@@ -118,6 +118,10 @@ BORDER="0"
 ></TR
 ><TR
 ><TD
+>george@example.com</TD
+></TR
+><TR
+><TD
 >ftp://ftp.mozilla.org</TD
 ></TR
 ><TR
@@ -218,7 +222,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN462">3.2.5. Filing Bugs</H2
+NAME="AEN463">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
index fc6551317511351ce05ca25e4bac1071be51309a..4f78e475317cdd83f99ce6115da32e5160ac5c71 100644 (file)
@@ -390,19 +390,19 @@ CLASS="LOT"
 ></DT
 ><DT
 >4-1. <A
-HREF="win32.html#AEN979"
+HREF="win32.html#AEN984"
 >Installing ActivePerl ppd Modules on Microsoft
             Windows</A
 ></DT
 ><DT
 >4-2. <A
-HREF="win32.html#AEN992"
+HREF="win32.html#AEN997"
 >Installing OpenInteract ppd Modules manually on Microsoft
             Windows</A
 ></DT
 ><DT
 >4-3. <A
-HREF="win32.html#AEN1174"
+HREF="win32.html#AEN1179"
 >Removing encrypt() for Windows NT Bugzilla version 2.12 or
           earlier</A
 ></DT
index 257917581a20307e882fef86931425c6ee029c50..34cad2efb38000cfad1647561605192bce053778 100644 (file)
@@ -86,12 +86,12 @@ HREF="stepbystep.html"
 ><DL
 ><DT
 >4.1.1. <A
-HREF="stepbystep.html#AEN491"
+HREF="stepbystep.html#AEN492"
 >Introduction</A
 ></DT
 ><DT
 >4.1.2. <A
-HREF="stepbystep.html#AEN495"
+HREF="stepbystep.html#AEN496"
 >Package List</A
 ></DT
 ><DT
@@ -111,22 +111,22 @@ HREF="stepbystep.html#perl-modules"
 ></DT
 ><DT
 >4.1.6. <A
-HREF="stepbystep.html#AEN665"
+HREF="stepbystep.html#AEN669"
 >HTTP Server</A
 ></DT
 ><DT
 >4.1.7. <A
-HREF="stepbystep.html#AEN684"
+HREF="stepbystep.html#AEN688"
 >Bugzilla</A
 ></DT
 ><DT
 >4.1.8. <A
-HREF="stepbystep.html#AEN701"
+HREF="stepbystep.html#AEN705"
 >Setting Up the MySQL Database</A
 ></DT
 ><DT
 >4.1.9. <A
-HREF="stepbystep.html#AEN736"
+HREF="stepbystep.html#AEN741"
 ><TT
 CLASS="filename"
 >checksetup.pl</TT
@@ -134,12 +134,12 @@ CLASS="filename"
 ></DT
 ><DT
 >4.1.10. <A
-HREF="stepbystep.html#AEN768"
+HREF="stepbystep.html#AEN773"
 >Securing MySQL</A
 ></DT
 ><DT
 >4.1.11. <A
-HREF="stepbystep.html#AEN834"
+HREF="stepbystep.html#AEN839"
 >Configuring Bugzilla</A
 ></DT
 ></DL
@@ -153,17 +153,17 @@ HREF="extraconfig.html"
 ><DL
 ><DT
 >4.2.1. <A
-HREF="extraconfig.html#AEN840"
+HREF="extraconfig.html#AEN845"
 >Dependency Charts</A
 ></DT
 ><DT
 >4.2.2. <A
-HREF="extraconfig.html#AEN855"
+HREF="extraconfig.html#AEN860"
 >Bug Graphs</A
 ></DT
 ><DT
 >4.2.3. <A
-HREF="extraconfig.html#AEN868"
+HREF="extraconfig.html#AEN873"
 >The Whining Cron</A
 ></DT
 ><DT
@@ -231,7 +231,7 @@ HREF="troubleshooting.html"
 ><DL
 ><DT
 >4.5.1. <A
-HREF="troubleshooting.html#AEN1208"
+HREF="troubleshooting.html#AEN1213"
 >DBD::Sponge::db prepare failed</A
 ></DT
 ><DT
index 6074561448133df609d933cede4dd896f616607a..6d4de5a218399f1d612f4ebdaef324750437baba 100644 (file)
@@ -79,7 +79,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN491">4.1.1. Introduction</H2
+NAME="AEN492">4.1.1. Introduction</H2
 ><P
 >Bugzilla has been successfully installed under Solaris, Linux,
       and Win32. Win32 is not yet officially supported, but many people
@@ -97,7 +97,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN495">4.1.2. Package List</H2
+NAME="AEN496">4.1.2. Package List</H2
 ><DIV
 CLASS="note"
 ><P
@@ -822,7 +822,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN641">4.1.5.1. DBI</H3
+NAME="AEN642">4.1.5.1. DBI</H3
 ><P
 >The DBI module is a generic Perl module used the
       MySQL-related modules. As long as your Perl installation was done
@@ -835,7 +835,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN644">4.1.5.2. Data::Dumper</H3
+NAME="AEN645">4.1.5.2. Data::Dumper</H3
 ><P
 >The Data::Dumper module provides data structure persistence for
       Perl (similar to Java's serialization). It comes with later
@@ -847,7 +847,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN647">4.1.5.3. MySQL-related modules</H3
+NAME="AEN648">4.1.5.3. MySQL-related modules</H3
 ><P
 >The Perl/MySQL interface requires a few mutually-dependent Perl
       modules. These modules are grouped together into the the
@@ -871,7 +871,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN652">4.1.5.4. TimeDate modules</H3
+NAME="AEN653">4.1.5.4. TimeDate modules</H3
 ><P
 >Many of the more common date/time/calendar related Perl modules
       have been grouped into a bundle similar to the MySQL modules bundle.
@@ -885,7 +885,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN655">4.1.5.5. GD (optional)</H3
+NAME="AEN656">4.1.5.5. GD (optional)</H3
 ><P
 >The GD library was written by Thomas Boutell a long while ago to
       programatically generate images in C. Since then it's become the
@@ -938,7 +938,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN662">4.1.5.6. Chart::Base (optional)</H3
+NAME="AEN663">4.1.5.6. Chart::Base (optional)</H3
 ><P
 >The Chart module provides Bugzilla with on-the-fly charting
       abilities. It can be installed in the usual fashion after it has been
@@ -946,13 +946,28 @@ NAME="AEN662">4.1.5.6. Chart::Base (optional)</H3
       Note that earlier versions that 0.99c used GIFs, which are no longer
       supported by the latest versions of GD.</P
 ></DIV
+><DIV
+CLASS="section"
+><H3
+CLASS="section"
+><A
+NAME="AEN666">4.1.5.7. Template Toolkit</H3
+><P
+>When you install Template Toolkit, you'll get asked various
+      questions about features to enable. The defaults are fine, except
+      that it is recommended you use the high speed XS Stash of the Template
+      Toolkit, in order to achieve best performance.  However, there are
+      known problems with XS Stash and Perl 5.005_02 and lower.  If you
+      wish to use these older versions of Perl, please use the regular
+      stash.</P
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN665">4.1.6. HTTP Server</H2
+NAME="AEN669">4.1.6. HTTP Server</H2
 ><P
 >You have a freedom of choice here - Apache, Netscape or any other
       server on UNIX would do. You can run the web server on a
@@ -1126,7 +1141,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN684">4.1.7. Bugzilla</H2
+NAME="AEN688">4.1.7. Bugzilla</H2
 ><P
 >You should untar the Bugzilla files into a directory that you're
       willing to make writable by the default web server user (probably 
@@ -1237,7 +1252,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN701">4.1.8. Setting Up the MySQL Database</H2
+NAME="AEN705">4.1.8. Setting Up the MySQL Database</H2
 ><P
 >After you've gotten all the software installed and working you're
       ready to start preparing the database for its life as the back end to
@@ -1327,7 +1342,10 @@ CLASS="command"
       and enter &#60;new_password&#62;. Remember that MySQL user names have
       nothing to do with Unix user names (login names).</P
 ><P
->Next, we create the 
+>Next, we use an SQL <B
+CLASS="command"
+>GRANT</B
+> command to create a 
       <SPAN
 CLASS="QUOTE"
 >"bugs"</SPAN
@@ -1405,7 +1423,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN736">4.1.9. <TT
+NAME="AEN741">4.1.9. <TT
 CLASS="filename"
 >checksetup.pl</TT
 ></H2
@@ -1556,7 +1574,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN768">4.1.10. Securing MySQL</H2
+NAME="AEN773">4.1.10. Securing MySQL</H2
 ><P
 >If you followed the installation instructions for setting up your
       "bugs" and "root" user in MySQL, much of this should not apply to you.
@@ -1832,7 +1850,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN834">4.1.11. Configuring Bugzilla</H2
+NAME="AEN839">4.1.11. Configuring Bugzilla</H2
 ><P
 >&#13;      You should run through the parameters on the Edit Parameters page
       (link in the footer) and set them all to appropriate values. 
index a34765a5fd5ba33e215522228820645980465f9f..10d8b076932b2c273d0eb0e78d2056bf6c69c77b 100644 (file)
@@ -83,7 +83,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1208">4.5.1. DBD::Sponge::db prepare failed</H2
+NAME="AEN1213">4.5.1. DBD::Sponge::db prepare failed</H2
 ><P
 >&#13;        The following error message may appear due to a bug in DBD::mysql
         (over which the Bugzilla team have no control):
index ab9ec0dd676532158c2a61e042c85059cc16eef3..445154030eed17dc00a2b7e8003961d629c80264 100644 (file)
@@ -76,20 +76,28 @@ CLASS="section"
 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. 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
+    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, you can type 
-    <TT
+    later, and have cvs installed, you can type <TT
 CLASS="filename"
 >cvs -z3 update</TT
 >, 
-    and resolve conflicts if there are any.</P
+    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
->Because the developers of Bugzilla are constantly adding new
+>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
index 7907bff9e732cf45a697e39a07eccb98f5e3d2fe..0d1231589ebc12ebfa63d8722c3bffb2d80ba911 100644 (file)
@@ -140,7 +140,7 @@ HREF="hintsandtips.html#attachments"
 ></DT
 ><DT
 >3.2.5. <A
-HREF="hintsandtips.html#AEN462"
+HREF="hintsandtips.html#AEN463"
 >Filing Bugs</A
 ></DT
 ></DL
index 2432afb057c88948db777200562f7e8249655679..00b6b23ab06f4a2701c0007abed0debf90fe4028 100644 (file)
@@ -337,7 +337,7 @@ CLASS="command"
 ><DIV
 CLASS="example"
 ><A
-NAME="AEN979"><P
+NAME="AEN984"><P
 ><B
 >Example 4-1. Installing ActivePerl ppd Modules on Microsoft
             Windows</B
@@ -395,7 +395,7 @@ TARGET="_top"
           <DIV
 CLASS="example"
 ><A
-NAME="AEN992"><P
+NAME="AEN997"><P
 ><B
 >Example 4-2. Installing OpenInteract ppd Modules manually on Microsoft
             Windows</B
@@ -1533,7 +1533,7 @@ VALIGN="TOP"
 ><P
 >From Andrew Pearson: 
         <A
-NAME="AEN1162"><BLOCKQUOTE
+NAME="AEN1167"><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
 ><P
 >You can make Bugzilla work with Personal Web Server for
@@ -1616,7 +1616,7 @@ VALIGN="TOP"
         <DIV
 CLASS="example"
 ><A
-NAME="AEN1174"><P
+NAME="AEN1179"><P
 ><B
 >Example 4-3. Removing encrypt() for Windows NT Bugzilla version 2.12 or
           earlier</B