diff options
author | Stefan Fritsch <sf@apache.org> | 2013-03-18 22:18:21 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2013-03-18 22:18:21 +0100 |
commit | 19592d8e151e199632a701e2988264c8c6c9f476 (patch) | |
tree | 8bc03caa54ddf3ca02fd7d4a7a6b8211cc9abf97 /docs/manual/mod/mod_lua.html.fr | |
parent | add md5 function, too (diff) | |
download | apache2-19592d8e151e199632a701e2988264c8c6c9f476.tar.xz apache2-19592d8e151e199632a701e2988264c8c6c9f476.zip |
update xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1458006 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_lua.html.fr')
-rw-r--r-- | docs/manual/mod/mod_lua.html.fr | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_lua.html.fr b/docs/manual/mod/mod_lua.html.fr index 22a8d2711e..dd6e102c6e 100644 --- a/docs/manual/mod/mod_lua.html.fr +++ b/docs/manual/mod/mod_lua.html.fr @@ -27,8 +27,6 @@ <p><span>Langues Disponibles: </span><a href="../en/mod/mod_lua.html" hreflang="en" rel="alternate" title="English"> en </a> | <a href="../fr/mod/mod_lua.html" title="Français"> fr </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Fournit des points d'entrée Lua dans différentes parties du traitement des requêtes httpd</td></tr> <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Expérimental</td></tr> @@ -1079,7 +1077,7 @@ commandes auprès des moteurs de base de données les plus courants <p>L'exemple suivant montre comment se connecter à une base de données et extraire des informations d'une table :</p> <pre class="prettyprint lang-lua"> -function handler(r) +function handle(r) -- connexion à la base de données local database, err = r:dbacquire("mysql", "server=localhost,user=root,dbname=mydb") if not err then |