1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-01 07:26:57 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1340707 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2012-05-20 13:02:48 +00:00
parent 74ae76b0dd
commit aeff28fc12
626 changed files with 2512 additions and 1884 deletions

View File

@ -176,7 +176,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.de'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.de';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -185,7 +186,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.de';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -200,7 +200,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -209,7 +210,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -28,8 +28,6 @@
<a href="./ko/bind.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> | <a href="./ko/bind.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
<a href="./tr/bind.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p> <a href="./tr/bind.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p>
</div> </div>
<div class="outofdate">Cette traduction peut <20>tre p<>rim<69>e. V<>rifiez la version
anglaise pour les changements r<>cents.</div>
<p>Configuration du serveur HTTP Apache pour l'<27>coute <p>Configuration du serveur HTTP Apache pour l'<27>coute
sur un port et une adresse IP sp<73>cifiques.</p> sur un port et une adresse IP sp<73>cifiques.</p>
@ -72,26 +70,29 @@
<p>Par exemple, pour faire en sorte que le serveur accepte des connexions <p>Par exemple, pour faire en sorte que le serveur accepte des connexions
sur les ports 80 et 8000, sur toutes les interfaces, utilisez :</p> sur les ports 80 et 8000, sur toutes les interfaces, utilisez :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
Listen 80<br /> Listen 80
Listen 8000 Listen 8000
</code></p></div> </pre>
<p>Pour faire en sorte que le serveur accepte des connexions sur le port 80 <p>Pour faire en sorte que le serveur accepte des connexions sur le port 80
pour une interface, et sur le port 8000 pour une pour une interface, et sur le port 8000 pour une
autre interface, utilisez :</p> autre interface, utilisez :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
Listen 192.0.2.1:80<br /> Listen 192.0.2.1:80
Listen 192.0.2.5:8000 Listen 192.0.2.5:8000
</code></p></div> </pre>
<p>Les adresses IPv6 doivent <20>tre mises entre crochets, comme dans <p>Les adresses IPv6 doivent <20>tre mises entre crochets, comme dans
l'exemple suivant :</p> l'exemple suivant :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
Listen [2001:db8::a00:20ff:fea7:ccea]:80 Listen [2001:db8::a00:20ff:fea7:ccea]:80
</code></p></div> </pre>
<div class="warning"><p>Des directives <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code> <div class="warning"><p>Des directives <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code>
imbriqu<71>es provoqueront une erreur fatale qui imbriqu<71>es provoqueront une erreur fatale qui
@ -140,10 +141,11 @@
<code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code>, comme dans l'exemple <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code>, comme dans l'exemple
suivant :</p> suivant :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
Listen 0.0.0.0:80<br /> Listen 0.0.0.0:80
Listen 192.0.2.1:80 Listen 192.0.2.1:80
</code></p></div> </pre>
<p>Si votre plateforme le supporte et si vous souhaitez que httpd g<>re <p>Si votre plateforme le supporte et si vous souhaitez que httpd g<>re
des connexions IPv4 et IPv6 sur des points de connexion s<>par<61>s des connexions IPv4 et IPv6 sur des points de connexion s<>par<61>s
@ -167,9 +169,10 @@
des ports non standards. Par exemple, pour travailler en des ports non standards. Par exemple, pour travailler en
<code>https</code> sur le port 8443 :</p> <code>https</code> sur le port 8443 :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
Listen 192.170.2.1:8443 https Listen 192.170.2.1:8443 https
</code></p></div> </pre>
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
<div class="section"> <div class="section">
<h2><a name="virtualhost" id="virtualhost">Comment tout ceci fonctionne-t-il avec les h<>tes virtuels</a></h2> <h2><a name="virtualhost" id="virtualhost">Comment tout ceci fonctionne-t-il avec les h<>tes virtuels</a></h2>
@ -206,7 +209,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -215,7 +219,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -186,7 +186,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -195,7 +196,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -156,7 +156,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -165,7 +166,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -193,7 +193,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -202,7 +203,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -9,7 +9,7 @@
<variants> <variants>
<variant outdated="yes">de</variant> <variant outdated="yes">de</variant>
<variant>en</variant> <variant>en</variant>
<variant outdated="yes">fr</variant> <variant>fr</variant>
<variant outdated="yes">ja</variant> <variant outdated="yes">ja</variant>
<variant outdated="yes">ko</variant> <variant outdated="yes">ko</variant>
<variant outdated="yes">tr</variant> <variant outdated="yes">tr</variant>

View File

@ -842,7 +842,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -851,7 +852,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -25,8 +25,6 @@
<a href="./fr/caching.html" title="Fran<61>ais">&nbsp;fr&nbsp;</a> | <a href="./fr/caching.html" title="Fran<61>ais">&nbsp;fr&nbsp;</a> |
<a href="./tr/caching.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p> <a href="./tr/caching.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p>
</div> </div>
<div class="outofdate">Cette traduction peut <20>tre p<>rim<69>e. V<>rifiez la version
anglaise pour les changements r<>cents.</div>
<p>Ce document compl<70>te la documentation de r<>f<EFBFBD>rence des modules <p>Ce document compl<70>te la documentation de r<>f<EFBFBD>rence des modules
<code class="module"><a href="./mod/mod_cache.html">mod_cache</a></code>, <code class="module"><a href="./mod/mod_cache_disk.html">mod_cache_disk</a></code>, <code class="module"><a href="./mod/mod_cache.html">mod_cache</a></code>, <code class="module"><a href="./mod/mod_cache_disk.html">mod_cache_disk</a></code>,
@ -461,12 +459,13 @@ Vary: negotiate,accept-language,accept-charset
<p>En g<>n<EFBFBD>ral, le module se configure comme suit :</p> <p>En g<>n<EFBFBD>ral, le module se configure comme suit :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
CacheRoot /var/cache/apache/<br /> CacheRoot "/var/cache/apache/"
CacheEnable disk /<br /> CacheEnable disk /
CacheDirLevels 2<br /> CacheDirLevels 2
CacheDirLength 1 CacheDirLength 1
</code></p></div> </pre>
<p>Il est important de savoir que, les fichiers mis en cache <20>tant stock<63>s <p>Il est important de savoir que, les fichiers mis en cache <20>tant stock<63>s
localement, la mise en cache par l'interm<72>diaire du syst<73>me d'exploitation localement, la mise en cache par l'interm<72>diaire du syst<73>me d'exploitation
@ -671,9 +670,10 @@ CacheDirLength 1
r<>utiliser le descripteur de fichier mis en cache pour tous les r<>utiliser le descripteur de fichier mis en cache pour tous les
acc<63>s futurs <20> ce fichier.</p> acc<63>s futurs <20> ce fichier.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
CacheFile /usr/local/apache2/htdocs/index.html CacheFile /usr/local/apache2/htdocs/index.html
</code></p></div> </pre>
<p>Si vous d<>sirez mettre en cache un grand nombre de fichiers <p>Si vous d<>sirez mettre en cache un grand nombre de fichiers
de cette mani<6E>re, vous devez vous assurer que le nombre maximal de cette mani<6E>re, vous devez vous assurer que le nombre maximal
@ -777,9 +777,10 @@ sys 0m0.000s</pre></div>
utilisera le contenu charg<72> en m<>moire pour satisfaire ult<6C>rieurement utilisera le contenu charg<72> en m<>moire pour satisfaire ult<6C>rieurement
toutes les demandes d'acc<63>s <20> ce fichier.</p> toutes les demandes d'acc<63>s <20> ce fichier.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
MMapFile /usr/local/apache2/htdocs/index.html MMapFile /usr/local/apache2/htdocs/index.html
</code></p></div> </pre>
<p>Comme dans le cas de la directive <p>Comme dans le cas de la directive
<code class="directive"><a href="./mod/mod_file_cache.html#cachefile">CacheFile</a></code>, toute <code class="directive"><a href="./mod/mod_file_cache.html#cachefile">CacheFile</a></code>, toute
@ -933,7 +934,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -942,7 +944,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -815,7 +815,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -824,7 +825,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -8,7 +8,7 @@
<variants> <variants>
<variant>en</variant> <variant>en</variant>
<variant outdated="yes">fr</variant> <variant>fr</variant>
<variant outdated="yes">tr</variant> <variant outdated="yes">tr</variant>
</variants> </variants>
</metafile> </metafile>

View File

@ -469,7 +469,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/compliance.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/compliance.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -478,7 +479,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/compliance.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -193,7 +193,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.de'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.de';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -202,7 +203,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.de';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -208,7 +208,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -217,7 +218,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -222,7 +222,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -231,7 +232,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -182,7 +182,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -191,7 +192,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -159,7 +159,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -168,7 +169,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -205,7 +205,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -214,7 +215,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -690,7 +690,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -699,7 +700,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.ht
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -27,8 +27,6 @@
<a href="./ko/content-negotiation.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> | <a href="./ko/content-negotiation.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
<a href="./tr/content-negotiation.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p> <a href="./tr/content-negotiation.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p>
</div> </div>
<div class="outofdate">Cette traduction peut <20>tre p<>rim<69>e. V<>rifiez la version
anglaise pour les changements r<>cents.</div>
<p>Apache HTTPD supporte la n<>gociation de <p>Apache HTTPD supporte la n<>gociation de
@ -144,7 +142,8 @@ conventions de nommage</a></li>
gestionnaire qui associe un suffixe de fichier <20> une <code>type-map</code>; gestionnaire qui associe un suffixe de fichier <20> une <code>type-map</code>;
ce qui se fait simplement en ajoutant</p> ce qui se fait simplement en ajoutant</p>
<div class="example"><p><code>AddHandler type-map .var</code></p></div> <pre class="prettyprint lang-config">AddHandler type-map .var</pre>
<p>dans le fichier de configuration du serveur.</p> <p>dans le fichier de configuration du serveur.</p>
@ -247,7 +246,8 @@ conventions de nommage</a></li>
<p><code>MultiViews</code> peut aussi s'appliquer <20> la recherche du fichier <p><code>MultiViews</code> peut aussi s'appliquer <20> la recherche du fichier
nomm<6D> par la directive <code class="directive"><a href="./mod/mod_dir.html#directoryindex">DirectoryIndex</a></code>, si le serveur tente d'indexer nomm<6D> par la directive <code class="directive"><a href="./mod/mod_dir.html#directoryindex">DirectoryIndex</a></code>, si le serveur tente d'indexer
un r<>pertoire. Si les fichiers de configuration sp<73>cifient</p> un r<>pertoire. Si les fichiers de configuration sp<73>cifient</p>
<div class="example"><p><code>DirectoryIndex index</code></p></div> <pre class="prettyprint lang-config">DirectoryIndex index</pre>
<p>le serveur va choisir entre <code>index.html</code> <p>le serveur va choisir entre <code>index.html</code>
et <code>index.html3</code> si les deux fichiers sont pr<70>sents. Si aucun et <code>index.html3</code> si les deux fichiers sont pr<70>sents. Si aucun
n'est pr<70>sent, mais <code>index.cgi</code> existe, n'est pr<70>sent, mais <code>index.cgi</code> existe,
@ -541,10 +541,11 @@ langage</a></h3>
de s<>lectionner une variante correspondante. S'il n'existe pas de telle de s<>lectionner une variante correspondante. S'il n'existe pas de telle
variante, le processus normal de n<>gociation sera lanc<6E>.</p> variante, le processus normal de n<>gociation sera lanc<6E>.</p>
<div class="example"><h3>Exemple</h3><p><code> <div class="example"><h3>Exemple</h3><pre class="prettyprint lang-config">
SetEnvIf Cookie "language=(.+)" prefer-language=$1<br /> SetEnvIf Cookie "language=(.+)" prefer-language=$1
Header append Vary cookie Header append Vary cookie
</code></p></div> </pre>
</div>
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
<div class="section"> <div class="section">
@ -720,7 +721,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -729,7 +731,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.ht
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -729,7 +729,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -738,7 +739,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.ht
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -609,7 +609,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -618,7 +619,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.ht
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -657,7 +657,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -666,7 +667,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.ht
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

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

View File

@ -220,7 +220,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -229,7 +230,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -230,7 +230,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.es'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.es';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -239,7 +240,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.es';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -28,8 +28,6 @@
<a href="./ko/custom-error.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> | <a href="./ko/custom-error.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
<a href="./tr/custom-error.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p> <a href="./tr/custom-error.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p>
</div> </div>
<div class="outofdate">Cette traduction peut <20>tre p<>rim<69>e. V<>rifiez la version
anglaise pour les changements r<>cents.</div>
<p>Le serveur HTTP Apache fournit des messages d'erreur g<>n<EFBFBD>riques <p>Le serveur HTTP Apache fournit des messages d'erreur g<>n<EFBFBD>riques
pour les codes de statut 4xx ou 5xx ; ces messages sont cependant pour les codes de statut 4xx ou 5xx ; ces messages sont cependant
@ -69,19 +67,21 @@
.htaccess si <code class="directive"><a href="./mod/core.html#allowoverride">AllowOverride</a></code> est .htaccess si <code class="directive"><a href="./mod/core.html#allowoverride">AllowOverride</a></code> est
d<>finie <20> FileInfo.</p> d<>finie <20> FileInfo.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
ErrorDocument 500 "D<>sol<6F>, notre script s'est crash<73> ; comme c'est ErrorDocument 500 "D<>sol<6F>, notre script s'est
dommage !"<br /> crash<EFBFBD> ; comme c'est dommage !"<br />
ErrorDocument 500 /cgi-bin/crash-recover<br /> ErrorDocument 500 /cgi-bin/crash-recover<br />
ErrorDocument 500 http://erreur.example.com/erreur_serveur.html<br /> ErrorDocument 500 http://error.example.com/server_error.html<br />
ErrorDocument 404 /erreurs/non_trouve.html <br /> ErrorDocument 404 /errors/not_found.html <br />
ErrorDocument 401 /inscription/comment_s_inscrire.html ErrorDocument 401 /subscription/how_to_subscribe.html
</code></p></div> </pre>
<p>La syntaxe de la directive <code>ErrorDocument</code> est :</p> <p>La syntaxe de la directive <code>ErrorDocument</code> est :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
ErrorDocument &lt;code_3_chiffres&gt; &lt;action&gt; ErrorDocument &lt;code_3_chiffres&gt; &lt;action&gt;
</code></p></div> </pre>
<p>o<> action peut <20>tre trait<69>e comme :</p> <p>o<> action peut <20>tre trait<69>e comme :</p>
<ol> <ol>
<li>Une URL de redirection local (si l'action commence par un "/").</li> <li>Une URL de redirection local (si l'action commence par un "/").</li>
@ -233,7 +233,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -242,7 +243,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -206,7 +206,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -215,7 +216,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -207,7 +207,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -216,7 +217,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -215,7 +215,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -224,7 +225,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -9,7 +9,7 @@
<variants> <variants>
<variant>en</variant> <variant>en</variant>
<variant outdated="yes">es</variant> <variant outdated="yes">es</variant>
<variant outdated="yes">fr</variant> <variant>fr</variant>
<variant outdated="yes">ja</variant> <variant outdated="yes">ja</variant>
<variant outdated="yes">ko</variant> <variant outdated="yes">ko</variant>
<variant outdated="yes">tr</variant> <variant outdated="yes">tr</variant>

View File

@ -1225,7 +1225,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/API.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/API.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -1234,7 +1235,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/API.html.en'
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -37,7 +37,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/debugging.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/debugging.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -46,7 +47,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/debugging.ht
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -89,7 +89,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -98,7 +99,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -86,7 +86,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.html.zh-cn'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.html.zh-cn';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -95,7 +96,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -213,7 +213,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/filters.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/filters.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -222,7 +223,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/filters.html
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -239,7 +239,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/hooks.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/hooks.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -248,7 +249,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/hooks.html.e
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -1741,7 +1741,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modguide.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modguide.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -1750,7 +1751,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modguide.htm
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -286,7 +286,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -295,7 +296,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -281,7 +281,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -290,7 +291,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -557,7 +557,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -566,7 +567,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/new_api_2_4.
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -501,7 +501,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/output-filters.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/output-filters.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -510,7 +511,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/output-filte
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -226,7 +226,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/request.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/request.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -235,7 +236,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/request.html
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -284,7 +284,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/thread_safety.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/thread_safety.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -293,7 +294,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/developer/thread_safet
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -202,7 +202,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -211,7 +212,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -214,7 +214,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -223,7 +224,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -256,7 +256,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -265,7 +266,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -230,7 +230,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -239,7 +240,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -199,7 +199,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -208,7 +209,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -309,7 +309,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -318,7 +319,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -333,7 +333,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -342,7 +343,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -307,7 +307,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -316,7 +317,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -283,7 +283,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -292,7 +293,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -306,7 +306,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -315,7 +316,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -506,7 +506,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -515,7 +516,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -27,8 +27,6 @@
<a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> | <a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
<a href="./tr/env.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p> <a href="./tr/env.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a></p>
</div> </div>
<div class="outofdate">Cette traduction peut <20>tre p<>rim<69>e. V<>rifiez la version
anglaise pour les changements r<>cents.</div>
<p>Deux types de variables d'environnement affectent le serveur <p>Deux types de variables d'environnement affectent le serveur
HTTP Apache.</p> HTTP Apache.</p>
@ -442,14 +440,14 @@
<code class="module"><a href="./mod/mod_setenvif.html">mod_setenvif</a></code> et <code class="module"><a href="./mod/mod_header.html">mod_header</a></code>, <code class="module"><a href="./mod/mod_setenvif.html">mod_setenvif</a></code> et <code class="module"><a href="./mod/mod_header.html">mod_header</a></code>,
et permettant de prendre en compte ces en-t<>tes :</p> et permettant de prendre en compte ces en-t<>tes :</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
# <br />
# L'exemple suivant montre comment prendre en compte un en-t<>te<br /> # L'exemple suivant montre comment prendre en compte un en-t<>te<br />
# Accept_Encoding non conforme envoy<6F> par un client.<br /> # Accept_Encoding non conforme envoy<6F> par un client.
#<br /> #
SetEnvIfNoCase ^Accept.Encoding$ ^(.*)$ fix_accept_encoding=$1<br /> SetEnvIfNoCase ^Accept.Encoding$ ^(.*)$ fix_accept_encoding=$1
RequestHeader set Accept-Encoding %{fix_accept_encoding}e env=fix_accept_encoding RequestHeader set Accept-Encoding %{fix_accept_encoding}e env=fix_accept_encoding
</code></p></div> </pre>
@ -461,27 +459,28 @@ RequestHeader set Accept-Encoding %{fix_accept_encoding}e env=fix_accept_encodin
httpd.conf pour tenir compte de probl<62>mes connus avec certains clients. httpd.conf pour tenir compte de probl<62>mes connus avec certains clients.
Comme les clients concern<72>s sont maintenant tr<74>s peu utilis<69>s, cet Comme les clients concern<72>s sont maintenant tr<74>s peu utilis<69>s, cet
ajout n'est pratiquement plus n<>cessaire.</p> ajout n'est pratiquement plus n<>cessaire.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
#<br /> #
# The following directives modify normal HTTP response behavior.<br /> # The following directives modify normal HTTP response behavior.
# The first directive disables keepalive for Netscape 2.x and browsers that<br /> # The first directive disables keepalive for Netscape 2.x and browsers that
# spoof it. There are known problems with these browser implementations.<br /> # spoof it. There are known problems with these browser implementations.
# The second directive is for Microsoft Internet Explorer 4.0b2<br /> # The second directive is for Microsoft Internet Explorer 4.0b2
# which has a broken HTTP/1.1 implementation and does not properly<br /> # which has a broken HTTP/1.1 implementation and does not properly
# support keepalive when it is used on 301 or 302 (redirect) responses.<br /> # support keepalive when it is used on 301 or 302 (redirect) responses.
#<br /> #
BrowserMatch "Mozilla/2" nokeepalive<br /> BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0<br /> BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
<br />
#<br /> #
# The following directive disables HTTP/1.1 responses to browsers which<br /> # The following directive disables HTTP/1.1 responses to browsers which
# are in violation of the HTTP/1.0 spec by not being able to grok a<br /> # are in violation of the HTTP/1.0 spec by not being able to grok a
# basic 1.1 response.<br /> # basic 1.1 response.
#<br /> #
BrowserMatch "RealPlayer 4\.0" force-response-1.0<br /> BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0<br /> BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0
</code></p></div> </pre>
<h3><a name="no-img-log" id="no-img-log">Ne pas tracer les requ<71>tes pour des images dans le fichier de <h3><a name="no-img-log" id="no-img-log">Ne pas tracer les requ<71>tes pour des images dans le fichier de
@ -492,12 +491,13 @@ BrowserMatch "JDK/1\.0" force-response-1.0
dans le fichier de trace des acc<63>s. Il peut <20>tre facilement adapt<70> pour dans le fichier de trace des acc<63>s. Il peut <20>tre facilement adapt<70> pour
emp<6D>cher le tra<72>age de r<>pertoires particuliers, ou de requ<71>tes emp<6D>cher le tra<72>age de r<>pertoires particuliers, ou de requ<71>tes
en provenance de certains h<>tes.</p> en provenance de certains h<>tes.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
SetEnvIf Request_URI \.gif image-request<br /> SetEnvIf Request_URI \.gif image-request
SetEnvIf Request_URI \.jpg image-request<br /> SetEnvIf Request_URI \.jpg image-request
SetEnvIf Request_URI \.png image-request<br /> SetEnvIf Request_URI \.png image-request
CustomLog logs/access_log common env=!image-request CustomLog logs/access_log common env=!image-request
</code></p></div> </pre>
<h3><a name="image-theft" id="image-theft">Pr<50>vention du "Vol d'image"</a></h3> <h3><a name="image-theft" id="image-theft">Pr<50>vention du "Vol d'image"</a></h3>
@ -509,18 +509,17 @@ BrowserMatch "JDK/1\.0" force-response-1.0
recommand<6E>e, mais elle peut fonctionner dans des circonstances bien recommand<6E>e, mais elle peut fonctionner dans des circonstances bien
d<>finies. Nous supposons que toutes vos images sont enregistr<74>es dans d<>finies. Nous supposons que toutes vos images sont enregistr<74>es dans
un r<>pertoire nomm<6D> <code>/web/images</code>.</p> un r<>pertoire nomm<6D> <code>/web/images</code>.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
SetEnvIf Referer "^http://www\.example\.com/" local_referal<br /> SetEnvIf Referer "^http://www\.example\.com/" local_referal
# Allow browsers that do not send Referer info<br /> # Autorise les navigateurs qui n'envoient aucune information de Referer
SetEnvIf Referer "^$" local_referal<br /> SetEnvIf Referer "^$" local_referal
&lt;Directory /web/images&gt;<br /> &lt;Directory /web/images&gt;
<span class="indent"> Order Deny,Allow
Order Deny,Allow<br /> Deny from all
Deny from all<br /> Allow from env=local_referal
Allow from env=local_referal &lt;/Directory&gt;
</span> </pre>
&lt;/Directory&gt;
</code></p></div>
<p>Pour plus d'informations sur cette technique, voir le tutoriel sur <p>Pour plus d'informations sur cette technique, voir le tutoriel sur
ServerWatch ServerWatch
@ -539,7 +538,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -548,7 +548,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -436,7 +436,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -445,7 +446,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -380,7 +380,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -389,7 +390,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -504,7 +504,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -513,7 +514,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/env.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

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

View File

@ -512,7 +512,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -521,7 +522,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -542,7 +542,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -551,7 +552,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -161,7 +161,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -170,7 +171,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -86,7 +86,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.es'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.es';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -95,7 +96,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.es';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -177,7 +177,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -186,7 +187,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -89,7 +89,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -98,7 +99,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -85,7 +85,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -94,7 +95,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -172,7 +172,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -181,7 +182,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -222,7 +222,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/getting-started.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/getting-started.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -231,7 +232,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/getting-started.html.e
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -560,7 +560,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.de'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.de';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -569,7 +570,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.de';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -484,7 +484,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -493,7 +494,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -404,7 +404,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.es'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.es';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -413,7 +414,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.es';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -590,7 +590,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -599,7 +600,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -459,7 +459,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -468,7 +469,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -373,7 +373,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -382,7 +383,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -498,7 +498,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -507,7 +508,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -165,7 +165,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -174,7 +175,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -175,7 +175,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.es'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.es';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -184,7 +185,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.es';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -29,8 +29,6 @@
<a href="./tr/handler.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a> | <a href="./tr/handler.html" hreflang="tr" rel="alternate" title="T<>rk<72>e">&nbsp;tr&nbsp;</a> |
<a href="./zh-cn/handler.html" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p> <a href="./zh-cn/handler.html" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
</div> </div>
<div class="outofdate">Cette traduction peut <20>tre p<>rim<69>e. V<>rifiez la version
anglaise pour les changements r<>cents.</div>
<p>Ce document d<>crit l'utilisation des gestionnaires d'Apache (handlers).</p> <p>Ce document d<>crit l'utilisation des gestionnaires d'Apache (handlers).</p>
</div> </div>
@ -101,10 +99,11 @@
des fichiers poss<73>dant une extension <code>html</code> d<>clenchent des fichiers poss<73>dant une extension <code>html</code> d<>clenchent
l'ex<65>cution du script CGI <code>footer.pl</code>.</p> l'ex<65>cution du script CGI <code>footer.pl</code>.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
Action add-footer /cgi-bin/footer.pl<br /> Action add-footer /cgi-bin/footer.pl
AddHandler add-footer .html AddHandler add-footer .html
</code></p></div> </pre>
<p><3E> ce moment-l<>, le script CGI se charge d'envoyer le document <p><3E> ce moment-l<>, le script CGI se charge d'envoyer le document
initialement demand<6E> (r<>f<EFBFBD>renc<6E> par la variable d'environnement initialement demand<6E> (r<>f<EFBFBD>renc<6E> par la variable d'environnement
@ -122,11 +121,12 @@
<code>send-as-is</code>, sans tenir compte de l'extension <code>send-as-is</code>, sans tenir compte de l'extension
de leur nom de fichier.</p> de leur nom de fichier.</p>
<div class="example"><p><code> <pre class="prettyprint lang-config">
&lt;Directory /web/htdocs/asis&gt;<br /> &lt;Directory /web/htdocs/asis&gt;
<span class="indent">SetHandler send-as-is<br /></span> SetHandler send-as-is
&lt;/Directory&gt; &lt;/Directory&gt;
</code></p></div> </pre>
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
@ -141,9 +141,10 @@
Plus pr<70>cis<69>ment, un nouvel enregistrement a <20>t<EFBFBD> ajout<75> <20> la structure Plus pr<70>cis<69>ment, un nouvel enregistrement a <20>t<EFBFBD> ajout<75> <20> la structure
<code>request_rec</code> :</p> <code>request_rec</code> :</p>
<div class="example"><p><code> <pre class="prettyprint lang-c">
char *handler char *handler
</code></p></div> </pre>
<p>Si vous voulez que votre module d<>clenche l'utilisation d'un <p>Si vous voulez que votre module d<>clenche l'utilisation d'un
gestionnaire, il vous suffit de d<>finir <code>r-&gt;handler</code> avec gestionnaire, il vous suffit de d<>finir <code>r-&gt;handler</code> avec
@ -170,7 +171,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -179,7 +181,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -169,7 +169,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -178,7 +179,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -158,7 +158,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -167,7 +168,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -160,7 +160,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -169,7 +170,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -134,7 +134,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.zh-cn'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.zh-cn';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -143,7 +144,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.zh-cn';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -9,7 +9,7 @@
<variants> <variants>
<variant>en</variant> <variant>en</variant>
<variant outdated="yes">es</variant> <variant outdated="yes">es</variant>
<variant outdated="yes">fr</variant> <variant>fr</variant>
<variant outdated="yes">ja</variant> <variant outdated="yes">ja</variant>
<variant outdated="yes">ko</variant> <variant outdated="yes">ko</variant>
<variant outdated="yes">tr</variant> <variant outdated="yes">tr</variant>

View File

@ -204,7 +204,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/access.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/access.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -213,7 +214,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/access.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -628,7 +628,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -637,7 +638,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -663,7 +663,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -672,7 +673,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -667,7 +667,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -676,7 +677,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -330,7 +330,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -339,7 +340,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -632,7 +632,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.tr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.tr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -641,7 +642,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.tr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -585,7 +585,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -594,7 +595,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.en';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -628,7 +628,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -637,7 +638,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.fr';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -568,7 +568,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -577,7 +578,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ja';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -508,7 +508,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -517,7 +518,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ko';
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -423,7 +423,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -432,7 +433,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.en
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -470,7 +470,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.fr'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.fr';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -479,7 +480,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.fr
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -392,7 +392,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ja'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ja';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -401,7 +402,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ja
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -338,7 +338,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ko'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ko';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -347,7 +348,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ko
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -382,7 +382,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.pt-br'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.pt-br';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -391,7 +392,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.pt
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

View File

@ -197,7 +197,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee
var disqus_shortname = 'httpd'; var disqus_shortname = 'httpd';
var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/public_html.html.en'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/public_html.html.en';
(function(w, d) { (function(w, d) {
if (w.location.hostname.toLowerCase() == "httpd.apache.org") { var disabled = true;
if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) {
d.write('<div id="disqus_thread"><\/div>'); d.write('<div id="disqus_thread"><\/div>');
var s = d.createElement('script'); var s = d.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
@ -206,7 +207,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/howto/public_html.html
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
} }
else { else {
d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>');
} }
})(window, document); })(window, document);
//--><!]]></script></div><div id="footer"> //--><!]]></script></div><div id="footer">

Some files were not shown because too many files have changed in this diff Show More