X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=default.filter;h=72ec7a2e8d67de83c0bb2c7cc4a6273eeb5f802b;hp=b5ca574463ac4cf2ad1735afe2dc26b2d42f89d3;hb=bcbae9c5c737ece712624e9bf06d1b23a8b39476;hpb=93065fa0aef98a889c27ddc0b9f1b08632ef388e diff --git a/default.filter b/default.filter index b5ca5744..72ec7a2e 100644 --- a/default.filter +++ b/default.filter @@ -2,7 +2,7 @@ # # File : $Source: /cvsroot/ijbswa/current/default.filter,v $ # -# $Id: default.filter,v 1.77 2010/02/05 21:41:31 fabiankeil Exp $ +# $Id: default.filter,v 1.81 2011/06/23 13:58:53 fabiankeil Exp $ # # Purpose : Rules to process the content of web pages # @@ -603,7 +603,7 @@ s@@\n\n$0@ # Are these ids still in use? @@ -764,6 +767,34 @@ CLIENT-HEADER-TAGGER: css-requests Tags detected CSS requests as "CSS-REQUEST". s@^Accept:\s*text/css.*@CSS-REQUEST@i +################################################################################# +# +# range-requests: Tags range requests as "RANGE-REQUEST". +# +# By default Privoxy removes Range headers for requests to +# ressources that will be filtered to make sure the filters +# get the whole picture. Otherwise Range requests could be +# intentionally used to circumvent filters or, less likely, +# filtering a partial response may damage it because it matched +# a pattern that the ressource as a whole wouldn't. +# +# Range requests can be useful and save bandwidth so instead +# of removing Range headers for requests to ressources that +# will be filtered, you may prefer to simply disable filtering +# for those requests. +# +# That's what this tagger is all about. After enabling it, +# you can disable filtering for range requests using the following +# action section: +# +# {-filter -deanimate-gifs} +# TAG:^RANGE-REQUEST +# +################################################################################# +CLIENT-HEADER-TAGGER: range-requests Tags range requests as "RANGE-REQUEST". + +s@^Range:.*@RANGE-REQUEST@i + ################################################################################# # # client-ip-address: Tags the request with the client's IP address.