Regenerate docs for upcoming 3.0.1 release.
[privoxy.git] / doc / text / developer-manual.txt
1 Privoxy Developer Manual
2
3 Copyright © 2001, 2002 by Privoxy Developers
4
5 $Id: developer-manual.sgml,v 1.46.2.11 2002/12/11 13:12:15 hal9 Exp $
6
7 The developer manual provides guidance on coding, testing, packaging,
8 documentation and other issues of importance to those involved with Privoxy
9 development. It is mandatory (and helpful!) reading for anyone who wants to
10 join the team.
11
12 Please note that this document is constantly evolving. This copy represents the
13 state at the release of version 3.0.1. You can find the latest version of the
14 this manual at http://www.privoxy.org/developer-manual/. Please see the Contact
15 section on how to contact the developers.
16
17 -------------------------------------------------------------------------------
18
19 Table of Contents
20 1. Introduction
21    
22     1.1. Quickstart to Privoxy Development
23    
24 2. The CVS Repository
25    
26     2.1. Access to CVS
27     2.2. Branches
28     2.3. CVS Commit Guidelines
29    
30 3. Documentation Guidelines
31    
32     3.1. Quickstart to Docbook and SGML
33     3.2. Privoxy Documentation Style
34     3.3. Privoxy Custom Entities
35    
36 4. Coding Guidelines
37    
38     4.1. Introduction
39     4.2. Using Comments
40        
41         4.2.1. Comment, Comment, Comment
42         4.2.2. Use blocks for comments
43         4.2.3. Keep Comments on their own line
44         4.2.4. Comment each logical step
45         4.2.5. Comment All Functions Thoroughly
46         4.2.6. Comment at the end of braces if the content is more than one
47             screen length
48        
49     4.3. Naming Conventions
50        
51         4.3.1. Variable Names
52         4.3.2. Function Names
53         4.3.3. Header file prototypes
54         4.3.4. Enumerations, and #defines
55         4.3.5. Constants
56        
57     4.4. Using Space
58        
59         4.4.1. Put braces on a line by themselves.
60         4.4.2. ALL control statements should have a block
61         4.4.3. Do not belabor/blow-up boolean expressions
62         4.4.4. Use white space freely because it is free
63         4.4.5. Don't use white space around structure operators
64         4.4.6. Make the last brace of a function stand out
65         4.4.7. Use 3 character indentions
66        
67     4.5. Initializing
68        
69         4.5.1. Initialize all variables
70        
71     4.6. Functions
72        
73         4.6.1. Name functions that return a boolean as a question.
74         4.6.2. Always specify a return type for a function.
75         4.6.3. Minimize function calls when iterating by using variables
76         4.6.4. Pass and Return by Const Reference
77         4.6.5. Pass and Return by Value
78         4.6.6. Names of include files
79         4.6.7. Provide multiple inclusion protection
80         4.6.8. Use `extern "C"` when appropriate
81         4.6.9. Where Possible, Use Forward Struct Declaration Instead of
82             Includes
83        
84     4.7. General Coding Practices
85        
86         4.7.1. Turn on warnings
87         4.7.2. Provide a default case for all switch statements
88         4.7.3. Try to avoid falling through cases in a switch statement.
89         4.7.4. Use 'long' or 'short' Instead of 'int'
90         4.7.5. Don't mix size_t and other types
91         4.7.6. Declare each variable and struct on its own line.
92         4.7.7. Use malloc/zalloc sparingly
93         4.7.8. The Programmer Who Uses 'malloc' is Responsible for Ensuring
94             'free'
95         4.7.9. Add loaders to the `file_list' structure and in order
96         4.7.10. "Uncertain" new code and/or changes to existing code, use FIXME
97        
98     4.8. Addendum: Template for files and function comment blocks:
99    
100 5. Testing Guidelines
101    
102     5.1. Testplan for releases
103     5.2. Test reports
104    
105 6. Releasing a New Version
106    
107     6.1. Version numbers
108     6.2. Before the Release: Freeze
109     6.3. Building and Releasing the Packages
110        
111         6.3.1. Note on Privoxy Packaging
112         6.3.2. Source Tarball
113         6.3.3. SuSE, Conectiva or Red Hat RPM
114         6.3.4. OS/2
115         6.3.5. Solaris
116         6.3.6. Windows
117         6.3.7. Debian
118         6.3.8. Mac OSX
119         6.3.9. FreeBSD
120         6.3.10. HP-UX 11
121         6.3.11. Amiga OS
122         6.3.12. AIX
123        
124     6.4. Uploading and Releasing Your Package
125     6.5. After the Release
126    
127 7. Update the Webserver
128 8. Contacting the developers, Bug Reporting and Feature Requests
129    
130     8.1. Get Support
131     8.2. Report Bugs
132     8.3. Request New Features
133     8.4. Report Ads or Other Actions-Related Problems
134     8.5. Other
135    
136 9. Privoxy Copyright, License and History
137    
138     9.1. License
139     9.2. History
140    
141 10. See also
142
143 1. Introduction
144
145 Privoxy, as an heir to Junkbuster, is an Open Source project and licensed under
146 the GPL. As such, Privoxy development is potentially open to anyone who has the
147 time, knowledge, and desire to contribute in any capacity. Our goals are simply
148 to continue the mission, to improve Privoxy, and to make it available to as
149 wide an audience as possible.
150
151 One does not have to be a programmer to contribute. Packaging, testing, and
152 porting, are all important jobs as well.
153
154 -------------------------------------------------------------------------------
155
156 1.1. Quickstart to Privoxy Development
157
158 The first step is to join the developer's mailing list. You can submit your
159 ideas, or even better patches. Patches are best submitted to the Sourceforge
160 tracker set up for this purpose, but can be sent to the list for review too.
161
162 You will also need to have a cvs package installed, which will entail having
163 ssh installed as well (which seems to be a requirement of SourceForge), in
164 order to access the cvs repository. Having the GNU build tools is also going to
165 be important (particularly, autoconf and gmake).
166
167 For the time being (read, this section is under construction), you can also
168 refer to the extensive comments in the source code. In fact, reading the code
169 is recommended in any case.
170
171 -------------------------------------------------------------------------------
172
173 2. The CVS Repository
174
175 If you become part of the active development team, you will eventually need
176 write access to our holy grail, the CVS repository. One of the team members
177 will need to set this up for you. Please read this chapter completely before
178 accessing via CVS.
179
180 -------------------------------------------------------------------------------
181
182 2.1. Access to CVS
183
184 The project's CVS repository is hosted on SourceForge. Please refer to the
185 chapters 6 and 7 in SF's site documentation for the technical access details
186 for your operating system. For historical reasons, the CVS server is called
187 cvs.ijbswa.sourceforge.net, the repository is called ijbswa, and the source
188 tree module is called current.
189
190 -------------------------------------------------------------------------------
191
192 2.2. Branches
193
194 Within the CVS repository, there are modules and branches. As mentioned, the
195 sources are in the current "module". Other modules are present for platform
196 specific issues. There is a webview of the CVS hierarchy at http://
197 cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/, which might help with
198 visualizing how these pieces fit together.
199
200 Branches are used to fork a sub-development path from the main trunk. Within
201 the current module where the sources are, there is always at least one "branch"
202 from the main trunk devoted to a stable release series. The main trunk is where
203 active development takes place for the next stable series (e.g. 3.2.x). So just
204 prior to each stable series (e.g. 3.0.x), a branch is created just for stable
205 series releases (e.g. 3.0.0 -> 3.0.1 -> 3.0.2, etc). Once the initial stable
206 release of any stable branch has taken place, this branch is only used for
207 bugfixes, which have had prior testing before being committed to CVS. (See 
208 Version Numbers below for details on versioning.)
209
210 This will result in at least two active branches, which means there may be
211 occasions that require the same (or similar) item to be checked into to two
212 different places (assuming its a bugfix and needs fixing in both the stable and
213 unstable trees). This also means that in order to have access to both trees,
214 both will have to be checked out separately. Use the cvs -r flag to check out a
215 branch, e.g: cvs co -r v_3_0_branch current.
216
217 -------------------------------------------------------------------------------
218
219 2.3. CVS Commit Guidelines
220
221 The source tree is the heart of every software project. Every effort must be
222 made to ensure that it is readable, compilable and consistent at all times.
223 There are differing guidelines for the stable branch and the main development
224 trunk, and we ask anyone with CVS access to strictly adhere to the following
225 guidelines:
226
227 Basic Guidelines, for all branches:
228
229   * Never (read: never, ever) be tempted to commit that small change without
230     testing it thoroughly first. When we're close to a public release, ask a
231     fellow developer to review your changes.
232    
233   * Your commit message should give a concise overview of what you changed (no
234     big details) and why you changed it Just check previous messages for good
235     examples.
236    
237   * Don't use the same message on multiple files, unless it equally applies to
238     all those files.
239    
240   * If your changes span multiple files, and the code won't recompile unless
241     all changes are committed (e.g. when changing the signature of a function),
242     then commit all files one after another, without long delays in between. If
243     necessary, prepare the commit messages in advance.
244    
245   * Before changing things on CVS, make sure that your changes are in line with
246     the team's general consensus on what should be done.
247    
248   * Note that near a major public release, we get more cautious. There is
249     always the possibility to submit a patch to the patch tracker instead.
250    
251 Stable branches are handled with more care, especially after the initial *.*.0
252 release, and we are just in bugfix mode. In addition to the above, the below
253 applies only to the stable branch (currently the v_3_0_branch branch):
254
255   * Do not commit anything unless your proposed changes have been well tested
256     first, preferably by other members of the project, or have prior approval
257     of the project leaders or consensus of the devel list.
258    
259   * Where possible, bugfixes and changes should be tested in the main
260     development trunk first. There may be occasions where this is not feasible,
261     though.
262    
263   * Alternately, proposed changes can be submitted as patches to the patch
264     tracker on Sourceforge first: http://sourceforge.net/tracker/?group_id=
265     11118&atid=311118. Then ask for peer review.
266    
267   * Do not even think about anything except bugfixes. No new features!
268    
269 -------------------------------------------------------------------------------
270
271 3. Documentation Guidelines
272
273 All formal documents are maintained in Docbook SGML and located in the doc/
274 source/* directory. You will need Docbook, the Docbook DTD's and the Docbook
275 modular stylesheets (or comparable alternatives), and either jade or openjade
276 (recommended) installed in order to build docs from source. Currently there is 
277 user-manual, FAQ, and, of course this, the developer-manual in this format. The
278 README, AUTHORS privoxy.1 (man page), and config files are also now maintained
279 as Docbook SGML. These files, when built, in the top-level source directory are
280 generated files! Also, the Privoxy index.html (and a variation on this file,
281 privoxy-index.html, meant for inclusion with doc packages), are maintained as
282 SGML as well. DO NOT edit these directly. Edit the SGML source, or contact
283 someone involved in the documentation (at present Hal).
284
285 config requires some special handling. The reason it is maintained this way is
286 so that the extensive comments in the file mirror those in user-manual. But the
287 conversion process requires going from SGML to HTML to text to special
288 formatting required for the embedded comments. Some of this does not survive so
289 well. Especially some of the examples that are longer than 80 characters. The
290 build process for this file outputs to config.new, which should be reviewed for
291 errors and mis-formatting. Once satisfied that it is correct, then it should be
292 hand copied to config.
293
294 Other, less formal documents (e.g. LICENSE, INSTALL) are maintained as plain
295 text files in the top-level source directory. At least for the time being.
296
297 Packagers are encouraged to include this documentation. For those without the
298 ability to build the docs locally, text versions of each are kept in CVS. HTML
299 versions are also now being kept in CVS under doc/webserver/*.
300
301 Formal documents are built with the Makefile targets of make dok, or
302 alternately make redhat-dok. If you have problems, try both. The build process
303 uses the document SGML sources in doc/source/*/* to update all text files in
304 doc/text/ and to update all HTML documents in doc/webserver/.
305
306 Documentation writers should please make sure documents build successfully
307 before committing to CVS, if possible.
308
309 How do you update the webserver (i.e. the pages on privoxy.org)?
310
311  1. First, build the docs by running make dok (or alternately make redhat-dok).
312     For PDF docs, do make dok-pdf.
313    
314  2. Run make webserver which copies all files from doc/webserver to the
315     sourceforge webserver via scp.
316    
317 Finished docs should be occasionally submitted to CVS (doc/webserver/*/*.html)
318 so that those without the ability to build them locally, have access to them if
319 needed. This is especially important just prior to a new release! Please do
320 this after the $VERSION and other release specific data in configure.in has
321 been updated (this is done just prior to a new release).
322
323 -------------------------------------------------------------------------------
324
325 3.1. Quickstart to Docbook and SGML
326
327 If you are not familiar with SGML, it is a markup language similar to HTML.
328 Actually, not a mark up language per se, but a language used to define markup
329 languages. In fact, HTML is an SGML application. Both will use "tags" to format
330 text and other content. SGML tags can be much more varied, and flexible, but do
331 much of the same kinds of things. The tags, or "elements", are definable in
332 SGML. There is no set "standards". Since we are using Docbook, our tags are
333 those that are defined by Docbook. Much of how the finish document is rendered
334 is determined by the "stylesheets". The stylesheets determine how each tag gets
335 translated to HTML, or other formats.
336
337 Tags in Docbook SGML need to be always "closed". If not, you will likely
338 generate errors. Example: <title>My Title</title>. They are also
339 case-insensitive, but we strongly suggest using all lower case. This keeps
340 compatibility with [Docbook] XML.
341
342 Our documents use "sections" for the most part. Sections will be processed into
343 HTML headers (e.g. h1 for sect1). The Docbook stylesheets will use these to
344 also generate the Table of Contents for each doc. Our TOC's are set to a depth
345 of three. Meaning sect1, sect2, and sect3 will have TOC entries, but sect4 will
346 not. Each section requires a <title> element, and at least one <para>. There is
347 a limit of five section levels in Docbook, but generally three should be
348 sufficient for our purposes.
349
350 Some common elements that you likely will use:
351
352 <para></para>, paragraph delimiter. Most text needs to be within paragraph     
353 elements (there are some exceptions).                                          
354 <emphasis></emphasis>, the stylesheets make this italics.                      
355 <filename></filename>, files and directories.                                  
356 <command></command>, command examples.                                         
357 <literallayout></literallayout>, like <pre>, more or less.                     
358 <itemizedlist></itemizedlist>, list with bullets.                              
359 <listitem></listitem>, member of the above.                                    
360 <screen></screen>, screen output, implies <literallayout>.                     
361 <ulink url="example.com"></ulink>, like HTML <a> tag.                          
362 <quote></quote>, for, doh, quoting text.                                       
363
364 Look at any of the existing docs for examples of all these and more.
365
366 You might also find "Writing Documentation Using DocBook - A Crash Course"
367 useful.
368
369 -------------------------------------------------------------------------------
370
371 3.2. Privoxy Documentation Style
372
373 It will be easier if everyone follows a similar writing style. This just makes
374 it easier to read what someone else has written if it is all done in a similar
375 fashion.
376
377 Here it is:
378
379   * All tags should be lower case.
380    
381   * Tags delimiting a block of text (even small blocks) should be on their own
382     line. Like:
383    
384      <para>
385       Some text goes here.
386      </para>
387            
388    
389     Tags marking individual words, or few words, should be in-line:
390    
391       Just to <emphasis>emphasize</emphasis>, some text goes here.
392            
393    
394   * Tags should be nested and step indented for block text like: (except
395     in-line tags)
396    
397      <para>
398       <itemizedlist>
399        <para>
400         <listitem>
401           Some text goes here in our list example.
402          </listitem>
403        </para>
404       </itemizedlist>
405      </para>
406            
407    
408     This makes it easier to find the text amongst the tags ;-)
409    
410   * Use white space to separate logical divisions within a document, like
411     between sections. Running everything together consistently makes it harder
412     to read and work on.
413    
414   * Do not hesitate to make comments. Comments can either use the <comment>
415     element, or the <!-- --> style comment familiar from HTML. (Note in Docbook
416     v4.x <comment> is replaced by <remark>.)
417    
418   * We have an international audience. Refrain from slang, or English
419     idiosyncrasies (too many to list :). Humor also does not translate well
420     sometimes.
421    
422   * Try to keep overall line lengths in source files to 80 characters or less
423     for obvious reasons. This is not always possible, with lengthy URLs for
424     instance.
425    
426   * Our documents are available in differing formats. Right now, they are just
427     plain text, TML, and PDF, but others are always a future possibility. Be
428     careful with URLs (<ulink>), and avoid this mistake:
429    
430     My favorite site is <ulink url="http://example.com">here</ulink>.
431    
432     This will render as "My favorite site is here", which is not real helpful
433     in a text doc. Better like this:
434    
435     My favorite site is <ulink url="http://example.com">example.com</ulink>.
436    
437   * All documents should be spell checked occasionally. aspell can check SGML
438     with the -H option. (ispell I think too.)
439    
440 -------------------------------------------------------------------------------
441
442 3.3. Privoxy Custom Entities
443
444 Privoxy documentation is using a number of customized "entities" to facilitate
445 documentation maintenance.
446
447 We are using a set of "boilerplate" files with generic text, that is used by
448 multiple docs. This way we can write something once, and use it repeatedly
449 without having to re-write the same content over and over again. If editing
450 such a file, keep in mind that it should be generic. That is the purpose; so it
451 can be used in varying contexts without additional modifications.
452
453 We are also using what Docbook calls "internal entities". These are like
454 variables in programming. Well, sort of. For instance, we have the p-version
455 entity that contains the current Privoxy version string. You are strongly
456 encouraged to use these where possible. Some of these obviously require
457 re-setting with each release (done by the Makefile). A sampling of custom
458 entities are listed below. See any of the main docs for examples.
459
460   * Re- "boilerplate" text entities are defined like:
461    
462     <!entity supported SYSTEM "supported.sgml">
463    
464     In this example, the contents of the file, supported.sgml is available for
465     inclusion anywhere in the doc. To make this happen, just reference the now
466     defined entity: &supported; (starts with an ampersand and ends with a
467     semi-colon), and the contents will be dumped into the finished doc at that
468     point.
469    
470   * Commonly used "internal entities":
471    
472     p-version: the Privoxy version string, e.g. "3.0.1".                       
473     p-status: the project status, either "alpha", "beta", or "stable".         
474     p-not-stable: use to conditionally include text in "not stable" releases   
475     (e.g. "beta").                                                             
476     p-stable: just the opposite.                                               
477     p-text: this doc is only generated as text.                                
478    
479 There are others in various places that are defined for a specific purpose.
480 Read the source!
481
482 -------------------------------------------------------------------------------
483
484 4. Coding Guidelines
485
486 4.1. Introduction
487
488 This set of standards is designed to make our lives easier. It is developed
489 with the simple goal of helping us keep the "new and improved Privoxy"
490 consistent and reliable. Thus making maintenance easier and increasing chances
491 of success of the project.
492
493 And that of course comes back to us as individuals. If we can increase our
494 development and product efficiencies then we can solve more of the request for
495 changes/improvements and in general feel good about ourselves. ;->
496
497 -------------------------------------------------------------------------------
498
499 4.2. Using Comments
500
501 4.2.1. Comment, Comment, Comment
502
503 Explanation:
504
505 Comment as much as possible without commenting the obvious. For example do not
506 comment "aVariable is equal to bVariable". Instead explain why aVariable should
507 be equal to the bVariable. Just because a person can read code does not mean
508 they will understand why or what is being done. A reader may spend a lot more
509 time figuring out what is going on when a simple comment or explanation would
510 have prevented the extra research. Please help your brother IJB'ers out!
511
512 The comments will also help justify the intent of the code. If the comment
513 describes something different than what the code is doing then maybe a
514 programming error is occurring.
515
516 Example:
517
518 /* if page size greater than 1k ... */                                         
519 if ( PageLength() > 1024 )                                                     
520 {                                                                              
521     ... "block" the page up ...                                                
522 }                                                                              
523                                                                                
524 /* if page size is small, send it in blocks */                                 
525 if ( PageLength() > 1024 )                                                     
526 {                                                                              
527     ... "block" the page up ...                                                
528 }                                                                              
529                                                                                
530 This demonstrates 2 cases of "what not to do".  The first is a                 
531 "syntax comment".  The second is a comment that does not fit what              
532 is actually being done.                                                        
533
534 -------------------------------------------------------------------------------
535
536 4.2.2. Use blocks for comments
537
538 Explanation:
539
540 Comments can help or they can clutter. They help when they are differentiated
541 from the code they describe. One line comments do not offer effective
542 separation between the comment and the code. Block identifiers do, by
543 surrounding the code with a clear, definable pattern.
544
545 Example:
546
547 /*********************************************************************         
548  * This will stand out clearly in your code!                                   
549  *********************************************************************/        
550 if ( thisVariable == thatVariable )                                            
551 {                                                                              
552    DoSomethingVeryImportant();                                                 
553 }                                                                              
554                                                                                
555                                                                                
556 /* unfortunately, this may not */                                              
557 if ( thisVariable == thatVariable )                                            
558 {                                                                              
559    DoSomethingVeryImportant();                                                 
560 }                                                                              
561                                                                                
562                                                                                
563 if ( thisVariable == thatVariable ) /* this may not either */                  
564 {                                                                              
565    DoSomethingVeryImportant();                                                 
566 }                                                                              
567
568 Exception:
569
570 If you are trying to add a small logic comment and do not wish to "disrupt" the
571 flow of the code, feel free to use a 1 line comment which is NOT on the same
572 line as the code.
573
574 -------------------------------------------------------------------------------
575
576 4.2.3. Keep Comments on their own line
577
578 Explanation:
579
580 It goes back to the question of readability. If the comment is on the same line
581 as the code it will be harder to read than the comment that is on its own line.
582
583 There are three exceptions to this rule, which should be violated freely and
584 often: during the definition of variables, at the end of closing braces, when
585 used to comment parameters.
586
587 Example:
588
589 /*********************************************************************         
590  * This will stand out clearly in your code,                                   
591  * But the second example won't.                                               
592  *********************************************************************/        
593 if ( thisVariable == thatVariable )                                            
594 {                                                                              
595    DoSomethingVeryImportant();                                                 
596 }                                                                              
597                                                                                
598 if ( thisVariable == thatVariable ) /*can you see me?*/                        
599 {                                                                              
600    DoSomethingVeryImportant(); /*not easily*/                                  
601 }                                                                              
602                                                                                
603                                                                                
604 /*********************************************************************         
605  * But, the encouraged exceptions:                                             
606  *********************************************************************/        
607 int urls_read     = 0;     /* # of urls read + rejected */                     
608 int urls_rejected = 0;     /* # of urls rejected */                            
609                                                                                
610 if ( 1 == X )                                                                  
611 {                                                                              
612    DoSomethingVeryImportant();                                                 
613 }                                                                              
614                                                                                
615                                                                                
616 short DoSomethingVeryImportant(                                                
617    short firstparam,   /* represents something */                              
618    short nextparam     /* represents something else */ )                       
619 {                                                                              
620    ...code here...                                                             
621                                                                                
622 }   /* -END- DoSomethingVeryImportant */                                       
623
624 -------------------------------------------------------------------------------
625
626 4.2.4. Comment each logical step
627
628 Explanation:
629
630 Logical steps should be commented to help others follow the intent of the
631 written code and comments will make the code more readable.
632
633 If you have 25 lines of code without a comment, you should probably go back
634 into it to see where you forgot to put one.
635
636 Most "for", "while", "do", etc... loops _probably_ need a comment. After all,
637 these are usually major logic containers.
638
639 -------------------------------------------------------------------------------
640
641 4.2.5. Comment All Functions Thoroughly
642
643 Explanation:
644
645 A reader of the code should be able to look at the comments just prior to the
646 beginning of a function and discern the reason for its existence and the
647 consequences of using it. The reader should not have to read through the code
648 to determine if a given function is safe for a desired use. The proper
649 information thoroughly presented at the introduction of a function not only
650 saves time for subsequent maintenance or debugging, it more importantly aids in
651 code reuse by allowing a user to determine the safety and applicability of any
652 function for the problem at hand. As a result of such benefits, all functions
653 should contain the information presented in the addendum section of this
654 document.
655
656 -------------------------------------------------------------------------------
657
658 4.2.6. Comment at the end of braces if the content is more than one screen
659 length
660
661 Explanation:
662
663 Each closing brace should be followed on the same line by a comment that
664 describes the origination of the brace if the original brace is off of the
665 screen, or otherwise far away from the closing brace. This will simplify the
666 debugging, maintenance, and readability of the code.
667
668 As a suggestion , use the following flags to make the comment and its brace
669 more readable:
670
671 use following a closing brace: } /* -END- if() or while () or etc... */
672
673 Example:
674
675 if ( 1 == X )                                                                  
676 {                                                                              
677    DoSomethingVeryImportant();                                                 
678    ...some long list of commands...                                            
679 } /* -END- if x is 1 */                                                        
680                                                                                
681 or:                                                                            
682                                                                                
683 if ( 1 == X )                                                                  
684 {                                                                              
685    DoSomethingVeryImportant();                                                 
686    ...some long list of commands...                                            
687 } /* -END- if ( 1 == X ) */                                                    
688
689 -------------------------------------------------------------------------------
690
691 4.3. Naming Conventions
692
693 4.3.1. Variable Names
694
695 Explanation:
696
697 Use all lowercase, and separate words via an underscore ('_'). Do not start an
698 identifier with an underscore. (ANSI C reserves these for use by the compiler
699 and system headers.) Do not use identifiers which are reserved in ANSI C++.
700 (E.g. template, class, true, false, ...). This is in case we ever decide to
701 port Privoxy to C++.
702
703 Example:
704
705 int ms_iis5_hack = 0;                                                          
706
707 Instead of:
708
709 int msiis5hack = 0; int msIis5Hack = 0;                                        
710
711 -------------------------------------------------------------------------------
712
713 4.3.2. Function Names
714
715 Explanation:
716
717 Use all lowercase, and separate words via an underscore ('_'). Do not start an
718 identifier with an underscore. (ANSI C reserves these for use by the compiler
719 and system headers.) Do not use identifiers which are reserved in ANSI C++.
720 (E.g. template, class, true, false, ...). This is in case we ever decide to
721 port Privoxy to C++.
722
723 Example:
724
725 int load_some_file( struct client_state *csp )                                 
726
727 Instead of:
728
729 int loadsomefile( struct client_state *csp )                                   
730 int loadSomeFile( struct client_state *csp )                                   
731
732 -------------------------------------------------------------------------------
733
734 4.3.3. Header file prototypes
735
736 Explanation:
737
738 Use a descriptive parameter name in the function prototype in header files. Use
739 the same parameter name in the header file that you use in the c file.
740
741 Example:
742
743 (.h) extern int load_aclfile( struct client_state *csp );                      
744 (.c) int load_aclfile( struct client_state *csp )                              
745
746 Instead of:
747
748 (.h) extern int load_aclfile( struct client_state * ); or                      
749 (.h) extern int load_aclfile();                                                
750 (.c) int load_aclfile( struct client_state *csp )                              
751
752 -------------------------------------------------------------------------------
753
754 4.3.4. Enumerations, and #defines
755
756 Explanation:
757
758 Use all capital letters, with underscores between words. Do not start an
759 identifier with an underscore. (ANSI C reserves these for use by the compiler
760 and system headers.)
761
762 Example:
763
764 (enumeration) : enum Boolean { FALSE, TRUE };                                  
765 (#define) : #define DEFAULT_SIZE 100;                                          
766
767 Note: We have a standard naming scheme for #defines that toggle a feature in
768 the preprocessor: FEATURE_>, where > is a short (preferably 1 or 2 word)
769 description.
770
771 Example:
772
773 #define FEATURE_FORCE 1                                                        
774                                                                                
775 #ifdef FEATURE_FORCE                                                           
776 #define FORCE_PREFIX blah                                                      
777 #endif /* def FEATURE_FORCE */                                                 
778
779 -------------------------------------------------------------------------------
780
781 4.3.5. Constants
782
783 Explanation:
784
785 Spell common words out entirely (do not remove vowels).
786
787 Use only widely-known domain acronyms and abbreviations. Capitalize all letters
788 of an acronym.
789
790 Use underscore (_) to separate adjacent acronyms and abbreviations. Never
791 terminate a name with an underscore.
792
793 Example:
794
795 #define USE_IMAGE_LIST 1                                                       
796
797 Instead of:
798
799 #define USE_IMG_LST 1 or                                                       
800 #define _USE_IMAGE_LIST 1 or                                                   
801 #define USE_IMAGE_LIST_ 1 or                                                   
802 #define use_image_list 1 or                                                    
803 #define UseImageList 1                                                         
804
805 -------------------------------------------------------------------------------
806
807 4.4. Using Space
808
809 4.4.1. Put braces on a line by themselves.
810
811 Explanation:
812
813 The brace needs to be on a line all by itself, not at the end of the statement.
814 Curly braces should line up with the construct that they're associated with.
815 This practice makes it easier to identify the opening and closing braces for a
816 block.
817
818 Example:
819
820 if ( this == that )                                                            
821 {                                                                              
822    ...                                                                         
823 }                                                                              
824
825 Instead of:
826
827 if ( this == that ) { ... }
828
829 or
830
831 if ( this == that ) { ... }
832
833 Note: In the special case that the if-statement is inside a loop, and it is
834 trivial, i.e. it tests for a condition that is obvious from the purpose of the
835 block, one-liners as above may optically preserve the loop structure and make
836 it easier to read.
837
838 Status: developer-discretion.
839
840 Example exception:
841
842 while ( more lines are read )                                                  
843 {                                                                              
844    /* Please document what is/is not a comment line here */                    
845    if ( it's a comment ) continue;                                             
846                                                                                
847    do_something( line );                                                       
848 }                                                                              
849
850 -------------------------------------------------------------------------------
851
852 4.4.2. ALL control statements should have a block
853
854 Explanation:
855
856 Using braces to make a block will make your code more readable and less prone
857 to error. All control statements should have a block defined.
858
859 Example:
860
861 if ( this == that )                                                            
862 {                                                                              
863    DoSomething();                                                              
864    DoSomethingElse();                                                          
865 }                                                                              
866
867 Instead of:
868
869 if ( this == that ) DoSomething(); DoSomethingElse();
870
871 or
872
873 if ( this == that ) DoSomething();
874
875 Note: The first example in "Instead of" will execute in a manner other than
876 that which the developer desired (per indentation). Using code braces would
877 have prevented this "feature". The "explanation" and "exception" from the point
878 above also applies.
879
880 -------------------------------------------------------------------------------
881
882 4.4.3. Do not belabor/blow-up boolean expressions
883
884 Example:
885
886 structure->flag = ( condition );                                               
887
888 Instead of:
889
890 if ( condition ) { structure->flag = 1; } else { structure->flag = 0; }
891
892 Note: The former is readable and concise. The later is wordy and inefficient.
893 Please assume that any developer new to the project has at least a "good"
894 knowledge of C/C++. (Hope I do not offend by that last comment ... 8-)
895
896 -------------------------------------------------------------------------------
897
898 4.4.4. Use white space freely because it is free
899
900 Explanation:
901
902 Make it readable. The notable exception to using white space freely is listed
903 in the next guideline.
904
905 Example:
906
907 int firstValue   = 0;                                                          
908 int someValue    = 0;                                                          
909 int anotherValue = 0;                                                          
910 int thisVariable = 0;                                                          
911                                                                                
912 if ( thisVariable == thatVariable )                                            
913                                                                                
914 firstValue = oldValue + ( ( someValue - anotherValue ) - whatever )            
915
916 -------------------------------------------------------------------------------
917
918 4.4.5. Don't use white space around structure operators
919
920 Explanation:
921
922 - structure pointer operator ( "->" ) - member operator ( "." ) - functions and
923 parentheses
924
925 It is a general coding practice to put pointers, references, and function
926 parentheses next to names. With spaces, the connection between the object and
927 variable/function name is not as clear.
928
929 Example:
930
931 aStruct->aMember;                                                              
932 aStruct.aMember;                                                               
933 FunctionName();                                                                
934
935 Instead of: aStruct -> aMember; aStruct . aMember; FunctionName ();
936
937 -------------------------------------------------------------------------------
938
939 4.4.6. Make the last brace of a function stand out
940
941 Example:
942
943 int function1( ... )                                                           
944 {                                                                              
945    ...code...                                                                  
946    return( retCode );                                                          
947                                                                                
948 }   /* -END- function1 */                                                      
949                                                                                
950                                                                                
951 int function2( ... )                                                           
952 {                                                                              
953 }   /* -END- function2 */                                                      
954
955 Instead of:
956
957 int function1( ... ) { ...code... return( retCode ); } int function2( ... ) { }
958
959 Note: Use 1 blank line before the closing brace and 2 lines afterward. This
960 makes the end of function standout to the most casual viewer. Although function
961 comments help separate functions, this is still a good coding practice. In
962 fact, I follow these rules when using blocks in "for", "while", "do" loops, and
963 long if {} statements too. After all whitespace is free!
964
965 Status: developer-discretion on the number of blank lines. Enforced is the end
966 of function comments.
967
968 -------------------------------------------------------------------------------
969
970 4.4.7. Use 3 character indentions
971
972 Explanation:
973
974 If some use 8 character TABs and some use 3 character TABs, the code can look *
975 very* ragged. So use 3 character indentions only. If you like to use TABs, pass
976 your code through a filter such as "expand -t3" before checking in your code.
977
978 Example:
979
980 static const char * const url_code_map[256] =                                  
981 {                                                                              
982    NULL, ...                                                                   
983 };                                                                             
984                                                                                
985                                                                                
986 int function1( ... )                                                           
987 {                                                                              
988    if ( 1 )                                                                    
989    {                                                                           
990       return( ALWAYS_TRUE );                                                   
991    }                                                                           
992    else                                                                        
993    {                                                                           
994       return( HOW_DID_YOU_GET_HERE );                                          
995    }                                                                           
996                                                                                
997    return( NEVER_GETS_HERE );                                                  
998                                                                                
999 }                                                                              
1000
1001 -------------------------------------------------------------------------------
1002
1003 4.5. Initializing
1004
1005 4.5.1. Initialize all variables
1006
1007 Explanation:
1008
1009 Do not assume that the variables declared will not be used until after they
1010 have been assigned a value somewhere else in the code. Remove the chance of
1011 accidentally using an unassigned variable.
1012
1013 Example:
1014
1015 short anShort = 0;                                                             
1016 float aFloat  = 0;                                                             
1017 struct *ptr = NULL;                                                            
1018
1019 Note: It is much easier to debug a SIGSEGV if the message says you are trying
1020 to access memory address 00000000 and not 129FA012; or arrayPtr[20] causes a
1021 SIGSEV vs. arrayPtr[0].
1022
1023 Status: developer-discretion if and only if the variable is assigned a value
1024 "shortly after" declaration.
1025
1026 -------------------------------------------------------------------------------
1027
1028 4.6. Functions
1029
1030 4.6.1. Name functions that return a boolean as a question.
1031
1032 Explanation:
1033
1034 Value should be phrased as a question that would logically be answered as a
1035 true or false statement
1036
1037 Example:
1038
1039 ShouldWeBlockThis();                                                           
1040 ContainsAnImage();                                                             
1041 IsWebPageBlank();                                                              
1042
1043 -------------------------------------------------------------------------------
1044
1045 4.6.2. Always specify a return type for a function.
1046
1047 Explanation:
1048
1049 The default return for a function is an int. To avoid ambiguity, create a
1050 return for a function when the return has a purpose, and create a void return
1051 type if the function does not need to return anything.
1052
1053 -------------------------------------------------------------------------------
1054
1055 4.6.3. Minimize function calls when iterating by using variables
1056
1057 Explanation:
1058
1059 It is easy to write the following code, and a clear argument can be made that
1060 the code is easy to understand:
1061
1062 Example:
1063
1064 for ( size_t cnt = 0; cnt < blockListLength(); cnt ++ )                        
1065 {                                                                              
1066    ....                                                                        
1067 }                                                                              
1068
1069 Note: Unfortunately, this makes a function call for each and every iteration.
1070 This increases the overhead in the program, because the compiler has to look up
1071 the function each time, call it, and return a value. Depending on what occurs
1072 in the blockListLength() call, it might even be creating and destroying
1073 structures with each iteration, even though in each case it is comparing "cnt"
1074 to the same value, over and over. Remember too - even a call to blockListLength
1075 () is a function call, with the same overhead.
1076
1077 Instead of using a function call during the iterations, assign the value to a
1078 variable, and evaluate using the variable.
1079
1080 Example:
1081
1082 size_t len = blockListLength();                                                
1083                                                                                
1084 for ( size_t cnt = 0; cnt < len; cnt ++ )                                      
1085 {                                                                              
1086    ....                                                                        
1087 }                                                                              
1088
1089 Exceptions: if the value of blockListLength() *may* change or could *
1090 potentially* change, then you must code the function call in the for/while
1091 loop.
1092
1093 -------------------------------------------------------------------------------
1094
1095 4.6.4. Pass and Return by Const Reference
1096
1097 Explanation:
1098
1099 This allows a developer to define a const pointer and call your function. If
1100 your function does not have the const keyword, we may not be able to use your
1101 function. Consider strcmp, if it were defined as: extern int strcmp( char *s1,
1102 char *s2 );
1103
1104 I could then not use it to compare argv's in main: int main( int argc, const
1105 char *argv[] ) { strcmp( argv[0], "privoxy" ); }
1106
1107 Both these pointers are *const*! If the c runtime library maintainers do it, we
1108 should too.
1109
1110 -------------------------------------------------------------------------------
1111
1112 4.6.5. Pass and Return by Value
1113
1114 Explanation:
1115
1116 Most structures cannot fit onto a normal stack entry (i.e. they are not 4 bytes
1117 or less). Aka, a function declaration like: int load_aclfile( struct
1118 client_state csp )
1119
1120 would not work. So, to be consistent, we should declare all prototypes with
1121 "pass by value": int load_aclfile( struct client_state *csp )
1122
1123 -------------------------------------------------------------------------------
1124
1125 4.6.6. Names of include files
1126
1127 Explanation:
1128
1129 Your include statements should contain the file name without a path. The path
1130 should be listed in the Makefile, using -I as processor directive to search the
1131 indicated paths. An exception to this would be for some proprietary software
1132 that utilizes a partial path to distinguish their header files from system or
1133 other header files.
1134
1135 Example:
1136
1137 #include <iostream.h>     /* This is not a local include */                    
1138 #include "config.h"       /* This IS a local include */                        
1139
1140 Exception:
1141
1142 /* This is not a local include, but requires a path element. */                
1143 #include <sys/fileName.h>                                                      
1144
1145 Note: Please! do not add "-I." to the Makefile without a _very_ good reason.
1146 This duplicates the #include "file.h" behavior.
1147
1148 -------------------------------------------------------------------------------
1149
1150 4.6.7. Provide multiple inclusion protection
1151
1152 Explanation:
1153
1154 Prevents compiler and linker errors resulting from redefinition of items.
1155
1156 Wrap each header file with the following syntax to prevent multiple inclusions
1157 of the file. Of course, replace PROJECT_H with your file name, with "." Changed
1158 to "_", and make it uppercase.
1159
1160 Example:
1161
1162 #ifndef PROJECT_H_INCLUDED                                                     
1163 #define PROJECT_H_INCLUDED                                                     
1164  ...                                                                           
1165 #endif /* ndef PROJECT_H_INCLUDED */                                           
1166
1167 -------------------------------------------------------------------------------
1168
1169 4.6.8. Use `extern "C"` when appropriate
1170
1171 Explanation:
1172
1173 If our headers are included from C++, they must declare our functions as
1174 `extern "C"`. This has no cost in C, but increases the potential re-usability
1175 of our code.
1176
1177 Example:
1178
1179 #ifdef __cplusplus                                                             
1180 extern "C"                                                                     
1181 {                                                                              
1182 #endif /* def __cplusplus */                                                   
1183                                                                                
1184 ... function definitions here ...                                              
1185                                                                                
1186 #ifdef __cplusplus                                                             
1187 }                                                                              
1188 #endif /* def __cplusplus */                                                   
1189
1190 -------------------------------------------------------------------------------
1191
1192 4.6.9. Where Possible, Use Forward Struct Declaration Instead of Includes
1193
1194 Explanation:
1195
1196 Useful in headers that include pointers to other struct's. Modifications to
1197 excess header files may cause needless compiles.
1198
1199 Example:
1200
1201 /*********************************************************************         
1202  * We're avoiding an include statement here!                                   
1203  *********************************************************************/        
1204 struct file_list;                                                              
1205 extern file_list *xyz;                                                         
1206
1207 Note: If you declare "file_list xyz;" (without the pointer), then including the
1208 proper header file is necessary. If you only want to prototype a pointer,
1209 however, the header file is unnecessary.
1210
1211 Status: Use with discretion.
1212
1213 -------------------------------------------------------------------------------
1214
1215 4.7. General Coding Practices
1216
1217 4.7.1. Turn on warnings
1218
1219 Explanation
1220
1221 Compiler warnings are meant to help you find bugs. You should turn on as many
1222 as possible. With GCC, the switch is "-Wall". Try and fix as many warnings as
1223 possible.
1224
1225 -------------------------------------------------------------------------------
1226
1227 4.7.2. Provide a default case for all switch statements
1228
1229 Explanation:
1230
1231 What you think is guaranteed is never really guaranteed. The value that you
1232 don't think you need to check is the one that someday will be passed. So, to
1233 protect yourself from the unknown, always have a default step in a switch
1234 statement.
1235
1236 Example:
1237
1238 switch( hash_string( cmd ) )                                                   
1239 {                                                                              
1240    case hash_actions_file :                                                    
1241       ... code ...                                                             
1242       break;                                                                   
1243                                                                                
1244    case hash_confdir :                                                         
1245       ... code ...                                                             
1246       break;                                                                   
1247                                                                                
1248    default :                                                                   
1249       log_error( ... );                                                        
1250       ... anomaly code goes here ...                                           
1251       continue; / break; / exit( 1 ); / etc ...                                
1252                                                                                
1253 } /* end switch( hash_string( cmd ) ) */                                       
1254
1255 Note: If you already have a default condition, you are obviously exempt from
1256 this point. Of note, most of the WIN32 code calls `DefWindowProc' after the
1257 switch statement. This API call *should* be included in a default statement.
1258
1259 Another Note: This is not so much a readability issue as a robust programming
1260 issue. The "anomaly code goes here" may be no more than a print to the STDERR
1261 stream (as in load_config). Or it may really be an ABEND condition.
1262
1263 Status: Programmer discretion is advised.
1264
1265 -------------------------------------------------------------------------------
1266
1267 4.7.3. Try to avoid falling through cases in a switch statement.
1268
1269 Explanation:
1270
1271 In general, you will want to have a 'break' statement within each 'case' of a
1272 switch statement. This allows for the code to be more readable and
1273 understandable, and furthermore can prevent unwanted surprises if someone else
1274 later gets creative and moves the code around.
1275
1276 The language allows you to plan the fall through from one case statement to
1277 another simply by omitting the break statement within the case statement. This
1278 feature does have benefits, but should only be used in rare cases. In general,
1279 use a break statement for each case statement.
1280
1281 If you choose to allow fall through, you should comment both the fact of the
1282 fall through and reason why you felt it was necessary.
1283
1284 -------------------------------------------------------------------------------
1285
1286 4.7.4. Use 'long' or 'short' Instead of 'int'
1287
1288 Explanation:
1289
1290 On 32-bit platforms, int usually has the range of long. On 16-bit platforms,
1291 int has the range of short.
1292
1293 Status: open-to-debate. In the case of most FSF projects (including X/
1294 GNU-Emacs), there are typedefs to int4, int8, int16, (or equivalence ... I
1295 forget the exact typedefs now). Should we add these to IJB now that we have a
1296 "configure" script?
1297
1298 -------------------------------------------------------------------------------
1299
1300 4.7.5. Don't mix size_t and other types
1301
1302 Explanation:
1303
1304 The type of size_t varies across platforms. Do not make assumptions about
1305 whether it is signed or unsigned, or about how long it is. Do not compare a
1306 size_t against another variable of a different type (or even against a
1307 constant) without casting one of the values. Try to avoid using size_t if you
1308 can.
1309
1310 -------------------------------------------------------------------------------
1311
1312 4.7.6. Declare each variable and struct on its own line.
1313
1314 Explanation:
1315
1316 It can be tempting to declare a series of variables all on one line. Don't.
1317
1318 Example:
1319
1320 long a = 0;                                                                    
1321 long b = 0;                                                                    
1322 long c = 0;                                                                    
1323
1324 Instead of:
1325
1326 long a, b, c;
1327
1328 Explanation: - there is more room for comments on the individual variables -
1329 easier to add new variables without messing up the original ones - when
1330 searching on a variable to find its type, there is less clutter to "visually"
1331 eliminate
1332
1333 Exceptions: when you want to declare a bunch of loop variables or other trivial
1334 variables; feel free to declare them on 1 line. You should, although, provide a
1335 good comment on their functions.
1336
1337 Status: developer-discretion.
1338
1339 -------------------------------------------------------------------------------
1340
1341 4.7.7. Use malloc/zalloc sparingly
1342
1343 Explanation:
1344
1345 Create a local struct (on the stack) if the variable will live and die within
1346 the context of one function call.
1347
1348 Only "malloc" a struct (on the heap) if the variable's life will extend beyond
1349 the context of one function call.
1350
1351 Example:
1352
1353 If a function creates a struct and stores a pointer to it in a                 
1354 list, then it should definitely be allocated via `malloc'.                     
1355
1356 -------------------------------------------------------------------------------
1357
1358 4.7.8. The Programmer Who Uses 'malloc' is Responsible for Ensuring 'free'
1359
1360 Explanation:
1361
1362 If you have to "malloc" an instance, you are responsible for insuring that the
1363 instance is `free'd, even if the deallocation event falls within some other
1364 programmer's code. You are also responsible for ensuring that deletion is
1365 timely (i.e. not too soon, not too late). This is known as "low-coupling" and
1366 is a "good thing (tm)". You may need to offer a free/unload/destructor type
1367 function to accommodate this.
1368
1369 Example:
1370
1371 int load_re_filterfile( struct client_state *csp ) { ... }                     
1372 static void unload_re_filterfile( void *f ) { ... }                            
1373
1374 Exceptions:
1375
1376 The developer cannot be expected to provide `free'ing functions for C run-time
1377 library functions ... such as `strdup'.
1378
1379 Status: developer-discretion. The "main" use of this standard is for allocating
1380 and freeing data structures (complex or nested).
1381
1382 -------------------------------------------------------------------------------
1383
1384 4.7.9. Add loaders to the `file_list' structure and in order
1385
1386 Explanation:
1387
1388 I have ordered all of the "blocker" file code to be in alpha order. It is
1389 easier to add/read new blockers when you expect a certain order.
1390
1391 Note: It may appear that the alpha order is broken in places by POPUP tests
1392 coming before PCRS tests. But since POPUPs can also be referred to as
1393 KILLPOPUPs, it is clear that it should come first.
1394
1395 -------------------------------------------------------------------------------
1396
1397 4.7.10. "Uncertain" new code and/or changes to existing code, use FIXME
1398
1399 Explanation:
1400
1401 If you have enough confidence in new code or confidence in your changes, but
1402 are not *quite* sure of the repercussions, add this:
1403
1404 /* FIXME: this code has a logic error on platform XYZ, * attempting to fix */ #
1405 ifdef PLATFORM ...changed code here... #endif
1406
1407 or:
1408
1409 /* FIXME: I think the original author really meant this... */ ...changed code
1410 here...
1411
1412 or:
1413
1414 /* FIXME: new code that *may* break something else... */ ...new code here...
1415
1416 Note: If you make it clear that this may or may not be a "good thing (tm)", it
1417 will be easier to identify and include in the project (or conversely exclude
1418 from the project).
1419
1420 -------------------------------------------------------------------------------
1421
1422 4.8. Addendum: Template for files and function comment blocks:
1423
1424 Example for file comments:
1425
1426 const char FILENAME_rcs[] = "$Id: developer-manual.sgml,v 1.46.2.11 2002/12/11 13:12:15 hal9 Exp $"; 
1427 /*********************************************************************                               
1428  *                                                                                                   
1429  * File        :  $Source$                                                                           
1430  *                                                                                                   
1431  * Purpose     :  (Fill me in with a good description!)                                              
1432  *                                                                                                   
1433  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge                                  
1434  *                Privoxy team. http://www.privoxy.org/                                              
1435  *                                                                                                   
1436  *                Based on the Internet Junkbuster originally written                                
1437  *                by and Copyright (C) 1997 Anonymous Coders and                                     
1438  *                Junkbusters Corporation.  http://www.junkbusters.com                               
1439  *                                                                                                   
1440  *                This program is free software; you can redistribute it                             
1441  *                and/or modify it under the terms of the GNU General                                
1442  *                Public License as published by the Free Software                                   
1443  *                Foundation; either version 2 of the License, or (at                                
1444  *                your option) any later version.                                                    
1445  *                                                                                                   
1446  *                This program is distributed in the hope that it will                               
1447  *                be useful, but WITHOUT ANY WARRANTY; without even the                              
1448  *                implied warranty of MERCHANTABILITY or FITNESS FOR A                               
1449  *                PARTICULAR PURPOSE.  See the GNU General Public                                    
1450  *                License for more details.                                                          
1451  *                                                                                                   
1452  *                The GNU General Public License should be included with                             
1453  *                this file.  If not, you can view it at                                             
1454  *                http://www.gnu.org/copyleft/gpl.html                                               
1455  *                or write to the Free Software Foundation, Inc., 59                                 
1456  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.                             
1457  *                                                                                                   
1458  * Revisions   :                                                                                     
1459  *    $Log$                                                                                          
1460  *                                                                                                   
1461  *********************************************************************/                              
1462                                                                                                      
1463                                                                                                      
1464 #include "config.h"                                                                                  
1465                                                                                                      
1466    ...necessary include files for us to do our work...                                               
1467                                                                                                      
1468 const char FILENAME_h_rcs[] = FILENAME_H_VERSION;                                                    
1469
1470 Note: This declares the rcs variables that should be added to the
1471 "show-proxy-args" page. If this is a brand new creation by you, you are free to
1472 change the "Copyright" section to represent the rights you wish to maintain.
1473
1474 Note: The formfeed character that is present right after the comment flower box
1475 is handy for (X|GNU)Emacs users to skip the verbiage and get to the heart of
1476 the code (via `forward-page' and `backward-page'). Please include it if you
1477 can.
1478
1479 Example for file header comments:
1480
1481 #ifndef _FILENAME_H                                                                                
1482 #define _FILENAME_H                                                                                
1483 #define FILENAME_H_VERSION "$Id: developer-manual.sgml,v 1.46.2.11 2002/12/11 13:12:15 hal9 Exp $" 
1484 /*********************************************************************                             
1485  *                                                                                                 
1486  * File        :  $Source$                                                                         
1487  *                                                                                                 
1488  * Purpose     :  (Fill me in with a good description!)                                            
1489  *                                                                                                 
1490  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge                                
1491  *                Privoxy team. http://www.privoxy.org/                                            
1492  *                                                                                                 
1493  *                Based on the Internet Junkbuster originally written                              
1494  *                by and Copyright (C) 1997 Anonymous Coders and                                   
1495  *                Junkbusters Corporation.  http://www.junkbusters.com                             
1496  *                                                                                                 
1497  *                This program is free software; you can redistribute it                           
1498  *                and/or modify it under the terms of the GNU General                              
1499  *                Public License as published by the Free Software                                 
1500  *                Foundation; either version 2 of the License, or (at                              
1501  *                your option) any later version.                                                  
1502  *                                                                                                 
1503  *                This program is distributed in the hope that it will                             
1504  *                be useful, but WITHOUT ANY WARRANTY; without even the                            
1505  *                implied warranty of MERCHANTABILITY or FITNESS FOR A                             
1506  *                PARTICULAR PURPOSE.  See the GNU General Public                                  
1507  *                License for more details.                                                        
1508  *                                                                                                 
1509  *                The GNU General Public License should be included with                           
1510  *                this file.  If not, you can view it at                                           
1511  *                http://www.gnu.org/copyleft/gpl.html                                             
1512  *                or write to the Free Software Foundation, Inc., 59                               
1513  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.                           
1514  *                                                                                                 
1515  * Revisions   :                                                                                   
1516  *    $Log$                                                                                        
1517  *                                                                                                 
1518  *********************************************************************/                            
1519                                                                                                    
1520                                                                                                    
1521 #include "project.h"                                                                               
1522                                                                                                    
1523 #ifdef __cplusplus                                                                                 
1524 extern "C" {                                                                                       
1525 #endif                                                                                             
1526                                                                                                    
1527    ... function headers here ...                                                                   
1528                                                                                                    
1529                                                                                                    
1530 /* Revision control strings from this header and associated .c file */                             
1531 extern const char FILENAME_rcs[];                                                                  
1532 extern const char FILENAME_h_rcs[];                                                                
1533                                                                                                    
1534                                                                                                    
1535 #ifdef __cplusplus                                                                                 
1536 } /* extern "C" */                                                                                 
1537 #endif                                                                                             
1538                                                                                                    
1539 #endif /* ndef _FILENAME_H */                                                                      
1540                                                                                                    
1541 /*                                                                                                 
1542   Local Variables:                                                                                 
1543   tab-width: 3                                                                                     
1544   end:                                                                                             
1545 */                                                                                                 
1546
1547 Example for function comments:
1548
1549 /*********************************************************************         
1550  *                                                                             
1551  * Function    :  FUNCTION_NAME                                                
1552  *                                                                             
1553  * Description :  (Fill me in with a good description!)                        
1554  *                                                                             
1555  * parameters  :                                                               
1556  *          1  :  param1 = pointer to an important thing                       
1557  *          2  :  x      = pointer to something else                           
1558  *                                                                             
1559  * Returns     :  0 => Ok, everything else is an error.                        
1560  *                                                                             
1561  *********************************************************************/        
1562 int FUNCTION_NAME( void *param1, const char *x )                               
1563 {                                                                              
1564    ...                                                                         
1565    return( 0 );                                                                
1566                                                                                
1567 }                                                                              
1568
1569 Note: If we all follow this practice, we should be able to parse our code to
1570 create a "self-documenting" web page.
1571
1572 -------------------------------------------------------------------------------
1573
1574 5. Testing Guidelines
1575
1576 To be filled.
1577
1578 -------------------------------------------------------------------------------
1579
1580 5.1. Testplan for releases
1581
1582 Explain release numbers. major, minor. developer releases. etc.
1583
1584  1. Remove any existing rpm with rpm -e
1585    
1586  2. Remove any file that was left over. This includes (but is not limited to)
1587    
1588       + /var/log/privoxy
1589        
1590       + /etc/privoxy
1591        
1592       + /usr/sbin/privoxy
1593        
1594       + /etc/init.d/privoxy
1595        
1596       + /usr/doc/privoxy*
1597        
1598  3. Install the rpm. Any error messages?
1599    
1600  4. start,stop,status Privoxy with the specific script (e.g. /etc/rc.d/init/
1601     privoxy stop). Reboot your machine. Does autostart work?
1602    
1603  5. Start browsing. Does Privoxy work? Logfile written?
1604    
1605  6. Remove the rpm. Any error messages? All files removed?
1606    
1607 -------------------------------------------------------------------------------
1608
1609 5.2. Test reports
1610
1611 Please submit test reports only with the test form at sourceforge. Three simple
1612 steps:
1613
1614   * Select category: the distribution you test on.
1615    
1616   * Select group: the version of Privoxy that we are about to release.
1617    
1618   * Fill the Summary and Detailed Description with something intelligent (keep
1619     it short and precise).
1620    
1621 Do not mail to the mailing list (we cannot keep track on issues there).
1622
1623 -------------------------------------------------------------------------------
1624
1625 6. Releasing a New Version
1626
1627 When we release versions of Privoxy, our work leaves our cozy secret lab and
1628 has to work in the cold RealWorld[tm]. Once it is released, there is no way to
1629 call it back, so it is very important that great care is taken to ensure that
1630 everything runs fine, and not to introduce problems in the very last minute.
1631
1632 So when releasing a new version, please adhere exactly to the procedure
1633 outlined in this chapter.
1634
1635 The following programs are required to follow this process: ncftpput (ncftp),
1636 scp, ssh (ssh), gmake (GNU's version of make), autoconf, cvs.
1637
1638 -------------------------------------------------------------------------------
1639
1640 6.1. Version numbers
1641
1642 First you need to determine which version number the release will have. Privoxy
1643 version numbers consist of three numbers, separated by dots, like in X.Y.Z
1644 (e.g. 3.0.0), where:
1645
1646   * X, the version major, is rarely ever changed. It is increased by one if
1647     turning a development branch into stable substantially changes the
1648     functionality, user interface or configuration syntax. Majors 1 and 2 were
1649     Junkbuster, and 3 will be the first stable Privoxy release.
1650    
1651   * Y, the version minor, represents the branch within the major version. At
1652     any point in time, there are two branches being maintained: The stable
1653     branch, with an even minor, say, 2N, in which no functionality is being
1654     added and only bug-fixes are made, and 2N+1, the development branch, in
1655     which the further development of Privoxy takes place. This enables us to
1656     turn the code upside down and inside out, while at the same time providing
1657     and maintaining a stable version. The minor is reset to zero (and one) when
1658     the major is incremented. When a development branch has matured to the
1659     point where it can be turned into stable, the old stable branch 2N is given
1660     up (i.e. no longer maintained), the former development branch 2N+1 becomes
1661     the new stable branch 2N+2, and a new development branch 2N+3 is opened.
1662    
1663   * Z, the point or sub version, represents a release of the software within a
1664     branch. It is therefore incremented immediately before each code freeze. In
1665     development branches, only the even point versions correspond to actual
1666     releases, while the odd ones denote the evolving state of the sources on
1667     CVS in between. It follows that Z is odd on CVS in development branches
1668     most of the time. There, it gets increased to an even number immediately
1669     before a code freeze, and is increased to an odd number again immediately
1670     thereafter. This ensures that builds from CVS snapshots are easily
1671     distinguished from released versions. The point version is reset to zero
1672     when the minor changes.
1673    
1674     Stable branches work a little differently, since there should be little to
1675     no development happening in such branches. Remember, only bugfixes, which
1676     presumably should have had some testing before being committed. Stable
1677     branches will then have their version reported as 0.0.0, during that period
1678     between releases when changes are being added. This is to denote that this
1679     code is not for release. Then as the release nears, the version is bumped
1680     according: e.g. 3.0.1 -> 0.0.0 -> 3.0.2.
1681    
1682 In summary, the main CVS trunk is the development branch where new features are
1683 being worked on for the next stable series. This should almost always be where
1684 the most activity takes place. There is always at least one stable branch from
1685 the trunk, e.g now it is 3.0, which is only used to release stable versions.
1686 Once the initial *.0 release of the stable branch has been done, then as a
1687 rule, only bugfixes that have had prior testing should be committed to the
1688 stable branch. Once there are enough bugfixes to justify a new release, the
1689 version of this branch is again incremented Example: 3.0.0 -> 3.0.1 -> 3.0.2,
1690 etc are all stable releases from within the stable branch. 3.1.x is currently
1691 the main trunk, and where work on 3.2.x is taking place. If any questions,
1692 please post to the devel list before committing to a stable branch!
1693
1694 Developers should remember too that if they commit a bugfix to the stable
1695 branch, this will more than likely require a separate submission to the main
1696 trunk, since these are separate development trees within CVS. If you are
1697 working on both, then this would require at least two separate check outs (i.e
1698 main trunk, and the stable release branch, which is v_3_0_branch at the
1699 moment).
1700
1701 -------------------------------------------------------------------------------
1702
1703 6.2. Before the Release: Freeze
1704
1705 The following must be done by one of the developers prior to each new release.
1706
1707   * Make sure that everybody who has worked on the code in the last couple of
1708     days has had a chance to yell "no!" in case they have pending changes/fixes
1709     in their pipelines. Announce the freeze so that nobody will interfere with
1710     last minute changes.
1711    
1712   * Increment the version number (point from odd to even in development
1713     branches!) in configure.in. (RPM spec files will need to be incremented as
1714     well.)
1715    
1716   * If default.action has changed since last release (i.e. software release or
1717     standalone actions file release), bump up its version info to A.B in this
1718     line:
1719    
1720       {+add-header{X-Actions-File-Version: A.B} -filter -no-popups}    
1721    
1722     Then change the version info in doc/webserver/actions/index.php, line:
1723     '$required_actions_file_version = "A.B";'
1724    
1725   * All documentation should be rebuild after the version bump. Finished docs
1726     should be then be committed to CVS (for those without the ability to build
1727     these). Some docs may require rather obscure processing tools. config, the
1728     man page (and the html version of the man page), and the PDF docs fall in
1729     this category. REAMDE, the man page, AUTHORS, and config should all also be
1730     committed to CVS for other packagers. The formal docs should be uploaded to
1731     the webserver. See the Section "Updating the webserver" in this manual for
1732     details.
1733    
1734   * The User Manual is also used for context sensitive help for the CGI editor.
1735     This is version sensitive, so that the user will get appropriate help for
1736     his/her release. So with each release a fresh version should be uploaded to
1737     the webserver (this is in addition to the main User Manual link from the
1738     main page since we need to keep manuals for various versions available).
1739     The CGI pages will link to something like http://privoxy.org/$(VERSION)/
1740     user-manual/. This will need to be updated for each new release. There is
1741     no Makefile target for this at this time!!! It needs to be done manually.
1742    
1743   * All developers should look at the ChangeLog and make sure noteworthy
1744     changes are referenced.
1745    
1746   * Commit all files that were changed in the above steps!
1747    
1748   * Tag all files in CVS with the version number with "cvs tag v_X_Y_Z". Don't
1749     use vX_Y_Z, ver_X_Y_Z, v_X.Y.Z (won't work) etc.
1750    
1751   * If the release was in a development branch, increase the point version from
1752     even to odd (X.Y.(Z+1)) again in configure.in and commit your change.
1753    
1754   * On the webserver, copy the user manual to a new top-level directory called
1755     X.Y.Z. This ensures that help links from the CGI pages, which have the
1756     version as a prefix, will go into the right version of the manual. If this
1757     is a development branch release, also symlink X.Y.(Z-1) to X.Y.Z and X.Y.
1758     (Z+1) to . (i.e. dot).
1759    
1760 -------------------------------------------------------------------------------
1761
1762 6.3. Building and Releasing the Packages
1763
1764 Now the individual packages can be built and released. Note that for GPL
1765 reasons the first package to be released is always the source tarball.
1766
1767 For all types of packages, including the source tarball, you must make sure
1768 that you build from clean sources by exporting the right version from CVS into
1769 an empty directory (just press return when asked for a password):
1770
1771   mkdir dist # delete or choose different name if it already exists                                
1772   cd dist                                                                                          
1773   cvs -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa login                        
1774   cvs -z3 -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa export -r v_X_Y_Z current
1775
1776 Do NOT change a single bit, including, but not limited to version information
1777 after export from CVS. This is to make sure that all release packages, and with
1778 them, all future bug reports, are based on exactly the same code.
1779
1780 Please find additional instructions for the source tarball and the individual
1781 platform dependent binary packages below. And details on the Sourceforge
1782 release process below that.
1783
1784 -------------------------------------------------------------------------------
1785
1786 6.3.1. Note on Privoxy Packaging
1787
1788 Please keep these general guidelines in mind when putting together your
1789 package. These apply to all platforms!
1790
1791   * Privoxy requires write access to: all *.action files, all logfiles, and the
1792     trust file. You will need to determine the best way to do this for your
1793     platform.
1794    
1795   * Please include up to date documentation. At a bare minimum:
1796    
1797     LICENSE (top-level directory)
1798    
1799     README (top-level directory)
1800    
1801     AUTHORS (top-level directory)
1802    
1803     man page (top-level directory, Unix-like platforms only)
1804    
1805     The User Manual (doc/webserver/user-manual/)
1806    
1807     FAQ (doc/webserver/faq/)
1808    
1809     Also suggested: Developer Manual (doc/webserver/developer-manual) and
1810     ChangeLog (top-level directory). FAQ and the manuals are HTML docs. There
1811     are also text versions in doc/text/ which could conceivably also be
1812     included.
1813    
1814     The documentation has been designed such that the manuals are linked to
1815     each other from parallel directories, and should be packaged that way.
1816     privoxy-index.html can also be included and can serve as a focal point for
1817     docs and other links of interest (and possibly renamed to index.html). This
1818     should be one level up from the manuals. There is a link also on this page
1819     to an HTMLized version of the man page. To avoid 404 for this, it is in CVS
1820     as doc/webserver/man-page/privoxy-man-page.html, and should be included
1821     along with the manuals. There is also a css stylesheets that can be
1822     included for better presentation: p_doc.css. This should be in the same
1823     directory with privoxy-index.html, (i.e. one level up from the manual
1824     directories).
1825    
1826   * user.action is designed for local preferences. Make sure this does not get
1827     overwritten!
1828    
1829   * Other configuration files should be installed as the new defaults, but all
1830     previously installed configuration files should be preserved as backups.
1831     This is just good manners :-)
1832    
1833   * Please check platform specific notes in this doc, if you haven't done
1834     "Privoxy" packaging before for other platform specific issues. Conversely,
1835     please add any notes that you know are important for your platform (or
1836     contact one of the doc maintainers to do this if you can't).
1837    
1838   * Packagers should do a "clean" install of their package after building it.
1839     So any previous installs should be removed first to ensure the integrity of
1840     the newly built package. Then run the package for a while to make sure
1841     there are no obvious problems, before uploading.
1842    
1843 -------------------------------------------------------------------------------
1844
1845 6.3.2. Source Tarball
1846
1847 First, make sure that you have freshly exported the right version into an empty
1848 directory. (See "Building and releasing packages" above). Then run:
1849
1850   cd current                                                                   
1851   autoheader && autoconf && ./configure                                        
1852
1853 Then do:
1854
1855   make tarball-dist                                                            
1856
1857 To upload the package to Sourceforge, simply issue
1858
1859   make tarball-upload                                                          
1860
1861 Go to the displayed URL and release the file publicly on Sourceforge. For the
1862 change log field, use the relevant section of the ChangeLog file.
1863
1864 -------------------------------------------------------------------------------
1865
1866 6.3.3. SuSE, Conectiva or Red Hat RPM
1867
1868 In following text, replace dist with either "rh" for Red Hat or "suse" for
1869 SuSE.
1870
1871 First, make sure that you have freshly exported the right version into an empty
1872 directory. (See "Building and releasing packages" above).
1873
1874 As the only exception to not changing anything after export from CVS, now
1875 examine the file privoxy-dist.spec and make sure that the version information
1876 and the RPM release number are correct. The RPM release numbers for each
1877 version start at one. Hence it must be reset to one if this is the first RPM
1878 for dist which is built from version X.Y.Z. Check the file list if unsure.
1879 Else, it must be set to the highest already available RPM release number for
1880 that version plus one.
1881
1882 Then run:
1883
1884   cd current                                                                   
1885   autoheader && autoconf && ./configure                                        
1886
1887 Then do
1888
1889   make dist-dist                                                               
1890
1891 To upload the package to Sourceforge, simply issue
1892
1893   make dist-upload rpm_packagerev                                              
1894
1895 where rpm_packagerev is the RPM release number as determined above. Go to the
1896 displayed URL and release the file publicly on Sourceforge. Use the release
1897 notes and change log from the source tarball package.
1898
1899 -------------------------------------------------------------------------------
1900
1901 6.3.4. OS/2
1902
1903 First, make sure that you have freshly exported the right version into an empty
1904 directory. (See "Building and releasing packages" above). Then get the OS/2
1905 Setup module:
1906
1907   cvs -z3 -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa co os2setup
1908
1909 You will need a mix of development tools. The main compilation takes place with
1910 IBM Visual Age C++. Some ancillary work takes place with GNU tools, available
1911 from various sources like hobbes.nmsu.edu. Specificially, you will need
1912 autoheader, autoconf and sh tools. The packaging takes place with WarpIN,
1913 available from various sources, including its home page: xworkplace.
1914
1915 Change directory to the os2setup directory. Edit the os2build.cmd file to set
1916 the final executable filename. For example,
1917
1918   installExeName='privoxyos2_setup_X.Y.Z.exe'                                  
1919
1920 Next, edit the IJB.wis file so the release number matches in the PACKAGEID
1921 section:
1922
1923   PACKAGEID="Privoxy Team\Privoxy\Privoxy Package\X\Y\Z"                       
1924
1925 You're now ready to build. Run:
1926
1927   os2build                                                                     
1928
1929 You will find the WarpIN-installable executable in the ./files directory.
1930 Upload this anonymously to uploads.sourceforge.net/incoming, create a release
1931 for it, and you're done. Use the release notes and Change Log from the source
1932 tarball package.
1933
1934 -------------------------------------------------------------------------------
1935
1936 6.3.5. Solaris
1937
1938 Login to Sourceforge's compilefarm via ssh:
1939
1940   ssh cf.sourceforge.net                                                       
1941
1942 Choose the right operating system (not the Debian one). When logged in, make
1943 sure that you have freshly exported the right version into an empty directory.
1944 (See "Building and releasing packages" above). Then run:
1945
1946   cd current                                                                   
1947   autoheader && autoconf && ./configure                                        
1948
1949 Then run
1950
1951   gmake solaris-dist                                                           
1952
1953 which creates a gzip'ed tar archive. Sadly, you cannot use make solaris-upload
1954 on the Sourceforge machine (no ncftpput). You now have to manually upload the
1955 archive to Sourceforge's ftp server and release the file publicly. Use the
1956 release notes and Change Log from the source tarball package.
1957
1958 -------------------------------------------------------------------------------
1959
1960 6.3.6. Windows
1961
1962 You should ensure you have the latest version of Cygwin (from http://
1963 www.cygwin.com/). Run the following commands from within a Cygwin bash shell.
1964
1965 First, make sure that you have freshly exported the right version into an empty
1966 directory. (See "Building and releasing packages" above). Then get the Windows
1967 setup module:
1968
1969   cvs -z3  -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa co winsetup
1970
1971 Then you can build the package. This is fully automated, and is controlled by
1972 winsetup/GNUmakefile. All you need to do is:
1973
1974   cd winsetup                                                                  
1975   make                                                                         
1976
1977 Now you can manually rename privoxy_setup.exe to privoxy_setup_X_Y_Z.exe, and
1978 upload it to SourceForge. When releasing the package on SourceForge, use the
1979 release notes and Change Log from the source tarball package.
1980
1981 -------------------------------------------------------------------------------
1982
1983 6.3.7. Debian
1984
1985 First, make sure that you have freshly exported the right version into an empty
1986 directory. (See "Building and releasing packages" above). Then add a log entry
1987 to debian/changelog, if it is not already there, for example by running:
1988
1989   debchange -v 3.0.1-stable-1 "New upstream version"                           
1990
1991 Then, run:
1992
1993   dpkg-buildpackage -rfakeroot -us -uc -b                                      
1994
1995 This will create ../privoxy_3.0.1-stable-1_i386.deb which can be uploaded. To
1996 upload the package to Sourceforge, simply issue
1997
1998   make debian-upload                                                           
1999
2000 -------------------------------------------------------------------------------
2001
2002 6.3.8. Mac OSX
2003
2004 First, make sure that you have freshly exported the right version into an empty
2005 directory. (See "Building and releasing packages" above). Then get the Mac OSX
2006 setup module:
2007
2008   cvs -z3 -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa co osxsetup
2009
2010 Then run:
2011
2012   cd osxsetup                                                                  
2013   build                                                                        
2014
2015 This will run autoheader, autoconf and configure as well as make. Finally, it
2016 will copy over the necessary files to the ./osxsetup/files directory for
2017 further processing by PackageMaker.
2018
2019 Bring up PackageMaker with the PrivoxyPackage.pmsp definition file, modify the
2020 package name to match the release, and hit the "Create package" button. If you
2021 specify ./Privoxy.pkg as the output package name, you can then create the
2022 distributable zip file with the command:
2023
2024   zip -r privoxyosx_setup_x.y.z.zip Privoxy.pkg                                
2025
2026 You can then upload privoxyosx_setup_x.y.z.zip anonymously to
2027 uploads.sourceforge.net/incoming, create a release for it, and you're done. Use
2028 the release notes and Change Log from the source tarball package.
2029
2030 -------------------------------------------------------------------------------
2031
2032 6.3.9. FreeBSD
2033
2034 Login to Sourceforge's compile-farm via ssh:
2035
2036   ssh cf.sourceforge.net                                                       
2037
2038 Choose the right operating system. When logged in, make sure that you have
2039 freshly exported the right version into an empty directory. (See "Building and
2040 releasing packages" above). Then run:
2041
2042   cd current                                                                   
2043   autoheader && autoconf && ./configure                                        
2044
2045 Then run:
2046
2047   gmake freebsd-dist                                                           
2048
2049 which creates a gzip'ed tar archive. Sadly, you cannot use make freebsd-upload
2050 on the Sourceforge machine (no ncftpput). You now have to manually upload the
2051 archive to Sourceforge's ftp server and release the file publicly. Use the
2052 release notes and Change Log from the source tarball package.
2053
2054 -------------------------------------------------------------------------------
2055
2056 6.3.10. HP-UX 11
2057
2058 First, make sure that you have freshly exported the right version into an empty
2059 directory. (See "Building and releasing packages" above). Then run:
2060
2061   cd current                                                                   
2062   autoheader && autoconf && ./configure                                        
2063
2064 Then do FIXME.
2065
2066 -------------------------------------------------------------------------------
2067
2068 6.3.11. Amiga OS
2069
2070 First, make sure that you have freshly exported the right version into an empty
2071 directory. (See "Building and releasing packages" above). Then run:
2072
2073   cd current                                                                   
2074   autoheader && autoconf && ./configure                                        
2075
2076 Then do FIXME.
2077
2078 -------------------------------------------------------------------------------
2079
2080 6.3.12. AIX
2081
2082 Login to Sourceforge's compilefarm via ssh:
2083
2084   ssh cf.sourceforge.net                                                       
2085
2086 Choose the right operating system. When logged in, make sure that you have
2087 freshly exported the right version into an empty directory. (See "Building and
2088 releasing packages" above). Then run:
2089
2090   cd current                                                                   
2091   autoheader && autoconf && ./configure                                        
2092
2093 Then run:
2094
2095   make aix-dist                                                                
2096
2097 which creates a gzip'ed tar archive. Sadly, you cannot use make aix-upload on
2098 the Sourceforge machine (no ncftpput). You now have to manually upload the
2099 archive to Sourceforge's ftp server and release the file publicly. Use the
2100 release notes and Change Log from the source tarball package.
2101
2102 -------------------------------------------------------------------------------
2103
2104 6.4. Uploading and Releasing Your Package
2105
2106 After the package is ready, it is time to upload it to SourceForge, and go
2107 through the release steps. The upload is done via FTP:
2108
2109   * Upload to: ftp://upload.sourceforge.net/incoming
2110    
2111   * user: anonymous
2112    
2113   * password: ijbswa-developers@lists.sourceforge.net
2114    
2115 Or use the make targets as described above.
2116
2117 Once this done go to http://sourceforge.net/project/admin/editpackages.php?
2118 group_id=11118, making sure you are logged in. Find your target platform in the
2119 second column, and click Add Release. You will then need to create a new
2120 release for your package, using the format of $VERSION ($CODE_STATUS), e.g.
2121 3.0.1 (beta).
2122
2123 Now just follow the prompts. Be sure to add any appropriate Release notes. You
2124 should see your freshly uploaded packages in "Step 2. Add Files To This
2125 Release". Check the appropriate box(es). Remember at each step to hit the
2126 "Refresh/Submit" buttons! You should now see your file(s) listed in Step 3.
2127 Fill out the forms with the appropriate information for your platform, being
2128 sure to hit "Update" for each file. If anyone is monitoring your platform,
2129 check the "email" box at the very bottom to notify them of the new package.
2130 This should do it!
2131
2132 If you have made errors, or need to make changes, you can go through
2133 essentially the same steps, but select Edit Release, instead of Add Release.
2134
2135 -------------------------------------------------------------------------------
2136
2137 6.5. After the Release
2138
2139 When all (or: most of the) packages have been uploaded and made available, send
2140 an email to the announce mailing list, Subject: "Version X.Y.Z available for
2141 download". Be sure to include the download location, the release notes and the
2142 Changelog. Also, post an updated News item on the project page Sourceforge, and
2143 update the Home page and docs linked from the Home page (see below).
2144
2145 -------------------------------------------------------------------------------
2146
2147 7. Update the Webserver
2148
2149 The webserver should be updated at least with each stable release. When
2150 updating, please follow these steps to make sure that no broken links,
2151 inconsistent contents or permission problems will occur (as it has many times
2152 in the past!):
2153
2154 If you have changed anything in the stable-branch documentation source SGML
2155 files, do:
2156
2157   make dok dok-pdf # (or 'make redhat-dok dok-pdf' if 'make dok' doesn't work for you)
2158
2159 That will generate doc/webserver/user-manual, doc/webserver/developer-manual,
2160 doc/webserver/faq, doc/pdf/*.pdf and doc/webserver/index.html automatically.
2161
2162 If you changed the manual page sources, generate doc/webserver/man-page/
2163 privoxy-man-page.html by running "make man". (This is a separate target due to
2164 dependencies on some obscure perl scripts [now in CVS, but not well tested].
2165 See comments in GNUmakefile.)
2166
2167 If you want to add new files to the webserver, create them locally in the doc/
2168 webserver/* directory (or create new directories under doc/webserver).
2169
2170 Next, commit any changes from the above steps to CVS. All set? If these are
2171 docs in the stable branch, then do:
2172
2173   make webserver                                                               
2174
2175 This will do the upload to the webserver (www.privoxy.org) and ensure all files
2176 and directories there are group writable.
2177
2178 Please do NOT use any other means of transferring files to the webserver to
2179 avoid permission problems. Also, please do not upload docs from development
2180 branches or versions. The publicly posted docs should be in sync with the last
2181 official release.
2182
2183 -------------------------------------------------------------------------------
2184
2185 8. Contacting the developers, Bug Reporting and Feature Requests
2186
2187 We value your feedback. In fact, we rely on it to improve Privoxy and its
2188 configuration. However, please note the following hints, so we can provide you
2189 with the best support:
2190
2191 -------------------------------------------------------------------------------
2192
2193 8.1. Get Support
2194
2195 For casual users, our support forum at SourceForge is probably best suited: 
2196 http://sourceforge.net/tracker/?group_id=11118&atid=211118
2197
2198 All users are of course welcome to discuss their issues on the users mailing
2199 list, where the developers also hang around.
2200
2201 -------------------------------------------------------------------------------
2202
2203 8.2. Report Bugs
2204
2205 Please report all bugs only through our bug tracker: http://sourceforge.net/
2206 tracker/?group_id=11118&atid=111118.
2207
2208 Before doing so, please make sure that the bug has not already been submitted
2209 and observe the additional hints at the top of the submit form.
2210
2211 Please try to verify that it is a Privoxy bug, and not a browser or site bug
2212 first. If unsure, try toggling off Privoxy, and see if the problem persists.
2213 The appendix of the user manual also has helpful information on action
2214 debugging. If you are using your own custom configuration, please try the stock
2215 configs to see if the problem is configuration related.
2216
2217 If not using the latest version, chances are that the bug has been found and
2218 fixed in the meantime. We would appreciate if you could take the time to 
2219 upgrade to the latest version (or even the latest CVS snapshot) and verify your
2220 bug, but this is not required for reporting.
2221
2222 -------------------------------------------------------------------------------
2223
2224 8.3. Request New Features
2225
2226 You are welcome to submit ideas on new features or other proposals for
2227 improvement through our feature request tracker at http://sourceforge.net/
2228 tracker/?atid=361118&group_id=11118.
2229
2230 -------------------------------------------------------------------------------
2231
2232 8.4. Report Ads or Other Actions-Related Problems
2233
2234 Please send feedback on ads that slipped through, innocent images that were
2235 blocked, and any other problems relating to the default.action file through our
2236 actions feedback mechanism located at http://www.privoxy.org/actions/. On this
2237 page, you will also find a bookmark which will take you back there from any
2238 troubled site and even pre-fill the form!
2239
2240 New, improved default.action files will occasionally be made available based on
2241 your feedback. These will be announced on the ijbswa-announce list and
2242 available from our the files section of our project page.
2243
2244 -------------------------------------------------------------------------------
2245
2246 8.5. Other
2247
2248 For any other issues, feel free to use the mailing lists. Technically
2249 interested users and people who wish to contribute to the project are also
2250 welcome on the developers list! You can find an overview of all Privoxy-related
2251 mailing lists, including list archives, at: http://sourceforge.net/mail/?
2252 group_id=11118.
2253
2254 -------------------------------------------------------------------------------
2255
2256 9. Privoxy Copyright, License and History
2257
2258 Copyright © 2001, 2002 by Privoxy Developers <developers@privoxy.org>
2259
2260 Some source code is based on code Copyright © 1997 by Anonymous Coders and
2261 Junkbusters, Inc. and licensed under the GNU General Public License.
2262
2263 -------------------------------------------------------------------------------
2264
2265 9.1. License
2266
2267 Privoxy is free software; you can redistribute it and/or modify it under the
2268 terms of the GNU General Public License, version 2, as published by the Free
2269 Software Foundation.
2270
2271 This program is distributed in the hope that it will be useful, but WITHOUT ANY
2272 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
2273 PARTICULAR PURPOSE. See the GNU General Public License for more details, which
2274 is available from the Free Software Foundation, Inc, 59 Temple Place - Suite
2275 330, Boston, MA 02111-1307, USA.
2276
2277 You should have received a copy of the GNU General Public License along with
2278 this program; if not, write to the
2279
2280  Free Software
2281  Foundation, Inc. 59 Temple Place - Suite 330
2282  Boston, MA 02111-1307
2283  USA 
2284
2285 -------------------------------------------------------------------------------
2286
2287 9.2. History
2288
2289 In the beginning, there was the Internet Junkbuster, by Anonymous Coders and 
2290 Junkbusters Corporation. It saved many users a lot of pain in the early days of
2291 web advertising and user tracking.
2292
2293 But the web, its protocols and standards, and with it, the techniques for
2294 forcing users to consume ads, give up autonomy over their browsing, and for
2295 spying on them, kept evolving. Unfortunately, the Internet Junkbuster did not.
2296 Version 2.0.2, published in 1998, was (and is) the last official release
2297 available from Junkbusters Corporation. Fortunately, it had been released under
2298 the GNU GPL, which allowed further development by others.
2299
2300 So Stefan Waldherr started maintaining an improved version of the software, to
2301 which eventually a number of people contributed patches. It could already
2302 replace banners with a transparent image, and had a first version of pop-up
2303 killing, but it was still very closely based on the original, with all its
2304 limitations, such as the lack of HTTP/1.1 support, flexible per-site
2305 configuration, or content modification. The last release from this effort was
2306 version 2.0.2-10, published in 2000.
2307
2308 Then, some developers picked up the thread, and started turning the software
2309 inside out, upside down, and then reassembled it, adding many new features
2310 along the way.
2311
2312 The result of this is Privoxy, whose first stable release, 3.0, was released
2313 August, 2002.
2314
2315 -------------------------------------------------------------------------------
2316
2317 10. See also
2318
2319 Other references and sites of interest to Privoxy users:
2320
2321 http://www.privoxy.org/, the Privoxy Home page.
2322
2323 http://www.privoxy.org/faq/, the Privoxy FAQ.
2324
2325 http://sourceforge.net/projects/ijbswa/, the Project Page for Privoxy on       
2326 SourceForge.                                                                   
2327
2328 http://config.privoxy.org/, the web-based user interface. Privoxy must be      
2329 running for this to work. Shortcut: http://p.p/                                
2330
2331 http://www.privoxy.org/actions/, to submit "misses" to the developers.
2332
2333 http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/contrib/, cool and fun   
2334 ideas from Privoxy users.                                                      
2335
2336 http://www.junkbusters.com/ht/en/cookies.html, an explanation how cookies are  
2337 used to track web users.                                                       
2338
2339 http://www.junkbusters.com/ijb.html, the original Internet Junkbuster.
2340
2341 http://www.waldherr.org/junkbuster/, Stefan Waldherr's version of Junkbuster,  
2342 from which Privoxy was derived.                                                
2343
2344 http://privacy.net/analyze/, a useful site to check what information about you 
2345 is leaked while you browse the web.                                            
2346
2347 http://www.squid-cache.org/, a very popular caching proxy, which is often used 
2348 together with Privoxy.                                                         
2349
2350 http://www.privoxy.org/developer-manual/, the Privoxy developer manual.
2351