From aa34d6321966e45bcc432caf1f715657e250be56 Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Tue, 25 Mar 2008 19:27:11 +0000 Subject: [PATCH] Update transformation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@640954 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/howto/auth.html.en | 12 ++--- docs/manual/howto/auth.xml.ja | 2 +- docs/manual/howto/auth.xml.ko | 2 +- docs/manual/mod/mod_authz_dbd.html.en | 65 +++++++++++++++++---------- 4 files changed, 50 insertions(+), 31 deletions(-) diff --git a/docs/manual/howto/auth.html.en b/docs/manual/howto/auth.html.en index 3ccf1a7c1b..876d439548 100644 --- a/docs/manual/howto/auth.html.en +++ b/docs/manual/howto/auth.html.en @@ -392,7 +392,7 @@ person in authentication or authorization method. In fact any number of the providers can be mixed and matched to provide you with exactly the scheme that meets your needs. In the following example, both the - file and ldap based authentication providers are being used.

+ file and LDAP based authentication providers are being used.

<Directory /www/docs/private>
@@ -406,17 +406,17 @@ person in

In this example the file provider will attempt to authenticate - the user first. If it is unable to authenticate the user, the ldap + the user first. If it is unable to authenticate the user, the LDAP provider will be called. This allows the scope of authentication to be broadened if your organization implements more than one type of authentication store. Other authentication and authorization scenarios may include mixing one type of authentication with a different type of authorization. For example, authenticating against - a password file yet authorizing against and ldap directory.

+ a password file yet authorizing against an LDAP directory.

Just as multiple authentication providers can be implemented, multiple authorization methods can also be used. In this example both file group - authorization as well as ldap group authorization is being used.

+ authorization as well as LDAP group authorization is being used.

<Directory /www/docs/private>
@@ -472,7 +472,7 @@ person in

# if ((user == "John") ||
- #    ((Group == "admin")
+ #    ((Group == "admins")
#     && (ldap-group <ldap-object> contains auth'ed_user)
#     && ((ldap-attribute dept == "sales")
#         || (file-group contains auth'ed_user))))
@@ -504,7 +504,7 @@ person in

By default all Require - directives are handled through and OR operation. In other words, if + directives are handled through an OR operation. In other words, if any of the specified authorization methods succeed, then authorization is granted. By enclosing a set of Require directives within diff --git a/docs/manual/howto/auth.xml.ja b/docs/manual/howto/auth.xml.ja index addac5edab..681005a006 100644 --- a/docs/manual/howto/auth.xml.ja +++ b/docs/manual/howto/auth.xml.ja @@ -1,7 +1,7 @@ - + +