You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by lg...@apache.org on 2019/01/27 14:08:09 UTC

svn commit: r1852289 - in /httpd/httpd/trunk/docs/manual: ./ mod/

Author: lgentis
Date: Sun Jan 27 14:08:09 2019
New Revision: 1852289

URL: http://svn.apache.org/viewvc?rev=1852289&view=rev
Log:
fr doc rebuild.

Modified:
    httpd/httpd/trunk/docs/manual/custom-error.html.fr.utf8
    httpd/httpd/trunk/docs/manual/custom-error.xml.meta
    httpd/httpd/trunk/docs/manual/mod/core.html.fr.utf8
    httpd/httpd/trunk/docs/manual/mod/core.xml.meta
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.fr.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.html.fr.utf8
    httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.fr
    httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.meta
    httpd/httpd/trunk/docs/manual/mod/quickreference.html.fr.utf8

Modified: httpd/httpd/trunk/docs/manual/custom-error.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/custom-error.html.fr.utf8?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/custom-error.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/custom-error.html.fr.utf8 [utf-8] Sun Jan 27 14:08:09 2019
@@ -30,8 +30,6 @@
 <a href="./ko/custom-error.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="./tr/custom-error.html" hreflang="tr" rel="alternate" title="Türkç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>Le serveur HTTP Apache fournit des messages d'erreur génériques
     pour les codes de statut 4xx ou 5xx ; ces messages sont cependant

Modified: httpd/httpd/trunk/docs/manual/custom-error.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/custom-error.xml.meta?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/custom-error.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/custom-error.xml.meta Sun Jan 27 14:08:09 2019
@@ -9,7 +9,7 @@
   <variants>
     <variant>en</variant>
     <variant>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>

Modified: httpd/httpd/trunk/docs/manual/mod/core.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.html.fr.utf8?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.html.fr.utf8 [utf-8] Sun Jan 27 14:08:09 2019
@@ -33,8 +33,6 @@
 <a href="../ja/mod/core.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../tr/mod/core.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>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Fonctionnalités de base du serveur HTTP Apache toujours
 disponibles</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Noyau httpd</td></tr></table>
@@ -3423,7 +3421,27 @@ correspondant à une expression rationne
 <pre class="prettyprint lang-config">&lt;LocationMatch "^/combined/(?&lt;sitename&gt;[^/]+)"&gt;
     Require ldap-group cn=%{env:MATCH_SITENAME},ou=combined,o=Example
 &lt;/LocationMatch&gt;</pre>
-    
+
+
+    <div class="note"><h3>Note à propos du slash '/'</h3>
+      <p>La signification du caractère slash '/' dépend de l'endroit où il
+      apparaît dans une URL. Les utilisateurs sont habitués à voir de multiples
+      slashes adjacents réduits à un seul au sein du système de fichiers (par
+      exemple, <code>/home///foo</code> est équivalent à
+      <code>/home/foo</code>). Ce n'est n'est cependant pas toujours le cas au
+      sein des URLs. En effet, si vous souhaitez spécifier plusieurs slashes,
+      vous devez le faire explicitement au sein de la directive <code class="directive"><a href="#locationmatch">&lt;LocationMatch&gt;</a></code> et de la version
+      regex de la directive <code class="directive">&lt;Location&gt;</code>.</p>
+
+      <p>Par exemple, <code>&lt;LocationMatch "^/abc"&gt;</code> correspondra à
+      l'URL <code>/abc</code>, mais pas à l'URL <code>//abc</code>. La directive
+      (non-regex) <code class="directive">&lt;Location&gt;</code> se comporte de
+      la même manière lorsqu'elle est utilisée dans les requêtes de mandataire.
+      Par contre, pour les autres types de requêtes, la directive <code class="directive">&lt;Location&gt;</code> considérera plusieurs slashes
+      adjacents comme équivalents à un seul slash. Par exemple, si vous
+      spécifiez <code>&lt;Location "/abc/def"&gt;</code>, une requête pour
+      <code>/abc//def</code> correspondra.</p>
+    </div>
 
 <h3>Voir aussi</h3>
 <ul>

Modified: httpd/httpd/trunk/docs/manual/mod/core.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.xml.meta?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.xml.meta Sun Jan 27 14:08:09 2019
@@ -10,7 +10,7 @@
     <variant outdated="yes">de</variant>
     <variant>en</variant>
     <variant outdated="yes">es</variant>
-    <variant outdated="yes">fr</variant>
+    <variant>fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">tr</variant>
   </variants>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.fr.utf8?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.fr.utf8 [utf-8] Sun Jan 27 14:08:09 2019
@@ -33,11 +33,12 @@
 dynamique inverse de masse</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>proxy_express_module</td></tr>
-<tr><th><a href="module-dict.html#SourceFile">Fichier Source:</a></th><td>mod_proxy_express.c</td></tr></table>
+<tr><th><a href="module-dict.html#SourceFile">Fichier Source:</a></th><td>mod_proxy_express.c</td></tr>
+<tr><th><a href="module-dict.html#Compatibility">Compatibilité:</a></th><td>Disponible à partir de la version 2.3.13 du serveur HTTP Apache</td></tr></table>
 <h3>Sommaire</h3>
 
     <p>Ce module crée dynamiquement en masse des mandataires inverses en
-    faisant correspondre l'en-tête Host: de la requête HTTP à un nom de
+    faisant correspondre l'en-tête <code>Host:</code> de la requête HTTP à un nom de
     serveur et une URL d'arrière-plan stockés dans un fichier DBM. Il
     est ainsi plus aisé d'utiliser un grand nombre de
     mandataires inverses sans avoir à modifier la configuration. Il est
@@ -58,11 +59,10 @@ dynamique inverse de masse</td></tr>
 
 <div class="note"><h3>Limitations</h3>
   <ul>
-    <li>Ce module n'est pas conçu pour remplacer les fonctionnalités
-    dynamiques de <code class="module"><a href="../mod/mod_proxy_balancer.html">mod_proxy_balancer</a></code>. Par contre, il
-    peut constituer une alternative légère et rapide à
-    <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> lorsque ce dernier utilise la directive
-    <code class="directive">RewriteMap</code> et le drapeau <code>[P]</code>
+    <li>Ce module n'est pas conçu pour remplacer les fonctionnalités dynamiques
+    de <code class="module"><a href="../mod/mod_proxy_balancer.html">mod_proxy_balancer</a></code>. Par contre, il peut constituer une
+    alternative légère et rapide à <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> lorsque ce
+    dernier utilise la directive <code class="directive"><a href="../mod/mod_rewrite.html#rewritemap">RewriteMap</a></code> et le drapeau <code>[P]</code>
     pour le mandatement inverse à partir d'une table de correspondances.
     </li>
     <li>Il ne supporte pas les mises en correspondance basées sur les
@@ -102,18 +102,16 @@ dynamique inverse de masse</td></tr>
 <div class="directive-section"><h2><a name="proxyexpressdbmfile" id="proxyexpressdbmfile">Directive</a> <a name="ProxyExpressDBMFile" id="ProxyExpressDBMFile">ProxyExpressDBMFile</a> <a title="Lien permanent" href="#proxyexpressdbmfile" class="permalink">&para;</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Chemin du fichier DBM.</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>ProxyExpressDBMFile &lt;chemin&gt;</code></td></tr>
-<tr><th><a href="directive-dict.html#Default">Défaut:</a></th><td><code>None</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>ProxyExpressDBMFile <var>pathname</var></code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Contexte:</a></th><td>configuration globale, serveur virtuel</td></tr>
 <tr><th><a href="directive-dict.html#Override">Surcharges autorisées:</a></th><td>FileInfo</td></tr>
 <tr><th><a href="directive-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_proxy_express</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">Compatibilité:</a></th><td>Disponible à partir de la version 2.3.13 d'Apache</td></tr>
 </table>
   <p>La directive <code class="directive">ProxyExpressDBMFile</code> permet de
   définir le chemin du fichier DBM de correspondance Express. Ce fichier
   permet de faire correspondre le nom de serveur extrait de l'en-tête
-  Host: de la requête entrante avec une URL d'arrière-plan.</p>
+  <code>Host:</code> de la requête entrante avec une URL d'arrière-plan.</p>
 
     <div class="note"><h3>Note</h3>
       <p>Ce fichier est élaboré à partir d'un fichier texte à l'aide de
@@ -124,19 +122,18 @@ dynamique inverse de masse</td></tr>
         ##express-map.txt:<br />
         ##<br />
         <br />
-        www1.example.com    http://192.168.211.2:8080<br />
+        www1.example.com   http://192.168.211.2:8080<br />
         www2.example.com   http://192.168.211.12:8088<br />
         www3.example.com   http://192.168.212.10<br />
       </code></p></div>
 
       <div class="example"><h3>Création du fichier DBM</h3><p><code>
         httxt2dbm -i express-map.txt -o emap<br />
-        </code></p></div>
+      </code></p></div>
 
-      <div class="example"><h3>Configuration</h3><p><code>
-        ProxyExpressEnable on<br />
-	ProxyExpressDBMFile emap<br />
-        </code></p></div>
+      <div class="example"><h3>Configuration</h3><pre class="prettyprint lang-config">ProxyExpressEnable on
+ProxyExpressDBMFile emap</pre>
+</div>        
     </div>
 
 </div>
@@ -144,13 +141,12 @@ dynamique inverse de masse</td></tr>
 <div class="directive-section"><h2><a name="proxyexpressdbmtype" id="proxyexpressdbmtype">Directive</a> <a name="ProxyExpressDBMType" id="ProxyExpressDBMType">ProxyExpressDBMType</a> <a title="Lien permanent" href="#proxyexpressdbmtype" class="permalink">&para;</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Type de fichier DBM.</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>ProxyExpressDBMFile &lt;type&gt;</code></td></tr>
-<tr><th><a href="directive-dict.html#Default">Défaut:</a></th><td><code>"default"</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>ProxyExpressDBMType <var>type</var></code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Défaut:</a></th><td><code>ProxyExpressDBMType default</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Contexte:</a></th><td>configuration globale, serveur virtuel</td></tr>
 <tr><th><a href="directive-dict.html#Override">Surcharges autorisées:</a></th><td>FileInfo</td></tr>
 <tr><th><a href="directive-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_proxy_express</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">Compatibilité:</a></th><td>Disponible à partir de la version 2.3.13 d'Apache</td></tr>
 </table>
   <p>La directive <code class="directive">ProxyExpressDBMType</code> permet de
   définir le type de fichier DBM requis par le module. La valeur par
@@ -172,13 +168,12 @@ dynamique inverse de masse</td></tr>
 <div class="directive-section"><h2><a name="proxyexpressenable" id="proxyexpressenable">Directive</a> <a name="ProxyExpressEnable" id="ProxyExpressEnable">ProxyExpressEnable</a> <a title="Lien permanent" href="#proxyexpressenable" class="permalink">&para;</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Active la fonctionnalité du module.</td></tr>
-<tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>ProxyExpressEnable [on|off]</code></td></tr>
-<tr><th><a href="directive-dict.html#Default">Défaut:</a></th><td><code>off</code></td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>ProxyExpressEnable on|off</code></td></tr>
+<tr><th><a href="directive-dict.html#Default">Défaut:</a></th><td><code>ProxyExpressEnable off</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Contexte:</a></th><td>configuration globale, serveur virtuel</td></tr>
 <tr><th><a href="directive-dict.html#Override">Surcharges autorisées:</a></th><td>FileInfo</td></tr>
 <tr><th><a href="directive-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_proxy_express</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">Compatibilité:</a></th><td>Disponible à partir de la version 2.3.13 d'Apache</td></tr>
 </table>
   <p>La directive <code class="directive">ProxyExpressEnable</code> permet
   d'activer/désactiver le module.</p>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.html.fr.utf8?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.html.fr.utf8 [utf-8] Sun Jan 27 14:08:09 2019
@@ -29,6 +29,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_xml2enc.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_xml2enc.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>Support avancé de l'internationalisation et des jeux de
 caractères pour les modules de filtrage basés sur libxml2</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.fr?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.fr [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.fr [utf-8] Sun Jan 27 14:08:09 2019
@@ -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.fr.xsl"?>
-<!-- English Revision: 1793934 -->
+<!-- English Revision: 1793934:1852223 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 

Modified: httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.meta?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_xml2enc.xml.meta Sun Jan 27 14:08:09 2019
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/trunk/docs/manual/mod/quickreference.html.fr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/quickreference.html.fr.utf8?rev=1852289&r1=1852288&r2=1852289&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/quickreference.html.fr.utf8 [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/quickreference.html.fr.utf8 [utf-8] Sun Jan 27 14:08:09 2019
@@ -1035,9 +1035,9 @@ incorrectes d'une réponse</td></tr>
 mandatées</td></tr>
 <tr class="odd"><td><a href="mod_proxy.html#proxyerroroverride">ProxyErrorOverride On|Off</a></td><td> Off </td><td>svd</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Outrepasser les pages d'erreur pour les contenus
 mandatés</td></tr>
-<tr><td><a href="mod_proxy_express.html#proxyexpressdbmfile">ProxyExpressDBMFile &lt;chemin&gt;</a></td><td></td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">Chemin du fichier DBM.</td></tr>
-<tr class="odd"><td><a href="mod_proxy_express.html#proxyexpressdbmtype">ProxyExpressDBMFile &lt;type&gt;</a></td><td></td><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Type de fichier DBM.</td></tr>
-<tr><td><a href="mod_proxy_express.html#proxyexpressenable">ProxyExpressEnable [on|off]</a></td><td></td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">Active la fonctionnalité du module.</td></tr>
+<tr><td><a href="mod_proxy_express.html#proxyexpressdbmfile">ProxyExpressDBMFile <var>pathname</var></a></td><td></td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">Chemin du fichier DBM.</td></tr>
+<tr class="odd"><td><a href="mod_proxy_express.html#proxyexpressdbmtype">ProxyExpressDBMType <var>type</var></a></td><td> default </td><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Type de fichier DBM.</td></tr>
+<tr><td><a href="mod_proxy_express.html#proxyexpressenable">ProxyExpressEnable on|off</a></td><td> off </td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">Active la fonctionnalité du module.</td></tr>
 <tr class="odd"><td><a href="mod_proxy_fcgi.html#proxyfcgibackendtype">ProxyFCGIBackendType FPM|GENERIC</a></td><td> FPM </td><td>svdh</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Spécifie le type de l'application FastCGI d'arrière-plan</td></tr>
 <tr><td><a href="mod_proxy_fcgi.html#proxyfcgisetenvif">ProxyFCGISetEnvIf <var>conditional-expression</var>
     [!]<var>environment-variable-name</var>