developer doc nit: bumping the version number belongs in 'After the Release'
[privoxy.git] / doc / webserver / developer-manual / newrelease.html
index 62dd516..c272eb0 100644 (file)
@@ -17,7 +17,10 @@ TITLE="Update the Webserver"
 HREF="webserver-update.html"><LINK
 REL="STYLESHEET"
 TYPE="text/css"
-HREF="../p_doc.css"></HEAD
+HREF="../p_doc.css"><META
+HTTP-EQUIV="Content-Type"
+CONTENT="text/html;
+charset=ISO-8859-1"></HEAD
 ><BODY
 CLASS="SECT1"
 BGCOLOR="#EEEEEE"
@@ -92,8 +95,8 @@ CLASS="APPLICATION"
         procedure outlined in this chapter.
     </P
 ><P
->      The following programs are required to follow this process:
-       <TT
+>        The following programs are required to follow this process:
+        <TT
 CLASS="FILENAME"
 >ncftpput</TT
 > (ncftp), <TT
@@ -114,20 +117,21 @@ NAME="VERSIONNUMBERS"
 >6.1. Version numbers</A
 ></H2
 ><P
->      First you need to determine which version number the release will have. 
+>      First you need to determine which version number the release will have.
       <SPAN
 CLASS="APPLICATION"
 >Privoxy</SPAN
 > version numbers consist of three numbers,
       separated by dots, like in X.Y.Z (e.g. 3.0.0), where:
-        <P
+    </P
+><P
 ></P
 ><UL
 ><LI
 ><P
 >              X, the version major, is rarely ever changed. It is increased by one if
               turning a development branch into stable substantially changes the functionality,
-              user interface or configuration syntax. Majors 1 and 2 were 
+              user interface or configuration syntax. Majors 1 and 2 were
               <SPAN
 CLASS="APPLICATION"
 >Junkbuster</SPAN
@@ -140,7 +144,8 @@ CLASS="APPLICATION"
 ></LI
 ><LI
 ><P
->              Y, the version minor, represents the branch within the major version.
+> 
+              Y, the version minor, represents the branch within the major version.
               At any point in time, there are two branches being maintained:
               The stable branch, with an even minor, say, 2N, in which no functionality is
               being added and only bug-fixes are made, and 2N+1, the development branch, in
@@ -160,33 +165,28 @@ CLASS="APPLICATION"
 ><LI
 ><P
 >              Z, the point or sub version, represents a release of the software within a branch.
-              It is therefore incremented immediately before each code freeze. 
-              In development branches, only the even point versions correspond to actual releases,
-              while the odd ones denote the evolving state of the sources on CVS in between.
-              It follows that Z is odd on CVS in development branches most of the time. There, it gets
-              increased to an even number immediately before a code freeze, and is increased to an odd
-              number again immediately thereafter.
-              This ensures that builds from CVS snapshots are easily distinguished from released versions.
+              It is therefore incremented immediately after each software release.
+      
               The point version is reset to zero when the minor changes.
             </P
 ><P
 >              Stable branches work a little differently, since there should be
               little to no development happening in such branches. Remember,
               only bugfixes, which presumably should have had some testing
-              before being committed. Stable branches will then have their 
+              before being committed. Stable branches will then have their
               version reported as <TT
 CLASS="LITERAL"
 >0.0.0</TT
->, during that period 
-              between releases when changes are being added. This is to denote 
+>, during that period
+              between releases when changes are being added. This is to denote
               that this code is <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
 >not for release</I
 ></SPAN
->. Then 
-              as the release nears, the version is bumped according: e.g. 
+>. Then
+              as the release nears, the version is bumped according: e.g.
               <TT
 CLASS="LITERAL"
 >3.0.1 -&#62; 0.0.0 -&#62; 3.0.2</TT
@@ -194,10 +194,8 @@ CLASS="LITERAL"
             </P
 ></LI
 ></UL
->
-    </P
 ><P
->     In summary, the main CVS trunk is the development branch where new
+>     In summary, the main Git trunk is the development branch where new
      features are being worked on for the next stable series. This should
      almost always be where the most activity takes place. There is always at
      least one stable branch from the trunk, e.g now it is
@@ -221,9 +219,9 @@ CLASS="EMPHASIS"
 > committing to a stable branch!
     </P
 ><P
->     Developers should remember too that if they commit a bugfix to the stable 
-     branch, this will more than likely require a separate submission to the 
-     main trunk, since these are separate development trees within CVS. If you 
+>     Developers should remember too that if they commit a bugfix to the stable
+     branch, this will more than likely require a separate submission to the
+     main trunk, since these are separate development trees within Git. If you
      are working on both, then this would require at least two separate check
      outs (i.e main trunk, <SPAN
 CLASS="emphasis"
@@ -257,7 +255,6 @@ CLASS="EMPHASIS"
 > prior to each new release.
      </P
 ><P
->      <P
 ></P
 ><UL
 ><LI
@@ -269,30 +266,19 @@ CLASS="QUOTE"
 > in case
          they have pending changes/fixes in their pipelines. Announce the
          freeze so that nobody will interfere with last minute changes.
-        </P
+       </P
 ></LI
 ><LI
 ><P
->         Increment the version number (point from odd to even in development
-         branches!) in <TT
-CLASS="FILENAME"
->configure.in</TT
->. (RPM spec files 
-         will need to be incremented as well.)
+>         Update the code status (CODE_STATUS="xxx") in configure.in to one of
+         "alpha", "beta" or "stable".
        </P
 ></LI
 ><LI
 ><P
->        If <TT
-CLASS="FILENAME"
->default.action</TT
-> has changed since last
-        release (i.e. software release or standalone actions file release),
-        bump up its version info to A.B in this line:
+>         Rebuild configure and GNUMakefile to make sure the updated values are being used.
        </P
-><P
-> 
-        <TABLE
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="90%"
@@ -300,32 +286,61 @@ WIDTH="90%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  {+add-header{X-Actions-File-Version: A.B} -filter -no-popups}</PRE
+>$ autoheader &#38;&#38; autoconf     # rebuild configure
+$ ./configure                # rebuild GNUmakefile</PRE
 ></TD
 ></TR
 ></TABLE
->
+></LI
+><LI
+><P
+>        <B
+CLASS="COMMAND"
+>make dok-release</B
+> to update the sgml documentation source files.
        </P
+></LI
+><LI
 ><P
-> 
-        Then change the version info in doc/webserver/actions/index.php,
-        line: '$required_actions_file_version = "A.B";'
+>        If action file processing has changed and is not backward-compatible,
+        make sure the "for-privoxy-version=x.y.z" minimum version number in
+        default.action.master has been updated:
        </P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="90%"
+><TR
+><TD
+><PRE
+CLASS="PROGRAMLISTING"
+>{{settings}}
+#############################################################################
+#MASTER# COMMENT: The minimum Privoxy version:
+for-privoxy-version=3.0.11</PRE
+></TD
+></TR
+></TABLE
 ></LI
 ><LI
 ><P
->        All documentation should be rebuild after the version bump.
-        Finished docs should be then be committed to CVS (for those 
-        without the ability to build these). Some docs may require 
+>        All documentation should be rebuild after the code status has been changed.
+        Finished docs should be then be committed to Git (for those
+        without the ability to build these). Some docs may require
         rather obscure processing tools. <TT
 CLASS="FILENAME"
 >config</TT
 >,
-        the man page (and the html version of the man page), and the PDF docs
-        fall in this category. REAMDE, the man page, AUTHORS, and config
-        should all also be committed to CVS for other packagers. The 
-        formal docs should be uploaded to the webserver. See the
-        Section "Updating the webserver" in this manual for details.
+        the man page (and the html version of the man page)
+        fall in this category. README, the man page, AUTHORS, and config
+        should all also be committed to Git for other packagers. The
+        formal docs should be uploaded to the webserver. See the section
+        <A
+HREF="webserver-update.html"
+TARGET="_top"
+>"Updating the webserver"</A
+>
+        in this manual for details.
        </P
 ></LI
 ><LI
@@ -333,16 +348,16 @@ CLASS="FILENAME"
 >         The <I
 CLASS="CITETITLE"
 >User Manual</I
-> is also used for context 
+> is also used for context
          sensitive help for the CGI editor. This is version sensitive, so that
-         the user will get appropriate help for his/her release. So with 
+         the user will get appropriate help for his/her release. So with
          each release a fresh version should be uploaded to the webserver
          (this is in addition to the main <I
 CLASS="CITETITLE"
 >User Manual</I
 >
-         link from the main page since we need to keep manuals for various 
-         versions available). The CGI pages will link to something like 
+         link from the main page since we need to keep manuals for various
+         versions available). The CGI pages will link to something like
          <TT
 CLASS="LITERAL"
 >http://privoxy.org/$(VERSION)/user-manual/</TT
@@ -373,7 +388,7 @@ CLASS="EMPHASIS"
 ></LI
 ><LI
 ><P
->        Tag all files in CVS with the version number with
+>        Tag all files in Git with the version number with
         <SPAN
 CLASS="QUOTE"
 >"<B
@@ -416,12 +431,10 @@ CLASS="FILENAME"
         <TT
 CLASS="FILENAME"
 >.</TT
-> (i.e. dot). 
+> (i.e. dot).
        </P
 ></LI
 ></UL
->
-     </P
 ></DIV
 ><DIV
 CLASS="SECT2"
@@ -448,13 +461,12 @@ CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
 >you must make sure that you build from clean sources by exporting
-      the right version from CVS into an empty directory</I
+      the right version from Git into an empty directory</I
 ></SPAN
 > (just press return when
       asked for a password):
      </P
-><P
->      <TABLE
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -469,8 +481,6 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-    </P
 ><P
 >     <SPAN
 CLASS="emphasis"
@@ -479,7 +489,7 @@ CLASS="EMPHASIS"
 >Do NOT change</I
 ></SPAN
 > a single bit, including, but not limited to
-     version information after export from CVS. This is to make sure that
+     version information after export from Git. This is to make sure that
      all release packages, and with them, all future bug reports, are based
      on exactly the same code.
     </P
@@ -502,10 +512,10 @@ ALIGN="CENTER"
 ><TD
 ALIGN="LEFT"
 ><P
->      Every significant release of Privoxy has included at least one 
-      package that either had incorrect versions of files, missing files, 
-      or incidental leftovers from a previous build process that gave 
-      unknown numbers of users headaches to try to figure out what was 
+>      Every significant release of Privoxy has included at least one
+      package that either had incorrect versions of files, missing files,
+      or incidental leftovers from a previous build process that gave
+      unknown numbers of users headaches to try to figure out what was
       wrong. PLEASE, make sure you are using pristene sources, and are
       following the prescribed process!
      </P
@@ -515,7 +525,7 @@ ALIGN="LEFT"
 ></DIV
 ><P
 >     Please find additional instructions for the source tarball and the
-     individual platform dependent binary packages below. And details 
+     individual platform dependent binary packages below. And details
      on the Sourceforge release process below that.
     </P
 ><DIV
@@ -527,7 +537,7 @@ NAME="PACK-GUIDELINES"
 >6.3.1. Note on Privoxy Packaging</A
 ></H3
 ><P
->      Please keep these general guidelines in mind when putting together 
+>      Please keep these general guidelines in mind when putting together
       your package. These apply to <SPAN
 CLASS="emphasis"
 ><I
@@ -537,7 +547,6 @@ CLASS="EMPHASIS"
 > platforms!
      </P
 ><P
->      <P
 ></P
 ><UL
 ><LI
@@ -555,11 +564,11 @@ CLASS="EMPHASIS"
           write access to: all <TT
 CLASS="FILENAME"
 >*.action</TT
-> files, all 
+> files, all
           logfiles, and the <TT
 CLASS="FILENAME"
 >trust</TT
-> file. You will 
+> file. You will
           need to determine the best way to do this for your platform.
         </P
 ></LI
@@ -692,7 +701,7 @@ CLASS="FILENAME"
         </P
 ><P
 >         The documentation has been designed such that the manuals are linked
-         to each other from parallel directories, and should be packaged 
+         to each other from parallel directories, and should be packaged
          that way. <TT
 CLASS="FILENAME"
 >privoxy-index.html</TT
@@ -702,9 +711,9 @@ CLASS="FILENAME"
 CLASS="FILENAME"
 >index.html</TT
 >).
-         This should be one level up from the manuals. There is a link also 
+         This should be one level up from the manuals. There is a link also
          on this page to an HTMLized version of the man page. To avoid 404 for
-         this, it is in CVS as
+         this, it is in Git as
          <TT
 CLASS="FILENAME"
 >doc/webserver/man-page/privoxy-man-page.html</TT
@@ -735,7 +744,7 @@ CLASS="FILENAME"
         <TT
 CLASS="FILENAME"
 >config</TT
-> should not be overwritten either. This 
+> should not be overwritten either. This
         has especially important configuration data in it.
         <TT
 CLASS="FILENAME"
@@ -748,14 +757,10 @@ CLASS="FILENAME"
 >        Other configuration files (<TT
 CLASS="FILENAME"
 >default.action</TT
->,
-        <TT
-CLASS="FILENAME"
->default.filter</TT
 > and
         <TT
 CLASS="FILENAME"
->standard.action</TT
+>default.filter</TT
 >) should be installed as the new
         defaults, but all previously installed configuration files should be
         preserved as backups. This is just good manners :-) These files are
@@ -765,13 +770,13 @@ CLASS="FILENAME"
 ></LI
 ><LI
 ><P
->       Please check platform specific notes in this doc, if you haven't 
+>       Please check platform specific notes in this doc, if you haven't
        done <SPAN
 CLASS="QUOTE"
 >"Privoxy"</SPAN
-> packaging before for other platform 
-       specific issues. Conversely, please add any notes that you know 
-       are important for your platform (or contact one of the doc 
+> packaging before for other platform
+       specific issues. Conversely, please add any notes that you know
+       are important for your platform (or contact one of the doc
        maintainers to do this if you can't).
       </P
 ></LI
@@ -780,16 +785,14 @@ CLASS="QUOTE"
 >       Packagers should do a <SPAN
 CLASS="QUOTE"
 >"clean"</SPAN
-> install of their 
-       package after building it. So any previous installs should be 
-       removed first to ensure the integrity of the newly built package. 
-       Then run the package for a while to make sure there are no 
+> install of their
+       package after building it. So any previous installs should be
+       removed first to ensure the integrity of the newly built package.
+       Then run the package for a while to make sure there are no
        obvious problems, before uploading.
      </P
 ></LI
 ></UL
->
-     </P
 ></DIV
 ><DIV
 CLASS="SECT3"
@@ -800,7 +803,7 @@ NAME="NEWRELEASE-TARBALL"
 >6.3.2. Source Tarball</A
 ></H3
 ><P
->      First, <SPAN
+>        First, <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
@@ -809,9 +812,8 @@ CLASS="EMPHASIS"
 ></SPAN
 >. (See "Building and releasing
         packages" above). Then run:
-       </P
-><P
->      <TABLE
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -824,13 +826,10 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
-><P
->      Then do:
-       </P
 ><P
->      <TABLE
+>        Then do:
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -842,13 +841,10 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
-><P
->      To upload the package to Sourceforge, simply issue
-       </P
 ><P
->      <TABLE
+>        To upload the package to Sourceforge, simply issue
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -860,10 +856,8 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Go to the displayed URL and release the file publicly on Sourceforge.
+>        Go to the displayed URL and release the file publicly on Sourceforge.
         For the change log field, use the relevant section of the
         <TT
 CLASS="FILENAME"
@@ -893,9 +887,9 @@ CLASS="QUOTE"
 CLASS="QUOTE"
 >"suse"</SPAN
 > for SuSE.
-        </P
+      </P
 ><P
->      First, <SPAN
+>        First, <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
@@ -903,10 +897,10 @@ CLASS="EMPHASIS"
         version into an empty directory</I
 ></SPAN
 >. (See "Building and releasing
-        packages" above). 
-       </P
+        packages" above).
+      </P
 ><P
->        As the only exception to not changing anything after export from CVS,
+>        As the only exception to not changing anything after export from Git,
         now examine the file <TT
 CLASS="FILENAME"
 >privoxy-</TT
@@ -930,18 +924,17 @@ CLASS="REPLACEABLE"
 > which is built from version
         X.Y.Z. Check the
         <A
-HREF="http://sourceforge.net/project/showfiles.php?group_id=11118"
+HREF="https://sourceforge.net/project/showfiles.php?group_id=11118"
 TARGET="_top"
 >file
         list</A
 > if unsure. Else, it must be set to the highest already available RPM
         release number for that version plus one.
-       </P
+      </P
 ><P
 >        Then run:
-       </P
-><P
->      <TABLE
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -954,13 +947,10 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Then do
-       </P
-><P
->      <TABLE
+>        Then do
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -977,13 +967,10 @@ CLASS="REPLACEABLE"
 ></TD
 ></TR
 ></TABLE
->
-       </P
-><P
->      To upload the package to Sourceforge, simply issue
-       </P
 ><P
->      <TABLE
+>        To upload the package to Sourceforge, simply issue
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1005,8 +992,6 @@ CLASS="REPLACEABLE"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
 >        where <TT
 CLASS="REPLACEABLE"
@@ -1015,7 +1000,7 @@ CLASS="REPLACEABLE"
 ></TT
 > is the
         RPM release number as determined above.
-       Go to the displayed URL and release the file publicly on Sourceforge.
+        Go to the displayed URL and release the file publicly on Sourceforge.
         Use the release notes and change log from the source tarball package.
       </P
 ></DIV
@@ -1028,7 +1013,7 @@ NAME="NEWRELEASE-OS2"
 >6.3.4. OS/2</A
 ></H3
 ><P
->      First, <SPAN
+>        First, <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
@@ -1037,9 +1022,8 @@ CLASS="EMPHASIS"
 ></SPAN
 >. (See "Building and releasing
         packages" above). Then get the OS/2 Setup module:
-       </P
-><P
->      <TABLE
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1051,41 +1035,38 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      You will need a mix of development tools.
-       The main compilation takes place with IBM Visual Age C++.
-       Some ancillary work takes place with GNU tools, available from
-       various sources like hobbes.nmsu.edu.
-       Specificially, you will need <TT
+>        You will need a mix of development tools.
+        The main compilation takes place with IBM Visual Age C++.
+        Some ancillary work takes place with GNU tools, available from
+        various sources like hobbes.nmsu.edu.
+        Specificially, you will need <TT
 CLASS="FILENAME"
 >autoheader</TT
 >,
-       <TT
+        <TT
 CLASS="FILENAME"
 >autoconf</TT
 > and <TT
 CLASS="FILENAME"
 >sh</TT
 > tools.
-       The packaging takes place with WarpIN, available from various sources, including
-       its home page: <A
+        The packaging takes place with WarpIN, available from various sources, including
+        its home page: <A
 HREF="http://www.xworkplace.org/"
 TARGET="_top"
 >xworkplace</A
 >.
-       </P
+      </P
 ><P
->      Change directory to the <TT
+>        Change directory to the <TT
 CLASS="FILENAME"
 >os2setup</TT
 > directory.
-       Edit the os2build.cmd file to set the final executable filename.
-       For example, 
-       </P
-><P
->      <TABLE
+        Edit the os2build.cmd file to set the final executable filename.
+        For example,
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1097,20 +1078,17 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Next, edit the <TT
+>        Next, edit the <TT
 CLASS="FILENAME"
 >IJB.wis</TT
 > file so the release number matches
-       in the <TT
+        in the <TT
 CLASS="FILENAME"
 >PACKAGEID</TT
 > section:
-       </P
-><P
->      <TABLE
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1122,13 +1100,10 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
-><P
->      You're now ready to build.  Run:
-       </P
 ><P
->      <TABLE
+>        You're now ready to build.  Run:
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1140,8 +1115,6 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
 >         You will find the  WarpIN-installable executable in the
         <TT
@@ -1154,7 +1127,7 @@ CLASS="FILENAME"
 >, create a release
          for it, and you're done. Use the release notes and Change Log from the
          source tarball package.
-       </P
+      </P
 ></DIV
 ><DIV
 CLASS="SECT3"
@@ -1165,10 +1138,9 @@ NAME="NEWRELEASE-SOLARIS"
 >6.3.5. Solaris</A
 ></H3
 ><P
->      Login to Sourceforge's compilefarm via ssh:
-       </P
-><P
->      <TABLE
+>        Login to Sourceforge's compilefarm via ssh:
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1180,10 +1152,8 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Choose the right operating system (not the Debian one).
+>        Choose the right operating system (not the Debian one).
         When logged in, <SPAN
 CLASS="emphasis"
 ><I
@@ -1193,9 +1163,8 @@ CLASS="EMPHASIS"
 ></SPAN
 >. (See "Building and releasing
         packages" above). Then run:
-       </P
-><P
->      <TABLE
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1208,13 +1177,10 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
-><P
->      Then run
-       </P
 ><P
->      <TABLE
+>        Then run
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1226,18 +1192,16 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      which creates a gzip'ed tar archive. Sadly, you cannot use <B
+>        which creates a gzip'ed tar archive. Sadly, you cannot use <B
 CLASS="COMMAND"
 >make
-       solaris-upload</B
+        solaris-upload</B
 > on the Sourceforge machine (no ncftpput). You now have
-       to manually upload the archive to Sourceforge's ftp server and release
-       the file publicly. Use the release notes and Change Log from the
+        to manually upload the archive to Sourceforge's ftp server and release
+        the file publicly. Use the release notes and Change Log from the
         source tarball package.
-       </P
+      </P
 ></DIV
 ><DIV
 CLASS="SECT3"
@@ -1248,16 +1212,11 @@ NAME="NEWRELEASE-WINDOWS"
 >6.3.6. Windows</A
 ></H3
 ><P
->        You should ensure you have the latest version of Cygwin (from
-        <A
-HREF="http://www.cygwin.com/"
-TARGET="_top"
->http://www.cygwin.com/</A
->).
-        Run the following commands from within a Cygwin bash shell.
+>        Note that the docbook generated files might need some hand editing,
+        so the Windows build makefile does not rebuild the docs.
       </P
 ><P
->      First, <SPAN
+>        First, <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
@@ -1265,10 +1224,18 @@ CLASS="EMPHASIS"
         version into an empty directory</I
 ></SPAN
 >. (See "Building and releasing
-        packages" above). Then get the Windows setup module:
+        packages" above).
+        
       </P
 ><P
->      <TABLE
+>        Then you can build the package.  This is fully automated, and is
+        controlled by <TT
+CLASS="FILENAME"
+>windows/GNUmakefile</TT
+>.
+        All you need to do is:
+      </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1276,22 +1243,34 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  cvs -z3  -d:pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa co winsetup</PRE
+>  cd windows
+  make</PRE
 ></TD
 ></TR
 ></TABLE
->
-      </P
 ><P
->        Then you can build the package.  This is fully automated, and is
-        controlled by <TT
+>        Now you can manually rename <TT
+CLASS="FILENAME"
+>privoxy_setup.exe</TT
+> to
+        <TT
+CLASS="FILENAME"
+>privoxy_setup_X.Y.Z.exe</TT
+>, and the <TT
+CLASS="FILENAME"
+>build</TT
+>
+        directory to <TT
 CLASS="FILENAME"
->winsetup/GNUmakefile</TT
+>privoxy_X.Y.Z</TT
 >.
-        All you need to do is:
+        Create a .zip file of the newly renamed <TT
+CLASS="FILENAME"
+>privoxy_X.Y.Z</TT
+> directory,
+        GPG sign the installer and zip file,
       </P
-><P
->      <TABLE
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1299,23 +1278,22 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  cd winsetup
-  make</PRE
+>  $ gpg --armor --detach --sign <TT
+CLASS="FILENAME"
+>privoxy_setup_X.Y.Z.exe</TT
+>
+  $ gpg --armor --detach --sign <TT
+CLASS="FILENAME"
+>privoxy_X.Y.Z.zip</TT
+></PRE
 ></TD
 ></TR
 ></TABLE
->
+><P
+>        and upload the files to SourceForge.
       </P
 ><P
->        Now you can manually rename <TT
-CLASS="FILENAME"
->privoxy_setup.exe</TT
-> to
-        <TT
-CLASS="FILENAME"
->privoxy_setup_X_Y_Z.exe</TT
->, and upload it to
-        SourceForge. When releasing the package on SourceForge, use the release notes
+>        When releasing the package on SourceForge, use the release notes
         and Change Log from the source tarball package.
       </P
 ></DIV
@@ -1343,8 +1321,7 @@ CLASS="FILENAME"
 >, if it is not
         already there, for example by running:
       </P
-><P
->        <TABLE
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1352,17 +1329,14 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  debchange -v 3.0.8-stable-1 "New upstream version"</PRE
+>  debchange -v 3.0.27-UNRELEASED-1 "New upstream version"</PRE
 ></TD
 ></TR
 ></TABLE
->
-      </P
 ><P
->        Then, run: 
+>        Then, run:
       </P
-><P
->        <TABLE
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1374,19 +1348,16 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-      </P
 ><P
 >        This will create
         <TT
 CLASS="FILENAME"
->../privoxy_3.0.8-stable-1_i386.deb</TT
+>../privoxy_3.0.27-UNRELEASED-1_i386.deb</TT
 >
         which can be uploaded.  To upload the package to Sourceforge, simply
-       issue
+        issue
       </P
-><P
->        <TABLE
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1398,8 +1369,6 @@ CLASS="PROGRAMLISTING"
 ></TD
 ></TR
 ></TABLE
->
-      </P
 ></DIV
 ><DIV
 CLASS="SECT3"
@@ -1407,10 +1376,10 @@ CLASS="SECT3"
 CLASS="SECT3"
 ><A
 NAME="NEWRELEASE-MACOSX"
->6.3.8. Mac OSX</A
+>6.3.8. Mac OS X</A
 ></H3
 ><P
->      First, <SPAN
+>        First, <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
@@ -1418,28 +1387,27 @@ CLASS="EMPHASIS"
         version into an empty directory</I
 ></SPAN
 >. (See "Building and releasing
-        packages" above). Then get the Mac OSX setup module:
-       </P
-><P
->      <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><PRE
-CLASS="PROGRAMLISTING"
->  cvs -z3 -d:pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa co osxsetup</PRE
-></TD
-></TR
-></TABLE
->
-       </P
+        packages" above).
+      </P
 ><P
->      Then run:
-       </P
+>        There are three modules available in the Git repository for use on Mac
+        OS X, though technically only two of them generate a release (the other
+        can be used to install from source).
+      </P
+><DIV
+CLASS="SECT4"
+><H4
+CLASS="SECT4"
+><A
+NAME="OS-X-OSXPACKAGEBUILDER-MODULE"
+>6.3.8.1. OSXPackageBuilder module</A
+></H4
 ><P
->      <TABLE
+>          The OSXPackageBuilder module generates OS X installer packages
+          supporting all Macs running OS X 10.4 and above. Obtain it from Git as
+          follows into a folder parallel to the exported privoxy source:
+        </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1447,108 +1415,50 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  cd osxsetup
-  build</PRE
+>  cvs -z3 -d:pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa co OSXPackageBuilder</PRE
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      This will run <TT
-CLASS="FILENAME"
->autoheader</TT
->, <TT
-CLASS="FILENAME"
->autoconf</TT
-> and
-       <TT
-CLASS="FILENAME"
->configure</TT
-> as well as <TT
-CLASS="FILENAME"
->make</TT
->.
-       Finally, it will copy over the necessary files to the ./osxsetup/files directory
-       for further processing by <TT
+>          The module contains complete instructions on its usage in the file
+          <TT
 CLASS="FILENAME"
->PackageMaker</TT
+>OS X Package Builder HOWTO.txt</TT
 >.
-       </P
-><P
->      Bring up PackageMaker with the PrivoxyPackage.pmsp definition file, modify the package
-       name to match the release, and hit the "Create package" button.
-       If you specify ./Privoxy.pkg as the output package name, you can then create
-       the distributable zip file with the command:
-       </P
-><P
->      <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><PRE
-CLASS="PROGRAMLISTING"
->  zip -r privoxyosx_setup_x.y.z.zip Privoxy.pkg</PRE
-></TD
-></TR
-></TABLE
->
-       </P
+        </P
 ><P
->      You can then upload <TT
-CLASS="FILENAME"
->privoxyosx_setup_x.y.z.zip</TT
-> anonymously to 
-       <TT
-CLASS="FILENAME"
->uploads.sourceforge.net/incoming</TT
->,
-       create a release for it, and you're done. Use the release notes
-        and Change Log from the source tarball package.
-       </P
+>          Once the package(s) have been generated, you can then upload them
+          directly to the Files section of the Sourceforge project in the
+          Macintosh (OS X) folder. Each new version release of Privoxy should
+          have a new subfolder created in which to store its files. Please
+          ensure that the folder contains a readme file that makes it clear
+          which package is for whichversion of OS X.
+        </P
 ></DIV
 ><DIV
-CLASS="SECT3"
-><H3
-CLASS="SECT3"
+CLASS="SECT4"
+><H4
+CLASS="SECT4"
 ><A
-NAME="NEWRELEASE-FREEBSD"
->6.3.9. FreeBSD</A
-></H3
-><P
->      Login to Sourceforge's compile-farm via ssh:
-       </P
-><P
->      <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><PRE
-CLASS="PROGRAMLISTING"
->  ssh cf.sourceforge.net</PRE
-></TD
-></TR
-></TABLE
->
-       </P
+NAME="OS-X-OSXSETUP-MODULE"
+>6.3.8.2. osxsetup module (DEPRECATED)</A
+></H4
 ><P
->      Choose the right operating system.
-        When logged in, <SPAN
+>          <SPAN
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
->make sure that you have freshly exported the right
-        version into an empty directory</I
+>This module is deprecated since the installer it generates
+          places all Privoxy files in one folder in a non-standard location, and
+          supports only Intel Macs running OS X 10.6 or higher.</I
 ></SPAN
->. (See "Building and releasing
-        packages" above). Then run:
-       </P
+>
+        </P
 ><P
->      <TABLE
+>          Check out the module from Git as follows into a folder parallel to the
+          exported privoxy source:
+        </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1556,18 +1466,14 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  cd current
-  autoheader &#38;&#38; autoconf &#38;&#38; ./configure</PRE
+>  cvs -z3 -d:pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa co osxsetup</PRE
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Then run:
-       </P
-><P
->      <TABLE
+>          Then run:
+        </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1575,44 +1481,39 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  gmake freebsd-dist</PRE
+>  cd osxsetup
+  build</PRE
 ></TD
 ></TR
 ></TABLE
->
-       </P
-><P
->      which creates a gzip'ed tar archive. Sadly, you cannot use <B
-CLASS="COMMAND"
->make
-       freebsd-upload</B
-> on the Sourceforge machine (no ncftpput). You now have
-       to manually upload the archive to Sourceforge's ftp server and release
-       the file publicly. Use the release notes and Change Log from the
-        source tarball package.
-       </P
-></DIV
-><DIV
-CLASS="SECT3"
-><H3
-CLASS="SECT3"
-><A
-NAME="NEWRELEASE-HPUX"
->6.3.10. HP-UX 11</A
-></H3
 ><P
->      First, <SPAN
-CLASS="emphasis"
-><I
-CLASS="EMPHASIS"
->make sure that you have freshly exported the right
-        version into an empty directory</I
-></SPAN
->. (See "Building and releasing
-        packages" above). Then run:
-       </P
+>          This will run <TT
+CLASS="FILENAME"
+>autoheader</TT
+>, <TT
+CLASS="FILENAME"
+>autoconf</TT
+>
+          and <TT
+CLASS="FILENAME"
+>configure</TT
+> as well as <TT
+CLASS="FILENAME"
+>make</TT
+>.
+          Finally, it will copy over the necessary files to the ./osxsetup/files
+          directory for further processing by <TT
+CLASS="FILENAME"
+>PackageMaker</TT
+>.
+        </P
 ><P
->      <TABLE
+>        Bring up PackageMaker with the PrivoxyPackage.pmsp definition file,
+        modify the package name to match the release, and hit the "Create
+        package" button. If you specify ./Privoxy.pkg as the output package
+        name, you can then create the distributable zip file with the command:
+        </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1620,38 +1521,36 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  cd current
-  autoheader &#38;&#38; autoconf &#38;&#38; ./configure</PRE
+>  zip -r privoxyosx_setup_x.y.z.zip Privoxy.pkg</PRE
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Then do FIXME.
-       </P
+>          You can then upload this file directly to the Files section of the
+          Sourceforge project in the Macintosh (OS X) folder. Each new version
+          release of Privoxy should have a new subfolder created in which to
+          store its files.
+          Please ensure that the folder contains a readme file that makes it
+          clear which version(s) of OS X the package supports.
+        </P
 ></DIV
 ><DIV
-CLASS="SECT3"
-><H3
-CLASS="SECT3"
+CLASS="SECT4"
+><H4
+CLASS="SECT4"
 ><A
-NAME="NEWRELEASE-AMIGA"
->6.3.11. Amiga OS</A
-></H3
+NAME="OS-X-MACSETUP-MODULE"
+>6.3.8.3. macsetup module</A
+></H4
 ><P
->      First, <SPAN
-CLASS="emphasis"
-><I
-CLASS="EMPHASIS"
->make sure that you have freshly exported the right
-        version into an empty directory</I
-></SPAN
->. (See "Building and releasing
-        packages" above). Then run:
-       </P
+>          The macsetup module is ideal if you wish to build and install Privoxy
+          from source on a single machine.
+        </P
 ><P
->      <TABLE
+>          Check out the module from Git as follows into a folder parallel to the
+          exported privoxy source:
+        </P
+><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
 WIDTH="100%"
@@ -1659,99 +1558,36 @@ WIDTH="100%"
 ><TD
 ><PRE
 CLASS="PROGRAMLISTING"
->  cd current
-  autoheader &#38;&#38; autoconf &#38;&#38; ./configure</PRE
+>  cvs -z3 -d:pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa co macsetup</PRE
 ></TD
 ></TR
 ></TABLE
->
-       </P
 ><P
->      Then do FIXME.
-       </P
+>          The module contains complete instructions on its usage in its
+          <TT
+CLASS="FILENAME"
+>README</TT
+> file. The end result will be the
+          exported version of Privoxy installed on the build machine.
+        </P
+></DIV
 ></DIV
 ><DIV
 CLASS="SECT3"
 ><H3
 CLASS="SECT3"
 ><A
-NAME="NEWRELEASE-AIX"
->6.3.12. AIX</A
+NAME="NEWRELEASE-FREEBSD"
+>6.3.9. FreeBSD</A
 ></H3
 ><P
->      Login to Sourceforge's compilefarm via ssh:
-       </P
-><P
->      <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><PRE
-CLASS="PROGRAMLISTING"
->  ssh cf.sourceforge.net</PRE
-></TD
-></TR
-></TABLE
->
-       </P
-><P
->      Choose the right operating system.
-        When logged in, <SPAN
-CLASS="emphasis"
-><I
-CLASS="EMPHASIS"
->make sure that you have freshly exported the right
-        version into an empty directory</I
-></SPAN
->. (See "Building and releasing
-        packages" above). Then run:
-       </P
-><P
->      <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><PRE
-CLASS="PROGRAMLISTING"
->  cd current
-  autoheader &#38;&#38; autoconf &#38;&#38; ./configure</PRE
-></TD
-></TR
-></TABLE
->
-       </P
-><P
->      Then run:
-       </P
-><P
->      <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><PRE
-CLASS="PROGRAMLISTING"
->  make aix-dist</PRE
-></TD
-></TR
-></TABLE
->
-       </P
-><P
->      which creates a gzip'ed tar archive. Sadly, you cannot use <B
-CLASS="COMMAND"
->make
-       aix-upload</B
-> on the Sourceforge machine (no ncftpput). You now have
-       to manually upload the archive to Sourceforge's ftp server and release
-       the file publicly. Use the release notes and Change Log from the
-        source tarball package.
-       </P
+>        Update the www/privoxy port and submit a diff upstream.
+        For details see the <A
+HREF="https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/"
+TARGET="_top"
+>FreeBSD Porter's Handbook</A
+>.
+      </P
 ></DIV
 ></DIV
 ><DIV
@@ -1763,42 +1599,39 @@ NAME="RELEASING"
 >6.4. Uploading and Releasing Your Package</A
 ></H2
 ><P
->      After the package is ready, it is time to upload it 
+>      After the package is ready, it is time to upload it
       to SourceForge, and go through the release steps. The upload
       is done via FTP:
     </P
 ><P
->      <P
 ></P
 ><UL
 ><LI
 ><P
->          Upload to: <A
+>        Upload to: <A
 HREF="ftp://upload.sourceforge.net/incoming"
 TARGET="_top"
 >ftp://upload.sourceforge.net/incoming</A
 >
-        </P
+      </P
 ></LI
 ><LI
 ><P
->         user: <TT
+>       user: <TT
 CLASS="LITERAL"
 >anonymous</TT
 >
-       </P
+      </P
 ></LI
 ><LI
 ><P
->         password: <TT
+>       password: <TT
 CLASS="LITERAL"
 >ijbswa-developers@lists.sourceforge.net</TT
 >
-       </P
+      </P
 ></LI
 ></UL
->
-    </P
 ><P
 >     Or use the <B
 CLASS="COMMAND"
@@ -1806,17 +1639,18 @@ CLASS="COMMAND"
 > targets as described above.
     </P
 ><P
->     Once this done go to <A
-HREF="http://sourceforge.net/project/admin/editpackages.php?group_id=11118"
+>     Once this done go to
+     <A
+HREF="https://sourceforge.net/project/admin/editpackages.php?group_id=11118"
 TARGET="_top"
->http://sourceforge.net/project/admin/editpackages.php?group_id=11118</A
->, 
-     making sure you are logged in. Find your target platform in the 
+>                 https://sourceforge.net/project/admin/editpackages.php?group_id=11118</A
+>,
+     making sure you are logged in. Find your target platform in the
      second column, and click <TT
 CLASS="LITERAL"
 >Add Release</TT
->. You will 
-     then need to create a new release for your package, using the format 
+>. You will
+     then need to create a new release for your package, using the format
      of <TT
 CLASS="LITERAL"
 >$VERSION ($CODE_STATUS)</TT
@@ -1824,41 +1658,41 @@ CLASS="LITERAL"
 CLASS="emphasis"
 ><I
 CLASS="EMPHASIS"
->3.0.8
+>3.0.27
      (beta)</I
 ></SPAN
 >.
     </P
 ><P
 >     Now just follow the prompts. Be sure to add any appropriate Release
-     notes. You should see your freshly uploaded packages in 
+     notes. You should see your freshly uploaded packages in
      <SPAN
 CLASS="QUOTE"
 >"Step 2. Add Files To This Release"</SPAN
->. Check the 
-     appropriate box(es). Remember at each step to hit the 
+>. Check the
+     appropriate box(es). Remember at each step to hit the
      <SPAN
 CLASS="QUOTE"
 >"Refresh/Submit"</SPAN
-> buttons! You should now see your 
-     file(s) listed in Step 3. Fill out the forms with the appropriate 
+> buttons! You should now see your
+     file(s) listed in Step 3. Fill out the forms with the appropriate
      information for your platform, being sure to hit <SPAN
 CLASS="QUOTE"
 >"Update"</SPAN
 >
-     for each file. If anyone is monitoring your platform, check the 
+     for each file. If anyone is monitoring your platform, check the
      <SPAN
 CLASS="QUOTE"
 >"email"</SPAN
-> box at the very bottom to notify them of 
+> box at the very bottom to notify them of
      the new package. This should do it!
     </P
 ><P
->     If you have made errors, or need to make changes, you can go through 
+>     If you have made errors, or need to make changes, you can go through
      essentially the same steps, but select <TT
 CLASS="LITERAL"
 >Edit Release</TT
->, 
+>,
      instead of <TT
 CLASS="LITERAL"
 >Add Release</TT
@@ -1875,23 +1709,73 @@ NAME="AFTERRELEASE"
 ></H2
 ><P
 >      When all (or: most of the) packages have been uploaded and made available,
-      send an email to the <A
-HREF="mailto:ijbswa-announce@lists.sourceforge.net"
+      send an email to the
+      <A
+HREF="mailto:privoxy-announce@lists.privoxy.org"
 TARGET="_top"
->announce
-      mailing list</A
+>announce mailing
+      list</A
 >, Subject: "Version X.Y.Z available for download". Be sure to
       include the
       <A
-HREF="http://sourceforge.net/project/showfiles.php?group_id=11118"
+HREF="https://sourceforge.net/project/showfiles.php?group_id=11118"
 TARGET="_top"
->download
-      location</A
+>      download location</A
 >, the release notes and the Changelog. Also, post an
-      updated News item on the project page Sourceforge, and update the Home 
+      updated News item on the project page Sourceforge, and update the Home
       page and docs linked from the Home page (see below). Other news sites
       and release oriented sites, such as Freshmeat, should also be notified.
      </P
+><P
+>      Then update the source code for the next version to be released:
+     </P
+><P
+></P
+><UL
+><LI
+><P
+>        Increment the version number and change the code status to "UNRELEASED"
+        in <TT
+CLASS="FILENAME"
+>configure.in</TT
+>
+       </P
+></LI
+><LI
+><P
+>        Rebuild configure (<SPAN
+CLASS="QUOTE"
+>"<B
+CLASS="COMMAND"
+>autoheader &#38;&#38; autoconf</B
+>"</SPAN
+>)
+        and GNUMakefile (<SPAN
+CLASS="QUOTE"
+>"<B
+CLASS="COMMAND"
+>./configure</B
+>"</SPAN
+>)
+       </P
+></LI
+><LI
+><P
+>        <SPAN
+CLASS="QUOTE"
+>"<B
+CLASS="COMMAND"
+>make dok-release</B
+>"</SPAN
+> to update the sgml documentation source files.
+       </P
+></LI
+><LI
+><P
+>        Commit all your changes.
+       </P
+></LI
+></UL
 ></DIV
 ></DIV
 ><DIV