NAME
HTML::Microformats::hEntry - an hAtom entry
SYNOPSIS
use Data::Dumper;
use HTML::Microformats::_context;
use HTML::Microformats::hAtom;
my $context = HTML::Microformats::_context->new($dom, $uri);
my @feeds = HTML::Microformats::hAtom->extract_all(
$dom->documentElement, $context);
foreach my $feed (@feeds)
{
foreach my $entry ($feed->get_entry)
{
print $entry->get_link . "\n";
}
}
DESCRIPTION
HTML::Microformats::hEntry is a helper module for HTML::Microformats::hAtom. This class is used to represent entries within feeds. Generally speaking, you want to use HTML::Microformats::hAtom instead.
HTML::Microformats::hEntry inherits from HTML::Microformats::_base. See the base class definition for a description of property getter/setter methods, constructors, etc.
BUGS
Please report any bugs to http://rt.cpan.org/.
SEE ALSO
HTML::Microformats::_base, HTML::Microformats, HTML::Microformats::hAtom, HTML::Microformats::hNews.
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT
Copyright 2008-2010 Toby Inkster
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.