| Text-Microformat documentation | Contained in the Text-Microformat distribution. |
Text::Microformat::Element::hCal - hCal plugin for Text::Microformat
Franck Cuny, <franck dot cuny at gmail.com>
Log bugs and feature requests here: http://code.google.com/p/ufperl/issues/list
Project homepage: http://code.google.com/p/ufperl/
Copyright 2007 Keith Grennan, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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;