From: Daniel Gruno Date: Wed, 22 Aug 2012 07:39:14 +0000 (+0000) Subject: xforms X-Git-Tag: 2.4.4~640 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=691af8b4158844930f175b3a14f611c57d0bc886;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1375916 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.xml.meta b/docs/manual/expr.xml.meta index ea324a8bb2..d5a2e5e1a5 100644 --- a/docs/manual/expr.xml.meta +++ b/docs/manual/expr.xml.meta @@ -8,6 +8,6 @@ en - fr + fr diff --git a/docs/manual/mod/mod_lua.html.en b/docs/manual/mod/mod_lua.html.en index f669e5d221..2ad2d3499d 100644 --- a/docs/manual/mod/mod_lua.html.en +++ b/docs/manual/mod/mod_lua.html.en @@ -141,6 +141,10 @@ function handle(r) for k, v in pairs( r:parseargs() ) do r:puts( string.format("%s: %s\n", k, v) ) end + elseif r.method == 'POST' then + for k, v in pairs( r:parsebody() ) do + r:puts( string.format("%s: %s\n", k, v) ) + end else r:puts("Unsupported HTTP method " .. r.method) end @@ -451,6 +455,11 @@ end r:parseargs() -- returns a lua table containing the request's query string arguments +
+        r:parsebody([sizeLimit]) -- parse the request body as a POST and return  a lua table.
+                                 -- An optional number may be passed to specify the maximum number 
+                                 -- of bytes to parse. Default is 8192 bytes.
+        
         r:puts("hello", " world", "!") -- print to response body
diff --git a/docs/manual/mod/mod_lua.xml.fr b/docs/manual/mod/mod_lua.xml.fr
index 35f406ba04..21811ec856 100644
--- a/docs/manual/mod/mod_lua.xml.fr
+++ b/docs/manual/mod/mod_lua.xml.fr
@@ -1,7 +1,7 @@
 
 
 
-
+
 
 
 
diff --git a/docs/manual/mod/mod_privileges.html.en b/docs/manual/mod/mod_privileges.html.en
index 33641b81ed..7154599e1d 100644
--- a/docs/manual/mod/mod_privileges.html.en
+++ b/docs/manual/mod/mod_privileges.html.en
@@ -160,6 +160,7 @@ non-threaded MPMs (preforkDescription:Trade off processing speed and efficiency vs security against
 malicious privileges-aware code.
 Syntax:PrivilegesMode FAST|SECURE|SELECTIVE
+Default:PrivilegesMode FAST
 Context:server config, virtual host, directory
 Status:Experimental
 Module:mod_privileges
diff --git a/docs/manual/mod/mpm_winnt.html.en b/docs/manual/mod/mpm_winnt.html.en
index d388f745fe..8e5fef02de 100644
--- a/docs/manual/mod/mpm_winnt.html.en
+++ b/docs/manual/mod/mpm_winnt.html.en
@@ -60,6 +60,40 @@ NT.
     none.  In Apache httpd 2.0 and 2.2,
     Win32DisableAcceptEx was used for this purpose.

+

The WinNT MPM differs from the Unix MPMs such as worker and event + in several areas:

+ +
    +
  • When a child process is exiting due to shutdown, restart, or + MaxConnectionsPerChild, + active requests in the exiting process have + TimeOut seconds to finish before + processing is aborted. Alternate types of restart and shutdown are not + implemented.
  • + +
  • New child processes read the configuration files instead of + inheriting the configuration from the parent. The behavior will + be the same as on Unix if the child process is created at startup + or restart, but if a child process is created because the prior + one crashed or reached + MaxConnectionsPerChild, + any pending changes to the configuration will become active in the + child at that point, and the parent and child will be using a + different configuration. If planned configuration changes have been + partially implemented and the current configuration cannot be + parsed, the replacement child process cannot start up and the server + will halt. Because of this behavior, configuration files should not + be changed until the time of a server restart.
  • + +
  • The monitor and fatal_exception hooks + are not currently implemented.
  • + +
  • AcceptFilter is implemented in the MPM + and has a different type of control over handling of new connections. + (Refer to the AcceptFilter + documentation for details.)
  • +
+

Directives

    diff --git a/docs/manual/mod/mpm_winnt.xml.de b/docs/manual/mod/mpm_winnt.xml.de index acc8a1933d..79cf99c2b2 100644 --- a/docs/manual/mod/mpm_winnt.xml.de +++ b/docs/manual/mod/mpm_winnt.xml.de @@ -1,7 +1,7 @@ - + +