From: Lucien Gentis Date: Sun, 27 May 2012 14:57:52 +0000 (+0000) Subject: Updates. X-Git-Tag: 2.5.0-alpha~6788 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=006acaf2b2f70d06382d75125556cb55393d9b4e;p=thirdparty%2Fapache%2Fhttpd.git Updates. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1343056 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/auth.xml.fr b/docs/manual/howto/auth.xml.fr index 57bd8c916a0..1352e20edb0 100644 --- a/docs/manual/howto/auth.xml.fr +++ b/docs/manual/howto/auth.xml.fr @@ -1,7 +1,7 @@ - + @@ -592,11 +592,9 @@ autorisation <RequireAll> Require all granted - <RequireNone> - Require ip 192.168.205 - Require host phishers.example.com moreidiots.example - Require host ke - </RequireNone> + Require not ip 192.168.205 + Require not host phishers.example.com moreidiots.example + Require not host ke </RequireAll> diff --git a/docs/manual/howto/htaccess.xml.fr b/docs/manual/howto/htaccess.xml.fr index 2a63de9520c..fc466e239da 100644 --- a/docs/manual/howto/htaccess.xml.fr +++ b/docs/manual/howto/htaccess.xml.fr @@ -1,7 +1,7 @@ - + @@ -244,8 +244,8 @@ modifier la configuration du serveur au niveau de chaque répertoire.

Section de votre fichier <code>httpd.conf</code> -<Directory /www/htdocs/example>
- AddType text/example .exm
+<Directory /www/htdocs/example> + AddType text/example .exm </Directory>
@@ -323,7 +323,7 @@ modifier la configuration du serveur au niveau de chaque répertoire.

<Directory /www/htdocs> - Allowoverride All + AllowOverride All </Directory> <Location /> diff --git a/docs/manual/mod/mod_lua.xml.fr b/docs/manual/mod/mod_lua.xml.fr index 08751a16c5b..a630a138d49 100644 --- a/docs/manual/mod/mod_lua.xml.fr +++ b/docs/manual/mod/mod_lua.xml.fr @@ -1,7 +1,7 @@ - + @@ -111,11 +111,11 @@ function handle(r) if r.method == 'GET' then for k, v in pairs( r:parseargs() ) do - r:puts( string.format("%s: %s", k, v) ) + r:puts( string.format("%s: %s\n", k, v) ) end elseif r.method == 'POST' then for k, v in pairs( r:parsebody() ) do - r:puts( string.format("%s: %s", k, v) ) + r:puts( string.format("%s: %s\n", k, v) ) end else r:puts("unknown HTTP method " .. r.method) diff --git a/docs/manual/suexec.xml.fr b/docs/manual/suexec.xml.fr index 6fc87e294d4..bc798c0e395 100644 --- a/docs/manual/suexec.xml.fr +++ b/docs/manual/suexec.xml.fr @@ -3,7 +3,7 @@ - +