# Filterfile for the Regular Substitution Module # # Syntax: One Perl-Style substitution per line. # For Details see the perlre, perlop and pcre manpages. # Note that you are free to choose the delimter as you # see fit. # # Note: in addidion to the Perl-options egimosx, U is supported # and turns the default to ungreedy matching. Add ? to quantifiers # to switch back to greedy. # # Kill OnUnload popups. Yummy. # check it out on http://www.zdnet.com/zdsubs/yahoo/tree/yfs.html # s/()/$1never$2/i # Kill refresh tags. I like to refresh myself. Manually. # check it out on http://www.airport-cgn.de/ and go to the arrivals page. # s/]*http-equiv[^>]*refresh[^>]*>//i s/]*http-equiv="?page-enter"?[^>]*content=[^>]*>//i # If I allow popups, I want them to be rezizable and have a location and status bar: # check it out on http://www.airport-cgn.de/ and go to the arrivals page. # s/resizable="?(no|0)"?/resizable=1/ig s/noresize/yesresize/ig s/location="?(no|0)"?/location=1/ig s/status="?(no|0)"?/status=1/ig s/scrolling="?(no|0|Auto)"?/scrolling=1/ig s/menubar="?(no|0)"?/menubar=1/ig #s/framespacing="?(no|0)"?//ig #s/margin(height|width)=[0-9]*//gi # Remove frameborder=0 and border=0 from framesets s/(]*?(width=['"]?468\D)[^>]*(height=['"]?60\D).*?>||ig s|]*?(width=['"]?234\D)[^>]*(height=['"]?60\D).*?>||ig s|]*?(width=['"]?88\D)[^>]*(height=['"]?31\D).*?>||ig s|]*?(width=['"]?120\D)[^>]*(height=['"]?90\D).*?>||ig s|]*?(width=['"]?120\D)[^>]*(height=['"]?60\D).*?>||ig s|]*?(width=['"]?160\D)[^>]*(height=['"]?600\D).*?>||ig s|]*?(width=['"]?120\D)[^>]*(height=['"]?600\D).*?>||ig s|]*?(width=['"]?125\D)[^>]*(height=['"]?125\D).*?>||ig s|]*?(width=['"]?120\D)[^>]*(height=['"]?240\D).*?>||ig s|]*?(width=['"]?180\D)[^>]*(height=['"]?150\D).*?>||ig s|]*?(width=['"]?300\D)[^>]*(height=['"]?250\D).*?>||ig s|]*?(width=['"]?250\D)[^>]*(height=['"]?250\D).*?>||ig s|]*?(width=['"]?240\D)[^>]*(height=['"]?400\D).*?>||ig s|]*?(width=['"]?336\D)[^>]*(height=['"]?280\D).*?>||ig # Squish WebBugs: # s/]*?(width|height) *= *['"]?1\D[^>]*?(width|height) *= *['"]?1\D.*?>//ig # Fun stuff: # s/microsoft(?!.com)/MicroSuck<\/b>/ig # Crude parental filtering? (Use along with a suitable blocklist). # Shows how to deny access to whole page based on a keyword. # # (Note: Middlesex, Sussex and Essex are counties in the UK, not rude words) # (Note #2: Is 'sex' a rude word?!) # #s%^.*(?Blocked

Blocked due to possible adult content. Please see this site.

%is #s+^.*warez.*$+No Warez

You're not searching for illegal stuff, are you?

+is # http://www.farscapezone.com/wwwboard/messages/1451.html s/(\w+) was tired/$1 needed more coffee<\/b>/ig # I'm sure you'll find more uses. # Please send your cool additions to junkbuster-users@yahoogroups.com