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