glossary.xml 18.6 KB
Newer Older
1
<!-- <!DOCTYPE glossary PUBLIC "-//OASIS//DTD DocBook V4.1//EN" > -->
2 3 4 5
<glossary id="glossary">
  <glossdiv>
    <title>0-9, high ascii</title>

6
    <glossentry id="gloss-htaccess">
7 8 9 10 11 12 13 14 15 16 17
      <glossterm>.htaccess</glossterm>

      <glossdef>
        <para>Apache web server, and other NCSA-compliant web servers,
        observe the convention of using files in directories called 
        <filename>.htaccess</filename>

        to restrict access to certain files. In Bugzilla, they are used
        to keep secret files which would otherwise
        compromise your installation - e.g. the 
        <filename>localconfig</filename>
18
        file contains the password to your database.
19 20 21 22 23 24 25 26
        curious.</para>
      </glossdef>
    </glossentry>
  </glossdiv>

  <glossdiv id="gloss-a">
    <title>A</title>

27
    <glossentry id="gloss-apache">
28 29 30 31
      <glossterm>Apache</glossterm>

      <glossdef>
        <para>In this context, Apache is the web server most commonly used
32
        for serving up Bugzilla 
33 34 35 36 37 38 39
        pages. Contrary to popular belief, the apache web server has nothing
        to do with the ancient and noble Native American tribe, but instead
        derived its name from the fact that it was 
        <quote>a patchy</quote>
        version of the original 
        <acronym>NCSA</acronym>
        world-wide-web server.</para>
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

        <variablelist>
          <title>Useful Directives when configuring Bugzilla</title>

          <varlistentry>
            <term><computeroutput><ulink url="http://httpd.apache.org/docs-2.0/mod/core.html#addhandler">AddHandler</ulink></computeroutput></term>
            <listitem>
              <para>Tell Apache that it's OK to run CGI scripts.</para>
            </listitem>
          </varlistentry>
          <varlistentry>
            <term><computeroutput><ulink url="http://httpd.apache.org/docs-2.0/mod/core.html#allowoverride">AllowOverride</ulink></computeroutput></term>
            <term><computeroutput><ulink url="http://httpd.apache.org/docs-2.0/mod/core.html#options">Options</ulink></computeroutput></term>
            <listitem>
              <para>These directives are used to tell Apache many things about
              the directory they apply to. For Bugzilla's purposes, we need
              them to allow script execution and <filename>.htaccess</filename>
              overrides.
              </para>
            </listitem>
          </varlistentry>
          <varlistentry>
            <term><computeroutput><ulink url="http://httpd.apache.org/docs-2.0/mod/mod_dir.html#directoryindex">DirectoryIndex</ulink></computeroutput></term>
            <listitem>
              <para>Used to tell Apache what files are indexes. If you can
              not add <filename>index.cgi</filename> to the list of valid files,
              you'll need to set <computeroutput>$index_html</computeroutput> to
              1 in <filename>localconfig</filename> so
              <command>./checksetup.pl</command> will create an
              <filename>index.html</filename> that redirects to
              <filename>index.cgi</filename>.
              </para>
            </listitem>
          </varlistentry>
          <varlistentry>
            <term><computeroutput><ulink url="http://httpd.apache.org/docs-2.0/mod/core.html#scriptinterpretersource">ScriptInterpreterSource</ulink></computeroutput></term>
            <listitem>
              <para>Used when running Apache on windows so the shebang line
              doesn't have to be changed in every Bugzilla script.
              </para>
            </listitem>
          </varlistentry>
        </variablelist>

        <para>For more information about how to configure Apache for Bugzilla,
        see <xref linkend="http-apache"/>.
        </para>
87 88 89 90 91 92 93 94 95 96 97 98
      </glossdef>
    </glossentry>
  </glossdiv>

  <glossdiv id="gloss-b">
    <title>B</title>

    <glossentry>
      <glossterm>Bug</glossterm>

      <glossdef>
        <para>A 
99
        <quote>bug</quote>
100 101 102 103 104 105 106 107 108 109 110 111 112 113

        in Bugzilla refers to an issue entered into the database which has an
        associated number, assignments, comments, etc. Some also refer to a 
        <quote>tickets</quote>
        or 
        <quote>issues</quote>; 
        in the context of Bugzilla, they are synonymous.</para>
      </glossdef>
    </glossentry>

    <glossentry>
      <glossterm>Bug Number</glossterm>

      <glossdef>
114 115
        <para>Each Bugzilla bug is assigned a number that uniquely identifies
        that bug. The bug associated with a bug number can be pulled up via a
116 117 118 119 120
        query, or easily from the very front page by typing the number in the
        "Find" box.</para>
      </glossdef>
    </glossentry>

121
    <glossentry id="gloss-bugzilla">
122 123 124
      <glossterm>Bugzilla</glossterm>

      <glossdef>
125 126
        <para>Bugzilla is the world-leading free software bug tracking system.
        </para>
127 128 129 130 131
      </glossdef>
    </glossentry>
  </glossdiv>

  <glossdiv id="gloss-c">
132
    <title>C</title>
133

134 135 136 137 138 139 140 141 142 143 144
    <glossentry id="gloss-cgi">
      <glossterm>Common Gateway Interface</glossterm>
      <acronym>CGI</acronym>
      <glossdef>
        <para><acronym>CGI</acronym> is an acronym for Common Gateway Interface. This is
        a standard for interfacing an external application with a web server. Bugzilla
        is an example of a <acronym>CGI</acronym> application.
        </para>
      </glossdef>
    </glossentry>

145 146 147 148 149 150 151 152 153 154 155 156
    <glossentry id="gloss-component">
      <glossterm>Component</glossterm>

      <glossdef>
        <para>A Component is a subsection of a Product. It should be a narrow
        category, tailored to your organization. All Products must contain at
        least one Component (and, as a matter of fact, creating a Product
        with no Components will create an error in Bugzilla).</para>
      </glossdef>
    </glossentry>

    <glossentry id="gloss-cpan">
157 158
      <glossterm>Comprehensive Perl Archive Network</glossterm>
      <acronym>CPAN</acronym>
159

160
      <!-- TODO: Rewrite def for CPAN -->
161 162 163 164 165
      <glossdef>
        <para>
        <acronym>CPAN</acronym>

        stands for the 
166 167
        <quote>Comprehensive Perl Archive Network</quote>. 
        CPAN maintains a large number of extremely useful 
168
        <glossterm>Perl</glossterm>
169 170
        modules - encapsulated chunks of code for performing a
        particular task.</para>
171 172
      </glossdef>
    </glossentry>
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192

    <glossentry id="gloss-contrib">
      <glossterm><filename class="directory">contrib</filename></glossterm>

      <glossdef>
        <para>The <filename class="directory">contrib</filename> directory is
        a location to put scripts that have been contributed to Bugzilla but
        are not a part of the official distribution. These scripts are written
        by third parties and may be in languages other than perl. For those
        that are in perl, there may be additional modules or other requirements
        than those of the offical distribution.
        <note>
          <para>Scripts in the <filename class="directory">contrib</filename>
          directory are not offically supported by the Bugzilla team and may
          break in between versions.
          </para>
        </note>
        </para>
      </glossdef>
    </glossentry>
193 194 195 196 197
  </glossdiv>

  <glossdiv id="gloss-d">
    <title>D</title>

198
    <glossentry id="gloss-daemon">
199 200 201 202 203 204 205 206 207 208 209 210
      <glossterm>daemon</glossterm>

      <glossdef>
        <para>A daemon is a computer program which runs in the background. In
        general, most daemons are started at boot time via System V init
        scripts, or through RC scripts on BSD-based systems. 
        <glossterm>mysqld</glossterm>, 
        the MySQL server, and 
        <glossterm>apache</glossterm>, 
        a web server, are generally run as daemons.</para>
      </glossdef>
    </glossentry>
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
    
    <glossentry id="gloss-dos">
      <glossterm>DOS Attack</glossterm>
      
      <glossdef>
        <para>A DOS, or Denial of Service attack, is when a user attempts to
        deny access to a web server by repeatadly accessing a page or sending
        malformed requests to a webserver. This can be effectively prevented
        by using <filename>mod_throttle</filename> as described in
        <xref linkend="security-webserver-mod-throttle"/>. A D-DOS, or
        Distributed Denial of Service attack, is when these requests come
        from multiple sources at the same time. Unfortunately, these are much
        more difficult to defend against.
        </para>
      </glossdef>
    </glossentry>
    
228 229 230
  </glossdiv>

  <glossdiv id="gloss-g">
231
    <title>G</title>
232

233
    <glossentry id="gloss-groups">
234 235 236 237 238 239 240
      <glossterm>Groups</glossterm>

      <glossdef>
        <para>The word 
        <quote>Groups</quote>

        has a very special meaning to Bugzilla. Bugzilla's main security
241 242
        mechanism comes by placing users in groups, and assigning those
        groups certain privileges to view bugs in particular
243 244 245 246 247 248 249 250
        <glossterm>Products</glossterm>
        in the 
        <glossterm>Bugzilla</glossterm>
        database.</para>
      </glossdef>
    </glossentry>
  </glossdiv>

251 252 253 254 255 256 257 258 259 260 261 262
  <glossdiv id="gloss-j">
    <title>J</title>

    <glossentry id="gloss-javascript">
      <glossterm>JavaScript</glossterm>
      <glossdef>
        <para>JavaScript is cool, we should talk about it.
        </para>
      </glossdef>
    </glossentry>
  </glossdiv>

263 264 265
  <glossdiv id="gloss-m">
    <title>M</title>

266 267 268 269 270 271
    <glossentry id="gloss-mta">
      <glossterm>Message Transport Agent</glossterm>
      <acronym>MTA</acronym>

      <glossdef>
        <para>A Message Transport Agent is used to control the flow of email
272 273 274 275 276
        on a system. The <ulink url="http://search.cpan.org/dist/MailTools/Mail/Mailer.pm">Mail::Mailer</ulink>
        Perl module, which Bugzilla uses to send email, can be configured to
        use many different underlying implementations for actually sending the
        mail using the <option>mail_delivery_method</option> parameter.
        Implementations other than <literal>sendmail</literal> require that the
277 278 279 280 281
        <option>sendmailnow</option> param be set to <literal>on</literal>.
        </para>
      </glossdef>
    </glossentry>

282 283
    <glossentry id="gloss-mysql">
      <glossterm>MySQL</glossterm>
284 285

      <glossdef>
286 287 288 289 290 291
        <para>MySQL is currently the required
        <glossterm linkend="gloss-rdbms">RDBMS</glossterm> for Bugzilla. MySQL
        can be downloaded from <ulink url="http://www.mysql.com"/>. While you
        should familiarize yourself with all of the documentation, some high
        points are:
        </para>
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
        <variablelist>
          <varlistentry>
            <term><ulink url="http://www.mysql.com/doc/en/Backup.html">Backup</ulink></term>
            <listitem>
              <para>Methods for backing up your Bugzilla database.
              </para>
            </listitem>
          </varlistentry>
          <varlistentry>
            <term><ulink url="http://www.mysql.com/doc/en/Option_files.html">Option Files</ulink></term>
            <listitem>
              <para>Information about how to configure MySQL using
              <filename>my.cnf</filename>.
              </para>
            </listitem>
          </varlistentry>
          <varlistentry>
            <term><ulink url="http://www.mysql.com/doc/en/Privilege_system.html">Privilege System</ulink></term>
            <listitem>
              <para>Much more detailed information about the suggestions in
              <xref linkend="security-mysql"/>.
              </para>
            </listitem>
          </varlistentry>
        </variablelist>
317 318 319 320 321 322 323
      </glossdef>
    </glossentry>
  </glossdiv>

  <glossdiv id="gloss-p">
    <title>P</title>

324 325 326 327 328 329 330 331 332 333
    <glossentry id="gloss-ppm">
      <glossterm>Perl Package Manager</glossterm>
      <acronym>PPM</acronym>

      <glossdef>
        <para><ulink url="http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/"/>
        </para>
      </glossdef>
    </glossentry>

334 335 336 337
    <glossentry>
      <glossterm id="gloss-product">Product</glossterm>

      <glossdef>
338 339 340
        <para>A Product is a broad category of types of bugs, normally
        representing a single piece of software or entity. In general,
        there are several Components to a Product. A Product may define a
341
        group (used for security) for all bugs entered into
342
        its Components.</para>
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
      </glossdef>
    </glossentry>

    <glossentry>
      <glossterm>Perl</glossterm>

      <glossdef>
        <para>First written by Larry Wall, Perl is a remarkable program
        language. It has the benefits of the flexibility of an interpreted
        scripting language (such as shell script), combined with the speed
        and power of a compiled language, such as C. 
        <glossterm>Bugzilla</glossterm>

        is maintained in Perl.</para>
      </glossdef>
    </glossentry>
  </glossdiv>

  <glossdiv id="gloss-q">
    <title>Q</title>

    <glossentry>
      <glossterm>QA</glossterm>

      <glossdef>
        <para>
        <quote>QA</quote>, 
        <quote>Q/A</quote>, and 
        <quote>Q.A.</quote>
        are short for 
        <quote>Quality Assurance</quote>. 
        In most large software development organizations, there is a team
        devoted to ensuring the product meets minimum standards before
        shipping. This team will also generally want to track the progress of
        bugs over their life cycle, thus the need for the 
        <quote>QA Contact</quote>

380
        field in a bug.</para>
381 382 383 384
      </glossdef>
    </glossentry>
  </glossdiv>

385 386 387 388 389 390 391 392 393 394 395 396 397
  <glossdiv id="gloss-r">
    <title>R</title>

    <glossentry id="gloss-rdbms">
      <glossterm>Relational DataBase Managment System</glossterm>
      <acronym>RDBMS</acronym>

      <glossdef>
        <para>A relational database management system is a database system
        that stores information in tables that are related to each other.
        </para>
      </glossdef>
    </glossentry>
398 399 400 401 402 403 404 405 406 407 408

    <glossentry id="gloss-regexp">
      <glossterm>Regular Expression</glossterm>
      <acronym>regexp</acronym>

      <glossdef>
          <para>A regular expression is an expression used for pattern matching.
              <ulink url="http://perldoc.com/perl5.6/pod/perlre.html#Regular-Expressions">Documentation</ulink>
        </para>
      </glossdef>
    </glossentry>
409 410
  </glossdiv>

411 412 413
  <glossdiv id="gloss-s">
    <title>S</title>

414 415 416 417 418 419 420 421 422 423 424 425 426
    <glossentry id="gloss-service">
      <glossterm>Service</glossterm>
      
      <glossdef>
        <para>In Windows NT environment, a boot-time background application
        is refered to as a service. These are generally managed through the
        control pannel while logged in as an account with
        <quote>Administrator</quote> level capabilities. For more
        information, consult your Windows manual or the MSKB.
        </para>
      </glossdef>
    </glossentry>

427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
    <glossentry>
      <glossterm>
        <acronym>SGML</acronym>
      </glossterm>

      <glossdef>
        <para>
        <acronym>SGML</acronym>

        stands for 
        <quote>Standard Generalized Markup Language</quote>. 
        Created in the 1980's to provide an extensible means to maintain
        documentation based upon content instead of presentation, 
        <acronym>SGML</acronym>

        has withstood the test of time as a robust, powerful language. 
        <glossterm>
          <acronym>XML</acronym>
        </glossterm>

        is the 
        <quote>baby brother</quote>

        of SGML; any valid 
        <acronym>XML</acronym>

        document it, by definition, a valid 
        <acronym>SGML</acronym>

        document. The document you are reading is written and maintained in 
        <acronym>SGML</acronym>, 
        and is also valid 
        <acronym>XML</acronym>

        if you modify the Document Type Definition.</para>
      </glossdef>
    </glossentry>
  </glossdiv>

  <glossdiv id="gloss-t">
    <title>T</title>

    <glossentry id="gloss-target-milestone" xreflabel="Target Milestone">
      <glossterm>Target Milestone</glossterm>

      <glossdef>
        <para>Target Milestones are Product goals. They are configurable on a
        per-Product basis. Most software development houses have a concept of
        
        <quote>milestones</quote>

        where the people funding a project expect certain functionality on
        certain dates. Bugzilla facilitates meeting these milestones by
        giving you the ability to declare by which milestone a bug will be
        fixed, or an enhancement will be implemented.</para>
      </glossdef>
    </glossentry>
484 485 486 487 488 489 490 491 492 493 494 495

    <glossentry id="gloss-tcl">
      <glossterm>Tool Command Language</glossterm>
      <acronym>TCL</acronym>
      <glossdef>
        <para>TCL is an open source scripting language available for Windows,
        Macintosh, and Unix based systems. Bugzilla 1.0 was written in TCL but
        never released. The first release of Bugzilla was 2.0, which was when
        it was ported to perl.
        </para>
      </glossdef>
    </glossentry>
496 497 498 499 500
  </glossdiv>

  <glossdiv id="gloss-z">
    <title>Z</title>

501
    <glossentry id="gloss-zarro">
502 503 504
      <glossterm>Zarro Boogs Found</glossterm>

      <glossdef>
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
        <para>This is just a goofy way of saying that there were no bugs
        found matching your query. When asked to explain this message,
        Terry had the following to say:
        </para>

        <blockquote>
          <attribution>Terry Weissman</attribution>
          <para>I've been asked to explain this ... way back when, when
          Netscape released version 4.0 of its browser, we had a release
          party.  Naturally, there had been a big push to try and fix every
          known bug before the release. Naturally, that hadn't actually
          happened.  (This is not unique to Netscape or to 4.0; the same thing
          has happened with every software project I've ever seen.)  Anyway,
          at the release party, T-shirts were handed out that said something
          like "Netscape 4.0: Zarro Boogs". Just like the software, the
          T-shirt had no known bugs.  Uh-huh.
          </para>

          <para>So, when you query for a list of bugs, and it gets no results,
          you can think of this as a friendly reminder.  Of *course* there are
          bugs matching your query, they just aren't in the bugsystem yet...
          </para>
        </blockquote>

529 530 531 532
      </glossdef>
    </glossentry>
  </glossdiv>
</glossary>
533 534 535 536 537

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-always-quote-attributes:t
538 539
sgml-auto-insert-required-elements:t
sgml-balanced-tag-edit:t
540
sgml-exposed-tags:nil
541 542 543
sgml-general-insert-case:lower
sgml-indent-data:t
sgml-indent-step:2
544 545
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
546 547 548
sgml-minimize-attributes:nil
sgml-namecase-general:t
sgml-omittag:t
549
sgml-parent-document:("Bugzilla-Guide.xml" "book" "chapter")
550 551
sgml-shorttag:t
sgml-tag-region-if-active:t
552 553
End:
-->