Text::Microformat::Element::hCal - hCal plugin for Text::Microformat


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

Index


Code Index:

NAME

Top

Text::Microformat::Element::hCal - hCal plugin for Text::Microformat

SEE ALSO

Top

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

AUTHOR

Top

Franck Cuny, <franck dot cuny at gmail.com>

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::hCal;
use warnings;
use strict;
use base 'Text::Microformat::Element';

__PACKAGE__->_init({
    criteria => {
        class => 'vevent',
    },
	schema => {
	    category => [],
	    class => [],
        description => [],
        dtend => [],
        dtstart => [],
        duration => [],
        location => [],
	    note => [],
        summary => [],
        status => [],
	    uid => [],
	    url => 'URI',
	},
});


1;