diff options
author | Lucien Gentis <lgentis@apache.org> | 2015-05-24 16:38:38 +0200 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2015-05-24 16:38:38 +0200 |
commit | 9d8fe71308eadc56b07558568728be43afee3580 (patch) | |
tree | 469b04f2d87bd9534bd69754948a952543418956 | |
parent | Save a few bytes in conf pool and axe a function that duplicates 'ap_set_stri... (diff) | |
download | apache2-9d8fe71308eadc56b07558568728be43afee3580.tar.xz apache2-9d8fe71308eadc56b07558568728be43afee3580.zip |
XML updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681464 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/howto/cgi.xml.fr | 10 | ||||
-rw-r--r-- | docs/manual/howto/htaccess.xml.fr | 30 | ||||
-rw-r--r-- | docs/manual/howto/public_html.xml.fr | 4 | ||||
-rw-r--r-- | docs/manual/howto/ssi.xml.fr | 2 | ||||
-rw-r--r-- | docs/manual/urlmapping.xml.fr | 20 |
5 files changed, 33 insertions, 33 deletions
diff --git a/docs/manual/howto/cgi.xml.fr b/docs/manual/howto/cgi.xml.fr index df463d295b..0ab78f9a71 100644 --- a/docs/manual/howto/cgi.xml.fr +++ b/docs/manual/howto/cgi.xml.fr @@ -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: 1336196:1673945 (outdated) --> +<!-- English Revision: 1673945 --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> @@ -86,7 +86,7 @@ :</p> <highlight language="config"> - ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/ + ScriptAlias "/cgi-bin/" "/usr/local/apache2/cgi-bin/" </highlight> <p>Cet exemple est tiré de votre fichier de configuration @@ -159,7 +159,7 @@ particulier :</p> <highlight language="config"> -<Directory /usr/local/apache2/htdocs/somedir> +<Directory "/usr/local/apache2/htdocs/somedir"> Options +ExecCGI </Directory> </highlight> @@ -195,7 +195,7 @@ suivante :</p> <highlight language="config"> -<Directory /home/*/public_html> +<Directory "/home/*/public_html"> Options +ExecCGI AddHandler cgi-script .cgi </Directory> @@ -206,7 +206,7 @@ programme CGI, vous pouvez utiliser ceci :</p> <highlight language="config"> -<Directory /home/*/public_html/cgi-bin> +<Directory "/home/*/public_html/cgi-bin"> Options ExecCGI SetHandler cgi-script </Directory> diff --git a/docs/manual/howto/htaccess.xml.fr b/docs/manual/howto/htaccess.xml.fr index 3e4e3cc680..bd6a4d1d8a 100644 --- a/docs/manual/howto/htaccess.xml.fr +++ b/docs/manual/howto/htaccess.xml.fr @@ -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:1673582 (outdated) --> +<!-- English Revision: 1673582 --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> @@ -87,7 +87,7 @@ modifier la configuration du serveur au niveau de chaque répertoire.</p> configuration de votre serveur :</p> <highlight language="config"> - AccessFileName .config + AccessFileName ".config" </highlight> </note> @@ -230,7 +230,7 @@ modifier la configuration du serveur au niveau de chaque répertoire.</p> <p>Notez que mettre un fichier <code>.htaccess</code> contenant une directive dans un répertoire <code>/www/htdocs/exemple</code> revient exactement au même que mettre la même directive dans une - section Directory <code><Directory /www/htdocs/exemple></code> + section Directory <code><Directory "/www/htdocs/exemple"></code> du fichier de configuration de votre serveur principal :</p> <p>Fichier <code>.htaccess</code> dans @@ -238,14 +238,14 @@ modifier la configuration du serveur au niveau de chaque répertoire.</p> <example><title>Contenu du fichier .htaccess dans <code>/www/htdocs/exemple</code></title> - <highlight language="config">AddType text/example .exm</highlight> + <highlight language="config">AddType text/example ".exm"</highlight> </example> <example><title>Section de votre fichier <code>httpd.conf</code></title> <highlight language="config"> -<Directory /www/htdocs/example> - AddType text/example .exm +<Directory "/www/htdocs/example"> + AddType text/example ".exm" </Directory> </highlight> </example> @@ -322,11 +322,11 @@ modifier la configuration du serveur au niveau de chaque répertoire.</p> <code>.htaccess</code>, vous pouvez utiliser :</p> <highlight language="config"> -<Directory /www/htdocs> +<Directory "/www/htdocs"> AllowOverride All </Directory> -<Location /> +<Location "/"> Options +IncludesNoExec -ExecCGI<br /> </Location> </highlight> @@ -363,8 +363,8 @@ modifier la configuration du serveur au niveau de chaque répertoire.</p> <highlight language="config"> AuthType Basic AuthName "Password Required" -AuthUserFile /www/passwords/password.file -AuthGroupFile /www/passwords/group.file +AuthUserFile "/www/passwords/password.file" +AuthGroupFile "/www/passwords/group.file" Require group admins </highlight> @@ -387,7 +387,7 @@ Includes - SSI)</title> <highlight language="config"> Options +Includes -AddType text/html shtml +AddType text/html "shtml" AddHandler server-parsed shtml </highlight> @@ -409,14 +409,14 @@ les exemples suivants :</p> <highlight language="config"> # Dans httpd.conf -RewriteRule ^/images/(.+)\.jpg /images/$1.png +RewriteRule "^/images/(.+)\.jpg" "/images/$1.png" # Dans un fichier .htaccess situé dans le répertoire racine de vos # documents -RewriteRule ^images/(.+)\.jpg images/$1.png +RewriteRule "^images/(.+)\.jpg" "images/$1.png" # Dans un fichier .htaccess situé dans le répertoire images/ -RewriteRule ^(.+)\.jpg $1.png +RewriteRule "^(.+)\.jpg" "$1.png" </highlight> <p>On voit que si le fichier <code>.htaccess</code> se situe à la racine @@ -443,7 +443,7 @@ pour une étude détaillée de l'utilisation du module <highlight language="config"> Options +ExecCGI -AddHandler cgi-script cgi pl +AddHandler cgi-script "cgi" "pl" </highlight> <p>Alternativement, si vous souhaitez que tous les fichiers d'un diff --git a/docs/manual/howto/public_html.xml.fr b/docs/manual/howto/public_html.xml.fr index 8bfc008897..30ff3310c1 100644 --- a/docs/manual/howto/public_html.xml.fr +++ b/docs/manual/howto/public_html.xml.fr @@ -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: 1649338:1673932 (outdated) --> +<!-- English Revision: 1673932 --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> @@ -166,7 +166,7 @@ avec le système de fichiers</a></seealso> sous-répertoire particulier d'un répertoire home utilisateur.</p> <highlight language="config"> -<Directory /home/*/public_html/cgi-bin/> +<Directory "/home/*/public_html/cgi-bin/"> Options ExecCGI SetHandler cgi-script </Directory> diff --git a/docs/manual/howto/ssi.xml.fr b/docs/manual/howto/ssi.xml.fr index 7438434bed..ec63775010 100644 --- a/docs/manual/howto/ssi.xml.fr +++ b/docs/manual/howto/ssi.xml.fr @@ -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: 1646392:1673947 (outdated) --> +<!-- English Revision: 1673947 --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> diff --git a/docs/manual/urlmapping.xml.fr b/docs/manual/urlmapping.xml.fr index dfd30169fe..efdc8dc490 100644 --- a/docs/manual/urlmapping.xml.fr +++ b/docs/manual/urlmapping.xml.fr @@ -3,7 +3,7 @@ <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> -<!-- English Revision: 1561569:1673945 (outdated) --> +<!-- English Revision: 1673945 --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more @@ -146,7 +146,7 @@ l'arborescence DocumentRoot</title> module="mod_alias">Alias</directive> pour rattacher toute portion du système de fichiers à l'arborescence du site web. Par exemple, avec</p> -<highlight language="config">Alias /docs /var/web</highlight> +<highlight language="config">Alias "/docs" "/var/web"</highlight> <p>l'URL <code>http://www.example.com/docs/dir/file.html</code> correspondra au fichier <code>/var/web/dir/file.html</code>. La @@ -164,7 +164,7 @@ l'arborescence DocumentRoot</title> Par exemple,</p> <highlight language="config"> - ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2 + ScriptAliasMatch "^/~([a-zA-Z0-9]+)/cgi-bin/(.+)" "/home/$1/cgi-bin/$2" </highlight> <p>fera correspondre une requête du style @@ -214,7 +214,7 @@ l'arborescence DocumentRoot</title> <code>AliasMatch</code> suivante :</p> <highlight language="config"> - AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3 + AliasMatch "^/upages/([a-zA-Z0-9]+)(/(.*))?$" "/home/$1/public_html/$3" </highlight> </section> @@ -235,7 +235,7 @@ l'arborescence DocumentRoot</title> de le requérir à sa nouvelle localisation comme suit :</p> <highlight language="config"> - Redirect permanent /foo/ http://www.example.com/bar/ + Redirect permanent "/foo/" "http://www.example.com/bar/" </highlight> <p>Ceci aura pour effet de rediriger tout chemin d'URL commençant par @@ -252,14 +252,14 @@ l'arborescence DocumentRoot</title> configuration suivante :</p> <highlight language="config"> - RedirectMatch permanent ^/$ http://www.example.com/startpage.html + RedirectMatch permanent "^/$" "http://www.example.com/startpage.html" </highlight> <p>De même, pour rediriger temporairement toutes les pages d'un site vers une page particulière d'un autre site, utilisez ce qui suit :</p> <highlight language="config"> - RedirectMatch temp .* http://othersite.example.com/startpage.html + RedirectMatch temp ".*" "http://othersite.example.com/startpage.html" </highlight> </section> @@ -280,10 +280,10 @@ dans le répertoire et les renvoie au client comme s'ils appartenaient au serveur local.</p> <highlight language="config"> -ProxyPass /foo/ http://internal.example.com/bar/<br /> -ProxyPassReverse /foo/ http://internal.example.com/bar/<br /> +ProxyPass "/foo/" "http://internal.example.com/bar/"<br /> +ProxyPassReverse "/foo/" "http://internal.example.com/bar/"<br /> ProxyPassReverseCookieDomain internal.example.com public.example.com<br /> -ProxyPassReverseCookiePath /foo/ /bar/ +ProxyPassReverseCookiePath "/foo/" "/bar/" </highlight> <p>La directive <directive module="mod_proxy">ProxyPass</directive> configure |