From a894ad948f98c46d906ca88a31962522b917a42f Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Mon, 9 Jan 2023 15:31:48 +0000 Subject: [PATCH] xforms [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1906508 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/expr.html.en | 2 +- docs/manual/expr.xml.fr | 2 +- docs/manual/expr.xml.meta | 2 +- docs/manual/mod/core.html.en | 15 + docs/manual/mod/directives.html.en | 2 + docs/manual/mod/mod_authn_core.html.en | 12 + docs/manual/mod/mod_authn_core.xml.fr | 2 +- docs/manual/mod/mod_authn_core.xml.meta | 2 +- docs/manual/mod/mod_authz_host.html.en | 5 +- docs/manual/mod/mod_dav_fs.html.en | 2 +- docs/manual/mod/mod_dav_fs.xml.fr | 2 +- docs/manual/mod/mod_dav_fs.xml.ja | 2 +- docs/manual/mod/mod_dav_fs.xml.ko | 2 +- docs/manual/mod/mod_dav_fs.xml.meta | 2 +- docs/manual/mod/mod_heartmonitor.html.en | 7 +- docs/manual/mod/mod_md.html.en | 35 ++ docs/manual/mod/mod_proxy_hcheck.html.en | 9 +- docs/manual/mod/mod_proxy_hcheck.xml.fr | 2 +- docs/manual/mod/mod_proxy_hcheck.xml.meta | 2 +- docs/manual/mod/quickreference.html.en | 528 +++++++++++----------- docs/manual/programs/rotatelogs.html.en | 27 +- docs/manual/sections.html.en | 11 +- 22 files changed, 376 insertions(+), 299 deletions(-) diff --git a/docs/manual/expr.html.en b/docs/manual/expr.html.en index c90ab950691..967b9911dfa 100644 --- a/docs/manual/expr.html.en +++ b/docs/manual/expr.html.en @@ -46,7 +46,7 @@
  • Other
  • Comparison with SSLRequire
  • Version History
  • -

    See also

    +

    See also

    top

    Grammar in Backus-Naur Form notation

    diff --git a/docs/manual/expr.xml.fr b/docs/manual/expr.xml.fr index 24c18658a99..fa9875dfd61 100644 --- a/docs/manual/expr.xml.fr +++ b/docs/manual/expr.xml.fr @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/expr.xml.meta b/docs/manual/expr.xml.meta index d5a2e5e1a51..ea324a8bb25 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/core.html.en b/docs/manual/mod/core.html.en index b78cb6c37d5..8d44a0d5c0e 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -1337,6 +1337,11 @@ version 2.3.9. </IfDefine> +

    Note

    +

    This directive is evaluated and configuration processing time, + not at runtime. As a result, this directive cannot be conditonally + evaluated by enclosing it in an <If> section.

    +
    top
    @@ -2224,6 +2229,16 @@ satisfied by a request at runtime been evaluated, and so will not be available to use in this directive. + +
    + Directives that take affect during configuration parsing, such as + Define, Include, and + Error cannot be made conditional by enclosing + them in an if <If> configuration + section. These sections are always part of the configuration, + regardless of how they evaluate at runtime. +
    +

    See also

    diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en index ed799c0f3b7..e088a1563f6 100644 --- a/docs/manual/mod/directives.html.en +++ b/docs/manual/mod/directives.html.en @@ -228,6 +228,7 @@
  • DavDepthInfinity
  • DavGenericLockDB
  • DavLockDB
  • +
  • DavLockDiscovery
  • DavMinTimeout
  • DBDExptime
  • DBDInitSQL
  • @@ -461,6 +462,7 @@
  • MDStaplingKeepResponse
  • MDStaplingRenewWindow
  • MDStoreDir
  • +
  • MDStoreLocks
  • MDWarnWindow
  • MemcacheConnTTL
  • MergeSlashes
  • diff --git a/docs/manual/mod/mod_authn_core.html.en b/docs/manual/mod/mod_authn_core.html.en index 8cabe89cc04..09c83146408 100644 --- a/docs/manual/mod/mod_authn_core.html.en +++ b/docs/manual/mod/mod_authn_core.html.en @@ -151,6 +151,15 @@ authentication

    The string provided for the AuthName is what will appear in the password dialog provided by most browsers.

    +

    From 2.4.55, expression syntax can be + used inside the directive to produce the name dynamically.

    + +

    For example:

    + +
    AuthName "%{HTTP_HOST}"
    + + +

    See also