]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Update transformations.
authorGraham Leggett <minfrin@apache.org>
Thu, 22 Dec 2011 21:59:50 +0000 (21:59 +0000)
committerGraham Leggett <minfrin@apache.org>
Thu, 22 Dec 2011 21:59:50 +0000 (21:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1222479 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_mime.html.en
docs/manual/mod/mod_mime.xml.ja

index 974ead39fb3ce776a6d34837928d1fc5fd33bcb4..f812729538f881e3a6a108fe11ab68c4e9adbc21 100644 (file)
@@ -513,6 +513,41 @@ later.</td></tr>
     <var>extension</var> argument will be compared against each of
     them.</p>
 
+    <p>Note that when defining a set of filters using the
+    <code class="directive"><a href="#addouputfilter">AddOuputFilter</a></code> directive,
+    any definition made will replace any previous definition made by
+    the <code class="directive"><a href="#addouputfilter">AddOuputFilter</a></code>
+    directive.</p>
+
+    <div class="example"><p><code>
+    # Effective filter "DEFLATE"<br />
+    AddOutputFilter DEFLATE shtml<br />
+    &lt;Location /foo&gt;<br />
+      <span class="indent">
+      # Effective filter "INCLUDES", replacing "DEFLATE"<br />
+      AddOutputFilter INCLUDES shtml<br />
+      </span>
+    &lt;/Location&gt;<br />
+    &lt;Location /bar&gt;<br />
+      <span class="indent">
+      # Effective filter "INCLUDES;DEFLATE", replacing "DEFLATE"<br />
+      AddOutputFilter INCLUDES;DEFLATE shtml<br />
+      </span>
+    &lt;/Location&gt;<br />
+    &lt;Location /bar/baz&gt;<br />
+      <span class="indent">
+      # Effective filter "BUFFER", replacing "INCLUDES;DEFLATE"<br />
+      AddOutputFilter BUFFER shtml<br />
+      </span>
+    &lt;/Location&gt;<br />
+    &lt;Location /bar/baz/buz&gt;<br />
+      <span class="indent">
+      # No effective filter, replacing "BUFFER"<br />
+      RemoveOutputFilter shtml<br />
+      </span>
+    &lt;/Location&gt;
+    </code></p></div>
+
 <h3>See also</h3>
 <ul>
 <li><code class="directive"><a href="#removeoutputfilter">RemoveOutputFilter</a></code></li>
index 142e30874c040b6fc6878f6d9c109f7c9d1d41ab..fec6c71624466d26e8d6f4a6f08afa00bef3b2d9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 659902:1174747 (outdated) -->
+<!-- English Revision: 659902:1222477 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more