You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2002/05/07 02:33:22 UTC

cvs commit: httpd-2.0/docs/manual/mod mod_deflate.xml

jerenkrantz    02/05/06 17:33:22

  Modified:    docs/manual/mod mod_deflate.xml
  Log:
  Update mod_deflate's documentation.
  
  Note that this does NOT include the transformation since I can't find a
  version of Xerces or Xalan which does not produce major diffs to what
  we have checked in.  So, we need to standardize on a set of jars -
  otherwise, if I were to commit what I get when running build.sh, it'd be
  massive.  (I'd suggest a tarball of jars on the docs-project site or even
  in http://httpd.apache.org/dev/dist somewhere.)
  
  Revision  Changes    Path
  1.3       +17 -6     httpd-2.0/docs/manual/mod/mod_deflate.xml
  
  Index: mod_deflate.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_deflate.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mod_deflate.xml	6 Mar 2002 22:16:49 -0000	1.2
  +++ mod_deflate.xml	7 May 2002 00:33:22 -0000	1.3
  @@ -6,12 +6,12 @@
   <name>mod_deflate</name>
   <description>Compress content before
       it is delivered to the client</description>
  -<status>experimental</status>
  +<status>Extension</status>
   <sourcefile>mod_deflate.c</sourcefile>
   <identifier>deflate_module</identifier>
   
   <summary>
  -    <p>The experimental <module>mod_deflate</module> module provides
  +    <p>The <module>mod_deflate</module> module provides
       the <code>DEFLATE</code> output filter that allows output from
       your server to be compressed before being sent to the client over
       the network.</p>
  @@ -59,15 +59,27 @@
   </directivesynopsis>
   
   <directivesynopsis>
  +<name>DeflateBufferSize</name>
  +<description>Fragment size to be compressed at one time by zlib</description>
  +<syntax>DeflateBufferSize <em>value</em></syntax>
  +<contextlist><context>server config</context></contextlist>
  +
  +<usage>
  +    <p>The <directive>DeflateBufferSize</directive> directive specifies
  +    the size in bytes of the fragments that zlib should compress at one
  +    time.</p>
  +</usage>
  +</directivesynopsis>
  +
  +<directivesynopsis>
   <name>DeflateWindowSize</name>
   <description>Zlib compression window size</description>
   <syntax>DeflateWindowSize <em>value</em></syntax>
   <contextlist><context>server config</context></contextlist>
   
   <usage>
  -    <!-- XXX: Ummm... What unit??? -->
       <p>The <directive>DeflateWindowSize</directive> directive specifies the
  -    zlib compression window size.</p>
  +    zlib compression window size (a value between 1 and 15).</p>
   </usage>
   </directivesynopsis>
   
  @@ -78,9 +90,8 @@
   <contextlist><context>server config</context></contextlist>
   
   <usage>
  -    <!-- XXX: Ummm... What unit??? -->
       <p>The <directive>DeflateMemLevel</directive> directive specifies
  -    the amount of memory available to zlib for compression.</p>
  +    the amount of memory in bytes available to zlib for compression.</p>
   </usage>
   </directivesynopsis>