Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml::rss::headline::fark(3pm) [debian man page]

XML::RSS::Headline::Fark(3pm)				User Contributed Perl Documentation			     XML::RSS::Headline::Fark(3pm)

NAME
XML::RSS::Headline::Fark - XML::RSS::Headline Example Subclass VERSION
2.2 SYNOPSIS
Strip out the extra Fark redirect URL and strip out the various [blahblah] blocks in the headline use XML::RSS::Feed; use XML::RSS::Headline::Fark; use LWP::Simple qw(get); my $feed = XML::RSS::Feed->new( name => "fark", url => "http://www.pluck.com/rss/fark.rss", hlobj => "XML::RSS::Headline::Fark", ); while(1) { $feed->parse(get($feed->url)); print $_->headline . " " for $feed->late_breaking_news; sleep($feed->delay); } Here is the before output in #news on irc.perl.org <rssbot> - [Sad] Elizabeth Edwards diagnosed with breast cancer <rssbot> http://go.fark.com/cgi/fark/go.pl?IDLink=1200026&location=http://www.msnbc.msn.com/id/6408022 and here is the updated output <rssbot> - Elizabeth Edwards diagnosed with breast cancer <rssbot> http://www.msnbc.msn.com/id/6408022 MUTAITED METHOD
$headline->item( $item ) Init the object for a parsed RSS item returned by XML::RSS. AUTHOR
Jeff Bisbee, "<jbisbee at cpan.org>" BUGS
Please report any bugs or feature requests to "bug-xml-rss-feed at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=XML-RSS-Feed>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc XML::RSS::Headline::Fark You can also look for information at: * AnnoCPAN: Annotated CPAN documentation <http://annocpan.org/dist/XML-RSS-Feed> * CPAN Ratings <http://cpanratings.perl.org/d/XML-RSS-Feed> * RT: CPAN's request tracker <http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-RSS-Feed> * Search CPAN <http://search.cpan.org/dist/XML-RSS-Feed> ACKNOWLEDGEMENTS
Special thanks to Rocco Caputo, Martijn van Beers, Sean Burke, Prakash Kailasa and Randal Schwartz for their help, guidance, patience, and bug reports. Guys thanks for actually taking time to use the code and give good, honest feedback. COPYRIGHT &; LICENSE Copyright 2006 Jeff Bisbee, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
XML::RSS::Feed, XML::RSS::Headline, XML::RSS::Headline::PerlJobs, XML::RSS::Headline::UsePerlJournals, POE::Component::RSSAggregator perl v5.8.8 2006-07-17 XML::RSS::Headline::Fark(3pm)

Check Out this Related Man Page

XML::Feed::Entry(3pm)					User Contributed Perl Documentation				     XML::Feed::Entry(3pm)

NAME
XML::Feed::Entry - Entry/item in a syndication feed SYNOPSIS
## $feed is an XML::Feed object. for my $entry ($feed->entries) { print $entry->title, " ", $entry->summary, " "; } DESCRIPTION
XML::Feed::Entry represents an entry/item in an XML::Feed syndication feed. USAGE
XML::Feed::Entry->new($format) Creates a new XML::Feed::Entry object in the format $format, which should be either RSS or Atom. $entry->convert($format) Converts the XML::Feed::Entry object into the $format format, and returns the new object. $entry->title([ $title ]) The title of the entry. $entry->base([ $base ]) The url base of the entry. $entry->link([ $uri ]) The permalink of the entry, in most cases, except in cases where it points instead to an offsite URI referenced in the entry. $entry->content([ $content ]) An XML::Feed::Content object representing the full entry body, or as much as is available in the feed. In RSS feeds, this method will look first for <http://purl.org/rss/1.0/modules/content/#encoded> and <http://www.w3.org/1999/xhtml#body> elements, then fall back to a <description> element. $entry->summary([ $summary ]) An XML::Feed::Content object representing a short summary of the entry. Possibly. Since RSS feeds do not have the idea of a summary separate from the entry body, this may not always be what you want. If the entry contains both a <description> element and another element typically used for the full content of the entry--either http://www.w3.org/1999/xhtml/body or <http://purl.org/rss/1.0/modules/content/#encoded>--we treat that as the summary. Otherwise, we assume that there isn't a summary, and return an XML::Feed::Content object with an empty string in the body. $entry->category([ $category ]) The category in which the entry was posted. Returns a list of categories if called in array context or the first category if called in scalar context. WARNING It's possible this API might change to have an add_category instead. $entry->tags([ $tag ]) A synonym (alias) for category; $entry->author([ $author ]) The name or email address of the person who posted the entry. $entry->id([ $id ]) The unique ID of the entry. $entry->issued([ $issued ]) A DateTime object representing the date and time at which the entry was posted. If present, $issued should be a DateTime object. $entry->modified([ $modified ]) A DateTime object representing the last-modified date of the entry. If present, $modified should be a DateTime object. $entry->wrap Take an entry in its native format and turn it into an XML::Feed::Entry object. $entry->unwrap Take an XML::Feed::Entry object and turn it into its native format. AUTHOR &; COPYRIGHT Please see the XML::Feed manpage for author, copyright, and license information. perl v5.14.2 2012-03-21 XML::Feed::Entry(3pm)
Man Page