summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_lua.html.fr
diff options
context:
space:
mode:
authorLucien Gentis <lgentis@apache.org>2014-05-18 14:34:19 +0200
committerLucien Gentis <lgentis@apache.org>2014-05-18 14:34:19 +0200
commit3c62f6524c4c19fefcc123c7d7b66785f2794ad8 (patch)
tree32a0884bba62bbe65f5fbec8b261822b92907ef0 /docs/manual/mod/mod_lua.html.fr
parentUpdate. (diff)
downloadapache2-3c62f6524c4c19fefcc123c7d7b66785f2794ad8.tar.xz
apache2-3c62f6524c4c19fefcc123c7d7b66785f2794ad8.zip
Update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1595614 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_lua.html.fr')
-rw-r--r--docs/manual/mod/mod_lua.html.fr7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_lua.html.fr b/docs/manual/mod/mod_lua.html.fr
index 5ba5b33aea..37dbad88b8 100644
--- a/docs/manual/mod/mod_lua.html.fr
+++ b/docs/manual/mod/mod_lua.html.fr
@@ -711,7 +711,7 @@ end</pre>
<pre class="prettyprint lang-lua">r:flush() -- vide le tampon de sortie
-- Renvoie true si le vidage a été effectué avec succès,
- false dans le cas contraire.
+ -- false dans le cas contraire.
while nous_avons_des_données_à_envoyer do
r:puts("Bla bla bla\n") -- envoi des données à envoyer vers le tampon
@@ -725,8 +725,9 @@ end</pre>
r:addoutputfilter("fooFilter") -- insère le filtre fooFilter dans le flux de sortie</pre>
-<pre class="prettyprint lang-lua">r:sendfile(filename) -- envoie un fichier entier au client en
-utilisant sendfile s'il est supporté par la plateforme :
+<pre class="prettyprint lang-lua">r:sendfile(filename) -- envoie un fichier entier au client en utilisant
+ -- sendfile s'il est supporté par la
+ -- plateforme :
if use_sendfile_thing then
r:sendfile("/var/www/large_file.img")