]> granicus.if.org Git - apache/commitdiff
XML updates.
authorLucien Gentis <lgentis@apache.org>
Sat, 18 Apr 2015 16:10:21 +0000 (16:10 +0000)
committerLucien Gentis <lgentis@apache.org>
Sat, 18 Apr 2015 16:10:21 +0000 (16:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1674530 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_actions.xml.fr
docs/manual/mod/mod_alias.xml.fr
docs/manual/mod/mod_authz_dbd.xml.fr
docs/manual/mod/mod_cache_socache.xml.fr
docs/manual/mod/mod_info.xml.fr
docs/manual/mod/mod_ldap.xml.fr
docs/manual/mod/mod_proxy_scgi.xml

index 30c51e05d15a56366ba0ded66a4227d6d54cc78f..bbcacb3bfde11d7d34d5a64a080dd66b6891778a 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: 1437836:1673892 (outdated) -->
+<!-- English Revision : 1673892 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -106,7 +106,7 @@ Action my-file-type /cgi-bin/program.cgi
     virtuelles.</p>
 
     <highlight language="config">
-&lt;Location /news&gt;
+&lt;Location "/news"&gt;
     SetHandler news-handler
     Action news-handler /cgi-bin/news.cgi virtual
 &lt;/Location&gt;
index a701cfc806d08032c0c5a6ef2ead668d47493bdc..b8bb92231def24f7684ad75b5cb3a384f0ffd612 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: 1653941:1673945 (outdated) -->
+<!-- English Revision : 1673945 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -98,8 +98,8 @@ syst&egrave;me de fichiers</a></seealso>
     &eacute;ventuellement s'appliquer, comme dans l'exemple suivant :</p>
 
     <highlight language="config">
-Alias /foo/bar /baz
-Alias /foo /gaq
+Alias "/foo/bar" "/baz"
+Alias "/foo" "/gaq"
     </highlight>
 
     <p>Si l'ordre des directives &eacute;tait invers&eacute;, la directive <directive
@@ -142,7 +142,7 @@ de fichiers</description>
     insensibles &agrave; la casse.</p>
 
     <highlight language="config">
-      Alias /image /ftp/pub/image
+      Alias "/image" "/ftp/pub/image"
     </highlight>
 
     <p>Une requ&ecirc;te pour <code>http://example.com/image/foo.gif</code> fera
@@ -159,7 +159,7 @@ de fichiers</description>
     requ&ecirc;te. Autrement dit, si vous d&eacute;finissez</p>
 
     <highlight language="config">
-      Alias /icons/ /usr/local/apache/icons/
+      Alias "/icons/" "/usr/local/apache/icons/"
     </highlight>
 
     <p>l'alias pr&eacute;c&eacute;dent ne s'appliquera pas &agrave; l'url
@@ -183,8 +183,8 @@ de fichiers</description>
     probablement permettre explicitement l'acc&egrave;s &agrave; ce r&eacute;pertoire.</p>
 
     <highlight language="config">
-Alias /image /ftp/pub/image
-&lt;Directory /ftp/pub/image&gt;
+Alias "/image" "/ftp/pub/image"
+&lt;Directory "/ftp/pub/image"&gt;
     Require all granted
 &lt;/Directory&gt;
     </highlight>
@@ -200,11 +200,11 @@ Alias /image /ftp/pub/image
     href="../expr.html">syntaxe des expressions</a>.</p>
 
     <highlight language="config">
-&lt;Location /image&gt;
-    Alias /ftp/pub/image
+&lt;Location "/image"&gt;
+    Alias "/ftp/pub/image"
 &lt;/Location&gt;
-&lt;LocationMatch /error/(?&lt;NUMBER&gt;[0-9]+)&gt;
-    Alias /usr/local/apache/errors/%{env:MATCH_NUMBER}.html
+&lt;LocationMatch "/error/(?&lt;NUMBER&gt;[0-9]+)"&gt;
+    Alias "/usr/local/apache/errors/%{env:MATCH_NUMBER}.html"
 &lt;/LocationMatch&gt;
     </highlight>
 
@@ -233,7 +233,7 @@ en faisant intervenir les expressions rationnelles</description>
     utiliser :</p>
 
     <highlight language="config">
-      AliasMatch ^/icons(.*) /usr/local/apache/icons$1
+      AliasMatch "^/icons(.*)" "/usr/local/apache/icons$1$2"
     </highlight>
 
     <p>Toute la puissance des <glossary ref="regex">expressions
@@ -242,7 +242,7 @@ en faisant intervenir les expressions rationnelles</description>
     insensible &agrave; la casse :</p>
 
     <highlight language="config">
-      AliasMatch (?i)^/image(.*) /ftp/pub/image$1
+      AliasMatch "(?i)^/image(.*)" "/ftp/pub/image$1"
     </highlight>
 
     <p>Il existe une diff&eacute;rence subtile entre <directive
@@ -268,7 +268,7 @@ en faisant intervenir les expressions rationnelles</description>
     avec AliasMatch :</p>
 
     <highlight language="config">
-      Alias /image/ /ftp/pub/image/
+      Alias "/image/" "/ftp/pub/image/"
     </highlight>
 
     <p>Le simple remplacement d'Alias par AliasMatch ne produira pas le
@@ -276,14 +276,14 @@ en faisant intervenir les expressions rationnelles</description>
     qui contiennent /image/ vers /ftp/pub/image/ :</p>
 
     <highlight language="config">
-      AliasMatch /image/ /ftp/pub/image/
+      AliasMatch "/image/" "/ftp/pub/image/"
     </highlight>
 
     <p>Voici la directive AliasMatch qui produira le m&ecirc;me r&eacute;sultat que
     la directive Alias ci-dessus :</p>
 
     <highlight language="config">
-      AliasMatch ^/image/(.*)$ /ftp/pub/image/$1
+      AliasMatch "^/image/(.*)$" "/ftp/pub/image/$1"
     </highlight>
 
     <p>Bien entendu, il n'y a aucune raison d'utiliser <directive
@@ -295,8 +295,8 @@ en faisant intervenir les expressions rationnelles</description>
     diff&eacute;rents :</p>
 
     <highlight language="config">
-      AliasMatch ^/image/(.*)\.jpg$ /fichiers/jpg.images/$1.jpg<br/>
-      AliasMatch ^/image/(.*)\.gif$ /fichiers/gif.images/$1.gif
+      AliasMatch "^/image/(.*)\.jpg$" "/fichiers/jpg.images/$1.jpg"<br/>
+      AliasMatch "^/image/(.*)\.gif$" "/fichiers/gif.images/$1.gif"
     </highlight>
 
     <p>Les &eacute;ventuels slashes de t&ecirc;te multiples seront supprim&eacute;s par le
@@ -339,10 +339,10 @@ d'effectuer une autre requ&ecirc;te avec une URL diff&eacute;rente</description>
 
     <highlight language="config">
 # Redirige vers une URL sur un serveur diff&eacute;rent
-Redirect /service http://foo2.example.com/service
+Redirect "/service" "http://foo2.example.com/service"
 
 # Redirige vers une URL sur le m&ecirc;me serveur
-Redirect /one /two
+Redirect "/one" "/two"
     </highlight>
 
     <p>Si le client effectue une requ&ecirc;te pour l'URL
@@ -413,8 +413,8 @@ Redirect /one /two
     http_protocol.c).</p>
 
     <highlight language="config">
-Redirect permanent /one http://example.com/two
-Redirect 303 /three http://example.com/other
+Redirect permanent "/one" "http://example.com/two"
+Redirect 303 "/three" "http://example.com/other"
     </highlight>
 
     <p>Si une directive <directive>Redirect</directive> est d&eacute;finie au
@@ -425,14 +425,14 @@ Redirect 303 /three http://example.com/other
     utilisant la <a href="../expr.html">syntaxe des expressions</a>.</p>
 
     <highlight language="config">
-&lt;Location /one&gt;
-    Redirect permanent http://example.com/two
+&lt;Location "/one"&gt;
+    Redirect permanent "http://example.com/two"
 &lt;/Location&gt;<br />
-&lt;Location /three&gt;
-    Redirect 303 http://example.com/other
+&lt;Location "/three"&gt;
+    Redirect 303 "http://example.com/other"
 &lt;/Location&gt;<br />
-&lt;LocationMatch /error/(?&lt;NUMBER&gt;[0-9]+)&gt;
-    Redirect permanent http://example.com/errors/%{env:MATCH_NUMBER}.html
+&lt;LocationMatch "/error/(?&lt;NUMBER&gt;[0-9]+)"&gt;
+    Redirect permanent "http://example.com/errors/%{env:MATCH_NUMBER}.html"
 &lt;/LocationMatch&gt;<br />
     </highlight>
 
@@ -463,7 +463,7 @@ courante</description>
     serveur, on peut utiliser :</p>
 
     <highlight language="config">
-      RedirectMatch (.*)\.gif$ http://autre.example.com$1.jpg
+      RedirectMatch "(.*)\.gif$" "http://autre.example.com$1.jpg"
     </highlight>
 
     <p>Les remarques &agrave; propos de la diff&eacute;rence entre <directive
@@ -535,7 +535,7 @@ et d&eacute;signe la cible comme script CGI</description>
     fichiers local.</p>
 
     <highlight language="config">
-      ScriptAlias /cgi-bin/ /web/cgi-bin/
+      ScriptAlias "/cgi-bin/" "/web/cgi-bin/"
     </highlight>
 
     <p>Une requ&ecirc;te pour <code>http://example.com/cgi-bin/foo</code>
@@ -543,8 +543,8 @@ et d&eacute;signe la cible comme script CGI</description>
     <code>/web/cgi-bin/foo</code>. Cette configuration est sensiblement
     &eacute;quivalente &agrave; :</p>
     <highlight language="config">
-Alias /cgi-bin/ /web/cgi-bin/
-&lt;Location /cgi-bin &gt;
+Alias "/cgi-bin/" "/web/cgi-bin/"
+&lt;Location "/cgi-bin"&gt;
     SetHandler cgi-script
     Options +ExecCGI
 &lt;/Location&gt;
@@ -554,7 +554,7 @@ Alias /cgi-bin/ /web/cgi-bin/
        avec un script ou gestionnaire de votre cru. Par exemple :</p>
 
        <highlight language="config">
-         ScriptAlias /cgi-bin/ /web/cgi-handler.pl
+         ScriptAlias "/cgi-bin/" "/web/cgi-handler.pl"
     </highlight>
 
     <p>Dans ce sc&eacute;nario, tous les fichiers faisant l'objet d'une requ&ecirc;te
@@ -577,7 +577,7 @@ Alias /cgi-bin/ /web/cgi-bin/
     module="core">SetHandler</directive>, et <directive
     module="core">Options</directive> comme dans l'exemple suivant :
     <highlight language="config">
-&lt;Directory /usr/local/apache2/htdocs/cgi-bin &gt;
+&lt;Directory "/usr/local/apache2/htdocs/cgi-bin"&gt;
     SetHandler cgi-script
     Options ExecCGI
 &lt;/Directory&gt;
@@ -596,11 +596,11 @@ Alias /cgi-bin/ /web/cgi-bin/
     utilisant la <a href="../expr.html">syntaxe des expressions</a>.</p>
 
     <highlight language="config">
-&lt;Location /cgi-bin &gt;
-    ScriptAlias /web/cgi-bin/
+&lt;Location "/cgi-bin"&gt;
+    ScriptAlias "/web/cgi-bin/"
 &lt;/Location&gt;
-&lt;LocationMatch /cgi-bin/errors/(?&lt;NUMBER&gt;[0-9]+)&gt;
-    ScriptAlias /web/cgi-bin/errors/%{env:MATCH_NUMBER}.cgi
+&lt;LocationMatch "/cgi-bin/errors/(?&lt;NUMBER&gt;[0-9]+)"&gt;
+    ScriptAlias "/web/cgi-bin/errors/%{env:MATCH_NUMBER}.cgi"
 &lt;/LocationMatch&gt;<br />
     </highlight>
 
@@ -630,7 +630,7 @@ comme un script CGI</description>
     standard <code>/cgi-bin</code>, on peut utiliser :</p>
 
     <highlight language="config">
-      ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1
+      ScriptAliasMatch "^/cgi-bin(.*)" "/usr/local/apache/cgi-bin$1"
     </highlight>
 
     <p>Comme dans le cas d'AliasMatch, toute la puissance des <glossary
@@ -639,7 +639,7 @@ comme un script CGI</description>
     avec une comparaison du mod&egrave;le du chemin URL insensible &agrave; la casse :</p>
 
     <highlight language="config">
-      ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1
+      ScriptAliasMatch "(?i)^/cgi-bin(.*)" "/usr/local/apache/cgi-bin$1"
     </highlight>
 
     <p>Les remarques &agrave; propos de la diff&eacute;rence entre <directive
index d283fe35b00f33de8a9c4e57d286469bf3bb2a61..9f9cf1c95683ec59efce3922866f668133aefa5b 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:1673892 (outdated) -->
+<!-- English Revision : 1673892 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -150,7 +150,7 @@ DBDKeep 8
 DBDMax  20
 DBDExptime 300
 
-&lt;Directory /usr/www/mon.site/team-private/&gt;
+&lt;Directory "/usr/www/mon.site/team-private/"&gt;
   # configuration de mod_authn_core et mod_auth_basic
   # pour mod_authn_dbd
   AuthType Basic
@@ -173,7 +173,7 @@ DBDExptime 300
   # contenir un lien vers /team-private/login.html
   ErrorDocument 401 /login-info.html
 
-  &lt;Files login.html&gt;
+  &lt;Files "login.html"&gt;
     # il n'est pas n&eacute;cessaire que l'utilisateur soit d&eacute;j&agrave; connect&eacute; !
     AuthDBDUserPWQuery "SELECT password FROM authn WHERE user = %s"
 
@@ -187,7 +187,7 @@ DBDExptime 300
     AuthzDBDLoginToReferer On
   &lt;/Files&gt;
 
-  &lt;Files logout.html&gt;
+  &lt;Files "logout.html"&gt;
     # le processus de d&eacute;connexion dbd ex&eacute;cute une requ&ecirc;te pour
     # enregistrer la d&eacute;connexion de l'utilisateur
     Require dbd-logout
index 72a72627bc11c7602eaf79bb1e3c988f4336460f..303d3d7409e91342660e31bc4d978c387eebe235 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:1673892 (outdated) -->
+<!-- English Revision: 1673892 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
 # Activation de la mise en cache
 CacheSocache shmcb
 CacheSocacheMaxSize 102400
-&lt;Location /foo&gt;
+&lt;Location "/foo"&gt;
     CacheEnable socache
 &lt;/Location&gt;
 
 # Possibilit&eacute; de se rabattre sur le cache disque
 CacheSocache shmcb
 CacheSocacheMaxSize 102400
-&lt;Location /foo&gt;
+&lt;Location "/foo"&gt;
     CacheEnable socache
     CacheEnable disk
 &lt;/Location&gt;
index 7d620ff206ba2df5b89ac5e1d12e903604840345..3614513f998e5e20d2e5daef81553122faa79d4f 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: 1561569:1673892 (outdated) -->
+<!-- English Revision : 1673892 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -36,7 +36,7 @@ serveur</description>
     suivantes &agrave; votre fichier <code>httpd.conf</code>.</p>
 
     <highlight language="config">
-&lt;Location /server-info&gt;
+&lt;Location "/server-info"&gt;
     SetHandler server-info
 &lt;/Location&gt;
     </highlight>
@@ -47,7 +47,7 @@ serveur</description>
     informations de configuration de votre serveur :</p>
 
     <highlight language="config">
-&lt;Location /server-info&gt;
+&lt;Location "/server-info"&gt;
     SetHandler server-info
     Require host example.com
 &lt;/Location&gt;
@@ -79,7 +79,7 @@ serveur</description>
 
     <example><title>Contr&ocirc;le d'acc&egrave;s</title>
       <highlight language="config">
-&lt;Location /server-info&gt;
+&lt;Location "/server-info"&gt;
     SetHandler server-info
     Order allow,deny
     # Autorisation d'acc&egrave;s depuis le serveur lui-m&ecirc;me
index 6c555fcce7171036d0635f6f10a076d0a7617201..599d73bf04288dd0272d8a0f8947836d31554939 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: 1607960:1673945 (outdated) -->
+<!-- English Revision : 1673945 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -76,7 +76,7 @@ LDAPCacheTTL 600
 LDAPOpCacheEntries 1024
 LDAPOpCacheTTL 600
 
-&lt;Location /ldap-status&gt;
+&lt;Location "/ldap-status"&gt;
     SetHandler ldap-status
     
     Require host yourdomain.example.com
@@ -198,7 +198,7 @@ LDAPOpCacheTTL 600
       <module>mod_ldap</module> :</p>
 
       <highlight language="config">
-&lt;Location /server/cache-info&gt;
+&lt;Location "/server/cache-info"&gt;
     SetHandler ldap-status
 &lt;/Location&gt;
       </highlight>
@@ -234,7 +234,7 @@ LDAPOpCacheTTL 600
 
 LDAPTrustedGlobalCert CA_DER /certs/certfile.der
 
-&lt;Location /ldap-status&gt;
+&lt;Location "/ldap-status"&gt;
     SetHandler ldap-status
     
     Require host yourdomain.example.com
@@ -256,7 +256,7 @@ LDAPTrustedGlobalCert CA_DER /certs/certfile.der
 
 LDAPTrustedGlobalCert CA_DER /certs/certfile.der
 
-&lt;Location /ldap-status&gt;
+&lt;Location "/ldap-status"&gt;
     SetHandler ldap-status
     
     Require host yourdomain.example.com
@@ -312,7 +312,7 @@ LDAPTrustedGlobalCert CA_CERT7_DB /certs/cert7.db
 LDAPTrustedGlobalCert CERT_KEY3_DB /certs/key3.db
 # Sp&eacute;cifie le fichier secmod si n&eacute;cessaire
 LDAPTrustedGlobalCert CA_SECMOD /certs/secmod
-&lt;Location /ldap-status&gt;
+&lt;Location "/ldap-status"&gt;
     SetHandler ldap-status
 
     Require host yourdomain.example.com
@@ -386,7 +386,7 @@ LDAPTrustedGlobalCert KEY_BASE64 /certs/key1.pem [password]
 # Sp&eacute;cifie deux fichiers contenant des certificats de CA
 LDAPTrustedGlobalCert CA_DER /certs/cacert1.der
 LDAPTrustedGlobalCert CA_BASE64 /certs/cacert2.pem
-&lt;Location /ldap-status&gt;
+&lt;Location "/ldap-status"&gt;
     SetHandler ldap-status
     
     Require host yourdomain.example.com
index c960bab9fcd1015028b168152566be6fdae16d26..9937c61844f680afaa668b6792baec1cfe017b87 100644 (file)
@@ -146,10 +146,10 @@ ProxySCGISendfile X-Send-Static
 backend</description>
 <syntax>ProxySCGIInternalRedirect On|Off|<var>Headername</var></syntax>
 <default>ProxySCGIInternalRedirect On</default>
-<compatibility>The <var>Headername</var> feature is available in Apache
-httpd 2.5.0 and later.</compatibility>
 <contextlist><context>server config</context><context>virtual host</context>
 <context>directory</context></contextlist>
+<compatibility>The <var>Headername</var> feature is available in Apache
+httpd 2.5.0 and later.</compatibility>
 
 <usage>
     <p>The <directive>ProxySCGIInternalRedirect</directive> enables the backend