From: <ik...@us...> - 2009-09-07 01:13:29
|
Revision: 49 http://webfetch.svn.sourceforge.net/webfetch/?rev=49&view=rev Author: ikluft Date: 2009-09-06 23:04:36 +0000 (Sun, 06 Sep 2009) Log Message: ----------- remove dead code Modified Paths: -------------- branches/v0.13/lib/WebFetch/Input/RSS.pm Modified: branches/v0.13/lib/WebFetch/Input/RSS.pm =================================================================== --- branches/v0.13/lib/WebFetch/Input/RSS.pm 2009-09-05 09:55:18 UTC (rev 48) +++ branches/v0.13/lib/WebFetch/Input/RSS.pm 2009-09-06 23:04:36 UTC (rev 49) @@ -23,7 +23,6 @@ our $Usage = ""; # configuration parameters -our $num_links = 5; # no user-servicable parts beyond this point @@ -35,15 +34,6 @@ { my ( $self ) = @_; - # set parameters for WebFetch routines - if ( !defined $self->{num_links}) { - $self->{num_links} = $WebFetch::Input::RSS::num_links; - } - if ( !defined $self->{style}) { - $self->{style} = {}; - $self->{style}{para} = 1; - } - # set up Webfetch Embedding API data $self->{data} = {}; $self->{data}{fields} = [ "pubDate", "title", "link", "category", @@ -58,8 +48,6 @@ }; $self->{data}{records} = []; - # process the links - # parse data file $self->parse_input(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |