From: Stefan Fritsch Date: Sat, 8 Dec 2012 22:18:17 +0000 (+0000) Subject: xforms X-Git-Tag: 2.5.0-alpha~6048 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b521b143360d9dda11ca575e1cb603cb3bd6467b;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1418768 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.de b/docs/manual/mod/core.html.de index fc89de5e94..9bc26c792e 100644 --- a/docs/manual/mod/core.html.de +++ b/docs/manual/mod/core.html.de @@ -88,6 +88,7 @@ Servers
  • <Location>
  • <LocationMatch>
  • LogLevel
  • +
  • LogLevelOverride
  • MaxKeepAliveRequests
  • MaxRangeOverlaps
  • MaxRangeReversals
  • @@ -118,6 +119,7 @@ Servers
  • UseCanonicalName
  • UseCanonicalPhysicalPort
  • <VirtualHost>
  • +
  • Warning
  • @@ -2364,6 +2366,25 @@ regul nicht zu, wenn mittels syslog protokolliert wird.

    + +
    top
    +

    LogLevelOverride-Direktive

    + + + + + + + + +
    Beschreibung:Override the verbosity of the ErrorLog for certain clients
    Syntax:LogLevel ipaddress[/prefixlen] + [module:]level [module:level] ... +
    Voreinstellung:unset
    Kontext:Serverkonfiguration, Virtual Host
    Status:Core
    Modul:core
    Kompatibilität:Available in Apache HTTP Server 2.5.0 and later

    Die Dokumentation zu dieser Direktive wurde + noch nicht übersetzt. Bitte schauen Sie in die englische + Version.

    Siehe auch

    +
    top

    MaxKeepAliveRequests-Direktive

    @@ -3600,6 +3621,18 @@ IP-Adressen angewendet werden kombiniert werden, wenn eine Anfrage empfangen wird
    +
    top
    +

    Warning-Direktive

    + + + + + + + +
    Beschreibung:Warn from configuration parsing with a custom message
    Syntax:Warning message
    Kontext:Serverkonfiguration, Virtual Host, Verzeichnis, .htaccess
    Status:Core
    Modul:core
    Kompatibilität:2.5 and later

    Die Dokumentation zu dieser Direktive wurde + noch nicht übersetzt. Bitte schauen Sie in die englische + Version.

    Verfügbare Sprachen:  de  | diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 4a8eb4a00c..4f84fa3c8c 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -85,6 +85,7 @@ available

  • <Location>
  • <LocationMatch>
  • LogLevel
  • +
  • LogLevelOverride
  • MaxKeepAliveRequests
  • MaxRangeOverlaps
  • MaxRangeReversals
  • @@ -115,6 +116,7 @@ available
  • UseCanonicalName
  • UseCanonicalPhysicalPort
  • <VirtualHost>
  • +
  • Warning
  • @@ -2968,11 +2970,72 @@ LogLevel info
    Per directory loglevel configuration only affects messages that are - logged after the request has been parsed and that are associated with - the request. Log messages which are associated with the connection or - the server are not affected. + logged after the request has been parsed and that are associated with + the request. Log messages which are associated with the server or + the connection are not affected. The latter can be influenced by the + LogLevelOverride directive, + though.
    +

    See also

    + + +
    top
    +

    LogLevelOverride Directive

    + + + + + + + + +
    Description:Override the verbosity of the ErrorLog for certain clients
    Syntax:LogLevel ipaddress[/prefixlen] + [module:]level [module:level] ... +
    Default:unset
    Context:server config, virtual host
    Status:Core
    Module:core
    Compatibility:Available in Apache HTTP Server 2.5.0 and later
    +

    LogLevelOverride adjusts the + LogLevel for requests coming from + certain client IP addresses. + This allows to enable verbose logging only for certain test clients. + The IP address is checked at a very early state in the connection + processing. Therefore, LogLevelOverride allows to + change the log level for things like the SSL handshake which happen before + a LogLevel directive in an + <If> container would + be evaluated.

    + +

    LogLevelOverride accepts either a single + IP-address or a CIDR IP-address/len subnet specification. + For the syntax of the loglevel specification, see the + LogLevel directive.

    + +

    For requests that match a LogLevelOverride + directive, per-directory specifications of + LogLevel are ignored.

    + +

    Examples:

    + +
    +        LogLevelOverride 192.0.2.0/24 ssl:trace6
    +        LogLevelOverride 192.0.2.7 ssl:trace8
    +    
    + + +
    + LogLevelOverride only affects + log messages that are associated with the request or the connection. + Log messages which are associated with the server not affected. +
    + + +

    See also

    +
    top

    MaxKeepAliveRequests Directive

    @@ -4531,6 +4594,36 @@ hostname or IP address and <Files> sections work for an explanation of how these different sections are combined when a request is received +
    +
    top
    +

    Warning Directive

    + + + + + + + +
    Description:Warn from configuration parsing with a custom message
    Syntax:Warning message
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    Compatibility:2.5 and later
    +

    If an issue can be detected from within the configuration, this + directive can be used to generate a custom warning message. The + configuration parsing is not halted. The typical use it to check + whether some user define options are set, and warn if not.

    + +
    +# Example
    +# tell when ReverseProxy is not set
    +<IfDefine !ReverseProxy>
    +  Warning "reverse proxy is not started, hope this is okay!"
    +</IfDefine>
    +
    +<IfDefine ReverseProxy>
    +  # define custom proxy configuration
    +</IfDefine>
    +    
    + + +
    diff --git a/docs/manual/mod/core.html.es b/docs/manual/mod/core.html.es index 82da3f85ee..f4903acb66 100644 --- a/docs/manual/mod/core.html.es +++ b/docs/manual/mod/core.html.es @@ -88,6 +88,7 @@
  • <Location>
  • <LocationMatch>
  • LogLevel
  • +
  • LogLevelOverride
  • MaxKeepAliveRequests
  • MaxRangeOverlaps
  • MaxRangeReversals
  • @@ -118,6 +119,7 @@
  • UseCanonicalName
  • UseCanonicalPhysicalPort
  • <VirtualHost>
  • +
  • Warning
  • @@ -2761,6 +2763,25 @@ matching URLs the server are not affected. + +
    top
    +

    LogLevelOverride Directiva

    + + + + + + + + +
    Descripción:Override the verbosity of the ErrorLog for certain clients
    Sintaxis:LogLevel ipaddress[/prefixlen] + [module:]level [module:level] ... +
    Valor por defecto:unset
    Contexto:server config, virtual host
    Estado:Core
    Módulo:core
    Compatibilidad:Available in Apache HTTP Server 2.5.0 and later

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    Consulte también

    +
    top

    MaxKeepAliveRequests Directiva

    @@ -4296,6 +4317,18 @@ hostname or IP address different sections are combined when a request is received
    +
    top
    +

    Warning Directiva

    + + + + + + + +
    Descripción:Warn from configuration parsing with a custom message
    Sintaxis:Warning message
    Contexto:server config, virtual host, directory, .htaccess
    Estado:Core
    Módulo:core
    Compatibilidad:2.5 and later

    The documentation for this directive has + not been translated yet. Please have a look at the English + version.

    Idiomas disponibles:  de  | diff --git a/docs/manual/mod/core.html.fr b/docs/manual/mod/core.html.fr index 3383eda6e8..7825391fab 100644 --- a/docs/manual/mod/core.html.fr +++ b/docs/manual/mod/core.html.fr @@ -87,6 +87,7 @@ disponibles

  • <Location>
  • <LocationMatch>
  • LogLevel
  • +
  • LogLevelOverride
  • MaxKeepAliveRequests
  • MaxRangeOverlaps
  • MaxRangeReversals
  • @@ -117,6 +118,7 @@ disponibles
  • UseCanonicalName
  • UseCanonicalPhysicalPort
  • <VirtualHost>
  • +
  • Warning
  • @@ -3171,6 +3173,25 @@ LogLevel info pas affectés. + +
    top
    +

    LogLevelOverride Directive

    + + + + + + + + +
    Description:Override the verbosity of the ErrorLog for certain clients
    Syntaxe:LogLevel ipaddress[/prefixlen] + [module:]level [module:level] ... +
    Défaut:unset
    Contexte:configuration du serveur, serveur virtuel
    Statut:Core
    Module:core
    Compatibilité:Available in Apache HTTP Server 2.5.0 and later

    La documentation de cette directive + n'a pas encore t traduite. Veuillez vous reporter la version + en langue anglaise.

    Voir aussi

    +
    top

    MaxKeepAliveRequests Directive

    @@ -4858,6 +4879,18 @@ explication de la mani entre elles à la réception d'une requête
    +
    top
    +

    Warning Directive

    + + + + + + + +
    Description:Warn from configuration parsing with a custom message
    Syntaxe:Warning message
    Contexte:configuration du serveur, serveur virtuel, répertoire, .htaccess
    Statut:Core
    Module:core
    Compatibilité:2.5 and later

    La documentation de cette directive + n'a pas encore t traduite. Veuillez vous reporter la version + en langue anglaise.

    Langues Disponibles:  de  | diff --git a/docs/manual/mod/core.html.ja.utf8 b/docs/manual/mod/core.html.ja.utf8 index 15f054803c..1971d69252 100644 --- a/docs/manual/mod/core.html.ja.utf8 +++ b/docs/manual/mod/core.html.ja.utf8 @@ -88,6 +88,7 @@

  • <Location>
  • <LocationMatch>
  • LogLevel
  • +
  • LogLevelOverride
  • MaxKeepAliveRequests
  • MaxRangeOverlaps
  • MaxRangeReversals
  • @@ -118,6 +119,7 @@
  • UseCanonicalName
  • UseCanonicalPhysicalPort
  • <VirtualHost>
  • +
  • Warning
  • @@ -2306,6 +2308,25 @@ the server configuration files これは当てはまりません。

    + +
    top
    +

    LogLevelOverride ディレクティブ

    + + + + + + + + +
    説明:Override the verbosity of the ErrorLog for certain clients
    構文:LogLevel ipaddress[/prefixlen] + [module:]level [module:level] ... +
    デフォルト:unset
    コンテキスト:サーバ設定ファイル, バーチャルホスト
    ステータス:Core
    モジュール:core
    互換性:Available in Apache HTTP Server 2.5.0 and later

    このディレクティブの解説文書は + まだ翻訳されていません。英語版をご覧ください。 +

    参照

    +
    top

    MaxKeepAliveRequests ディレクティブ

    @@ -3515,6 +3536,18 @@ of a request or the last 63, assuming the request itself is greater than <Directory>, <Location>, <Files> セクションの動作法
    +
    top
    +

    Warning ディレクティブ

    + + + + + + + +
    説明:Warn from configuration parsing with a custom message
    構文:Warning message
    コンテキスト:サーバ設定ファイル, バーチャルホスト, ディレクトリ, .htaccess
    ステータス:Core
    モジュール:core
    互換性:2.5 and later

    このディレクティブの解説文書は + まだ翻訳されていません。英語版をご覧ください。 +

    翻訳済み言語:  de  | diff --git a/docs/manual/mod/core.html.tr.utf8 b/docs/manual/mod/core.html.tr.utf8 index cd9c796243..240c53726e 100644 --- a/docs/manual/mod/core.html.tr.utf8 +++ b/docs/manual/mod/core.html.tr.utf8 @@ -86,6 +86,7 @@

  • <Location>
  • <LocationMatch>
  • LogLevel
  • +
  • LogLevelOverride
  • MaxKeepAliveRequests
  • MaxRangeOverlaps
  • MaxRangeReversals
  • @@ -116,6 +117,7 @@
  • UseCanonicalName
  • UseCanonicalPhysicalPort
  • <VirtualHost>
  • +
  • Warning
  • @@ -2950,6 +2952,24 @@ uygulanır. iletileri etkiler. Bağlantı veya sunucu ile ilişklendirilmemiş günlük iletileri etkilenmez. + +
    top
    +

    LogLevelOverride Yönergesi

    + + + + + + + + +
    Açıklama:Override the verbosity of the ErrorLog for certain clients
    Sözdizimi:LogLevel ipaddress[/prefixlen] + [module:]level [module:level] ... +
    Öntanımlı:unset
    Bağlam:sunucu geneli, sanal konak
    Durum:Çekirdek
    Modül:core
    Uyumluluk:Available in Apache HTTP Server 2.5.0 and later

    Bu yönergenin belgesi henüz Türkçeye çevrilmedi. + Lütfen İngilizce sürümüne bakınız.

    Ayrıca bakınız:

    +
    top

    MaxKeepAliveRequests Yönergesi

    @@ -4452,6 +4472,17 @@ gerçekleşmesi için sunucunun geçmesini bekleyeceği süre. çalışır? belgesine bakınız.
    +
    top
    +

    Warning Yönergesi

    + + + + + + + +
    Açıklama:Warn from configuration parsing with a custom message
    Sözdizimi:Warning message
    Bağlam:sunucu geneli, sanal konak, dizin, .htaccess
    Durum:Çekirdek
    Modül:core
    Uyumluluk:2.5 and later

    Bu yönergenin belgesi henüz Türkçeye çevrilmedi. + Lütfen İngilizce sürümüne bakınız.

    Mevcut Diller:  de  | diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de index 81811ebf8d..b779e0c14a 100644 --- a/docs/manual/mod/core.xml.de +++ b/docs/manual/mod/core.xml.de @@ -1,7 +1,7 @@ - + + + diff --git a/docs/manual/mod/core.xml.ja b/docs/manual/mod/core.xml.ja index 8e0f82f23c..1ecef23e05 100644 --- a/docs/manual/mod/core.xml.ja +++ b/docs/manual/mod/core.xml.ja @@ -1,7 +1,7 @@ - + +