The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for Perl module POE::Component::RSSAggregator

0.27
	- Updated pod (removed reference to XML::RSS::Feed::Factory)
	- removed calls to failed_to_fetch and failed_to_parse

0.26
	- fixed 'remove_feed' so that it when it yielded 'pause_feed'
	  that it would actually work.
	- updated pod to show 'alias' as a new() param

0.25
	- ATTENTION! new() param 'feeds' has been deprecated, use 
	  add_feed instead

	      $heap->{rssagg} = POE::Component::RSSAggregator->new(
		  debug    => 1,
		  callback => $session->postback("handle_feed"),
		  tmpdir   => '/tmp', # optional caching
	      );

	    $kernel->post('rssagg','add_feed',$_) for @feeds;
	
	- fixed the pod not to use XML::RSS::Feed::Factory in the example

0.20
	- ATTENTION! You no longer need to use XML::RSS::Feed::Factory
	  to defined 'feeds', just pass an array ref of hash refs 
	  for each feed you'd like to watch.
	- Fixed POD example so it actually works :D
	- added 'tmpdir' param to pass to XML::RSS::Feed objects to 
	  cache XML on DESTROY and to attempt to load and parse old
	  headlines when the object is initialized.
	- added 'feed' accessor method to fetch XML::RSS::Feed objects

0.10
	- Now use XML::RSS::Headline instead of XML::RSS::Feed::Headline
	- added an accessor 'feeds' for to the hash of rss feeds
	- use delay_set instead of delay_add.  This is for the future
	  support of adding, reloading, removing feeds.
	- use POE postback instead of sub reference for callback
	- updated the pod with a POE session example

0.01
	- original version