mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 07:26:57 +03:00
rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1340707 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.de';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -28,8 +28,6 @@
|
||||
<a href="./ko/bind.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> |
|
||||
<a href="./tr/bind.html" hreflang="tr" rel="alternate" title="T<>rk<72>e"> tr </a></p>
|
||||
</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
|
||||
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
|
||||
sur les ports 80 et 8000, sur toutes les interfaces, utilisez :</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
Listen 80<br />
|
||||
Listen 8000
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
Listen 80
|
||||
Listen 8000
|
||||
</pre>
|
||||
|
||||
|
||||
<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
|
||||
autre interface, utilisez :</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
Listen 192.0.2.1:80<br />
|
||||
Listen 192.0.2.5:8000
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
Listen 192.0.2.1:80
|
||||
Listen 192.0.2.5:8000
|
||||
</pre>
|
||||
|
||||
|
||||
<p>Les adresses IPv6 doivent <20>tre mises entre crochets, comme dans
|
||||
l'exemple suivant :</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
<pre class="prettyprint lang-config">
|
||||
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>
|
||||
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
|
||||
suivant :</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
Listen 0.0.0.0:80<br />
|
||||
Listen 192.0.2.1:80
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
Listen 0.0.0.0:80
|
||||
Listen 192.0.2.1:80
|
||||
</pre>
|
||||
|
||||
|
||||
<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
|
||||
@ -167,9 +169,10 @@
|
||||
des ports non standards. Par exemple, pour travailler en
|
||||
<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
|
||||
</code></p></div>
|
||||
</pre>
|
||||
|
||||
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
|
||||
<div class="section">
|
||||
<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_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/bind.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -9,7 +9,7 @@
|
||||
<variants>
|
||||
<variant outdated="yes">de</variant>
|
||||
<variant>en</variant>
|
||||
<variant outdated="yes">fr</variant>
|
||||
<variant>fr</variant>
|
||||
<variant outdated="yes">ja</variant>
|
||||
<variant outdated="yes">ko</variant>
|
||||
<variant outdated="yes">tr</variant>
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -25,8 +25,6 @@
|
||||
<a href="./fr/caching.html" title="Fran<61>ais"> fr </a> |
|
||||
<a href="./tr/caching.html" hreflang="tr" rel="alternate" title="T<>rk<72>e"> tr </a></p>
|
||||
</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
|
||||
<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>
|
||||
|
||||
<div class="example"><p><code>
|
||||
CacheRoot /var/cache/apache/<br />
|
||||
CacheEnable disk /<br />
|
||||
CacheDirLevels 2<br />
|
||||
<pre class="prettyprint lang-config">
|
||||
CacheRoot "/var/cache/apache/"
|
||||
CacheEnable disk /
|
||||
CacheDirLevels 2
|
||||
CacheDirLength 1
|
||||
</code></p></div>
|
||||
</pre>
|
||||
|
||||
|
||||
<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
|
||||
@ -671,9 +670,10 @@ CacheDirLength 1
|
||||
r<>utiliser le descripteur de fichier mis en cache pour tous les
|
||||
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
|
||||
</code></p></div>
|
||||
</pre>
|
||||
|
||||
|
||||
<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
|
||||
@ -777,9 +777,10 @@ sys 0m0.000s</pre></div>
|
||||
utilisera le contenu charg<72> en m<>moire pour satisfaire ult<6C>rieurement
|
||||
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
|
||||
</code></p></div>
|
||||
</pre>
|
||||
|
||||
|
||||
<p>Comme dans le cas de la directive
|
||||
<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_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/caching.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<variants>
|
||||
<variant>en</variant>
|
||||
<variant outdated="yes">fr</variant>
|
||||
<variant>fr</variant>
|
||||
<variant outdated="yes">tr</variant>
|
||||
</variants>
|
||||
</metafile>
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/compliance.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.de';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/configuring.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -27,8 +27,6 @@
|
||||
<a href="./ko/content-negotiation.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> |
|
||||
<a href="./tr/content-negotiation.html" hreflang="tr" rel="alternate" title="T<>rk<72>e"> tr </a></p>
|
||||
</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
|
||||
@ -144,7 +142,8 @@ conventions de nommage</a></li>
|
||||
gestionnaire qui associe un suffixe de fichier <20> une <code>type-map</code>;
|
||||
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>
|
||||
|
||||
@ -247,7 +246,8 @@ conventions de nommage</a></li>
|
||||
<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
|
||||
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>
|
||||
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,
|
||||
@ -541,10 +541,11 @@ langage</a></h3>
|
||||
de s<>lectionner une variante correspondante. S'il n'existe pas de telle
|
||||
variante, le processus normal de n<>gociation sera lanc<6E>.</p>
|
||||
|
||||
<div class="example"><h3>Exemple</h3><p><code>
|
||||
SetEnvIf Cookie "language=(.+)" prefer-language=$1<br />
|
||||
Header append Vary cookie
|
||||
</code></p></div>
|
||||
<div class="example"><h3>Exemple</h3><pre class="prettyprint lang-config">
|
||||
SetEnvIf Cookie "language=(.+)" prefer-language=$1
|
||||
Header append Vary cookie
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
|
||||
<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_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/content-negotiation.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<variants>
|
||||
<variant>en</variant>
|
||||
<variant outdated="yes">fr</variant>
|
||||
<variant>fr</variant>
|
||||
<variant outdated="yes">ja</variant>
|
||||
<variant outdated="yes">ko</variant>
|
||||
<variant outdated="yes">tr</variant>
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.es';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -28,8 +28,6 @@
|
||||
<a href="./ko/custom-error.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> |
|
||||
<a href="./tr/custom-error.html" hreflang="tr" rel="alternate" title="T<>rk<72>e"> tr </a></p>
|
||||
</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
|
||||
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
|
||||
d<>finie <20> FileInfo.</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
ErrorDocument 500 "D<>sol<6F>, notre script s'est crash<73> ; comme c'est
|
||||
dommage !"<br />
|
||||
ErrorDocument 500 /cgi-bin/crash-recover<br />
|
||||
ErrorDocument 500 http://erreur.example.com/erreur_serveur.html<br />
|
||||
ErrorDocument 404 /erreurs/non_trouve.html <br />
|
||||
ErrorDocument 401 /inscription/comment_s_inscrire.html
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
ErrorDocument 500 "D<>sol<6F>, notre script s'est
|
||||
crash<EFBFBD> ; comme c'est dommage !"<br />
|
||||
ErrorDocument 500 /cgi-bin/crash-recover<br />
|
||||
ErrorDocument 500 http://error.example.com/server_error.html<br />
|
||||
ErrorDocument 404 /errors/not_found.html <br />
|
||||
ErrorDocument 401 /subscription/how_to_subscribe.html
|
||||
</pre>
|
||||
|
||||
|
||||
<p>La syntaxe de la directive <code>ErrorDocument</code> est :</p>
|
||||
<div class="example"><p><code>
|
||||
<pre class="prettyprint lang-config">
|
||||
ErrorDocument <code_3_chiffres> <action>
|
||||
</code></p></div>
|
||||
</pre>
|
||||
|
||||
<p>o<> action peut <20>tre trait<69>e comme :</p>
|
||||
<ol>
|
||||
<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_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/custom-error.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -9,7 +9,7 @@
|
||||
<variants>
|
||||
<variant>en</variant>
|
||||
<variant outdated="yes">es</variant>
|
||||
<variant outdated="yes">fr</variant>
|
||||
<variant>fr</variant>
|
||||
<variant outdated="yes">ja</variant>
|
||||
<variant outdated="yes">ko</variant>
|
||||
<variant outdated="yes">tr</variant>
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/API.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/debugging.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/documenting.html.zh-cn';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/filters.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/hooks.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/modguide.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/modules.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/output-filters.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/request.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/developer/thread_safety.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dns-caveats.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/dso.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/env.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -27,8 +27,6 @@
|
||||
<a href="./ko/env.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> |
|
||||
<a href="./tr/env.html" hreflang="tr" rel="alternate" title="T<>rk<72>e"> tr </a></p>
|
||||
</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
|
||||
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>,
|
||||
et permettant de prendre en compte ces en-t<>tes :</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
# <br />
|
||||
<pre class="prettyprint lang-config">
|
||||
# L'exemple suivant montre comment prendre en compte un en-t<>te<br />
|
||||
# Accept_Encoding non conforme envoy<6F> par un client.<br />
|
||||
#<br />
|
||||
SetEnvIfNoCase ^Accept.Encoding$ ^(.*)$ fix_accept_encoding=$1<br />
|
||||
# Accept_Encoding non conforme envoy<6F> par un client.
|
||||
#
|
||||
SetEnvIfNoCase ^Accept.Encoding$ ^(.*)$ fix_accept_encoding=$1
|
||||
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.
|
||||
Comme les clients concern<72>s sont maintenant tr<74>s peu utilis<69>s, cet
|
||||
ajout n'est pratiquement plus n<>cessaire.</p>
|
||||
<div class="example"><p><code>
|
||||
#<br />
|
||||
# The following directives modify normal HTTP response behavior.<br />
|
||||
# The first directive disables keepalive for Netscape 2.x and browsers that<br />
|
||||
# spoof it. There are known problems with these browser implementations.<br />
|
||||
# The second directive is for Microsoft Internet Explorer 4.0b2<br />
|
||||
# which has a broken HTTP/1.1 implementation and does not properly<br />
|
||||
# support keepalive when it is used on 301 or 302 (redirect) responses.<br />
|
||||
#<br />
|
||||
BrowserMatch "Mozilla/2" nokeepalive<br />
|
||||
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0<br />
|
||||
<br />
|
||||
#<br />
|
||||
# The following directive disables HTTP/1.1 responses to browsers which<br />
|
||||
# are in violation of the HTTP/1.0 spec by not being able to grok a<br />
|
||||
# basic 1.1 response.<br />
|
||||
#<br />
|
||||
BrowserMatch "RealPlayer 4\.0" force-response-1.0<br />
|
||||
BrowserMatch "Java/1\.0" force-response-1.0<br />
|
||||
<pre class="prettyprint lang-config">
|
||||
#
|
||||
# The following directives modify normal HTTP response behavior.
|
||||
# The first directive disables keepalive for Netscape 2.x and browsers that
|
||||
# spoof it. There are known problems with these browser implementations.
|
||||
# The second directive is for Microsoft Internet Explorer 4.0b2
|
||||
# which has a broken HTTP/1.1 implementation and does not properly
|
||||
# support keepalive when it is used on 301 or 302 (redirect) responses.
|
||||
#
|
||||
BrowserMatch "Mozilla/2" nokeepalive
|
||||
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
|
||||
|
||||
#
|
||||
# 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
|
||||
# basic 1.1 response.
|
||||
#
|
||||
BrowserMatch "RealPlayer 4\.0" force-response-1.0
|
||||
BrowserMatch "Java/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
|
||||
@ -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
|
||||
emp<6D>cher le tra<72>age de r<>pertoires particuliers, ou de requ<71>tes
|
||||
en provenance de certains h<>tes.</p>
|
||||
<div class="example"><p><code>
|
||||
SetEnvIf Request_URI \.gif image-request<br />
|
||||
SetEnvIf Request_URI \.jpg image-request<br />
|
||||
SetEnvIf Request_URI \.png image-request<br />
|
||||
CustomLog logs/access_log common env=!image-request
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
SetEnvIf Request_URI \.gif image-request
|
||||
SetEnvIf Request_URI \.jpg image-request
|
||||
SetEnvIf Request_URI \.png image-request
|
||||
CustomLog logs/access_log common env=!image-request
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
<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
|
||||
d<>finies. Nous supposons que toutes vos images sont enregistr<74>es dans
|
||||
un r<>pertoire nomm<6D> <code>/web/images</code>.</p>
|
||||
<div class="example"><p><code>
|
||||
SetEnvIf Referer "^http://www\.example\.com/" local_referal<br />
|
||||
# Allow browsers that do not send Referer info<br />
|
||||
SetEnvIf Referer "^$" local_referal<br />
|
||||
<Directory /web/images><br />
|
||||
<span class="indent">
|
||||
Order Deny,Allow<br />
|
||||
Deny from all<br />
|
||||
Allow from env=local_referal
|
||||
</span>
|
||||
</Directory>
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
SetEnvIf Referer "^http://www\.example\.com/" local_referal
|
||||
# Autorise les navigateurs qui n'envoient aucune information de Referer
|
||||
SetEnvIf Referer "^$" local_referal
|
||||
<Directory /web/images>
|
||||
Order Deny,Allow
|
||||
Deny from all
|
||||
Allow from env=local_referal
|
||||
</Directory>
|
||||
</pre>
|
||||
|
||||
|
||||
<p>Pour plus d'informations sur cette technique, voir le tutoriel sur
|
||||
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_identifier = 'http://httpd.apache.org/docs/2.4/env.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/env.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/env.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<variants>
|
||||
<variant>en</variant>
|
||||
<variant outdated="yes">fr</variant>
|
||||
<variant>fr</variant>
|
||||
<variant outdated="yes">ja</variant>
|
||||
<variant outdated="yes">ko</variant>
|
||||
<variant outdated="yes">tr</variant>
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/expr.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.es';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/filter.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/getting-started.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.de';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.es';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/glossary.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.es';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -29,8 +29,6 @@
|
||||
<a href="./tr/handler.html" hreflang="tr" rel="alternate" title="T<>rk<72>e"> tr </a> |
|
||||
<a href="./zh-cn/handler.html" hreflang="zh-cn" rel="alternate" title="Simplified Chinese"> zh-cn </a></p>
|
||||
</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>
|
||||
</div>
|
||||
@ -101,10 +99,11 @@
|
||||
des fichiers poss<73>dant une extension <code>html</code> d<>clenchent
|
||||
l'ex<65>cution du script CGI <code>footer.pl</code>.</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
Action add-footer /cgi-bin/footer.pl<br />
|
||||
AddHandler add-footer .html
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
Action add-footer /cgi-bin/footer.pl
|
||||
AddHandler add-footer .html
|
||||
</pre>
|
||||
|
||||
|
||||
<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
|
||||
@ -122,11 +121,12 @@
|
||||
<code>send-as-is</code>, sans tenir compte de l'extension
|
||||
de leur nom de fichier.</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
<Directory /web/htdocs/asis><br />
|
||||
<span class="indent">SetHandler send-as-is<br /></span>
|
||||
</Directory>
|
||||
</code></p></div>
|
||||
<pre class="prettyprint lang-config">
|
||||
<Directory /web/htdocs/asis>
|
||||
SetHandler send-as-is
|
||||
</Directory>
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
</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
|
||||
<code>request_rec</code> :</p>
|
||||
|
||||
<div class="example"><p><code>
|
||||
<pre class="prettyprint lang-c">
|
||||
char *handler
|
||||
</code></p></div>
|
||||
</pre>
|
||||
|
||||
|
||||
<p>Si vous voulez que votre module d<>clenche l'utilisation d'un
|
||||
gestionnaire, il vous suffit de d<>finir <code>r->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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/handler.html.zh-cn';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -9,7 +9,7 @@
|
||||
<variants>
|
||||
<variant>en</variant>
|
||||
<variant outdated="yes">es</variant>
|
||||
<variant outdated="yes">fr</variant>
|
||||
<variant>fr</variant>
|
||||
<variant outdated="yes">ja</variant>
|
||||
<variant outdated="yes">ko</variant>
|
||||
<variant outdated="yes">tr</variant>
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/access.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/auth.html.tr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/cgi.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.fr';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ja';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.ko';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/htaccess.html.pt-br';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
@ -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_identifier = 'http://httpd.apache.org/docs/2.4/howto/public_html.html.en';
|
||||
(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>');
|
||||
var s = d.createElement('script');
|
||||
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);
|
||||
}
|
||||
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);
|
||||
//--><!]]></script></div><div id="footer">
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user