mirror of
				https://github.com/apache/httpd.git
				synced 2025-11-03 17:53:20 +03:00 
			
		
		
		
	update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
		@@ -228,6 +228,12 @@
 | 
			
		||||
        even if it was in a later dialect.</p>
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
    <h3><a name="force-gzip" id="force-gzip">force-gzip</a></h3>
 | 
			
		||||
        
 | 
			
		||||
          <p>If you have the <code>DEFLATE</code> filter activated, this
 | 
			
		||||
          environment variable will ignore the accept-encoding setting of
 | 
			
		||||
          your browser and will send compressed output unconditionally.</p>
 | 
			
		||||
    
 | 
			
		||||
    <h3><a name="force-no-vary" id="force-no-vary">force-no-vary</a></h3>
 | 
			
		||||
        
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -22,6 +22,8 @@
 | 
			
		||||
<a href="./ja/env.html" title="Japanese"> ja </a> |
 | 
			
		||||
<a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="outofdate">This translation may be out of date. Check the
 | 
			
		||||
 English version for recent changes.</div>
 | 
			
		||||
 | 
			
		||||
    <p>Apache HTTP $B%5!<%P$O(B<em>$B4D6-JQ?t(B</em>$B$H8F$P$l$k!"L>A0$N$D$$$?(B
 | 
			
		||||
    $BJQ?t$K>pJs$r5-21$9$k;EAH$_$rDs6!$7$F$$$^$9!#$3$N>pJs$O%m%0<}=8$d(B
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<?xml version="1.0" encoding="iso-2022-jp" ?>
 | 
			
		||||
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 | 
			
		||||
<?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
 | 
			
		||||
<!-- English Revision: 1.16 -->
 | 
			
		||||
<!-- English Revision: 1.16 (outdated: 1.17) -->
 | 
			
		||||
 | 
			
		||||
<!--
 | 
			
		||||
 Copyright 2002-2004 The Apache Software Foundation
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<?xml version="1.0" encoding="EUC-KR" ?>
 | 
			
		||||
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 | 
			
		||||
<?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
 | 
			
		||||
<!-- English Revision: 1.13 (outdated: 1.16) -->
 | 
			
		||||
<!-- English Revision: 1.13 (outdated: 1.17) -->
 | 
			
		||||
 | 
			
		||||
<!--
 | 
			
		||||
 Copyright 2003-2004 The Apache Software Foundation
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,7 @@
 | 
			
		||||
 | 
			
		||||
  <variants>
 | 
			
		||||
    <variant>en</variant>
 | 
			
		||||
    <variant>ja</variant>
 | 
			
		||||
    <variant outdated="yes">ja</variant>
 | 
			
		||||
    <variant outdated="yes">ko</variant>
 | 
			
		||||
  </variants>
 | 
			
		||||
</metafile>
 | 
			
		||||
 
 | 
			
		||||
@@ -165,6 +165,32 @@ client</td></tr>
 | 
			
		||||
        The <code>DEFLATE</code> filter is always inserted after RESOURCE
 | 
			
		||||
        filters like PHP or SSI. It never touches internal subrequests.
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="note"><h3>Note</h3>
 | 
			
		||||
        There is a environment variable <code>force-gzip</code>,
 | 
			
		||||
        set via <code class="directive"><a href="../mod/core.html#setenv">SetEnv</a></code>, which
 | 
			
		||||
        will ignore the accept-encoding setting of your browser and will
 | 
			
		||||
        send compressed output.
 | 
			
		||||
      </div>
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
    <h3><a name="inflate" id="inflate">Output Decompression</a></h3>
 | 
			
		||||
      <p>The <code class="module"><a href="../mod/mod_deflate.html">mod_deflate</a></code> module also provides a filter for
 | 
			
		||||
      inflating/uncompressing a gzip compressed response body. In order to activate
 | 
			
		||||
      this feature you have to insert the <code>INFLATE</code> filter into
 | 
			
		||||
      the outputfilter chain using <code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code> or <code class="directive"><a href="../mod/mod_mime.html#addoutputfilter">AddOutputFilter</a></code>, for example:</p>
 | 
			
		||||
 | 
			
		||||
      <div class="example"><p><code>
 | 
			
		||||
        <Location /dav-area><br />
 | 
			
		||||
        <span class="indent">
 | 
			
		||||
          ProxyPass http://example.com/<br />
 | 
			
		||||
          SetOutputFilter INFLATE<br />
 | 
			
		||||
        </span>
 | 
			
		||||
        </Location>
 | 
			
		||||
      </code></p></div>
 | 
			
		||||
 | 
			
		||||
      <p>This Example will uncompress gzip'ed output from example.com, so other
 | 
			
		||||
      filters can do further processing with it.
 | 
			
		||||
      </p>
 | 
			
		||||
      
 | 
			
		||||
    
 | 
			
		||||
    <h3><a name="input" id="input">Input Decompression</a></h3>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<?xml version="1.0" encoding="iso-2022-jp"?>
 | 
			
		||||
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 | 
			
		||||
<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
 | 
			
		||||
<!-- English Revision: 1.21 (outdated: 1.22) -->
 | 
			
		||||
<!-- English Revision: 1.21 (outdated: 1.23) -->
 | 
			
		||||
 | 
			
		||||
<!--
 | 
			
		||||
 Copyright 2002-2004 The Apache Software Foundation
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<?xml version="1.0" encoding="EUC-KR" ?>
 | 
			
		||||
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 | 
			
		||||
<?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
 | 
			
		||||
<!-- English Revision: 1.18 (outdated: 1.22) -->
 | 
			
		||||
<!-- English Revision: 1.18 (outdated: 1.23) -->
 | 
			
		||||
 | 
			
		||||
<!--
 | 
			
		||||
 Copyright 2003-2004 The Apache Software Foundation
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user