Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C7C56102EF for ; Sat, 20 Apr 2013 07:13:30 +0000 (UTC) Received: (qmail 21505 invoked by uid 500); 20 Apr 2013 07:13:29 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 21387 invoked by uid 500); 20 Apr 2013 07:13:29 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 21181 invoked by uid 99); 20 Apr 2013 07:13:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Apr 2013 07:13:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Apr 2013 07:13:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DE97623888E4; Sat, 20 Apr 2013 07:13:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1470116 - in /httpd/httpd/trunk/docs/manual: developer/modguide.html.en mod/mod_lua.html.en mod/mod_lua.xml.fr mod/mod_rewrite.xml.fr mod/mod_rewrite.xml.meta Date: Sat, 20 Apr 2013 07:13:04 -0000 To: cvs@httpd.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130420071304.DE97623888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: humbedooh Date: Sat Apr 20 07:13:04 2013 New Revision: 1470116 URL: http://svn.apache.org/r1470116 Log: xforms Modified: httpd/httpd/trunk/docs/manual/developer/modguide.html.en httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en httpd/httpd/trunk/docs/manual/mod/mod_lua.xml.fr httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.fr httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.meta Modified: httpd/httpd/trunk/docs/manual/developer/modguide.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/modguide.html.en?rev=1470116&r1=1470115&r2=1470116&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/developer/modguide.html.en (original) +++ httpd/httpd/trunk/docs/manual/developer/modguide.html.en Sat Apr 20 07:13:04 2013 @@ -1658,7 +1658,7 @@ static int example_handler(request_rec * keyValuePair* formData; /*~~~~~~~~~~~~~~~~~~~~~~*/ - formData = readPost(); + formData = readPost(r); if (formData) { int i; for (i = 0; formData[i]; i++) { Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en?rev=1470116&r1=1470115&r2=1470116&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_lua.html.en Sat Apr 20 07:13:04 2013 @@ -880,10 +880,10 @@ r:escape_logitem(string) -- Escapes a st
-r:strcmp_match(string, pattern) -- Checks if 'string' matches 'pattern' using strcmp_match (globs).
+r.strcmp_match(string, pattern) -- Checks if 'string' matches 'pattern' using strcmp_match (globs).
                         -- fx. whether 'www.example.com' matches '*.example.com':
                         
-local match = r:strcmp_match("foobar.com", "foo*.com")
+local match = r.strcmp_match("foobar.com", "foo*.com")
 if match then 
     r:puts("foobar.com matches foo*.com")
 end
@@ -915,9 +915,9 @@ r:custom_response(404, "Baleted!")
 
 
 
-r:exists_config_define(string) -- Checks whether a configuration definition exists or not:
+r.exists_config_define(string) -- Checks whether a configuration definition exists or not:
 
-if r:exists_config_define("FOO") then
+if r.exists_config_define("FOO") then
     r:puts("httpd was probably run with -DFOO, or it was defined in the configuration")
 end
 
@@ -967,6 +967,16 @@ r:dbacquire(dbType[, dbParams]) -- Acqui
+
+r:ivm_set("key", value) -- Set an Inter-VM variable to hold a specific value.
+                        -- These values persist even though the VM is gone or not being used,
+                        -- and so should only be used if MaxConnectionsPerChild is > 0
+                        -- Values can be numbers, strings and booleans.
+                        
+r:ivm_get("key")        -- Fetches a variable set by ivm_set. Returns the contents of the variable
+                        -- if it exists or nil if no such variable exists.
+
+
top
Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.xml.fr URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.xml.fr?rev=1470116&r1=1470115&r2=1470116&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_lua.xml.fr (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_lua.xml.fr Sat Apr 20 07:13:04 2013 @@ -1,7 +1,7 @@ - + Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.fr URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.fr?rev=1470116&r1=1470115&r2=1470116&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.fr (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.fr Sat Apr 20 07:13:04 2013 @@ -1,7 +1,7 @@ - + Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.meta URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.meta?rev=1470116&r1=1470115&r2=1470116&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.meta (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml.meta Sat Apr 20 07:13:04 2013 @@ -8,6 +8,6 @@ en - fr + fr