patches.sgml 15.7 KB
Newer Older
1
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
2

3
<appendix id="patches" xreflabel="Useful Patches and Utilities for Bugzilla">
4 5
  <title>Useful Patches and Utilities for Bugzilla</title>		

6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  <para>Are you looking for a way to put your Bugzilla into overdrive?  Catch some of the niftiest tricks here in this section.</para>

  <section id="rewrite" xreflabel="Apache mod_rewrite magic">
    <title>Apache <filename>mod_rewrite</filename> magic</title>
    <para>Apache's <filename>mod_rewrite</filename> module lets you do some truly amazing things with URL rewriting.  Here are a couple of examples of what you can do.</para>
    <orderedlist>
      <listitem>
	<para>
	  Make it so if someone types
	  <computeroutput>http://www.foo.com/12345</computeroutput>,
	  Bugzilla spits back
	  http://www.foo.com/show_bug.cgi?id=12345. Try setting up
	  your VirtualHost section for Bugzilla with a rule like
	  this:</para>
	<programlisting>
<![CDATA[
<VirtualHost 12.34.56.78>
RewriteEngine On
RewriteRule ^/([0-9]+)$ http://foo.bar.com/show_bug.cgi?id=$1 [L,R]
</VirtualHost>
]]>
	</programlisting>

      </listitem>
      <listitem>
	<para>There are many, many more things you can do with
	  mod_rewrite.  As time goes on, I will include many more in
	  the Guide.  For now, though, please refer to the mod_rewrite
	  documentation at <ulink
				  url="http://www.apache.org">http://www.apache.org</ulink></para>
      </listitem>
    </orderedlist>
  </section>

40
<section id="setperl" xreflabel="The setperl.csh Utility">
41
    <title>The setperl.csh Utility</title>
42 43 44 45
    <para>	 You can use the "setperl.csh" utility to quickly and
      easily change the path to perl on all your Bugzilla files. This
      is a C-shell script; if you do not have "csh" or "tcsh" in the
      search path on your system, it will not work!
46 47 48 49
    </para>	
    <procedure>
      <step>
	<para>
50
	  Download the "setperl.csh" utility to your Bugzilla
51 52 53 54 55 56 57 58 59 60 61 62 63
	  directory and make it executable.
	</para>
	<substeps>
	  <step>
	    <para>
	      <computeroutput>
		<prompt>bash#</prompt>
		<command>cd /your/path/to/bugzilla</command>
	      </computeroutput>
	    </para>
	  </step>
	  <step>
	  <para>
64 65 66
	      <computeroutput> <prompt>bash#</prompt> <command>wget -O
		  setperl.csh
		  'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=10795'</command> </computeroutput>
67 68 69 70
	    </para>
	  </step>
	<step>
	    <para>
71 72
	      <computeroutput> <prompt>bash#</prompt> <command>chmod
		  u+x setperl.csh</command> </computeroutput>
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
	    </para>
	  </step>
      </substeps>
      </step>
      <step>
	<para>
	  Prepare (and fix) Bugzilla file permissions.
	</para>
	<substeps>
	  <step>
	    <para>
	      <computeroutput>
		<prompt>bash#</prompt>
		<command>chmod u+w *</command>
	      </computeroutput>
	    </para>
	  </step>
	  <step>
	  <para>
92 93
	      <computeroutput> <prompt>bash#</prompt> <command>chmod
		  u+x duplicates.cgi</command> </computeroutput>
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
	    </para>
	  </step>
	  <step>
	    <para>
	      <computeroutput>
		<prompt>bash#</prompt>
		<command>chmod a-x bug_status.html</command>
	      </computeroutput>
	    </para>
	  </step>
	</substeps>
      </step>
      <step>
	<para>
	  Run the script:
	</para>
	<para>
111
	  <computeroutput> <prompt>bash#</prompt>
112
	    <command>./setperl.csh /your/path/to/perl</command>
113
	  </computeroutput>
114 115 116
<example>
	    <title>Using Setperl to set your perl path</title>
	    <para>
117 118
	      <computeroutput> <prompt>bash#</prompt>
		<command>./setperl.csh /usr/bin/perl</command>
119 120 121
	      </computeroutput>
            </para>
	  </example>
122 123 124 125 126 127 128 129
	</para>
      </step>
    </procedure>
  </section>

  <section id="cmdline">
    <title>Command-line Bugzilla Queries</title>
    <para>
130 131
      Users can query Bugzilla from the command line using this suite
      of utilities.
132 133 134
    </para>
    <para>
      The query.conf file contains the mapping from options to field
135 136 137 138
      names and comparison types.  Quoted option names are "grepped"
      for, so it should be easy to edit this file.  Comments (#) have
      no effect; you must make sure these lines do not contain any
      quoted "option"
139 140
    </para>
    <para>
141 142 143 144 145 146
      buglist is a shell script which submits a Bugzilla query and
      writes the resulting HTML page to stdout.  It supports both
      short options, (such as "-Afoo" or "-Rbar") and long options
      (such as "--assignedto=foo" or "--reporter=bar").  If the first
      character of an option is not "-", it is treated as if it were
      prefixed with "--default=".
147 148 149 150 151 152 153 154 155 156 157
    </para>
    <para>
      The columlist is taken from the COLUMNLIST environment variable.
      This is equivalent to the "Change Columns" option when you list
      bugs in buglist.cgi.  If you have already used Bugzilla, use
      <command>grep COLUMLIST ~/.netscape/cookies</command> to see
      your current COLUMNLIST setting.
    </para>
    <para>
      bugs is a simple shell script which calls buglist and extracts
      the bug numbers from the output.  Adding the prefix
158 159 160 161
      "http://bugzilla.mozilla.org/buglist.cgi?bug_id=" turns the bug
      list into a working link if any bugs are found. Counting bugs is
      easy.  Pipe the results through <command>sed -e 's/,/ /g' | wc |
	awk '{printf $2 "\n"}'</command>
162 163 164 165 166 167 168 169 170 171 172 173 174
    </para>
    <para>
      Akkana says she has good results piping buglist output through
      <command>w3m -T text/html -dump</command>
    </para>
    <procedure>
      <step>
	<para>
	  Download three files:
	</para>
	<substeps>
	  <step>
	    <para>
175 176 177
	      <computeroutput> <prompt>bash$</prompt> <command>wget -O
		  query.conf
		  'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26157'</command> </computeroutput>
178 179 180 181
	    </para>
	  </step>
	  <step>
	    <para>
182 183 184
	      <computeroutput> <prompt>bash$</prompt> <command>wget -O
		  buglist
		  'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26944'</command> </computeroutput>
185 186 187 188
	    </para>
	  </step>
	  <step>
	    <para>
189 190 191
	      <computeroutput> <prompt>bash#</prompt> <command>wget -O
		  bugs
		  'http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26215'</command> </computeroutput>
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
	    </para>
	  </step>
	</substeps>
      </step>
      <step>
	<para>
	  Make your utilities executable:
	  <computeroutput>
	    <prompt>bash$</prompt>
	    <command>chmod u+x buglist bugs</command>
	  </computeroutput>
	</para>
      </step>
    </procedure>
  </section>

  <section id="quicksearch">
    <title>The Quicksearch Utility</title>
    <para>
      Quicksearch is a new, experimental feature of the 2.12 release.
212 213 214
      It consist of two Javascript files, "quicksearch.js" and
      "localconfig.js", and two documentation files,
      "quicksearch.html" and "quicksearchhack.html"
215 216
    </para>
    <para>
217 218
      The index.html page has been updated to include the QuickSearch
      text box.
219 220
    </para>
    <para>
221 222 223
      To take full advantage of the query power, the Bugzilla
      maintainer must edit "localconfig.js" according to the value
      sets used in the local installation.
224 225
    </para>
    <para>
226 227 228 229 230 231
      Currently, keywords must be hard-coded in localconfig.js.  If
      they are not, keywords are not automatically recognized.  This
      means, if localconfig.js is left unconfigured, that searching
      for a bug with the "foo" keyword will only find bugs with "foo"
      in the summary, status whiteboard, product or component name,
      but not those with the keyword "foo".
232 233 234 235
    </para>
    <para>
      Workarounds for Bugzilla users:
      <simplelist>
236 237 238 239
	<member>search for '!foo' (this will find only bugs with the
	  keyword "foo"</member>
	<member>search 'foo,!foo' (equivalent to 'foo OR
	  keyword:foo')</member>
240 241 242
      </simplelist>
    </para>
    <para>
243 244 245 246
      When this tool is ported from client-side JavaScript to
      server-side Perl, the requirement for hard-coding keywords can
      be fixed. <ulink
		       url="http://bugzilla.mozilla.org/show_bug.cgi?id=70907">This bug</ulink> has details.
247 248 249
    </para>
  </section>

250 251 252
  <section id="bzhacking">
    <title>Hacking Bugzilla</title>
    <para>
253 254 255 256 257
      The following is a guide for reviewers when checking code into Bugzilla's
      CVS repostory at mozilla.org.  If you wish to submit patches to Bugzilla,
      you should follow the rules and style conventions below.  Any code that
      does not adhere to these basic rules will not be added to Bugzilla's
      codebase.
258
    </para>
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
    <section>
      <title>Things that have caused problems and should be avoided</title>
      <orderedlist>
        <listitem>
          <para>
            Usage of variables in Regular Expressions
          </para>
          <para>
            It is very important that you don't use a variable in a regular
            expression unless that variable is supposed to contain an expression.
            This especially applies when using grep.  You should use:
          </para>
          <para>
            <programlisting>
grep ($_ eq $value, @array);
            </programlisting>
          </para>
          <para>
            -- NOT THIS --
          </para>
          <para>
            <programlisting>
grep (/$value/, @array);
            </programlisting>
          </para>
          <note>
            <para>
              If you need to use a non-expression variable inside of an expression, be
              sure to quote it properly (using <function>\Q..\E</function>).
            </para>
          </note>
        </listitem>
      </orderedlist>
    </section>
    <section>
      <title>Coding Style for Bugzilla</title>
      <para>
        While it's true that not all of the code currently in Bugzilla adheres to
        this (or any) styleguide, it is something that is being worked toward.  Therefore,
        we ask that all new code (submitted patches and new files) follow this guide
        as closely as possible (if you're only changing 1 or 2 lines, you don't have
        to reformat the entire file :).
      </para>
      <para>
        The Bugzilla development team has decided to adopt the perl style guide as
        published by Larry Wall.  This giude can be found in <quote>Programming
        Perl</quote> (the camel book) or by typing <command>man perlstyle</command> at
        your favorite shell prompt.
      </para>
      <para>
        What appears below if a brief summary, please refer to the perl style
310 311 312
        guide if you don't see your question covered here.  It is much better to submit
	a patch which fails these criteria than no patch at all, but please try to meet
	these minimum standards when submitting code to Bugzilla.
313 314 315 316 317 318 319
      </para>
      <itemizedlist>
        <listitem>
          <para>
            Whitespace
          </para>
          <para>
320
            Bugzilla's preferred indentation is 4 spaces (no tabs, please).
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
          </para>
        </listitem>
        <listitem>
          <para>
            Curly braces.
          </para>
          <para>
            The opening brace of a block should be on the same line as the statement
            that is causing the block and the closing brace should be at the same
            indentation level as that statement, for example:
          </para>
          <para>
            <programlisting>
if ($var) {
    print "The variable is true";
}
else {
    print "Try again";
}
            </programlisting>
          </para>
          <para>
            -- NOT THIS --
          </para>
          <para>
            <programlisting>
if ($var)
{
    print "The variable is true";
}
else
{
    print "Try again";
}
            </programlisting>
          </para>
        </listitem>
358 359 360 361 362 363 364 365 366 367 368

	<listitem>
	  <para>
	    Cookies
	  </para>
	  <para>
	    Bugzilla uses cookies to ease the user experience, but no new patches
	    should <emphasis>require</emphasis> user-side cookies.
	  </para>
	</listitem>

369 370 371 372 373 374 375 376 377 378 379 380
        <listitem>
          <para>
            File Names
          </para>
          <para>
            File names for bugzilla code and support documention should be legal across
            multiple platforms. <computeroutput>\ / : * ? &quot; &lt; &gt;</computeroutput>
            and <computeroutput>|</computeroutput> are all illegal characters for filenames
            on various platforms.  Also, file names should not have spaces in them as they
            can cause confusion in CVS and other mozilla.org utilities.
          </para>
        </listitem>
381 382 383 384 385 386 387 388 389 390 391

	<listitem>
	  <para>
	    Javascript dependencies
	  </para>
	  <para>
	    While Bugzilla uses Javascript to make the user experience easier, no patch
	    to Bugzilla should <emphasis>require</emphasis> Javascript.
	  </para>
	</listitem>

392 393 394 395 396 397 398 399 400 401 402 403
	<listitem>
	  <para>
	    Patch Format
	  </para>
	  <para>
	    All patches submitted for inclusion into Bugzilla should be in the form of a
	    <quote>unified diff</quote>.  This comes from using <quote>diff -u</quote>
	    instead of simply <quote>diff</quote> when creating your patch.  This will
	    result in quicker acceptance of the patch.
	  </para>
	</listitem>

404 405 406 407 408 409 410 411 412 413
	<listitem>
	  <para>
	    Schema Changes
	  </para>
	  <para>
	    If you make schema changes, you should modify <filename>sanitycheck.cgi</filename>
	    to support the new schema.  All referential columns should be checked.
	  </para>
	</listitem>

barnboy%trilobyte.net's avatar
barnboy%trilobyte.net committed
414 415 416 417 418 419 420 421 422 423
	<listitem>
	  <para>
	    Taint Mode
	  </para>
	  <para>
	    All new cgis must run in Taint mode (Perl taint and DBI taint), and existing cgi's
	    which run in taint mode must not have taint mode turned off.
	  </para>
	</listitem>

424 425 426 427 428 429 430 431 432 433
	<listitem>
	  <para>
	    Templatization
	  </para>
	  <para>
	    Patches to Bugzilla need to support templates so they do not force user interface choices
	    on Bugzilla administrators.
	  </para>
	</listitem>

434 435 436 437 438 439 440 441 442 443 444 445 446 447
        <listitem>
          <para>
            Variable Names
          </para>
          <para>
            If a variable is scoped globally (<computeroutput>$::variable</computeroutput>)
            its name should be descriptive of what it contains.  Local variables can be named
            a bit looser, provided the context makes their content obvious.  For example,
            <computeroutput>$ret</computeroutput> could be used as a staging variable for a
             routine's return value as the line <computeroutput>return $ret;</computeroutput>
             will make it blatantly obvious what the variable holds and most likely be shown
             on the same screen as <computeroutput>my $ret = "";</computeroutput>.
          </para>
        </listitem>
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
        <listitem>
          <para>
            Cross Database Compatability
          </para>
          <para>
            Bugzilla was originally written to work with MySQL and therefore took advantage
            of some of its features that aren't contained in other RDBMS software.  These
            should be avoided in all new code.  Examples of these features are enums and
            <function>encrypt()</function>.
          </para>
        </listitem>
        <listitem>
          <para>
            Cross Platform Compatability
          </para>
          <para>
            While Bugzilla was written to be used on Unix based systems (and Unix/Linux is
            still the only officially supported platform) there are many who desire/need to
            run Bugzilla on Microsoft Windows boxes.  Whenever possible, we should strive
            not to make the lives of these people any more complicated and avoid doing things
            that break Bugzilla's ability to run on multiple operating systems.
          </para>
        </listitem>
      </itemizedlist>
    </section>
474 475
  </section>

476
</appendix>
477 478


479 480 481 482
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-always-quote-attributes:t
483 484
sgml-auto-insert-required-elements:t
sgml-balanced-tag-edit:t
485
sgml-exposed-tags:nil
486 487 488
sgml-general-insert-case:lower
sgml-indent-data:t
sgml-indent-step:2
489 490
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
491 492 493 494 495 496
sgml-minimize-attributes:nil
sgml-namecase-general:t
sgml-omittag:t
sgml-parent-document:("Bugzilla-Guide.sgml" "book" "chapter")
sgml-shorttag:t
sgml-tag-region-if-active:t
497 498
End:
-->