From: Eric Covener Date: Tue, 10 Jun 2014 00:02:02 +0000 (+0000) Subject: simplify/clarify that negation operates on an entire condition and not X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3c38f5a9a69a9414c800f7bb3442ddd5d3b9ed9;p=thirdparty%2Fapache%2Fhttpd.git simplify/clarify that negation operates on an entire condition and not on the regex or the special test conditions. Comment #1291. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1601532 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en index e310b299f88..322ac16fe8a 100644 --- a/docs/manual/mod/mod_rewrite.html.en +++ b/docs/manual/mod/mod_rewrite.html.en @@ -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. diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 5d7bab24505..59904704c86 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -727,8 +727,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: @@ -883,11 +884,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. -