Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 36742 invoked from network); 23 Mar 2010 00:46:42 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 23 Mar 2010 00:46:42 -0000 Received: (qmail 70924 invoked by uid 500); 23 Mar 2010 00:46:42 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 70857 invoked by uid 500); 23 Mar 2010 00:46:42 -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 70850 invoked by uid 99); 23 Mar 2010 00:46:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Mar 2010 00:46:41 +0000 X-ASF-Spam-Status: No, hits=-1115.9 required=10.0 tests=ALL_TRUSTED,AWL 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, 23 Mar 2010 00:46:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 69DEA2388900; Tue, 23 Mar 2010 00:46:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r926416 - in /httpd/httpd/trunk/docs/manual/mod: mod_rewrite.html.en mod_rewrite.xml mod_setenvif.html.en mod_setenvif.xml mod_so.xml.ja mod_so.xml.ko mod_so.xml.meta mod_so.xml.tr Date: Tue, 23 Mar 2010 00:46:18 -0000 To: cvs@httpd.apache.org From: rbowen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100323004618.69DEA2388900@eris.apache.org> Author: rbowen Date: Tue Mar 23 00:46:17 2010 New Revision: 926416 URL: http://svn.apache.org/viewvc?rev=926416&view=rev Log: 'Apache' -> 'Apache HTTP Server' etc Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml httpd/httpd/trunk/docs/manual/mod/mod_setenvif.html.en httpd/httpd/trunk/docs/manual/mod/mod_setenvif.xml httpd/httpd/trunk/docs/manual/mod/mod_so.xml.ja httpd/httpd/trunk/docs/manual/mod/mod_so.xml.ko httpd/httpd/trunk/docs/manual/mod/mod_so.xml.meta httpd/httpd/trunk/docs/manual/mod/mod_so.xml.tr Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en?rev=926416&r1=926415&r2=926416&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en Tue Mar 23 00:46:17 2010 @@ -28,8 +28,7 @@ URLs on the fly Status:Extension Module Identifier:rewrite_module -Source File:mod_rewrite.c -Compatibility:Available in Apache 1.3 and later +Source File:mod_rewrite.c

Summary

The mod_rewrite module uses a rule-based rewriting @@ -233,7 +232,7 @@ RewriteRule ^index\.html$ newsite.html

These variables all correspond to the similarly named HTTP - MIME-headers, C variables of the Apache server or + MIME-headers, C variables of the Apache HTTP Server or struct tm fields of the Unix system. Most are documented elsewhere in the Manual or in the CGI specification. Those that are special to @@ -250,12 +249,12 @@ RewriteRule ^index\.html$ newsite.html

API_VERSION
-
This is the version of the Apache module API +
This is the version of the Apache httpd module API (the internal interface between server and module) in the current httpd build, as defined in include/ap_mmn.h. The module API version - corresponds to the version of Apache in use (in - the release version of Apache 1.3.14, for + corresponds to the version of Apache httpd in use (in + the release version of Apache httpd 1.3.14, for instance, it is 19990320:10), but is mainly of interest to module authors.
@@ -301,7 +300,7 @@ RewriteRule ^index\.html$ newsite.html

The variables SCRIPT_FILENAME and REQUEST_FILENAME contain the same value - the value of the filename field of the internal - request_rec structure of the Apache server. + request_rec structure of the Apache HTTP Server. The first name is the commonly known CGI variable name while the second is the appropriate counterpart of REQUEST_URI (which contains the value of the @@ -322,8 +321,8 @@ RewriteRule ^index\.html$ newsite.html %{ENV:variable}, where variable can be any environment variable, is also available. This is looked-up via internal - Apache structures and (if not found there) via - getenv() from the Apache server process. + Apache httpd structures and (if not found there) via + getenv() from the Apache httpd server process.

  • %{SSL:variable}, where variable is the @@ -611,7 +610,7 @@ processing

    Security

    -See the Apache Security Tips +See the Apache HTTP Server Security Tips document for details on how your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server. @@ -644,7 +643,7 @@ engine logs.

    Using a high value for - Level will slow down your Apache server + Level will slow down your Apache HTTP Server dramatically! Use the rewriting logfile at a Level greater than 2 only for debugging!
    @@ -665,7 +664,7 @@ RewriteLogLevel 3 Status:Extension Module:mod_rewrite Compatibility:The choice of different dbm types is available in -Apache 2.0.41 and later +Apache HTTP Server 2.0.41 and later

    The RewriteMap directive defines a Rewriting Map which can be used inside rule @@ -799,10 +798,10 @@ $ httxt2dbm -i mapfile.txt -o mapfile.ma

  • Internal Function
    - MapType: int, MapSource: Internal Apache + MapType: int, MapSource: Internal Apache httpd function -

    Here, the source is an internal Apache function. +

    Here, the source is an internal Apache httpd function. Currently you cannot create your own, but the following functions already exist:

    @@ -835,7 +834,7 @@ $ httxt2dbm -i mapfile.txt -o mapfile.ma '#!/path/to/interpreter' as the first line).

    -

    This program is started once, when the Apache server +

    This program is started once, when the Apache httpd server is started, and then communicates with the rewriting engine via its stdin and stdout file-handles. For each map-function lookup it will @@ -871,7 +870,7 @@ while (<STDIN>) {

    1. ``Keep it simple, stupid'' (KISS). - If this program hangs, it will cause Apache to hang + If this program hangs, it will cause Apache httpd to hang when trying to use the relevant rewrite rule.
    2. A common mistake is to use buffered I/O on @@ -984,7 +983,7 @@ later

      When the RewriteRule appears in per-directory (htaccess) context, the Pattern is matched against what remains of the URL after removing - the prefix that lead Apache to the current rules (see the + the prefix that lead Apache httpd to the current rules (see the RewriteBase). The removed prefix always ends with a slash, meaning the matching occurs against a string which never has a leading slash. A Pattern with ^/ never Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml?rev=926416&r1=926415&r2=926416&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml Tue Mar 23 00:46:17 2010 @@ -30,7 +30,6 @@ URLs on the fly Extension mod_rewrite.c rewrite_module -Available in Apache 1.3 and later

      The mod_rewrite module uses a rule-based rewriting @@ -155,7 +154,7 @@ processing Security -See the Apache Security Tips +See the Apache HTTP Server Security Tips document for details on how your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server. @@ -189,7 +188,7 @@ engine logs.

      Using a high value for - Level will slow down your Apache server + Level will slow down your Apache HTTP Server dramatically! Use the rewriting logfile at a Level greater than 2 only for debugging! @@ -210,7 +209,7 @@ RewriteLogLevel 3 server configvirtual host The choice of different dbm types is available in -Apache 2.0.41 and later +Apache HTTP Server 2.0.41 and later

      The RewriteMap directive defines a @@ -350,10 +349,10 @@ $ httxt2dbm -i mapfile.txt -o mapfile.ma

    3. Internal Function
      - MapType: int, MapSource: Internal Apache + MapType: int, MapSource: Internal Apache httpd function -

      Here, the source is an internal Apache function. +

      Here, the source is an internal Apache httpd function. Currently you cannot create your own, but the following functions already exist:

      @@ -386,7 +385,7 @@ $ httxt2dbm -i mapfile.txt -o mapfile.ma '#!/path/to/interpreter' as the first line).

      -

      This program is started once, when the Apache server +

      This program is started once, when the Apache httpd server is started, and then communicates with the rewriting engine via its stdin and stdout file-handles. For each map-function lookup it will @@ -424,7 +423,7 @@ while (<STDIN>) {

      1. ``Keep it simple, stupid'' (KISS). - If this program hangs, it will cause Apache to hang + If this program hangs, it will cause Apache httpd to hang when trying to use the relevant rewrite rule.
      2. A common mistake is to use buffered I/O on @@ -645,7 +644,7 @@ RewriteRule ^index\.html$ newsite.html

        These variables all correspond to the similarly named HTTP - MIME-headers, C variables of the Apache server or + MIME-headers, C variables of the Apache HTTP Server or struct tm fields of the Unix system. Most are documented elsewhere in the Manual or in the CGI specification. Those that are special to @@ -662,12 +661,12 @@ RewriteRule ^index\.html$ newsite.html

        API_VERSION
        -
        This is the version of the Apache module API +
        This is the version of the Apache httpd module API (the internal interface between server and module) in the current httpd build, as defined in include/ap_mmn.h. The module API version - corresponds to the version of Apache in use (in - the release version of Apache 1.3.14, for + corresponds to the version of Apache httpd in use (in + the release version of Apache httpd 1.3.14, for instance, it is 19990320:10), but is mainly of interest to module authors.
        @@ -713,7 +712,7 @@ RewriteRule ^index\.html$ newsite.html

        The variables SCRIPT_FILENAME and REQUEST_FILENAME contain the same value - the value of the filename field of the internal - request_rec structure of the Apache server. + request_rec structure of the Apache HTTP Server. The first name is the commonly known CGI variable name while the second is the appropriate counterpart of REQUEST_URI (which contains the value of the @@ -734,8 +733,8 @@ RewriteRule ^index\.html$ newsite.html %{ENV:variable}, where variable can be any environment variable, is also available. This is looked-up via internal - Apache structures and (if not found there) via - getenv() from the Apache server process.

      3. + Apache httpd structures and (if not found there) via + getenv() from the Apache httpd server process.
      4. %{SSL:variable}, where variable is the @@ -996,7 +995,7 @@ RewriteRule ^/$ /homepa

        When the RewriteRule appears in per-directory (htaccess) context, the Pattern is matched against what remains of the URL after removing - the prefix that lead Apache to the current rules (see the + the prefix that lead Apache httpd to the current rules (see the RewriteBase). The removed prefix always ends with a slash, meaning the matching occurs against a string which never has a leading slash. A Pattern with ^/ never Modified: httpd/httpd/trunk/docs/manual/mod/mod_setenvif.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_setenvif.html.en?rev=926416&r1=926415&r2=926416&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_setenvif.html.en (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_setenvif.html.en Tue Mar 23 00:46:17 2010 @@ -60,7 +60,7 @@ on characteristics of the request

        See also

        top
        @@ -104,9 +104,6 @@ respect to case Override:FileInfo Status:Base Module:mod_setenvif -Compatibility:Apache 1.2 and - above (in Apache 1.2 this directive was found in the - now-obsolete mod_browser module)

        The BrowserMatchNoCase directive is @@ -222,7 +219,7 @@ of

        In the first form, the value will be set to "1". The second will remove the given variable if already defined, and the third will set the variable to the literal value given by - value. Since version 2.0.51 Apache will + value. Since version 2.0.51, Apache httpd will recognize occurrences of $1..$9 within value and replace them by parenthesized subexpressions of regex.

        @@ -259,7 +256,7 @@ of

        See also

        @@ -276,7 +273,6 @@ without respect to case Override:FileInfo Status:Base Module:mod_setenvif -Compatibility:Apache 1.3 and above

        The SetEnvIfNoCase is semantically identical to Modified: httpd/httpd/trunk/docs/manual/mod/mod_setenvif.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_setenvif.xml?rev=926416&r1=926415&r2=926416&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_setenvif.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_setenvif.xml Tue Mar 23 00:46:17 2010 @@ -49,7 +49,7 @@ on characteristics of the request

    4. -Environment Variables in Apache +Environment Variables in Apache HTTP Server BrowserMatch @@ -92,9 +92,6 @@ respect to case virtual hostdirectory .htaccess FileInfo -Apache 1.2 and - above (in Apache 1.2 this directive was found in the - now-obsolete mod_browser module) @@ -216,7 +213,7 @@ of

      In the first form, the value will be set to "1". The second will remove the given variable if already defined, and the third will set the variable to the literal value given by - value. Since version 2.0.51 Apache will + value. Since version 2.0.51, Apache httpd will recognize occurrences of $1..$9 within value and replace them by parenthesized subexpressions of regex.

      @@ -252,7 +249,7 @@ of

      set [a-z].

      -Environment Variables in Apache, +Environment Variables in Apache HTTP Server, for additional examples.
      @@ -268,7 +265,6 @@ without respect to case virtual hostdirectory .htaccess FileInfo -Apache 1.3 and above Modified: httpd/httpd/trunk/docs/manual/mod/mod_so.xml.ja URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_so.xml.ja?rev=926416&r1=926415&r2=926416&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_so.xml.ja [utf-8] (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_so.xml.ja [utf-8] Tue Mar 23 00:46:17 2010 @@ -1,7 +1,7 @@ - + + +