Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 607A61785A for ; Tue, 28 Oct 2014 06:48:22 +0000 (UTC) Received: (qmail 38011 invoked by uid 500); 28 Oct 2014 06:48:22 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 37942 invoked by uid 500); 28 Oct 2014 06:48:22 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 37933 invoked by uid 99); 28 Oct 2014 06:48:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2014 06:48:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2014 06:48:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5555C2388A56; Tue, 28 Oct 2014 06:47:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1634793 - in /httpd/httpd/branches/2.4.x/docs/manual/mod: directives.html.en mod_substitute.html.en mod_substitute.xml mod_substitute.xml.fr mod_substitute.xml.meta quickreference.html.en Date: Tue, 28 Oct 2014 06:47:59 -0000 To: cvs@httpd.apache.org From: jailletc36@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141028064759.5555C2388A56@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jailletc36 Date: Tue Oct 28 06:47:58 2014 New Revision: 1634793 URL: http://svn.apache.org/r1634793 Log: Fix compatibility note + rebuild Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.en httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.html.en httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.fr httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.meta httpd/httpd/branches/2.4.x/docs/manual/mod/quickreference.html.en Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.en?rev=1634793&r1=1634792&r2=1634793&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.en (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/directives.html.en Tue Oct 28 06:47:58 2014 @@ -614,6 +614,7 @@
  • StartServers
  • StartThreads
  • Substitute
  • +
  • SubstituteMaxLineLength
  • Suexec
  • SuexecUserGroup
  • ThreadLimit
  • Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.html.en?rev=1634793&r1=1634792&r2=1634793&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.html.en (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.html.en Tue Oct 28 06:47:58 2014 @@ -41,6 +41,7 @@ @@ -127,6 +128,36 @@ Substitute "s|http://internal.blog.examp +
    top
    +

    SubstituteMaxLineLength Directive

    + + + + + + + + + +
    Description:Set the maximum line size
    Syntax:SubstituteMaxLineLength bytes(b|B|k|K|m|M|g|G)
    Default:SubstituteMaxLineLength 1m
    Context:directory, .htaccess
    Override:FileInfo
    Status:Extension
    Module:mod_substitute
    Compatibility:Available in httpd 2.4.11 and later
    +

    The maximum line size handled by mod_substitute + is limited to restrict memory use. The limit can be configured + using SubstituteMaxLineLength. + The value can be given as the number of bytes and can be suffixed + with a single letter b, B, k, + K, m, M, g, + G to provide the size in bytes, kilobytes, megabytes + or gigabytes respectively.

    + +

    Example

    <Location />
    +    AddOutputFilterByType SUBSTITUTE text/html
    +    SubstituteMaxLineLength 10m
    +    Substitute s/foo/bar/ni
    +</Location>
    +
    + + +

    Available Languages:  en  | Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml?rev=1634793&r1=1634792&r2=1634793&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml Tue Oct 28 06:47:58 2014 @@ -138,7 +138,7 @@ Substitute "s|http://internal.blog.examp directory .htaccess FileInfo -Available in httpd 2.5-dev and later +Available in httpd 2.4.11 and later

    The maximum line size handled by mod_substitute Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.fr URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.fr?rev=1634793&r1=1634792&r2=1634793&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.fr (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.fr Tue Oct 28 06:47:58 2014 @@ -1,7 +1,7 @@ - + Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.meta URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.meta?rev=1634793&r1=1634792&r2=1634793&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.meta (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_substitute.xml.meta Tue Oct 28 06:47:58 2014 @@ -8,6 +8,6 @@ en - fr + fr Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/quickreference.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/quickreference.html.en?rev=1634793&r1=1634792&r2=1634793&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/quickreference.html.en (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/quickreference.html.en Tue Oct 28 06:47:58 2014 @@ -1007,59 +1007,60 @@ Certificate verification StartServers numbersMNumber of child server processes created at startup StartThreads numbersMNumber of threads created on startup Substitute s/pattern/substitution/[infq]dhEPattern to filter the response content -Suexec On|OffsBEnable or disable the suEXEC feature -SuexecUserGroup User GroupsvEUser and group for CGI programs to run as -ThreadLimit numbersMSets the upper limit on the configurable number of threads +SubstituteMaxLineLength bytes(b|B|k|K|m|M|g|G) 1m dhESet the maximum line size +Suexec On|OffsBEnable or disable the suEXEC feature +SuexecUserGroup User GroupsvEUser and group for CGI programs to run as +ThreadLimit numbersMSets the upper limit on the configurable number of threads per child process -ThreadsPerChild numbersMNumber of threads created by each child process -ThreadStackSize sizesMThe size in bytes of the stack used by threads handling +ThreadsPerChild numbersMNumber of threads created by each child process +ThreadStackSize sizesMThe size in bytes of the stack used by threads handling client connections -TimeOut seconds 60 svCAmount of time the server will wait for +TimeOut seconds 60 svCAmount of time the server will wait for certain events before failing a request -TraceEnable [on|off|extended] on svCDetermines the behavior on TRACE requests -TransferLog file|pipesvBSpecify location of a log file -TypesConfig file-path conf/mime.types sBThe location of the mime.types file -UnDefine parameter-namesCUndefine the existence of a variable -UndefMacro namesvdBUndefine a macro -UnsetEnv env-variable [env-variable] -...svdhBRemoves variables from the environment -Use name [value1 ... valueN] -svdBUse a macro -UseCanonicalName On|Off|DNS Off svdCConfigures how the server determines its own name and +TraceEnable [on|off|extended] on svCDetermines the behavior on TRACE requests +TransferLog file|pipesvBSpecify location of a log file +TypesConfig file-path conf/mime.types sBThe location of the mime.types file +UnDefine parameter-namesCUndefine the existence of a variable +UndefMacro namesvdBUndefine a macro +UnsetEnv env-variable [env-variable] +...svdhBRemoves variables from the environment +Use name [value1 ... valueN] +svdBUse a macro +UseCanonicalName On|Off|DNS Off svdCConfigures how the server determines its own name and port -UseCanonicalPhysicalPort On|Off Off svdCConfigures how the server determines its own port -User unix-userid #-1 sBThe userid under which the server will answer +UseCanonicalPhysicalPort On|Off Off svdCConfigures how the server determines its own port +User unix-userid #-1 sBThe userid under which the server will answer requests -UserDir directory-filename [directory-filename] ... -svBLocation of the user-specific directories -VHostCGIMode On|Off|Secure On vXDetermines whether the virtualhost can run +UserDir directory-filename [directory-filename] ... +svBLocation of the user-specific directories +VHostCGIMode On|Off|Secure On vXDetermines whether the virtualhost can run subprocesses, and the privileges available to subprocesses. -VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vXAssign arbitrary privileges to subprocesses created +VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vXAssign arbitrary privileges to subprocesses created by a virtual host. -VHostGroup unix-groupidvXSets the Group ID under which a virtual host runs. -VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vXAssign arbitrary privileges to a virtual host. -VHostSecure On|Off On vXDetermines whether the server runs with enhanced security +VHostGroup unix-groupidvXSets the Group ID under which a virtual host runs. +VHostPrivs [+-]?privilege-name [[+-]?privilege-name] ...vXAssign arbitrary privileges to a virtual host. +VHostSecure On|Off On vXDetermines whether the server runs with enhanced security for the virtualhost. -VHostUser unix-useridvXSets the User ID under which a virtual host runs. -VirtualDocumentRoot interpolated-directory|none none svEDynamically configure the location of the document root +VHostUser unix-useridvXSets the User ID under which a virtual host runs. +VirtualDocumentRoot interpolated-directory|none none svEDynamically configure the location of the document root for a given virtual host -VirtualDocumentRootIP interpolated-directory|none none svEDynamically configure the location of the document root +VirtualDocumentRootIP interpolated-directory|none none svEDynamically configure the location of the document root for a given virtual host -<VirtualHost +<VirtualHost addr[:port] [addr[:port]] - ...> ... </VirtualHost>sCContains directives that apply only to a specific + ...> ... </VirtualHost>sCContains directives that apply only to a specific hostname or IP address -VirtualScriptAlias interpolated-directory|none none svEDynamically configure the location of the CGI directory for +VirtualScriptAlias interpolated-directory|none none svEDynamically configure the location of the CGI directory for a given virtual host -VirtualScriptAliasIP interpolated-directory|none none svEDynamically configure the location of the CGI directory for +VirtualScriptAliasIP interpolated-directory|none none svEDynamically configure the location of the CGI directory for a given virtual host -WatchdogInterval number-of-seconds 1 sBWatchdog interval in seconds -XBitHack on|off|full off svdhBParse SSI directives in files with the execute bit +WatchdogInterval number-of-seconds 1 sBWatchdog interval in seconds +XBitHack on|off|full off svdhBParse SSI directives in files with the execute bit set -xml2EncAlias charset alias [alias ...]sBRecognise Aliases for encoding values -xml2EncDefault namesvdhBSets a default encoding to assume when absolutely no information +xml2EncAlias charset alias [alias ...]sBRecognise Aliases for encoding values +xml2EncDefault namesvdhBSets a default encoding to assume when absolutely no information can be automatically detected -xml2StartParse element [element ...]svdhBAdvise the parser to skip leading junk. +xml2StartParse element [element ...]svdhBAdvise the parser to skip leading junk.

    Available Languages:  de  |