]> granicus.if.org Git - apache/commitdiff
Rebuild HTML from various changes yesterday.
authorRich Bowen <rbowen@apache.org>
Wed, 15 Apr 2015 15:02:08 +0000 (15:02 +0000)
committerRich Bowen <rbowen@apache.org>
Wed, 15 Apr 2015 15:02:08 +0000 (15:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673807 13f79535-47bb-0310-9956-ffa450edef68

81 files changed:
docs/manual/developer/modguide.html.en
docs/manual/dns-caveats.html.en
docs/manual/dns-caveats.html.fr
docs/manual/dns-caveats.xml.fr
docs/manual/dns-caveats.xml.ja
docs/manual/dns-caveats.xml.ko
docs/manual/dns-caveats.xml.meta
docs/manual/dns-caveats.xml.tr
docs/manual/howto/auth.html.fr
docs/manual/howto/auth.xml.fr
docs/manual/howto/auth.xml.ja
docs/manual/howto/auth.xml.ko
docs/manual/howto/auth.xml.meta
docs/manual/howto/auth.xml.tr
docs/manual/howto/htaccess.html.fr
docs/manual/howto/htaccess.xml.fr
docs/manual/howto/htaccess.xml.ja
docs/manual/howto/htaccess.xml.ko
docs/manual/howto/htaccess.xml.meta
docs/manual/howto/htaccess.xml.pt-br
docs/manual/mod/mod_auth_basic.html.fr
docs/manual/mod/mod_auth_basic.xml.fr
docs/manual/mod/mod_auth_basic.xml.ja
docs/manual/mod/mod_auth_basic.xml.ko
docs/manual/mod/mod_auth_basic.xml.meta
docs/manual/mod/mod_auth_digest.html.fr
docs/manual/mod/mod_auth_digest.xml.fr
docs/manual/mod/mod_auth_digest.xml.ko
docs/manual/mod/mod_auth_digest.xml.meta
docs/manual/mod/mod_auth_form.html.fr
docs/manual/mod/mod_auth_form.xml.fr
docs/manual/mod/mod_auth_form.xml.meta
docs/manual/mod/mod_authn_anon.html.fr
docs/manual/mod/mod_authn_anon.html.ja.utf8
docs/manual/mod/mod_authn_anon.xml.fr
docs/manual/mod/mod_authn_anon.xml.ja
docs/manual/mod/mod_authn_anon.xml.ko
docs/manual/mod/mod_authn_anon.xml.meta
docs/manual/mod/mod_authn_core.html.fr
docs/manual/mod/mod_authn_core.xml.fr
docs/manual/mod/mod_authn_core.xml.meta
docs/manual/mod/mod_authnz_ldap.html.fr
docs/manual/mod/mod_authnz_ldap.xml.fr
docs/manual/mod/mod_authnz_ldap.xml.meta
docs/manual/mod/mod_authz_core.html.fr
docs/manual/mod/mod_authz_core.xml.fr
docs/manual/mod/mod_authz_core.xml.meta
docs/manual/mod/mod_authz_dbm.html.fr
docs/manual/mod/mod_authz_dbm.xml.fr
docs/manual/mod/mod_authz_dbm.xml.ko
docs/manual/mod/mod_authz_dbm.xml.meta
docs/manual/mod/mod_authz_owner.html.fr
docs/manual/mod/mod_authz_owner.xml.fr
docs/manual/mod/mod_authz_owner.xml.ja
docs/manual/mod/mod_authz_owner.xml.ko
docs/manual/mod/mod_authz_owner.xml.meta
docs/manual/mod/mod_data.html.en
docs/manual/mod/mod_data.html.fr
docs/manual/mod/mod_data.xml.fr
docs/manual/mod/mod_data.xml.meta
docs/manual/mod/mod_dav.html.fr
docs/manual/mod/mod_dav.html.ja.utf8
docs/manual/mod/mod_dav.xml.fr
docs/manual/mod/mod_dav.xml.ja
docs/manual/mod/mod_dav.xml.ko
docs/manual/mod/mod_dav.xml.meta
docs/manual/mod/mod_userdir.html.en
docs/manual/mod/mod_userdir.xml.ja
docs/manual/mod/mod_userdir.xml.ko
docs/manual/mod/mod_userdir.xml.tr
docs/manual/rewrite/avoid.html.en
docs/manual/ssl/ssl_howto.html.fr
docs/manual/ssl/ssl_howto.xml.fr
docs/manual/ssl/ssl_howto.xml.meta
docs/manual/vhosts/ip-based.html.en
docs/manual/vhosts/ip-based.html.fr
docs/manual/vhosts/ip-based.xml.fr
docs/manual/vhosts/ip-based.xml.ja
docs/manual/vhosts/ip-based.xml.ko
docs/manual/vhosts/ip-based.xml.meta
docs/manual/vhosts/ip-based.xml.tr

index 542f391a2bf4f926250c71a8574d256dfb83b7c3..593e79fef54253c46971c8eb80c0cfbb119e041b 100644 (file)
@@ -121,7 +121,7 @@ of the module is used primarily for two things:<br />
 For now, we're only concerned with the first purpose of the module name, 
 which comes into play when we need to load the module:
 </p>
-<pre class="prettyprint lang-config">LoadModule example_module modules/mod_example.so</pre>
+<pre class="prettyprint lang-config">LoadModule example_module "modules/mod_example.so"</pre>
 
 <p>
 In essence, this tells the server to open up <code>mod_example.so</code> and look for a module 
@@ -165,15 +165,15 @@ our example case, we want every request ending with .sum to be served by
 <code>mod_example</code>, so we'll add a configuration directive that tells 
 the server to do just that:
 </p>
-<pre class="prettyprint lang-config">AddHandler example-handler .sum</pre>
+<pre class="prettyprint lang-config">AddHandler example-handler ".sum"</pre>
 
 <p>
 What this tells the server is the following: <em>Whenever we receive a request 
 for a URI ending in .sum, we are to let all modules know that we are 
 looking for whoever goes by the name of "example-handler" </em>. 
 Thus, when a request is being served that ends in .sum, the server will let all 
-modules know, that this request should be served by "example-handler
-". As you will see later, when we start building mod_example, we will 
+modules know, that this request should be served by "example-handler".
+As you will see later, when we start building mod_example, we will 
 check for this handler tag relayed by <code>AddHandler</code> and reply to 
 the server based on the value of this tag.
 </p>
@@ -726,8 +726,8 @@ telling an individual module (or a set of modules) how to behave, such as
 these directives control how <code>mod_rewrite</code> works:
 </p>
 <pre class="prettyprint lang-config">RewriteEngine On
-RewriteCond %{REQUEST_URI} ^/foo/bar
-RewriteRule ^/foo/bar/(.*)$ /foobar?page=$1</pre>
+RewriteCond "%{REQUEST_URI}"  "^/foo/bar"
+RewriteRule "^/foo/bar/(.*)$" "/foobar?page=$1"</pre>
 
 <p>
 Each of these configuration directives are handled by a separate function, 
@@ -800,7 +800,7 @@ module AP_MODULE_DECLARE_DATA   example_module =
 So far so good. To access our new handler, we could add the following to 
 our configuration:
 </p>
-<pre class="prettyprint lang-config">&lt;Location /example&gt;
+<pre class="prettyprint lang-config">&lt;Location "/example"&gt;
     SetHandler example-handler
 &lt;/Location&gt;</pre>
 
@@ -1069,11 +1069,11 @@ within which modules must operate. For example, let's assume you have this
 configuration set up for mod_rewrite:
 </p>
 <pre class="prettyprint lang-config">&lt;Directory "/var/www"&gt;
-    RewriteCond %{HTTP_HOST} ^example.com$
-    RewriteRule (.*) http://www.example.com/$1
+    RewriteCond "%{HTTP_HOST}" "^example.com$"
+    RewriteRule "(.*)"         "http://www.example.com/$1"
 &lt;/Directory&gt;
 &lt;Directory "/var/www/sub"&gt;
-    RewriteRule ^foobar$ index.php?foobar=true
+    RewriteRule "^foobar$" "index.php?foobar=true"
 &lt;/Directory&gt;</pre>
 
 <p>
@@ -1236,7 +1236,7 @@ where you have a parent configuration and a child, such as the following:
 </p>
 <pre class="prettyprint lang-config">&lt;Directory "/var/www"&gt;
     ExampleEnabled On
-    ExamplePath /foo/bar
+    ExamplePath "/foo/bar"
     ExampleAction file allow
 &lt;/Directory&gt;
 &lt;Directory "/var/www/subdir"&gt;
index d3c2f6b7db59ff5761bd8021ad2c4121b8ab01f0..dffb8ae30090a3077e2bf6f617433d081e1247d7 100644 (file)
@@ -49,7 +49,7 @@
     <pre class="prettyprint lang-config"># This is a misconfiguration example, do not use on your server
 &lt;VirtualHost www.example.dom&gt;
   ServerAdmin webgirl@example.dom
-  DocumentRoot /www/example
+  DocumentRoot "/www/example"
 &lt;/VirtualHost&gt;</pre>
 
 
@@ -70,7 +70,7 @@
     <pre class="prettyprint lang-config"># This is a misconfiguration example, do not use on your server
 &lt;VirtualHost 192.0.2.1&gt;
   ServerAdmin webgirl@example.dom
-  DocumentRoot /www/example
+  DocumentRoot "/www/example"
 &lt;/VirtualHost&gt;</pre>
 
 
@@ -88,7 +88,7 @@
     <pre class="prettyprint lang-config">&lt;VirtualHost 192.0.2.1&gt;
   ServerName www.example.dom
   ServerAdmin webgirl@example.dom
-  DocumentRoot /www/example
+  DocumentRoot "/www/example"
 &lt;/VirtualHost&gt;</pre>
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 
     <pre class="prettyprint lang-config">&lt;VirtualHost www.example1.dom&gt;
   ServerAdmin webgirl@example1.dom
-  DocumentRoot /www/example1
+  DocumentRoot "/www/example1"
 &lt;/VirtualHost&gt;
 &lt;VirtualHost www.example2.dom&gt;
   ServerAdmin webguy@example2.dom
-  DocumentRoot /www/example2
+  DocumentRoot "/www/example2"
 &lt;/VirtualHost&gt;</pre>
 
 
index aaa2d5b86c698719c4cd42d1b74b2680f942988e..4e88262590ba1d38099c62974067ed08c0a0d75a 100644 (file)
@@ -27,6 +27,8 @@
 <a href="./ko/dns-caveats.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="./tr/dns-caveats.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 
     <p>Cette page pourrait se résumer ainsi : configurez le
     serveur HTTP Apache de façon
index 46ad50311bc89ba42a7f3d2a47e4668407162284..92808aee9fa2ba945c55c82a99b1ba44544a8717 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
-<!-- English Revision : 1332626 -->
+<!-- English Revision: 1332626:1673652 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 19f1aa0b8efda2b6c85f6c1ad7e1b10f5d97fb75..061fdd90a16e4466b2af25592230df6daf684c7d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
-<!-- English Revision: 507346:1332626 (outdated) -->
+<!-- English Revision: 507346:1673652 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 9903694064e0cb62886cf192f07cfc5e8b7ed3d2..16be4a7ee0e61de11aa7739dcc6925e0264cace1 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1332626 (outdated) -->
+<!-- English Revision: 105989:1673652 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 32f13c328b4a3ffd07d698bd56900c8f4b486d1f..396ead1a42421f17402fb4fc1e2be915a580087b 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
index 0f4a32969e007efa7f3cb6c44c7e0c27c3a026e5..196ef7ea41375d6e970a33cc10156e9dba5c3baf 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.tr.xsl"?>
-<!-- English Revision: 1174747:1332626 (outdated) -->
+<!-- English Revision: 1174747:1673652 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 505e788771905d7a703f0aa68726e37c643166e8..23b4cc5d230af2ebb132a507b988f23c11cb8584 100644 (file)
@@ -27,6 +27,8 @@
 <a href="../ko/howto/auth.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/howto/auth.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 
     <p>L'authentification est un processus qui vous permet de vérifier
     qu'une personne est bien celle qu'elle prétend être. L'autorisation
index 2012c2aa21f5646e40c86d145c96dae73b4e42e2..dc50e4cc02b5f2337a971d09546a04346d796721 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1599841 -->
+<!-- English Revision: 1599841:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviwed by : Vincent Deffontaines -->
 
index c339f495753766421ac81ee8286b64bed0c6e0dd..32cb4bbe6b75c7a0ab7c370cf5fa498d8c4d4345 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 479777:1599841 (outdated) -->
+<!-- English Revision: 479777:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 3264f2db7753f3a6cf56458b08f687383e4559f2..41bb8d37f0e23d199db0fea1264d999bdbac4fb0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1599841 (outdated) -->
+<!-- English Revision: 105989:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index b0b2e95d63cd05cbf50c8a9e5561d3c91dcd293c..641334dcd64c70f83cef2488eb4ed16f7acfa465 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
index 50a10103086c159eb2b8bad4329e83edab88a1e1..d4484ed0d2767fc795f56e869cf191053708fc31 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 1070891:1599841 (outdated) -->
+<!-- English Revision: 1070891:1673582 (outdated) -->
 <!-- =====================================================
  Translated by: Umut Samuk <umut belgeler.org>
    Reviewed by: Nilgün Belma Bugüner <nilgun belgeler.org>
index 96e6a6e26222feba0a71fd47edc2e5b06495f62f..bbb32b17bf6d2b4a35550943a6c230792f6f234c 100644 (file)
@@ -27,6 +27,8 @@
 <a href="../ko/howto/htaccess.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../pt-br/howto/htaccess.html" hreflang="pt-br" rel="alternate" title="Português (Brasil)">&nbsp;pt-br&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 
 <p>Les fichiers <code>.htaccess</code> fournissent une méthode pour
 modifier la configuration du serveur au niveau de chaque répertoire.</p>
index eb19e44a0c427df919d4a9f2ff18ff504e3ee274..3e4e3cc68024179a7a4c432275be1c0751dab92b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1666025 -->
+<!-- English Revision: 1666025:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 9ed6299226ebe6d6a8b36bfef19bb713d4707856..46fd1c7547a361d3657a22d843b71cea06c46c71 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 574882:1666025 (outdated) -->
+<!-- English Revision: 574882:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 98f91f67c02c9c973c2d25014177c286ef7138a4..6da0ee9e4b7fd050798b4b9fbc6235b7bf69d851 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1666025 (outdated) -->
+<!-- English Revision: 151408:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index a962e7243c21fe4713e967ccff1e47ca262e4658..aba40c04ac7aa094995ac23413eac4d4643e40d1 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">pt-br</variant>
index 247fa8f28f8d9af45f2fcfc7ca9f6542fc76d84c..848f363a261cc1a0322a6f1ee9acf6ad06e31c5b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.pt-br.xsl"?>
-<!-- English Revision: 151408:1666025 (outdated) -->
+<!-- English Revision: 151408:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index a6d6bf97562af69c714a196d60679e9a06df0b62..c2aa3f9a64b6b0222f84aff42f7dc05fc18e2dfc 100644 (file)
@@ -29,6 +29,8 @@
 <a href="../ja/mod/mod_auth_basic.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_auth_basic.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Authentification HTTP de base</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>auth_basic_module</td></tr>
index 899c2985093d74ad426a5637fe7916a614502c6d..efd5bd4f92e206ce6394e6eaa4864aba1db214bb 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1659902 -->
+<!-- English Revision: 1659902:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 4ccd8799b5ace17e308461d2ac81071ed5919b78..c905323b9a746c45c528568b22a0c36d5d7a98f7 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 420990:1659902 (outdated) -->
+<!-- English Revision: 420990:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index cf9d7f37cb220776c19adeae8d3af0e37294c8cd..b7d5582e8db48d4c1df2af0cb942758c52308a51 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1659902 (outdated) -->
+<!-- English Revision: 151408:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index dd48206a0ee713af36236d6b6df90424ac350d78..6418e977531e4965803b4f45eead781fa8d527e0 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
index a9cfb11375f812b383cf9e616c43759e0e668284..c3f051da342913402415ffef53cc7c5139188e7b 100644 (file)
@@ -28,6 +28,8 @@
 <a href="../fr/mod/mod_auth_digest.html" title="Français">&nbsp;fr&nbsp;</a> |
 <a href="../ko/mod/mod_auth_digest.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Authentification utilisateur utilisant les condensés
 MD5</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index 48d09c3d6b00075331944b6385d003b9bd814134..1587287c988a8d995561d72d495d5253862f1900 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1554281 -->
+<!-- English Revision: 1554281:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 0d6179f86fd9022d0d6b8fb36864005590d5ecb4..55e8da01ddd17ac1341e5e430108d8b6ea68ed95 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1554281 (outdated) -->
+<!-- English Revision: 105989:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 7583c0e005d919b2ed2bce5850e61fa61702b4ef..5e68b12cb2184d916d39342054c97bbfee97db9e 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>
index 1965e8ba877ee179a9642e7a734684eb5dbb757a..cdbc78e5bd76a982652397b8222d304f04defbfe 100644 (file)
@@ -27,6 +27,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_auth_form.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_auth_form.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Authentification à l'aide d'un formulaire</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>auth_form_module</td></tr>
index c0f9a56b15ac84a912e3ec895f4e1bc1cbb9f221..4db5bf4885ac8997c4ca74c9e1c785c57b4ea0cc 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1659902 -->
+<!-- English Revision: 1659902:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 66a7abbcd2acbb5554920b3ac7d8b973780f8e92..ff178f6df2c120d14bf51fb09171ee1c6f4f5aa8 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>
index 94d0a848c7a53fe178e2ec5a07e7fdcc8613f798..638725b1d28093b44021afc975857ca516b7bb08 100644 (file)
@@ -29,6 +29,8 @@
 <a href="../ja/mod/mod_authn_anon.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_authn_anon.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Permet un accès "anonyme" à des zones
 authentifiées</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index 46d99240df3011898dc3a78dfab6384bd7a7b55e..80dd1d24b6f5434b603d21e7ff158a85910ca520 100644 (file)
 <a href="../ja/mod/mod_authn_anon.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_authn_anon.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">この日本語訳はすでに古くなっている
+            可能性があります。
+            最近更新された内容を見るには英語版をご覧下さい。
+        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>認証が必要な領域への "anonymous" ユーザのアクセスを許可する
 </td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
index 5bc023173243a8b5911e6c891299509f64cf3bc7..650766161ef6884b06950282f804636c9dc2c426 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1421821 -->
+<!-- English Revision: 1421821:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 8518626dcce5c72b440edcd32e17a493bca7ddf8..e5903280527abe6bdbd3ccb1b9bf106137312d1a 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 1421821 -->
+<!-- English Revision: 1421821:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 3c4f6fb439cbe19946fcc4efec3b6611a0021a71..b773df58f00e3c0a12e60e7312ce05b7ce3ffbd4 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 659902:1421821 (outdated) -->
+<!-- English Revision: 659902:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index bd8c82b0404cd765c1552b5670e4066abf13b722..36ae800a412d2e6bee6468e25dd741d3877efb60 100644 (file)
@@ -8,8 +8,8 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
-    <variant>ja</variant>
+    <variant outdated="yes">fr</variant>
+    <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>
index 20811b6eed96b87ad9de4eaf91be5d9c6c038558..264885bfd26e84e505de827a168da6ab6d1dd269 100644 (file)
@@ -27,6 +27,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_authn_core.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_authn_core.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Le noyau de l'authentification</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>authn_core_module</td></tr>
index 6b56e9ee67484ade1fad82eb693f0e19913baac3..6aedf468dbabd0e68811640a0d9fae3406f325b1 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1663123 -->
+<!-- English Revision: 1663123:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index de982543759dff88a38dc1b5a1f58bafb2f73610..e7f54a0c05c13b130ee4e89cd2059c06df91344e 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>
index 4136d03d6c8822d80c9edf5220cc1ccca4d8c60f..d92122188d7addfc6e1f056934e3072bd06f679f 100644 (file)
@@ -27,6 +27,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_authnz_ldap.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_authnz_ldap.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Permet d'utiliser un annuaire LDAP pour l'authentification
 HTTP de base.</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index 9a4cf31d36764e7706c42bd7a16b2ab871b740d4..b96164631ec4a26c14cd67232df65d4a44ad5000 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1643416 -->
+<!-- English Revision: 1643416:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 4ec661a32dd5046d4535dedae299bc720b9734f6..7a6a237d9a1fa816284676c7782fd5bc9431d6d0 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>
index a4f19b405ef2dc541015fbc6d598fca129cc5094..3395e39234e431fbfbf08c61829e61b034c2d1b6 100644 (file)
@@ -27,6 +27,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_authz_core.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_authz_core.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Socle d'autorisation</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>authz_core_module</td></tr>
index 3dbae2b68384f7bd1c9d267065c25a641feca796..e120e5f7a15512f3bfa2a95db774283248562959 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1642590 -->
+<!-- English Revision: 1642590:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 5023ce74e38c5033f07d45090b67a59a8e15fea6..248771933a9e8b2688556aaea1c42b82a23108ab 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>
index c83f6fa757a2dcc7b3a78aafa03fc071972cebea..3f22f98444220e56ab75acb9c373cab8d3ef6f2e 100644 (file)
@@ -28,6 +28,8 @@
 <a href="../fr/mod/mod_authz_dbm.html" title="Français">&nbsp;fr&nbsp;</a> |
 <a href="../ko/mod/mod_authz_dbm.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Autorisation par groupes sur base de fichiers DBM</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>authz_dbm_module</td></tr>
index 6848ab8b1c2b0b2f62bb6438c38ce9e64e1c7fb9..3de2ed82b13b8b21c5607cb5f6bd70af91f2c352 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1587032 -->
+<!-- English Revision: 1587032:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index a84dba4e63074f7ec3a3df69f4b6650794e34928..cbd5d33726983b414ed968fe347773e98d91f658 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 111480:1587032 (outdated) -->
+<!-- English Revision: 111480:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index c1c330875b6cf13bfb3d8c0f9c697e7dae662b37..17b39854176b23bf39876f47e4fe47869fe8ed5c 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>
index 3fdc0954f5d0c38e2856335df9ec178604e2b2db..745d712180dbe2e7c77ba26b3491764216daa366 100644 (file)
@@ -29,6 +29,8 @@
 <a href="../ja/mod/mod_authz_owner.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_authz_owner.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Autorisation basée sur l'appartenance des
 fichiers</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index d288b1e46af0e8e1cef7abb2f0bcc92b46ba1d03..1a9acfdb8728a49ba5f66a80009d33d562100b2d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1421821 -->
+<!-- English Revision: 1421821:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 2635ca7ca40c5e7894ad8ca716a71b3237140efb..86d38622efcf43be8f8697511838fc4ebd47a02d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 574882:1421821 (outdated) -->
+<!-- English Revision: 574882:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 42b40e211db3141824a466176f22d40de7c28c0c..b366d6d990127c47508bf990907507097827324d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1421821 (outdated) -->
+<!-- English Revision: 151408:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 9f7a44bc160a1977bdfe97801c01c2c60ed59662..f5823c875f5aabd50598d01c08fdd18644837977 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
index 4698de0ebc2c33aef8e8d3b6a598632591509eae..f5193464321bb37e6236fc918f40ab596d1ab00b 100644 (file)
@@ -59,7 +59,7 @@
     or any of the directives supported by the <code class="module"><a href="../mod/mod_filter.html">mod_filter</a></code>
     module.</p>
 
-    <div class="example"><h3>Configuring the filter</h3><pre class="prettyprint lang-config">&lt;Location /data/images&gt;
+    <div class="example"><h3>Configuring the filter</h3><pre class="prettyprint lang-config">&lt;Location "/data/images"&gt;
     SetOutputFilter DATA
 &lt;/Location&gt;</pre>
 </div>
index df08a13b1919ead13fc3788a1530a5d887657db7..b5bfdf3971152e5b7bb480b571f1c906028e00f4 100644 (file)
@@ -27,6 +27,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_data.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_data.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Convertit un corps de réponse en URL de type données RFC2397</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>data_module</td></tr>
index 893060e9780294837ea30a043c1ffd0fcc8322d0..28dc2358ff201720c8e9c5674b9a14aebdd5257d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1330980 -->
+<!-- English Revision: 1330980:1673656 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 38248f4066df5c6e890511d5095076ec9bd61a19..b91aa8b90995e4418d754afe3b7bb950bf4e2b75 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>
index cc6c9f76f4197a0fd9f0d2fc520f529ba6f113d2..5fa6e53ac2cbc0353663c1ea2b4813e1046e6a3e 100644 (file)
@@ -29,6 +29,8 @@
 <a href="../ja/mod/mod_dav.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_dav.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Fonctionnalité de création et gestion de versions de
 documents via le web (<a href="http://www.webdav.org/">WebDAV</a>)</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index 98bd479eba6e378b2aad2617e8f438aaa991e9cb..d594b1a19d9bc5503f5629d1da42b234692379a2 100644 (file)
 <a href="../ja/mod/mod_dav.html" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_dav.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">この日本語訳はすでに古くなっている
+            可能性があります。
+            最近更新された内容を見るには英語版をご覧下さい。
+        </div>
 <table class="module"><tr><th><a href="module-dict.html#Description">説明:</a></th><td>分散オーサリングとバージョン管理
 (<a href="http://www.webdav.org/">WebDAV</a>) 機能</td></tr>
 <tr><th><a href="module-dict.html#Status">ステータス:</a></th><td>Extension</td></tr>
index f908c2ec70a45e75385cf9393614d758a9ed8f99..c1e3bc2e744c3d2efd262d654b1dd9fff2ae842f 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1628084 -->
+<!-- English Revision: 1628084:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index b8715626e2298cd018086d9311df05e2dd58cb41..2e2eab9093ecdfc4d883ae2a64efdb15f3776687 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 1628084 -->
+<!-- English Revision: 1628084:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 95a059c35eed567c1f7175333c94fec808556e6e..71d4a4ad24bedfeffa88a228630b8dba64afbe56 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1628084 (outdated) -->
+<!-- English Revision: 151408:1673582 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index fc93737add9c9a75c66389967c18b2a4cdf75165..61fcd96a32973b0fe8d709f22da988afa2036aff 100644 (file)
@@ -8,8 +8,8 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
-    <variant>ja</variant>
+    <variant outdated="yes">fr</variant>
+    <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
   </variants>
 </metafile>
index bb571ab71739abc15b2abcd67aae825e9fffaf11..bf4b02c5c3039e86c76a964b1353f22252a3254d 100644 (file)
@@ -147,7 +147,7 @@ UserDir enabled user1 user2 user3</pre>
     <p>It is also possible to specify alternative user directories.
     If you use a command like:</p>
 
-    <pre class="prettyprint lang-config">UserDir public_html /usr/web http://www.example.com/</pre>
+    <pre class="prettyprint lang-config">UserDir "public_html" "/usr/web" "http://www.example.com/"</pre>
 
 
     <p>With a request for
index dc3b3b0b7407d8826f47482ca92ccfc26797d42b..df4b596dea5f8341c5792baf9bca528789f31162 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 657842:1331229 (outdated) -->
+<!-- English Revision: 657842:1673657 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 1f9d795e37481eb40a4023f36a24165f9cb6dfdf..876d5ab815d5d9c69143310200aa36c79a4a67f4 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1331229 (outdated) -->
+<!-- English Revision: 151408:1673657 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index b98e6165c7052a4ca3f6f270003051390e57cb2b..86aad1504d5b6284a184f4139102b4afd57ceb52 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 1174747:1331229 (outdated) -->
+<!-- English Revision: 1174747:1673657 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index b94c008aa3811592f710546eb778ffb462af42b9..9f13355700568b9c80b1cdce54bb392590f2db56 100644 (file)
@@ -83,7 +83,7 @@ and <code>/one/three/four.html</code>.</p>
 <p>To redirect URLs under <code>/one</code> to
 <code>http://one.example.com</code>, do the following:</p>
 
-<pre class="prettyprint lang-config">Redirect /one/ http://one.example.com/</pre>
+<pre class="prettyprint lang-config">Redirect "/one/" "http://one.example.com/"</pre>
 
 
 <p>To redirect <code>http</code> URLs to <code>https</code>, do the
@@ -91,7 +91,7 @@ following:</p>
 
 <pre class="prettyprint lang-config">&lt;VirtualHost *:80&gt;
     ServerName www.example.com
-    Redirect / https://www.example.com/
+    Redirect "/" "https://www.example.com/"
 &lt;/VirtualHost &gt;
 
 &lt;VirtualHost *:443&gt;
@@ -122,7 +122,7 @@ is possible to perform this mapping with <code>mod_rewrite</code>,
 <code>Alias</code> is the preferred method, for reasons of simplicity
 and performance.</p>
 
-<div class="example"><h3>Using Alias</h3><pre class="prettyprint lang-config">Alias /cats /var/www/virtualhosts/felines/htdocs</pre>
+<div class="example"><h3>Using Alias</h3><pre class="prettyprint lang-config">Alias "/cats" "/var/www/virtualhosts/felines/htdocs"</pre>
 </div>
 
 <p>
@@ -163,21 +163,21 @@ seems like the right approach.</p>
 <p><code>RewriteRule</code> provides the <a href="flags.html#flag_p">[P]</a> flag to pass rewritten URIs through
 <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code>.</p>
 
-<pre class="prettyprint lang-config">RewriteRule ^/?images(.*) http://imageserver.local/images$1 [P]</pre>
+<pre class="prettyprint lang-config">RewriteRule "^/?images(.*)" "http://imageserver.local/images$1" [P]</pre>
 
 
 <p>However, in many cases, when there is no actual pattern matching
 needed, as in the example shown above, the <code class="directive"><a href="../mod/mod_proxy.html#proxypass">ProxyPass</a></code> directive is a better choice.
 The example here could be rendered as:</p>
 
-<pre class="prettyprint lang-config">ProxyPass /images/ http://imageserver.local/images/</pre>
+<pre class="prettyprint lang-config">ProxyPass "/images/" "http://imageserver.local/images/"</pre>
 
 
 <p>Note that whether you use <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> or <code class="directive"><a href="../mod/mod_proxy.html#proxypass">ProxyPass</a></code>, you'll still need to use the
 <code class="directive"><a href="../mod/mod_proxy.html#proxypassreverse">ProxyPassReverse</a></code> directive to
 catch redirects issued from the back-end server:</p>
 
-<pre class="prettyprint lang-config">ProxyPassReverse /images/ http://imageserver.local/images/</pre>
+<pre class="prettyprint lang-config">ProxyPassReverse "/images/" "http://imageserver.local/images/"</pre>
 
 
 <p>You may need to use <code>RewriteRule</code> instead when there are
@@ -201,7 +201,7 @@ hostname, such as <code>www.example.com</code> instead of
 <code>example.com</code>. This can be done using the <code class="directive"><a href="../mod/core.html#if">&lt;If&gt;</a></code> directive, as shown here:</p>
 
 <pre class="prettyprint lang-config">&lt;If "req('Host') != 'www.example.com'"&gt;
-    Redirect / http://www.example.com/
+    Redirect "/" "http://www.example.com/"
 &lt;/If&gt;</pre>
 
 
index d3459bbef5554f67733720a4d0abe51f621a11cb..14a91643c5a7e04ec7d4eeb5ab2ff7c333510383 100644 (file)
@@ -24,6 +24,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/ssl/ssl_howto.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/ssl/ssl_howto.html" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 
 
 <p>Ce document doit vous permettre de démarrer et de faire fonctionner
index d1def9a10bef655342a98e9bcceeb47a113cb722..a898641ff07b05e9de22720567c9c5ea5c348be0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1635558 -->
+<!-- English Revision: 1635558:1673582 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index b7c021fd9a846155de9e4307c9b5cb16dc41d03f..8d9a5237f4e3c8c6c0595f8985d873cc613ed26d 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>
index c3f7b7ec41ee827e00a9701225059518f4ce1250..9eba2f4e0c11ae9a0bd3183d408f4c66fe0afd6b 100644 (file)
@@ -133,18 +133,18 @@ Virtual Hosts</a> to help you decide.  </p>
 
     <pre class="prettyprint lang-config">&lt;VirtualHost 172.20.30.40:80&gt;
     ServerAdmin webmaster@www1.example.com
-    DocumentRoot /www/vhosts/www1
+    DocumentRoot "/www/vhosts/www1"
     ServerName www1.example.com
-    ErrorLog /www/logs/www1/error_log
-    CustomLog /www/logs/www1/access_log combined
+    ErrorLog "/www/logs/www1/error_log"
+    CustomLog "/www/logs/www1/access_log" combined
 &lt;/VirtualHost&gt;
 
 &lt;VirtualHost 172.20.30.50:80&gt;
-    ServerAdmin webmaster@www2.example.org
-    DocumentRoot /www/vhosts/www2
+    ServerAdmin "webmaster@www2.example.org"
+    DocumentRoot "/www/vhosts/www2"
     ServerName www2.example.org
-    ErrorLog /www/logs/www2/error_log
-    CustomLog /www/logs/www2/access_log combined
+    ErrorLog "/www/logs/www2/error_log"
+    CustomLog "/www/logs/www2/access_log" combined
 &lt;/VirtualHost&gt;</pre>
 
 
index f22f0aeea2897158bdcbf3be834722d955de4390..c599fcb9c8e5aaf0ea4ce9ec003d7505ee030c7f 100644 (file)
@@ -27,6 +27,8 @@
 <a href="../ko/vhosts/ip-based.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/vhosts/ip-based.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 </div>
 <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#requirements">Système requis</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#howto">Comment configurer Apache</a></li>
index ecbe2a9719fcb170d3b52d84174bad85c0bd8cff..23faca2138382fd093b1c8f12be17b078d1ce3d5 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='ISO-8859-1' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
-<!-- English Revision : 1330878 -->
+<!-- English Revision: 1330878:1673658 (outdated) -->
 <!-- French translation by alain B, review by Vincent Deffontaines -->
 <!-- Updated by Lucien Gentis -->
 
index 7bb1e28ad8eb2df345be8708c418b68801bfc42d..edc576cf8887e167282ffbe25c8860f1dd78f348 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 659902:1330878 (outdated) -->
+<!-- English Revision: 659902:1673658 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 691304c6287eb3fb9496f5f5b68cf786562c7940..2f827ba25315d4ebe538a0d349325a64ecd919ef 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1330878 (outdated) -->
+<!-- English Revision: 105989:1673658 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 1d24a40e09816506d2a6d787fcba9adec56b6c1f..af2f9cae53fe7de44d600a6cd365c9522ba1e240 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
index ae1802e19b090336954508c06b3d957eaf6549ee..e776da42571689f99f0fc940d9ad8a12766f57ea 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 1300910:1330878 (outdated) -->
+<!-- English Revision: 1300910:1673658 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>