X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=doc%2Fsource%2Fuser-manual.sgml;h=ee407879da8f2213f624d894f61f59629a19c121;hb=4275688fd03e2e31aa958ee4bb0389e1e6254311;hp=a75a09dbc2c61f8503b2d01f99c547fd16628ba0;hpb=854cc1ce0089a2cadd2559fc4f7f2172bba6adc5;p=privoxy.git diff --git a/doc/source/user-manual.sgml b/doc/source/user-manual.sgml index a75a09db..ee407879 100644 --- a/doc/source/user-manual.sgml +++ b/doc/source/user-manual.sgml @@ -36,7 +36,7 @@ This file belongs into ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/ - $Id: user-manual.sgml,v 2.175 2013/03/20 11:30:28 fabiankeil Exp $ + $Id: user-manual.sgml,v 2.180 2014/05/05 09:48:36 fabiankeil Exp $ Copyright (C) 2001-2013 Privoxy Developers http://www.privoxy.org/ See LICENSE. @@ -62,7 +62,7 @@ -$Id: user-manual.sgml,v 2.175 2013/03/20 11:30:28 fabiankeil Exp $ +$Id: user-manual.sgml,v 2.180 2014/05/05 09:48:36 fabiankeil Exp $ -The Domain Pattern +The Host Pattern - The matching of the domain part offers some flexible options: if the - domain starts or ends with a dot, it becomes unanchored at that end. + The matching of the host part offers some flexible options: if the + host pattern starts or ends with a dot, it becomes unanchored at that end. + The host pattern is often referred to as domain pattern as it is usually + used to match domain names and not IP addresses. For example: @@ -6533,9 +6545,35 @@ stupid-server.example.com/ in a syntax that imitates Perl's s/// operator. If you are familiar with Perl, you will find this to be quite intuitive, and may want to look at the - PCRS documentation for the subtle differences to Perl behaviour. Most - notably, the non-standard option letter U is supported, - which turns the default to ungreedy matching. + PCRS documentation for the subtle differences to Perl behaviour. + + + + Most notably, the non-standard option letter U is supported, + which turns the default to ungreedy matching (add ? to + quantifiers to turn them greedy again). + + + + The non-standard option letter D (dynamic) allows + to use the variables $host, $origin (the IP address the request came from), + $path and $url. The will be replaced with the value they refer to before + the filter is executed. + + + + Note that '$' is a bad choice as delimiter for dynamic filters as you + might end up with unintended variables if you use a variable name + directly after the delimiter. Variables will be resolved without + escaping anything, therefore you also have to be careful not to chose + delimiters that appear in the replacement text. For example '<' should + be save, while '?' will sooner or later cause conflicts with $url. + + + + The non-standard option letter T (trivial) prevents + parsing for backreferences in the substitute. Use if you want to include + text like '$&' in your substitute without quoting.