You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2011/08/02 12:32:18 UTC

svn commit: r1153090 - /httpd/test/framework/trunk/t/conf/extra.conf.in

Author: covener
Date: Tue Aug  2 10:32:17 2011
New Revision: 1153090

URL: http://svn.apache.org/viewvc?rev=1153090&view=rev
Log:
don't hide the mod_include enablement when deflate is missing

Modified:
    httpd/test/framework/trunk/t/conf/extra.conf.in

Modified: httpd/test/framework/trunk/t/conf/extra.conf.in
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/conf/extra.conf.in?rev=1153090&r1=1153089&r2=1153090&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/conf/extra.conf.in (original)
+++ httpd/test/framework/trunk/t/conf/extra.conf.in Tue Aug  2 10:32:17 2011
@@ -698,17 +698,15 @@ LimitRequestFields    32
       </Location>
    </IfModule>
 
-   <IfModule mod_deflate.c>
-     <Directory @SERVERROOT@/htdocs/modules/filter>
-         Options +Includes
-         AddType text/html .shtml
-         AddOutputFilter INCLUDES .shtml
+   <Directory @SERVERROOT@/htdocs/modules/filter>
+       Options +Includes
+       AddType text/html .shtml
+       AddOutputFilter INCLUDES .shtml
 
+       <IfModule mod_deflate.c>
          FilterDeclare pr49328 CONTENT_SET
          <IfVersion < 2.3.0> 
-            <IfModule mod_deflate.c>
-              FilterProvider pr49328 DEFLATE resp=Content-Type $text/
-            </IfModule>
+            FilterProvider pr49328 DEFLATE resp=Content-Type $text/
          </IfVersion>
          <IfVersion >= 2.3.0>
            <IfVersion < 2.3.9>
@@ -719,8 +717,8 @@ LimitRequestFields    32
             FilterProvider pr49328 DEFLATE "%{CONTENT_TYPE} =~ m!text/!"
          </IfVersion>
          FilterChain pr49328
-     </Directory>
-   </IfModule>
+       </IfModule>
+   </Directory>
 </IfModule>
 
 ##