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 B450A11DD1 for ; Tue, 10 Jun 2014 00:03:04 +0000 (UTC) Received: (qmail 66457 invoked by uid 500); 10 Jun 2014 00:03:01 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 66373 invoked by uid 500); 10 Jun 2014 00:03:01 -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 66366 invoked by uid 99); 10 Jun 2014 00:03:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Jun 2014 00:03:01 +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, 10 Jun 2014 00:03:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 013162388860; Tue, 10 Jun 2014 00:02:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1601533 - in /httpd/httpd/branches/2.4.x/docs/manual/mod: mod_rewrite.html.en mod_rewrite.xml Date: Tue, 10 Jun 2014 00:02:39 -0000 To: cvs@httpd.apache.org From: covener@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140610000240.013162388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: covener Date: Tue Jun 10 00:02:39 2014 New Revision: 1601533 URL: http://svn.apache.org/r1601533 Log: Merge r1601532 from trunk: simplify/clarify that negation operates on an entire condition and not on the regex or the special test conditions. Comment #1291. Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.html.en httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.xml Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.html.en?rev=1601533&r1=1601532&r2=1601533&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.html.en (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.html.en Tue Jun 10 00:02:39 2014 @@ -473,8 +473,9 @@ Alias /myapp /opt/myapp-1.2.3
  1. You can prefix the pattern string with a - '!' character (exclamation mark) to specify a - non-matching pattern.
  2. + '!' character (exclamation mark) to negate the result + of the condition, no matter what kind of CondPattern is used. +
  3. You can perform lexicographical string comparisons: @@ -629,11 +630,6 @@ Alias /myapp /opt/myapp-1.2.3 -

    Note:

    - All of these tests can - also be prefixed by an exclamation mark ('!') to - negate their meaning. -
  4. Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.xml URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.xml?rev=1601533&r1=1601532&r2=1601533&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.xml (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_rewrite.xml Tue Jun 10 00:02:39 2014 @@ -729,8 +729,9 @@ Alias /myapp /opt/myapp-1.2.3
    1. You can prefix the pattern string with a - '!' character (exclamation mark) to specify a - non-matching pattern.
    2. + '!' character (exclamation mark) to negate the result + of the condition, no matter what kind of CondPattern is used. +
    3. You can perform lexicographical string comparisons: @@ -885,11 +886,6 @@ Alias /myapp /opt/myapp-1.2.3 -Note: - All of these tests can - also be prefixed by an exclamation mark ('!') to - negate their meaning. -