Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C8ADC17D20 for ; Fri, 30 Jan 2015 01:57:06 +0000 (UTC) Received: (qmail 36602 invoked by uid 500); 30 Jan 2015 01:57:07 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 36534 invoked by uid 500); 30 Jan 2015 01:57:07 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 36524 invoked by uid 99); 30 Jan 2015 01:57:07 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Jan 2015 01:57:07 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 2BA92AC003E; Fri, 30 Jan 2015 01:57:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1655904 - in /httpd/httpd/trunk/docs/manual/mod: mod_deflate.html.en mod_deflate.xml Date: Fri, 30 Jan 2015 01:57:06 -0000 To: cvs@httpd.apache.org From: mrumph@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150130015707.2BA92AC003E@hades.apache.org> Author: mrumph Date: Fri Jan 30 01:57:06 2015 New Revision: 1655904 URL: http://svn.apache.org/r1655904 Log: Fix typos in mod_deflate doc Modified: httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en httpd/httpd/trunk/docs/manual/mod/mod_deflate.xml Modified: httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en?rev=1655904&r1=1655903&r2=1655904&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_deflate.html.en Fri Jan 30 01:57:06 2015 @@ -109,7 +109,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe? filters like PHP or SSI. It never touches internal subrequests.

Note

- There is a environment variable force-gzip, + There is an environment variable force-gzip, set via SetEnv, which will ignore the accept-encoding setting of your browser and will send compressed output. @@ -120,7 +120,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?

The mod_deflate module also provides a filter for inflating/uncompressing a gzip compressed response body. In order to activate this feature you have to insert the INFLATE filter into - the outputfilter chain using SetOutputFilter or AddOutputFilter, for example:

+ the output filter chain using SetOutputFilter or AddOutputFilter, for example:

<Location /dav-area>
     ProxyPass http://example.com/
@@ -202,14 +202,14 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?
     
AddSuffix

Append the compression method onto the end of the ETag, causing - compressed and uncompressed representatins to have unique ETags. + compressed and uncompressed representations to have unique ETags. This has been the default since 2.4.0, but prevents serving "HTTP Not Modified" (304) responses to conditional requests for compressed content.

NoChange

Don't change the ETag on a compressed response. This was the default prior to 2.4.0, but does not satisfy the HTTP/1.1 property that all - representations of the same resource have unique ETags

+ representations of the same resource have unique ETags.

Remove

Remove the ETag header from compressed responses. This prevents some conditional requests from being possible, but avoids the @@ -272,7 +272,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?

If you want to extract more accurate values from your logs, you can use the type argument to specify the type of data - left as note for logging. type can be one of:

+ left as a note for logging. type can be one of:

Input
@@ -352,7 +352,7 @@ CustomLog logs/deflate_log deflate
specifies the maximum ratio of deflated to inflated size of an inflated request body. This ratio is checked as the body is streamed in, and if crossed more than - DeflateInflateRatioBurst times the request + DeflateInflateRatioBurst times, the request will be terminated.

Modified: httpd/httpd/trunk/docs/manual/mod/mod_deflate.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_deflate.xml?rev=1655904&r1=1655903&r2=1655904&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_deflate.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_deflate.xml Fri Jan 30 01:57:06 2015 @@ -88,7 +88,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe? filters like PHP or SSI. It never touches internal subrequests. Note - There is a environment variable force-gzip, + There is an environment variable force-gzip, set via SetEnv, which will ignore the accept-encoding setting of your browser and will send compressed output. @@ -99,7 +99,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?

The mod_deflate module also provides a filter for inflating/uncompressing a gzip compressed response body. In order to activate this feature you have to insert the INFLATE filter into - the outputfilter chain using SetOutputFilter or AddOutputFilter, for example:

@@ -204,7 +204,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?

If you want to extract more accurate values from your logs, you can use the type argument to specify the type of data - left as note for logging. type can be one of:

+ left as a note for logging. type can be one of:

Input
@@ -312,14 +312,14 @@ CustomLog logs/deflate_log deflate
AddSuffix

Append the compression method onto the end of the ETag, causing - compressed and uncompressed representatins to have unique ETags. + compressed and uncompressed representations to have unique ETags. This has been the default since 2.4.0, but prevents serving "HTTP Not Modified" (304) responses to conditional requests for compressed content.

NoChange

Don't change the ETag on a compressed response. This was the default prior to 2.4.0, but does not satisfy the HTTP/1.1 property that all - representations of the same resource have unique ETags

+ representations of the same resource have unique ETags.

Remove

Remove the ETag header from compressed responses. This prevents some conditional requests from being possible, but avoids the @@ -359,7 +359,7 @@ CustomLog logs/deflate_log deflate specifies the maximum ratio of deflated to inflated size of an inflated request body. This ratio is checked as the body is streamed in, and if crossed more than - DeflateInflateRatioBurst times the request + DeflateInflateRatioBurst times, the request will be terminated.