summaryrefslogtreecommitdiffstats
path: root/docs/manual/upgrading.xml.fr
diff options
context:
space:
mode:
authorLucien Gentis <lgentis@apache.org>2012-05-17 17:09:35 +0200
committerLucien Gentis <lgentis@apache.org>2012-05-17 17:09:35 +0200
commit10f185528f2067a9fbe4009a549ed54ae80fb1b3 (patch)
treed9207cd54362ac981ce23ebffe5081325991ef9f /docs/manual/upgrading.xml.fr
parentReverting back. (diff)
downloadapache2-10f185528f2067a9fbe4009a549ed54ae80fb1b3.tar.xz
apache2-10f185528f2067a9fbe4009a549ed54ae80fb1b3.zip
Updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1339631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/upgrading.xml.fr')
-rw-r--r--docs/manual/upgrading.xml.fr34
1 files changed, 26 insertions, 8 deletions
diff --git a/docs/manual/upgrading.xml.fr b/docs/manual/upgrading.xml.fr
index a31bbc5170..e3cfec8bdc 100644
--- a/docs/manual/upgrading.xml.fr
+++ b/docs/manual/upgrading.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: 1304985:1333469 (outdated) -->
+<!-- English Revision : 1333469 -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
@@ -141,23 +141,31 @@ n&eacute;cessiter une mise &agrave; jour des fichiers de configuration de la ver
<p>Dans cet exemple, toutes les requ&ecirc;tes sont rejet&eacute;es :</p>
<example>
<title>version 2.2 :</title>
- Order deny,allow<br />
- Deny from all
+ <highlight language="config">
+Order deny,allow
+Deny from all
+ </highlight>
</example>
<example>
<title>version 2.4 :</title>
+ <highlight language="config">
Require all denied
+ </highlight>
</example>
<p>Dans cet exemple, toutes les requ&ecirc;tes sont accept&eacute;es :</p>
<example>
<title>version 2.2 :</title>
- Order allow,deny<br />
- Allow from all
+ <highlight language="config">
+Order allow,deny
+Allow from all
+ </highlight>
</example>
<example>
<title>version 2.4 :</title>
+ <highlight language="config">
Require all granted
+ </highlight>
</example>
<p>Dans l'exemple suivant, tous les h&ocirc;tes du domaine example.org
@@ -165,13 +173,17 @@ n&eacute;cessiter une mise &agrave; jour des fichiers de configuration de la ver
<example>
<title>version 2.2 :</title>
- Order Deny,Allow<br />
- Deny from all<br />
- Allow from example.org
+ <highlight language="config">
+Order Deny,Allow
+Deny from all
+Allow from example.org
+ </highlight>
</example>
<example>
<title>version 2.4 :</title>
+ <highlight language="config">
Require host example.org
+ </highlight>
</example>
</section>
@@ -347,6 +359,12 @@ n&eacute;cessiter une mise &agrave; jour des fichiers de configuration de la ver
<directive module="mod_include">SSILegacyExprParser</directive> a
&eacute;t&eacute; activ&eacute;e pour le r&eacute;pertoire contenant les pages d'erreur.
</li>
+
+ <li>La fonctionnalit&eacute; fournie par <code>mod_authn_alias</code>
+ dans les pr&eacute;c&eacute;dentes versions (en fait la directive
+ <directive module="mod_authn_core">AuthnProviderAlias</directive>)
+ est maintenant fournie par <module>mod_authn_core</module>.
+ </li>
</ul>
</section>