root/confluence/feedfilters/iolfilter.pl

Revision 451, 333 bytes (checked in by confluence, 20 months ago)

added top-level directory for all my stuff, and Liferea filters.

  • Property svn:executable set to *
Line 
1#!/usr/bin/perl
2
3# This filter converts the convoluted redirection URLs in IOL's news feeds to shorter, neater direct URLs.
4# Written by Adrianna Pinska
5# Licence: GPLv3
6
7while(<>) {
8    s#<link>http://www.iol.co.za/widgets/rss_redirect.php\?artid=([^&<]*)[^<]*</link>#<link>http://www.iol.co.za/?art_id=\1</link>#g;
9    print $_;
10}
Note: See TracBrowser for help on using the browser.