You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2003/11/02 01:52:26 UTC

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

nd          2003/11/01 16:52:26

  Modified:    docs/manual/mod mod_deflate.html.en mod_deflate.xml
  Log:
  provide a workaround for buggy mod_setenvif
  
  Revision  Changes    Path
  1.31      +6 -1      httpd-2.0/docs/manual/mod/mod_deflate.html.en
  
  Index: mod_deflate.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_deflate.html.en,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -u -r1.30 -r1.31
  --- mod_deflate.html.en	29 May 2003 16:13:17 -0000	1.30
  +++ mod_deflate.html.en	2 Nov 2003 00:52:26 -0000	1.31
  @@ -77,7 +77,12 @@
           BrowserMatch ^Mozilla/4\.0[678] no-gzip<br />
           <br />
           # MSIE masquerades as Netscape, but it is fine<br />
  -        BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html<br />
  +        # BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html<br />
  +        <br />
  +        # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48<br />
  +        # the above regex won't work. You can use the following<br />
  +        # workaround to get the desired effect:<br />
  +        BrowserMatch \bMSI[E]           !no-gzip !gzip-only-text/html<br />
           <br />
           # Don't compress images<br />
           SetEnvIfNoCase Request_URI \<br />
  
  
  
  1.19      +6 -1      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.18
  retrieving revision 1.19
  diff -u -u -r1.18 -r1.19
  --- mod_deflate.xml	23 Apr 2003 18:58:16 -0000	1.18
  +++ mod_deflate.xml	2 Nov 2003 00:52:26 -0000	1.19
  @@ -39,7 +39,12 @@
           BrowserMatch ^Mozilla/4\.0[678] no-gzip<br />
           <br />
           # MSIE masquerades as Netscape, but it is fine<br />
  -        BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html<br />
  +        # BrowserMatch \bMSIE             !no-gzip !gzip-only-text/html<br />
  +        <br />
  +        # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48<br />
  +        # the above regex won't work. You can use the following<br />
  +        # workaround to get the desired effect:<br />
  +        BrowserMatch \bMSI[E]           !no-gzip !gzip-only-text/html<br />
           <br />
           # Don't compress images<br />
           SetEnvIfNoCase Request_URI \<br />