root/confluence/feedfilters/iolfilter.pl
| Revision 451, 333 bytes (checked in by confluence, 20 months ago) | |
|---|---|
|
|
| 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 | |
| 7 | while(<>) { |
| 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.
