Subject: | Vimeo bug, with RSS feeds |
Date: | Sat, 7 May 2016 10:06:16 +0100 |
To: | bug-HTML-Miner [...] rt.cpan.org |
From: | Andy Newby <andy.newby [...] gmail.com> |
Hi,
For some reason the latest version seems to be "lock up" on Vimeo pages:
https://vimeo.com/ondemand/wizardmode/164479194
The code in question is:
my @page_rss;
while( $head =~
m/<link\s+rel=[\'\"]alternate[\'\"].*?type=[\'\"](application.*?)[\'\"].*?title=[\"\'](.*?)[\"\'].*?href=[\"\'](.*?)[\"\'].*?\/>/gis
) {
my %this_feed;
$this_feed{ TYPE } = $1 ;
$this_feed{ TITLE } = $2 ;
$this_feed{ LINK } = $3 ;
push @page_rss, \%this_feed;
}
After some debugging, I found it was this that was causing the issue (I've
commented it out in my copy, as we don't need it - but I just wanted to
alert you to the issue)
Cheers
Andy