1
0
mirror of https://github.com/apache/httpd.git synced 2025-06-06 09:01:00 +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:
André Malo 2004-04-16 19:01:15 +00:00
parent 529aab30c7
commit e1282c9c78
8 changed files with 40 additions and 6 deletions

View File

@ -228,6 +228,12 @@
even if it was in a later dialect.</p> 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> <h3><a name="force-no-vary" id="force-no-vary">force-no-vary</a></h3>

View File

@ -22,6 +22,8 @@
<a href="./ja/env.html" title="Japanese">&nbsp;ja&nbsp;</a> | <a href="./ja/env.html" title="Japanese">&nbsp;ja&nbsp;</a> |
<a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p> <a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
</div> </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 <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 $BJQ?t$K>pJs$r5-21$9$k;EAH$_$rDs6!$7$F$$$^$9!#$3$N>pJs$O%m%0<}=8$d(B

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-2022-jp" ?> <?xml version="1.0" encoding="iso-2022-jp" ?>
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd"> <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?> <?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 Copyright 2002-2004 The Apache Software Foundation

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="EUC-KR" ?> <?xml version="1.0" encoding="EUC-KR" ?>
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd"> <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?> <?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 Copyright 2003-2004 The Apache Software Foundation

View File

@ -7,7 +7,7 @@
<variants> <variants>
<variant>en</variant> <variant>en</variant>
<variant>ja</variant> <variant outdated="yes">ja</variant>
<variant outdated="yes">ko</variant> <variant outdated="yes">ko</variant>
</variants> </variants>
</metafile> </metafile>

View File

@ -165,8 +165,34 @@ client</td></tr>
The <code>DEFLATE</code> filter is always inserted after RESOURCE The <code>DEFLATE</code> filter is always inserted after RESOURCE
filters like PHP or SSI. It never touches internal subrequests. filters like PHP or SSI. It never touches internal subrequests.
</div> </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>
&lt;Location /dav-area&gt;<br />
<span class="indent">
ProxyPass http://example.com/<br />
SetOutputFilter INFLATE<br />
</span>
&lt;/Location&gt;
</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> <h3><a name="input" id="input">Input Decompression</a></h3>
<p>The <code class="module"><a href="../mod/mod_deflate.html">mod_deflate</a></code> module also provides a filter for <p>The <code class="module"><a href="../mod/mod_deflate.html">mod_deflate</a></code> module also provides a filter for
decompressing a gzip compressed request body . In order to activate decompressing a gzip compressed request body . In order to activate

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-2022-jp"?> <?xml version="1.0" encoding="iso-2022-jp"?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd"> <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?> <?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 Copyright 2002-2004 The Apache Software Foundation

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="EUC-KR" ?> <?xml version="1.0" encoding="EUC-KR" ?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd"> <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?> <?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 Copyright 2003-2004 The Apache Software Foundation