summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
authorIgor Galić <igalic@apache.org>2012-04-25 14:37:30 +0200
committerIgor Galić <igalic@apache.org>2012-04-25 14:37:30 +0200
commitad8b1a461dd481a2c6e5f733ad175b43c1c33f0b (patch)
treec2983cb9229e0588a7e08f4a1041dc04d074eb03 /docs/manual
parentfix FAQ link, everywhere. (diff)
downloadapache2-ad8b1a461dd481a2c6e5f733ad175b43c1c33f0b.tar.xz
apache2-ad8b1a461dd481a2c6e5f733ad175b43c1c33f0b.zip
catch up to highlighting in the translations
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330243 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--docs/manual/howto/cgi.xml.fr28
-rw-r--r--docs/manual/howto/cgi.xml.ja28
-rw-r--r--docs/manual/howto/cgi.xml.ko2
-rw-r--r--docs/manual/howto/cgi.xml.meta2
-rw-r--r--docs/manual/mod/mod_lua.xml.fr30
5 files changed, 46 insertions, 44 deletions
diff --git a/docs/manual/howto/cgi.xml.fr b/docs/manual/howto/cgi.xml.fr
index ae2f421030..7db57680d6 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 : 1174747 -->
+<!-- English Revision: 1174747:1330165 (outdated) -->
<!-- French translation : Lucien GENTIS -->
<!-- Reviewed by : Vincent Deffontaines -->
@@ -255,11 +255,11 @@
<code>premier.pl</code>, et placez le dans votre r&eacute;pertoire
<code>cgi-bin</code>.</p>
- <example>
- #!/usr/bin/perl<br />
- print "Content-type: text/html\n\n";<br />
- print "Bonjour tout le monde . . .";
- </example>
+ <highlight language="perl">
+#!/usr/bin/perl
+print "Content-type: text/html\n\n";
+print "Bonjour tout le monde . . .";
+ </highlight>
<p>M&ecirc;me si Perl ne vous est pas familier, vous devriez &ecirc;tre
capable de comprendre le fonctionnement de ce programme. La
@@ -531,15 +531,13 @@
variables d'environnement</a> aux variables de base fournies par
d&eacute;faut.</p>
- <example>
- #!/usr/bin/perl<br />
- print "Content-type: text/html\n\n";<br />
- foreach $key (keys %ENV) {<br />
- <indent>
- print "$key --&gt; $ENV{$key}&lt;br&gt;";<br />
- </indent>
- }
- </example>
+ <highlight language="perl">
+#!/usr/bin/perl
+print "Content-type: text/html\n\n";
+foreach $key (keys %ENV) {
+ print "$key --&gt; $ENV{$key}&lt;br&gt;";
+}
+ </highlight>
</section>
<section id="stdin">
diff --git a/docs/manual/howto/cgi.xml.ja b/docs/manual/howto/cgi.xml.ja
index 9a11efd69c..ccd8d4726a 100644
--- a/docs/manual/howto/cgi.xml.ja
+++ b/docs/manual/howto/cgi.xml.ja
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 545841:1174747 (outdated) -->
+<!-- English Revision: 545841:1330165 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
@@ -235,11 +235,11 @@
というファイルに保存し、それを <code>cgi-bin</code>
ディレクトリに置いてください。</p>
- <example>
- #!/usr/bin/perl<br />
- print "Content-type: text/html\n\n";<br />
- print "Hello, World.";
- </example>
+ <highlight language="perl">
+#!/usr/bin/perl<br />
+print "Content-type: text/html\n\n";<br />
+print "Hello, World.";
+ </highlight>
<p>Perl に精通していなくても、
何が起こるかを理解することはできるでしょう。1 行目は、
@@ -463,15 +463,13 @@
<a href="../env.html">あなた自身の環境変数を加える</a>ための、
多くの異なる方法を用意してします。</p>
- <example>
- #!/usr/bin/perl<br />
- print "Content-type: text/html\n\n";<br />
- foreach $key (keys %ENV) {<br />
- <indent>
- print "$key --&gt; $ENV{$key}&lt;br&gt;";<br />
- </indent>
- }
- </example>
+ <highlight language="perl">
+#!/usr/bin/perl
+print "Content-type: text/html\n\n";
+foreach $key (keys %ENV) {
+ print "$key --&gt; $ENV{$key}&lt;br&gt;";
+}
+ </highlight>
</section>
<section id="stdin">
diff --git a/docs/manual/howto/cgi.xml.ko b/docs/manual/howto/cgi.xml.ko
index f90c349fc0..18b4d3e86a 100644
--- a/docs/manual/howto/cgi.xml.ko
+++ b/docs/manual/howto/cgi.xml.ko
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='EUC-KR' ?>
<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1174747 (outdated) -->
+<!-- English Revision: 105989:1330165 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/docs/manual/howto/cgi.xml.meta b/docs/manual/howto/cgi.xml.meta
index 3070905d45..73144f6d4d 100644
--- a/docs/manual/howto/cgi.xml.meta
+++ b/docs/manual/howto/cgi.xml.meta
@@ -8,7 +8,7 @@
<variants>
<variant>en</variant>
- <variant>fr</variant>
+ <variant outdated="yes">fr</variant>
<variant outdated="yes">ja</variant>
<variant outdated="yes">ko</variant>
</variants>
diff --git a/docs/manual/mod/mod_lua.xml.fr b/docs/manual/mod/mod_lua.xml.fr
index abfef69f83..3e613fb7c5 100644
--- a/docs/manual/mod/mod_lua.xml.fr
+++ b/docs/manual/mod/mod_lua.xml.fr
@@ -93,7 +93,9 @@ gestionnaire.</p>
gestionnaire, plut&ocirc;t que de simplement &eacute;valuer le corps d'un script dans
le style de CGI. Une fonction de gestionnaire se pr&eacute;sente comme suit :</p>
-<example><title>example.lua</title><pre>
+
+<highlight language="lua">
+<strong>example.lua</strong>
-- exemple de gestionnaire
require "string"
@@ -119,7 +121,7 @@ function handle(r)
r:puts("unknown HTTP method " .. r.method)
end
end
-</pre></example>
+</highlight>
<p>
Ce gestionnaire se contente d'afficher les arguments cod&eacute;s d'un uri ou
@@ -151,7 +153,8 @@ code d'&eacute;tat HTTP ou des valeurs OK, DONE, ou DECLINED,
que vous pouvez &eacute;crire dans lua sous la forme <code>apache2.OK</code>,
<code>apache2.DONE</code>, ou <code>apache2.DECLINED</code>.</p>
-<example><title>translate_name.lua</title><pre>
+<highlight language="lua">
+<strong>translate_name.lua</strong>
-- exemple d'accroche qui r&eacute;&eacute;crit un URI en chemin du syst&egrave;me de
fichiers.
@@ -165,9 +168,10 @@ function translate_name(r)
-- on ne g&egrave;re pas cette URL et on donne sa chance &agrave; un autre module
return apache2.DECLINED
end
-</pre></example>
+</highlight>
-<example><title>translate_name2.lua</title><pre>
+<highlight language="lua">
+<strong>translate_name2.lua</strong>
--[[ exemple d'accroche qui r&eacute;&eacute;crit un URI vers un autre URI. Il renvoie
un apache2.DECLINED pour permettre &agrave; un autre interpr&eacute;teur d'URL de
travailler sur la substitution, y compris l'accroche translate_name
@@ -186,7 +190,7 @@ function translate_name(r)
end
return apache2.DECLINED
end
-</pre></example>
+</highlight>
</section>
<section id="datastructures"><title>Structures de donn&eacute;es</title>
@@ -372,7 +376,7 @@ end
<section id="logging"><title>Fonctions de journalisation</title>
-<example>
+<highlight language="lua">
-- exemples de messages de journalisation
r:trace1("Ceci est un message de journalisation de niveau
trace") -- les niveaux valides vont de trace1 &agrave; trace8 <br />
@@ -384,7 +388,7 @@ end
r:alert("Ceci est un message de journalisation de niveau alert")<br />
r:crit("Ceci est un message de journalisation de niveau crit")<br />
r:emerg("Ceci est un message de journalisation de niveau emerg")<br />
-</example>
+</highlight>
</section>
@@ -601,7 +605,9 @@ version 2.3.15 du serveur HTTP Apache.</compatibility>
<example><pre>
# httpd.conf
LuaHookTranslateName /scripts/conf/hooks.lua silly_mapper
-
+</pre></example>
+
+<highlight language="lua">
-- /scripts/conf/hooks.lua --
require "apache2"
function silly_mapper(r)
@@ -612,7 +618,7 @@ function silly_mapper(r)
return apache2.DECLINED
end
end
-</pre></example>
+</highlight>
<note><title>Contexte</title><p>Cette directive ne peut &ecirc;tre
utilis&eacute;e ni &agrave; l'int&eacute;rieur d'une section <directive type="section"
@@ -701,7 +707,7 @@ traitement de la requ&ecirc;te. Cette directive peut s'utiliser pour
impl&eacute;menter une v&eacute;rification arbitraire de l'authentification et de
l'autorisation. Voici un exemple tr&egrave;s simple :
</p>
-<example><pre>
+<highlight language="lua">
require 'apache2'
-- fonction d'accroche authcheck fictive
@@ -734,7 +740,7 @@ function authcheck_hook(r)
end
return apache2.OK
end
-</pre></example>
+</highlight>
<note><title>Ordonnancement</title><p>Les arguments optionnels
"early" ou "late" permettent de contr&ocirc;ler le moment auquel ce script
s'ex&eacute;cute par rapport aux autres modules.</p></note>