From: Jeff Trawick
Date: Sat, 4 Aug 2012 20:32:50 +0000 (+0000)
Subject: xforms
X-Git-Tag: 2.5.0-alpha~6515
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fcefa979ad92a01cc06f3edb98333eef8c190c79;p=thirdparty%2Fapache%2Fhttpd.git
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369428 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/developer/new_api_2_4.html.en b/docs/manual/developer/new_api_2_4.html.en
index 70fc54809f1..0ff848f0725 100644
--- a/docs/manual/developer/new_api_2_4.html.en
+++ b/docs/manual/developer/new_api_2_4.html.en
@@ -436,6 +436,14 @@
would not have had a chance to enable support for this
function.
+ ap_requires()
+ The core server now provides better infrastructure for handling
+ Require
configuration.
+ Register an auth provider function for each supported entity using
+ ap_register_auth_provider()
. The function will be
+ called as necessary during Require
+ processing. (Consult bundled modules for detailed examples.)
+
ap_server_conf->process->pool
userdata
@@ -545,6 +553,15 @@
Implement cleanups which clear pointer variables
Use ap_pool_cleanup_set_null()
.
+
+ Create run-time files such as shared memory files, pid files,
+ etc.
+ Use ap_runtime_dir_relative()
so that the global
+ configuration for the location of such files, either by the
+ DEFAULT_REL_RUNTIMEDIR compile setting or the
+ DefaultRuntimeDir
directive,
+ will be respected. Apache httpd 2.4.2 and above.
+
diff --git a/docs/manual/mod/mod_lua.html.en b/docs/manual/mod/mod_lua.html.en
index fd9deefd161..57dc97effee 100644
--- a/docs/manual/mod/mod_lua.html.en
+++ b/docs/manual/mod/mod_lua.html.en
@@ -261,9 +261,9 @@ performing access control, or setting mimetypes:
Check Access |
- LuaHookAuthChecker or LuaAuthzProvider |
- This phase authenticates and grants or denies access to the
- requested resource |
+ LuaHookAccessChecker |
+ This phase checks whether a client has access to a resource. This
+ phase is run before the user is authenticated, so beware. |
Check User ID |
@@ -271,24 +271,32 @@ performing access control, or setting mimetypes:
This phase it used to check the negotiated user ID |
+ Check Authorization |
+ LuaHookAuthChecker or
+ LuaAuthzProvider |
+ This phase authorizes a user based on the negotiated credentials, such as
+ user ID, client certificate etc.
+ |
+
+
Check Type |
LuaHookTypeChecker |
This phase checks the requested file and assigns a content type and
a handler to it |
-
+
Fixups |
LuaHookFixups |
This is the final "fix anything" phase before the content handlers
are run. Any last-minute changes to the request should be made here. |
-
+
Content handler |
fx. .lua files or through LuaMapHandler |
This is where the content is handled. Files are read, parsed, some are run,
and the result is sent to the client |
-
+
Logging |
(none) |
Once a request has been handled, it enters several logging phases,
diff --git a/docs/manual/mod/mod_lua.xml.fr b/docs/manual/mod/mod_lua.xml.fr
index ae68c659ffe..110b66e7ed2 100644
--- a/docs/manual/mod/mod_lua.xml.fr
+++ b/docs/manual/mod/mod_lua.xml.fr
@@ -1,7 +1,7 @@
-
+
|