Text::Microformat::Element::hGrant - hGrant plugin for Text::Microformat


Text-Microformat documentation Contained in the Text-Microformat distribution.

Index


Code Index:

NAME

Top

Text::Microformat::Element::hGrant - hGrant plugin for Text::Microformat

SEE ALSO

Top

Text::Microformat, http://microformats.org

AUTHOR

Top

Keith Grennan, <kgrennan at cpan.org>

BUGS

Top

Log bugs and feature requests here: http://code.google.com/p/ufperl/issues/list

SUPPORT

Top

Project homepage: http://code.google.com/p/ufperl/

COPYRIGHT & LICENSE

Top


Text-Microformat documentation Contained in the Text-Microformat distribution.

package Text::Microformat::Element::hGrant;
use warnings;
use strict;
use base 'Text::Microformat::Element';

__PACKAGE__->_init({
    criteria => {
        class => 'hgrant',
    },
	schema => {
		title => [],
	    period => [qw/dtstart dtend/],
	    grantee => 'hCard',
	    grantor => 'hCard',
	    description => [],
	    amount => [qw/currency amount/],
	    url => 'URI',
		id => [],
		'geo-focus' => [qw/country region locality postal-code/],
		'program-focus' => {
		    tags => '!rel-tag',
		},
		tags => '!rel-tag',
	},
});

1;