From: hal9 Date: Fri, 28 Sep 2001 02:18:12 +0000 (+0000) Subject: Fixing my markup errors :( X-Git-Tag: v_2_9_9~30 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=eb410372999579a19c6aad3aeef5d3f4cf47b739 Fixing my markup errors :( --- diff --git a/doc/source/user-manual.sgml b/doc/source/user-manual.sgml index dae003d9..98904179 100644 --- a/doc/source/user-manual.sgml +++ b/doc/source/user-manual.sgml @@ -7,7 +7,7 @@ This file belongs into ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/ - $Id: user-manual.sgml,v 1.8 2001/09/25 00:34:59 hal9 Exp $ + $Id: user-manual.sgml,v 1.9 2001/09/27 23:50:29 hal9 Exp $ Written by and Copyright (C) 2001 the SourceForge IJBSWA team. http://ijbswa.sourceforge.net @@ -30,7 +30,7 @@ Hal Burgiss Junkbuster User Manual -$Id: user-manual.sgml,v 1.8 2001/09/25 00:34:59 hal9 Exp $ +$Id: user-manual.sgml,v 1.9 2001/09/27 23:50:29 hal9 Exp $ @@ -97,6 +97,63 @@ You can find the latest version of the user manual at Feature + url="http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse">Feature request page at SourceForge. There is also an archive there. @@ -2736,7 +2793,7 @@ communication (bugs, feature requests, etc.) - /.*/banners/.* - A simple example + /.*/banners/.* - A simple example that uses the common combination of . and * to denote any character, zero or more times. In other words, any string at all. So we start with a literal forward slash, then our regular expression pattern @@ -2758,7 +2815,7 @@ communication (bugs, feature requests, etc.) - /.*/adv((er)?ts?|ertis(ing|ements?))?/ - + /.*/adv((er)?ts?|ertis(ing|ements?))?/ - We have several literal forward slashes again (/), so we are building another expression that is a file path statement. We have another .*, so we are matching against any conceivable sub-path, just so @@ -2790,7 +2847,7 @@ communication (bugs, feature requests, etc.) - /.*/advert[0-9]+\.(gif|jpe?g) - Again + /.*/advert[0-9]+\.(gif|jpe?g) - Again another path statement with forward slashes. Anything in the square brackets [] can be matched. This is using 0-9 as a shorthand expression to mean any digit one through nine. It is the same as @@ -2818,7 +2875,7 @@ communication (bugs, feature requests, etc.) - s/microsoft(?!.com)/MicroSuck/i - This is + s/microsoft(?!.com)/MicroSuck/i - This is a substitution. MicroSuck will replace any occurence of microsoft. The i at the end of the expression means ignore case. The (?!.com) means @@ -2866,14 +2923,13 @@ communication (bugs, feature requests, etc.) Temple Place - Suite 330, Boston, MA 02111-1307, USA. $Log: user-manual.sgml,v $ -<<<<<<< user-manual.sgml -======= + Revision 1.9 2001/09/27 23:50:29 hal9 + A few changes. A short section on regular expression in appendix. + Revision 1.8 2001/09/25 00:34:59 hal9 Some additions, and re-arranging. - ->>>>>>> 1.8 Revision 1.7 2001/09/24 14:31:36 hal9 Diddling.