diff options
author | Lucien Gentis <lgentis@apache.org> | 2012-05-01 15:18:30 +0200 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2012-05-01 15:18:30 +0200 |
commit | 6d378e85a07bc70848cdf2c120446a99af04001d (patch) | |
tree | e427c515f1bd67e0fa1cff3fc633ffebb9b2f88d /docs/manual/mod/mod_sed.xml.fr | |
parent | xforms (diff) | |
download | apache2-6d378e85a07bc70848cdf2c120446a99af04001d.tar.xz apache2-6d378e85a07bc70848cdf2c120446a99af04001d.zip |
Updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1332639 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_sed.xml.fr')
-rw-r--r-- | docs/manual/mod/mod_sed.xml.fr | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/docs/manual/mod/mod_sed.xml.fr b/docs/manual/mod/mod_sed.xml.fr index 6b7ab335eb..b2faaa15d8 100644 --- a/docs/manual/mod/mod_sed.xml.fr +++ b/docs/manual/mod/mod_sed.xml.fr @@ -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: 1299328:1331227 (outdated) --> +<!-- English Revision : 1331227 --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> @@ -75,33 +75,29 @@ recherche/remplacement de chaîne ou d'expression rationnelle.</p> <section id="sampleconf"><title>Exemple de configuration</title> <example><title>Ajout d'un filtre en sortie</title> - # Dans l'exemple suivant, le filtre sed va remplacer la chaîne + <highlight language="config"> +# Dans l'exemple suivant, le filtre sed va remplacer la chaîne # "monday" par "MON" et la chaîne "sunday" par "SUN" dans les - # documents html avant de les envoyer au client.<br /> - <indent> - <Directory "/var/www/docs/sed"> <br /> - <indent> - AddOutputFilter Sed html <br /> - OutputSed "s/monday/MON/g" <br /> - OutputSed "s/sunday/SUN/g" <br /> - </indent> - </Directory> <br /> - </indent> + # documents html avant de les envoyer au client. +<Directory "/var/www/docs/sed"> + AddOutputFilter Sed html + OutputSed "s/monday/MON/g" + OutputSed "s/sunday/SUN/g" +</Directory> + </highlight> </example> <example><title>Ajout d'un filtre en entrée</title> + <highlight language="config"> # Dans l'exemple suivant, le filtre sed va remplacer la chaîne # "monday" par "MON" et la chaîne "sunday" par "SUN" dans les - # données POST envoyées à PHP.<br /> - <indent> - <Directory "/var/www/docs/sed"> <br /> - <indent> - AddInputFilter Sed php <br /> - InputSed "s/monday/MON/g" <br /> - InputSed "s/sunday/SUN/g" <br /> - </indent> - </Directory> <br /> - </indent> + # données POST envoyées à PHP. + <Directory "/var/www/docs/sed"> + AddInputFilter Sed php + InputSed "s/monday/MON/g" + InputSed "s/sunday/SUN/g" +</Directory> + </highlight> </example> </section> <section id="sed_commands"><title>Commandes sed</title> |