
Feed::Source::Page2RSS - Creation of a Atom/RSS feed with the Page2RSS service

Version 0.01

Page2RSS create a Atom/RSS feed to monitor a webpage. This module help you to create these feeds.
use Feed::Source::Page2RSS; my $feed = Feed::Source::Page2RSS->new( url => "http://www.google.com", feed_type => "rss" ); my $feed_url = $feed->url_feed(); or my $feed = Feed::Source::Page2RSS->new( url => "http://www.google.com" ); my $atom = $feed->atom_feed(); is equivalent to my $feed = Feed::Source::Page2RSS->new( url => "http://www.google.com" ); $feed->feed_type('atom'); my $atom = $feed->url_feed(); or my $feed = Feed::Source::Page2RSS->new( url => "http://www.google.com" ); my $rss = $feed->rss_feed(); is equivalent to my $feed = Feed::Source::Page2RSS->new( url => "http://www.google.com" ); $feed->feed_type('rss'); my $rss = $feed->url_feed();

Constructor of the Feed::Source::Page2RSS object. You can spcecify the following options :
Adjust the feed type. Possible value are RSS and Atom.
Return the URL feed.
Return the Atom URL feed.
Return the RSS URL feed.

Emmanuel Di Pretoro, <<manu at bjornoya.net>>

Please report any bugs or feature requests to bug-feed-source-page2rss at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Feed-Source-Page2RSS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Feed::Source::Page2RSS
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Feed-Source-Page2RSS

Page2RSS http://page2rss.com

Copyright 2006 Emmanuel Di Pretoro, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.