summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2005-05-25 04:31:28 +0000
committerAndré Malo <nd@apache.org>2005-05-25 04:31:28 +0000
commite68b037e584e99636a9c1ac05f6dad98ab840bca (patch)
treefaacbd2e7e083c14211499eee4386204ebeef5e6
parenta77ad010ebaa2f32251590833a4172dce84d9488 (diff)
downloadhttpd-e68b037e584e99636a9c1ac05f6dad98ab840bca.tar.gz
fix line endings and keyword expansion
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178365 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/mod_authn_alias.xml214
-rw-r--r--docs/manual/mod/mod_authn_alias.xml.meta22
2 files changed, 118 insertions, 118 deletions
diff --git a/docs/manual/mod/mod_authn_alias.xml b/docs/manual/mod/mod_authn_alias.xml
index fe667d7ec9..6ba51d0c1b 100644
--- a/docs/manual/mod/mod_authn_alias.xml
+++ b/docs/manual/mod/mod_authn_alias.xml
@@ -1,107 +1,107 @@
-<?xml version="1.0"?>
-<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
-<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
-<!-- $LastChangedRevision: 151408 $ -->
-
-<!--
- Copyright 2002-2005 The Apache Software Foundation or its licensors, as
- applicable.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<modulesynopsis metafile="mod_authn_alias.xml.meta">
-
-<name>mod_authn_alias</name>
-<description>Provides the ability to create extended authentication
- providers based on actual providers</description>
-<status>Extension</status>
-<sourcefile>mod_authn_alias.c</sourcefile>
-<identifier>authn_alias_module</identifier>
-<compatibility>Available in Apache 2.1 and later</compatibility>
-
-<summary>
- <p>This module allows extended authentication providers to be created
- within the configuration file and assigned an alias name. The alias
- providers can then be referenced through the directives
- <directive module="mod_auth_basic">AuthBasicProvider</directive> or
- <directive module="mod_auth_digest">AuthDigestProvider</directive> in
- the same way as a base authentication provider. Besides the ability
- to create and alias an extended provider, it also allows the same
- extended authentication provider to be reference by multiple
- locations.</p>
-
-</summary>
-
-<section id="example"><title>Example</title>
- <p>The example below creates two different ldap authentication
- provider aliases based on the ldap provider. This allows
- a single authenticated location can be serviced by multiple
- ldap hosts:</p>
-
- <example><title>Example</title>
- LoadModule authn_alias_module modules/mod_authn_alias.so<br /><br />
- &lt;AuthnProviderAlias ldap ldap-alias1&gt;<br />
- <indent>
- AuthLDAPBindDN cn=youruser,o=ctx<br />
- AuthLDAPBindPassword yourpassword<br />
- AuthLDAPURL ldap://ldap.host/o=ctx<br />
- </indent>
- &lt;/AuthnProviderAlias&gt;<br /><br />
- &lt;AuthnProviderAlias ldap ldap-other-alias&gt;<br />
- <indent>
- AuthLDAPBindDN cn=yourotheruser,o=dev<br />
- AuthLDAPBindPassword yourotherpassword<br />
- AuthLDAPURL ldap://other.ldap.host/o=dev?cn<br />
- </indent>
- &lt;/AuthnProviderAlias&gt;<br /><br />
-
- Alias /secure /webpages/secure<br />
- &lt;Directory /webpages/secure&gt;<br />
- <indent>
- Order deny,allow<br />
- Allow from all<br /><br />
-
- AuthBasicProvider ldap-other-alias ldap-alias1<br /><br />
-
- AuthType Basic<br />
- AuthName LDAP_Protected_Place<br />
- AuthzLDAPAuthoritative off<br />
- require valid-user<br />
- </indent>
- &lt;/Directory&gt;<br />
- </example>
-</section>
-
-<directivesynopsis type="section">
-<name>AuthnProviderAlias</name>
-<description>Enclose a group of directives that represent an
-extension of a base authentication provider and referenced by
-the specified alias</description>
-<syntax>&lt;AuthnProviderAlias <var>baseProvider Alias</var>&gt;
-... &lt;/AuthnProviderAlias&gt;</syntax>
-<contextlist><context>server config</context><context>virtual host</context>
-</contextlist>
-
-<usage>
- <p><directive type="section">AuthnProviderAlias</directive> and
- <code>&lt;/AuthnProviderAlias&gt;</code> are used to enclose a group of
- authentication directives that can be referenced by the alias name
- using one of the directives <directive module="mod_auth_basic">
- AuthBasicProvider</directive> or <directive module="mod_auth_digest">
- AuthDigestProvider</directive>.</p>
-
-</usage>
-</directivesynopsis>
-
-</modulesynopsis>
+<?xml version="1.0"?>
+<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
+<!-- $LastChangedRevision$ -->
+
+<!--
+ Copyright 2002-2005 The Apache Software Foundation or its licensors, as
+ applicable.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<modulesynopsis metafile="mod_authn_alias.xml.meta">
+
+<name>mod_authn_alias</name>
+<description>Provides the ability to create extended authentication
+ providers based on actual providers</description>
+<status>Extension</status>
+<sourcefile>mod_authn_alias.c</sourcefile>
+<identifier>authn_alias_module</identifier>
+<compatibility>Available in Apache 2.1 and later</compatibility>
+
+<summary>
+ <p>This module allows extended authentication providers to be created
+ within the configuration file and assigned an alias name. The alias
+ providers can then be referenced through the directives
+ <directive module="mod_auth_basic">AuthBasicProvider</directive> or
+ <directive module="mod_auth_digest">AuthDigestProvider</directive> in
+ the same way as a base authentication provider. Besides the ability
+ to create and alias an extended provider, it also allows the same
+ extended authentication provider to be reference by multiple
+ locations.</p>
+
+</summary>
+
+<section id="example"><title>Example</title>
+ <p>The example below creates two different ldap authentication
+ provider aliases based on the ldap provider. This allows
+ a single authenticated location can be serviced by multiple
+ ldap hosts:</p>
+
+ <example><title>Example</title>
+ LoadModule authn_alias_module modules/mod_authn_alias.so<br /><br />
+ &lt;AuthnProviderAlias ldap ldap-alias1&gt;<br />
+ <indent>
+ AuthLDAPBindDN cn=youruser,o=ctx<br />
+ AuthLDAPBindPassword yourpassword<br />
+ AuthLDAPURL ldap://ldap.host/o=ctx<br />
+ </indent>
+ &lt;/AuthnProviderAlias&gt;<br /><br />
+ &lt;AuthnProviderAlias ldap ldap-other-alias&gt;<br />
+ <indent>
+ AuthLDAPBindDN cn=yourotheruser,o=dev<br />
+ AuthLDAPBindPassword yourotherpassword<br />
+ AuthLDAPURL ldap://other.ldap.host/o=dev?cn<br />
+ </indent>
+ &lt;/AuthnProviderAlias&gt;<br /><br />
+
+ Alias /secure /webpages/secure<br />
+ &lt;Directory /webpages/secure&gt;<br />
+ <indent>
+ Order deny,allow<br />
+ Allow from all<br /><br />
+
+ AuthBasicProvider ldap-other-alias ldap-alias1<br /><br />
+
+ AuthType Basic<br />
+ AuthName LDAP_Protected_Place<br />
+ AuthzLDAPAuthoritative off<br />
+ require valid-user<br />
+ </indent>
+ &lt;/Directory&gt;<br />
+ </example>
+</section>
+
+<directivesynopsis type="section">
+<name>AuthnProviderAlias</name>
+<description>Enclose a group of directives that represent an
+extension of a base authentication provider and referenced by
+the specified alias</description>
+<syntax>&lt;AuthnProviderAlias <var>baseProvider Alias</var>&gt;
+... &lt;/AuthnProviderAlias&gt;</syntax>
+<contextlist><context>server config</context><context>virtual host</context>
+</contextlist>
+
+<usage>
+ <p><directive type="section">AuthnProviderAlias</directive> and
+ <code>&lt;/AuthnProviderAlias&gt;</code> are used to enclose a group of
+ authentication directives that can be referenced by the alias name
+ using one of the directives <directive module="mod_auth_basic">
+ AuthBasicProvider</directive> or <directive module="mod_auth_digest">
+ AuthDigestProvider</directive>.</p>
+
+</usage>
+</directivesynopsis>
+
+</modulesynopsis>
diff --git a/docs/manual/mod/mod_authn_alias.xml.meta b/docs/manual/mod/mod_authn_alias.xml.meta
index 3709020aa1..276887d0e1 100644
--- a/docs/manual/mod/mod_authn_alias.xml.meta
+++ b/docs/manual/mod/mod_authn_alias.xml.meta
@@ -1,11 +1,11 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
-<metafile>
- <basename>mod_authn_alias</basename>
- <path>/mod/</path>
- <relpath>..</relpath>
-
- <variants>
- <variant>en</variant>
- </variants>
-</metafile>
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<metafile>
+ <basename>mod_authn_alias</basename>
+ <path>/mod/</path>
+ <relpath>..</relpath>
+
+ <variants>
+ <variant>en</variant>
+ </variants>
+</metafile>