From: Igor Galić Date: Wed, 5 Jan 2011 16:39:47 +0000 (+0000) Subject: Fix typo from r1055506, update transforms. X-Git-Tag: 2.3.11~271 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8831c0f11a2c63b0f90513d9b4492fb086552942;p=thirdparty%2Fapache%2Fhttpd.git Fix typo from r1055506, update transforms. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1055515 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.html.en b/docs/manual/expr.html.en index 94741b19c96..cc1f3d04ffd 100644 --- a/docs/manual/expr.html.en +++ b/docs/manual/expr.html.en @@ -34,7 +34,7 @@
  • Unary operators
  • Functions
  • Other
  • - +

    See also

    top

    Grammar in BNF notation

    diff --git a/docs/manual/mod/directives.html.de b/docs/manual/mod/directives.html.de index 3da75c3fdc4..4f95e8b019b 100644 --- a/docs/manual/mod/directives.html.de +++ b/docs/manual/mod/directives.html.de @@ -127,7 +127,7 @@
  • AuthMerging
  • AuthName
  • AuthnCacheContext
  • -
  • AuthnCacheProvider
  • +
  • AuthnCacheProvideFor
  • AuthnCacheSOCache
  • AuthnCacheTimeout
  • <AuthnProviderAlias>
  • diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en index cb70eb28654..00306fc77e4 100644 --- a/docs/manual/mod/directives.html.en +++ b/docs/manual/mod/directives.html.en @@ -128,7 +128,7 @@
  • AuthMerging
  • AuthName
  • AuthnCacheContext
  • -
  • AuthnCacheProvider
  • +
  • AuthnCacheProvideFor
  • AuthnCacheSOCache
  • AuthnCacheTimeout
  • <AuthnProviderAlias>
  • diff --git a/docs/manual/mod/directives.html.es b/docs/manual/mod/directives.html.es index 12eefd7774d..f892c676d68 100644 --- a/docs/manual/mod/directives.html.es +++ b/docs/manual/mod/directives.html.es @@ -130,7 +130,7 @@
  • AuthMerging
  • AuthName
  • AuthnCacheContext
  • -
  • AuthnCacheProvider
  • +
  • AuthnCacheProvideFor
  • AuthnCacheSOCache
  • AuthnCacheTimeout
  • <AuthnProviderAlias>
  • diff --git a/docs/manual/mod/directives.html.ja.utf8 b/docs/manual/mod/directives.html.ja.utf8 index 506c4fdb3d1..e05c576fc0f 100644 --- a/docs/manual/mod/directives.html.ja.utf8 +++ b/docs/manual/mod/directives.html.ja.utf8 @@ -126,7 +126,7 @@
  • AuthMerging
  • AuthName
  • AuthnCacheContext
  • -
  • AuthnCacheProvider
  • +
  • AuthnCacheProvideFor
  • AuthnCacheSOCache
  • AuthnCacheTimeout
  • <AuthnProviderAlias>
  • diff --git a/docs/manual/mod/directives.html.ko.euc-kr b/docs/manual/mod/directives.html.ko.euc-kr index 5f3baeeba61..2366964b573 100644 --- a/docs/manual/mod/directives.html.ko.euc-kr +++ b/docs/manual/mod/directives.html.ko.euc-kr @@ -125,7 +125,7 @@
  • AuthMerging
  • AuthName
  • AuthnCacheContext
  • -
  • AuthnCacheProvider
  • +
  • AuthnCacheProvideFor
  • AuthnCacheSOCache
  • AuthnCacheTimeout
  • <AuthnProviderAlias>
  • diff --git a/docs/manual/mod/directives.html.tr.utf8 b/docs/manual/mod/directives.html.tr.utf8 index ab52b5a3977..e71451cd37c 100644 --- a/docs/manual/mod/directives.html.tr.utf8 +++ b/docs/manual/mod/directives.html.tr.utf8 @@ -124,7 +124,7 @@
  • AuthMerging
  • AuthName
  • AuthnCacheContext
  • -
  • AuthnCacheProvider
  • +
  • AuthnCacheProvideFor
  • AuthnCacheSOCache
  • AuthnCacheTimeout
  • <AuthnProviderAlias>
  • diff --git a/docs/manual/mod/mod_authn_dbd.html.en b/docs/manual/mod/mod_authn_dbd.html.en index c11675b2447..b980c286dd5 100644 --- a/docs/manual/mod/mod_authn_dbd.html.en +++ b/docs/manual/mod/mod_authn_dbd.html.en @@ -106,7 +106,7 @@ DBDExptime 300 AuthBasicProvider socache dbd # Also required for caching: tell the cache to cache dbd lookups! - AuthnCacheProvider dbd + AuthnCacheProvideFor dbd AuthnCacheContext my-server # mod_authz_core configuration diff --git a/docs/manual/mod/mod_authn_socache.html.en b/docs/manual/mod/mod_authn_socache.html.en index 977be5436ba..4ae98e5dd09 100644 --- a/docs/manual/mod/mod_authn_socache.html.en +++ b/docs/manual/mod/mod_authn_socache.html.en @@ -37,7 +37,7 @@ the load on backends

    Directives

    @@ -74,7 +74,7 @@ the load on backends mod_authn_dbd will usually benefit from this cache.

    The basic rules to cache for a provider are:

    1. Include the provider you're cacheing for in an - AuthnCacheProvider directive.
    2. + AuthnCacheProvideFor directive.
    3. List socache ahead of the provider you're cacheing for in your AuthBasicProvider or AuthDigestProvider directive.
    @@ -86,7 +86,7 @@ the load on backends AuthName "Cached Authentication Example" AuthBasicProvider socache dbd AuthDBDUserPWQuery "SELECT password FROM authn WHERE user = %s" - AuthnCacheProvider dbd + AuthnCacheProvideFor dbd AuthnCacheContext dbd-authn-example AuthnCacheSOCache dbm Require valid-user @@ -96,7 +96,7 @@ the load on backends

    Cacheing with custom modules

    Module developers should note that their modules must be enabled - for cacheing with mod_authn_cache. A single optional API function + for cacheing with mod_authn_socache. A single optional API function ap_authn_cache_store is provided to cache credentials a provider has just looked up or generated. Usage examples are available in r957072, in which three authn providers are enabled for cacheing.

    @@ -132,10 +132,10 @@ the load on backends
    top
    -

    AuthnCacheProvider Directive

    +

    AuthnCacheProvideFor Directive

    - + @@ -144,13 +144,13 @@ the load on backends
    Description:Specify which authn provider(s) to cache for
    Syntax:AuthnCacheProvider authn-provider [...]
    Syntax:AuthnCacheProvideFor authn-provider [...]
    Default:None
    Context:directory, .htaccess
    Override:AuthConfig

    This directive specifies an authentication provider or providers to cache for. Credentials found by a provider not listed in an - AuthnCacheProvider directive will not be cached.

    + AuthnCacheProvideFor directive will not be cached.

    For example, to cache credentials found by mod_authn_dbd or by a custom provider myprovider, but leave those looked up by lightweight providers like file or dbm lookup alone:

    - AuthnCacheProvider dbd myprovider + AuthnCacheProvideFor dbd myprovider

    diff --git a/docs/manual/mod/quickreference.html.de b/docs/manual/mod/quickreference.html.de index e0b65ed3561..152759d68f5 100644 --- a/docs/manual/mod/quickreference.html.de +++ b/docs/manual/mod/quickreference.html.de @@ -218,7 +218,7 @@ sections. AuthName auth-domaindhBAuthorization realm for use in HTTP authentication AuthnCacheContext directory|server|custom-stringdBSpecify a context string for use in the cache key -AuthnCacheProvider authn-provider [...]dhBSpecify which authn provider(s) to cache for +AuthnCacheProvideFor authn-provider [...]dhBSpecify which authn provider(s) to cache for AuthnCacheSOCache provider-namesBSelect socache backend provider to use AuthnCacheTimeout timeout (seconds)dhBSet a timeout for cache entries <AuthnProviderAlias baseProvider Alias> diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en index 0ebfcfa0d9a..65bb42ef177 100644 --- a/docs/manual/mod/quickreference.html.en +++ b/docs/manual/mod/quickreference.html.en @@ -214,7 +214,7 @@ sections. AuthName auth-domaindhBAuthorization realm for use in HTTP authentication AuthnCacheContext directory|server|custom-stringdBSpecify a context string for use in the cache key -AuthnCacheProvider authn-provider [...]dhBSpecify which authn provider(s) to cache for +AuthnCacheProvideFor authn-provider [...]dhBSpecify which authn provider(s) to cache for AuthnCacheSOCache provider-namesBSelect socache backend provider to use AuthnCacheTimeout timeout (seconds)dhBSet a timeout for cache entries <AuthnProviderAlias baseProvider Alias> diff --git a/docs/manual/mod/quickreference.html.es b/docs/manual/mod/quickreference.html.es index 00964aeb598..aeae752935f 100644 --- a/docs/manual/mod/quickreference.html.es +++ b/docs/manual/mod/quickreference.html.es @@ -221,7 +221,7 @@ sections. AuthName auth-domaindhBAuthorization realm for use in HTTP authentication AuthnCacheContext directory|server|custom-stringdBSpecify a context string for use in the cache key -AuthnCacheProvider authn-provider [...]dhBSpecify which authn provider(s) to cache for +AuthnCacheProvideFor authn-provider [...]dhBSpecify which authn provider(s) to cache for AuthnCacheSOCache provider-namesBSelect socache backend provider to use AuthnCacheTimeout timeout (seconds)dhBSet a timeout for cache entries <AuthnProviderAlias baseProvider Alias> diff --git a/docs/manual/mod/quickreference.html.ja.utf8 b/docs/manual/mod/quickreference.html.ja.utf8 index 5306f4527f2..f8c02624da3 100644 --- a/docs/manual/mod/quickreference.html.ja.utf8 +++ b/docs/manual/mod/quickreference.html.ja.utf8 @@ -210,7 +210,7 @@ sections. AuthName auth-domaindhBAuthorization realm for use in HTTP authentication AuthnCacheContext directory|server|custom-stringdBSpecify a context string for use in the cache key -AuthnCacheProvider authn-provider [...]dhBSpecify which authn provider(s) to cache for +AuthnCacheProvideFor authn-provider [...]dhBSpecify which authn provider(s) to cache for AuthnCacheSOCache provider-namesBSelect socache backend provider to use AuthnCacheTimeout timeout (seconds)dhBSet a timeout for cache entries <AuthnProviderAlias baseProvider Alias> diff --git a/docs/manual/mod/quickreference.html.ko.euc-kr b/docs/manual/mod/quickreference.html.ko.euc-kr index 9b401ef1b5d..05c7749b155 100644 --- a/docs/manual/mod/quickreference.html.ko.euc-kr +++ b/docs/manual/mod/quickreference.html.ko.euc-kr @@ -206,7 +206,7 @@ sections. AuthName auth-domaindhBAuthorization realm for use in HTTP authentication AuthnCacheContext directory|server|custom-stringdBSpecify a context string for use in the cache key -AuthnCacheProvider authn-provider [...]dhBSpecify which authn provider(s) to cache for +AuthnCacheProvideFor authn-provider [...]dhBSpecify which authn provider(s) to cache for AuthnCacheSOCache provider-namesBSelect socache backend provider to use AuthnCacheTimeout timeout (seconds)dhBSet a timeout for cache entries <AuthnProviderAlias baseProvider Alias> diff --git a/docs/manual/mod/quickreference.html.tr.utf8 b/docs/manual/mod/quickreference.html.tr.utf8 index 02e5181f2e3..27fc8ac3cc5 100644 --- a/docs/manual/mod/quickreference.html.tr.utf8 +++ b/docs/manual/mod/quickreference.html.tr.utf8 @@ -211,7 +211,7 @@ sections. AuthName auth-domaindhTAuthorization realm for use in HTTP authentication AuthnCacheContext directory|server|custom-stringdTSpecify a context string for use in the cache key -AuthnCacheProvider authn-provider [...]dhTSpecify which authn provider(s) to cache for +AuthnCacheProvideFor authn-provider [...]dhTSpecify which authn provider(s) to cache for AuthnCacheSOCache provider-namesTSelect socache backend provider to use AuthnCacheTimeout timeout (seconds)dhTSet a timeout for cache entries <AuthnProviderAlias baseProvider Alias> diff --git a/docs/manual/rewrite/remapping.html.en b/docs/manual/rewrite/remapping.html.en index 753810c9694..05e7049b3fc 100644 --- a/docs/manual/rewrite/remapping.html.en +++ b/docs/manual/rewrite/remapping.html.en @@ -284,7 +284,7 @@ hostname(s).

    </VirtualHost>
    -

    You can alternatively accomplis this using the +

    You can alternatively accomplish this using the <If> directive:

    diff --git a/docs/manual/rewrite/remapping.xml b/docs/manual/rewrite/remapping.xml index 39ee76eea7b..b6cfe4aa30d 100644 --- a/docs/manual/rewrite/remapping.xml +++ b/docs/manual/rewrite/remapping.xml @@ -286,7 +286,7 @@ hostname(s).

    </VirtualHost> -

    You can alternatively accomplis this using the +

    You can alternatively accomplish this using the If directive: