And, if you want, I can give you a nine-line perl script that will allow Adblock Plus to use Filterset.G as an Adblock Plus subscription, as long as you have a web server that you can put a Perl CGI script on:

Code:
#!/usr/bin/perl

use LWP::Simple;

my $base = "http://www.pierceive.com/filtersetg";

my $content = get("$base/latest.txt");

print <<EOF
Location: $base/$content
Content-Type: text/html

The document has moved <a href="$base/$content">here</a>.
EOF


I'm sure writing one in PHP would be equally as trivial.