Remove claims that path matching can be turned case-sensitive
authorFabian Keil <fk@fabiankeil.de>
Thu, 27 Mar 2025 13:27:29 +0000 (14:27 +0100)
committerFabian Keil <fk@fabiankeil.de>
Sat, 5 Apr 2025 12:18:56 +0000 (14:18 +0200)
The suggested method doesn't actually work.

default.action.master
doc/source/user-manual.sgml

index 806927a..fd5559b 100644 (file)
 # man perlre (also available at https://perldoc.perl.org/perlre) for
 # details. The appendix to our User Manual also has some detail.
 #
-# Please note that matching in the path is CASE INSENSITIVE by default, but
-# you can switch to case sensitive by starting the pattern with the "(?-i)"
-# switch:
-#
-# www.example.com/(?-i)PaTtErN.*
-#   will match only documents whose path starts with PaTtErN in exactly this
-#   capitalization.
-#
-# Partially case-sensitive and partially case-insensitive patterns are
-# possible, but the rules about splitting them up are extremely complex
-# - see the PCRE documentation for more information.
-#
 #############################################################################
 # Action Syntax
 #############################################################################
index a1e5a7b..3c5f589 100644 (file)
@@ -2373,14 +2373,6 @@ media.example.com/.*banners
  for the beginning of a line).
 </para>
 
-<para>
- Please also note that matching in the path is <emphasis>CASE INSENSITIVE</emphasis>
- by default, but you can switch to case sensitive at any point in the pattern by using the
- <quote>(?-i)</quote> switch: <literal>www.example.com/(?-i)PaTtErN.*</literal> will match
- only documents whose path starts with <literal>PaTtErN</literal> in
- <emphasis>exactly</emphasis> this capitalization.
-</para>
-
 <variablelist>
  <varlistentry>
   <term><literal>.example.com/.*</literal></term>