diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-07 00:33:22 +0000 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-07 00:33:22 +0000 |
commit | 66deef423a89042d3a5c185d455a293c810587bc (patch) | |
tree | 4b06aa8c2d72bdc6e3072d3fdf2dbd581e2c89e2 /docs/manual/mod/mod_deflate.xml | |
parent | 0cf8e3be483524bef21677953603434e6d8b6973 (diff) | |
download | httpd-66deef423a89042d3a5c185d455a293c810587bc.tar.gz |
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.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94986 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_deflate.xml')
-rw-r--r-- | docs/manual/mod/mod_deflate.xml | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/docs/manual/mod/mod_deflate.xml b/docs/manual/mod/mod_deflate.xml index cf5ff40d9b..ab8ee161e2 100644 --- a/docs/manual/mod/mod_deflate.xml +++ b/docs/manual/mod/mod_deflate.xml @@ -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 @@ SetOutputFilter DEFLATE </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 @@ SetOutputFilter DEFLATE <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> |