]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
rebuild
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 5 Sep 2015 06:36:56 +0000 (06:36 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 5 Sep 2015 06:36:56 +0000 (06:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1701350 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/lua.html.en
docs/manual/mod/mod_lua.html.en
docs/manual/mod/mod_lua.xml.fr
docs/manual/mod/mod_lua.xml.meta

index be39e48b8632c1fdd753abf8a672ee9b8588d745..f69f1dddb17ce94b1a5acda6fda487ec9a7117c9 100644 (file)
@@ -81,7 +81,7 @@ that every call to a Lua script will spawn a new Lua state that handles that
 script and is destroyed immediately after. This option keeps the memory
 footprint of mod_lua low, but also affects the processing speed of a request.
 If you have the memory to spare, you can set the scope to <code>thread</code>,
-which will make mod_lua spawn a Lua state that lasts the entirity of a thread's
+which will make mod_lua spawn a Lua state that lasts the entirety of a thread's
 lifetime, speeding up request processing by 2-3 times. Since mod_lua will create
 a state for each script, this may be an expensive move, memory-wise, so to
 compromise between speed and memory usage, you can choose the <code>server</code>
@@ -217,7 +217,7 @@ function remap(r)
     -- browse through the rewrite map
     for key, entry in pairs(map) do
         -- Match source regex against URI
-        local match = apache2.regex(r, entry.source, r.uri) then
+        local match = r:regex(entry.source, r.uri) then
         if match and match[0] then
             r.filename = interpolateString(entry.destination, match)
             -- Is this a proxied remap?
index 3abb015b23968cfe021bcf84e58955da2305e6cf..f7c043395b01b8323ceb69085be36859997ada12 100644 (file)
@@ -165,7 +165,7 @@ function handle(r)
 -- use our own Error contents
         r:puts("Unsupported HTTP method " .. r.method)
         r.status = 405
-        return apache2.ok
+        return apache2.OK
     else
 -- use the ErrorDocument
         return 501
index ed2c94bcb83f2e060b3fa719abe517fa28da90d4..41b5dbc307158ff2a5eb7200198759023fb68ded 100644 (file)
@@ -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: 1673945 -->
+<!-- English Revision: 1673945:1701349 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index b55c7710e95c9f695fe435d176007bdf28716825..8fc1a0efdf34e8b8870065a1ce5d7c523d3f652c 100644 (file)
@@ -8,6 +8,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
   </variants>
 </metafile>