You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2017/12/18 20:13:34 UTC

svn commit: r1818617 - /httpd/httpd/trunk/docs/manual/mod/mod_sed.xml.fr

Author: gryzor
Date: Mon Dec 18 20:13:34 2017
New Revision: 1818617

URL: http://svn.apache.org/viewvc?rev=1818617&view=rev
Log:
Updated .fr translation to latest english version

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_sed.xml.fr

Modified: httpd/httpd/trunk/docs/manual/mod/mod_sed.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_sed.xml.fr?rev=1818617&r1=1818616&r2=1818617&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_sed.xml.fr [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_sed.xml.fr [utf-8] Mon Dec 18 20:13:34 2017
@@ -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: 1673947:1817950 (outdated) -->
+<!-- English Revision: 1817950 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -65,12 +65,6 @@ caract&egrave;res newline sont d&eacute;
 donn&eacute;es, ce qui reste est trait&eacute; comme la derni&egrave;re ligne.
 </p>
 
-<p>Vous trouverez sur le <a
-href="https://blogs.oracle.com/basant/entry/using_mod_sed_to_filter">blog de
-l'auteur</a> un article en forme de tutoriel, ainsi que les raisons pour
-lesquelles ce filtre est plus puissant qu'une simple
-recherche/remplacement de cha&icirc;ne ou d'expression rationnelle.</p>
-
 </summary>
 
 <section id="sampleconf"><title>Exemple de configuration</title>
@@ -79,11 +73,11 @@ recherche/remplacement de cha&icirc;ne o
 # Dans l'exemple suivant, le filtre sed va remplacer la cha&icirc;ne
 	 # "monday" par "MON" et la cha&icirc;ne "sunday" par "SUN" dans les
 	 # documents html avant de les envoyer au client.
-&lt;Directory "/var/www/docs/sed"&gt; 
-    AddOutputFilter Sed html 
-    OutputSed "s/monday/MON/g" 
-    OutputSed "s/sunday/SUN/g" 
-&lt;/Directory&gt; 
+&lt;Directory "/var/www/docs/sed"&gt;
+    AddOutputFilter Sed html
+    OutputSed "s/monday/MON/g"
+    OutputSed "s/sunday/SUN/g"
+&lt;/Directory&gt;
     </highlight>
     </example>
 
@@ -92,11 +86,11 @@ recherche/remplacement de cha&icirc;ne o
          # Dans l'exemple suivant, le filtre sed va remplacer la cha&icirc;ne
 	 # "monday" par "MON" et la cha&icirc;ne "sunday" par "SUN" dans les
 	 # donn&eacute;es POST envoy&eacute;es &agrave; PHP.
-        &lt;Directory "/var/www/docs/sed"&gt; 
-    AddInputFilter Sed php 
-    InputSed "s/monday/MON/g" 
-    InputSed "s/sunday/SUN/g" 
-&lt;/Directory&gt; 
+        &lt;Directory "/var/www/docs/sed"&gt;
+    AddInputFilter Sed php
+    InputSed "s/monday/MON/g"
+    InputSed "s/sunday/SUN/g"
+&lt;/Directory&gt;
         </highlight>
     </example>
 </section>