line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Text::Microformat::Element::hCal; |
2
|
3
|
|
|
3
|
|
4086
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
97
|
|
3
|
3
|
|
|
3
|
|
15
|
use strict; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
92
|
|
4
|
3
|
|
|
3
|
|
15
|
use base 'Text::Microformat::Element'; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
464
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->_init({ |
7
|
|
|
|
|
|
|
criteria => { |
8
|
|
|
|
|
|
|
class => 'vevent', |
9
|
|
|
|
|
|
|
}, |
10
|
|
|
|
|
|
|
schema => { |
11
|
|
|
|
|
|
|
category => [], |
12
|
|
|
|
|
|
|
class => [], |
13
|
|
|
|
|
|
|
description => [], |
14
|
|
|
|
|
|
|
dtend => [], |
15
|
|
|
|
|
|
|
dtstart => [], |
16
|
|
|
|
|
|
|
duration => [], |
17
|
|
|
|
|
|
|
location => [], |
18
|
|
|
|
|
|
|
note => [], |
19
|
|
|
|
|
|
|
summary => [], |
20
|
|
|
|
|
|
|
status => [], |
21
|
|
|
|
|
|
|
uid => [], |
22
|
|
|
|
|
|
|
url => 'URI', |
23
|
|
|
|
|
|
|
}, |
24
|
|
|
|
|
|
|
}); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Text::Microformat::Element::hCal - hCal plugin for Text::Microformat |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SEE ALSO |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
L, L |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 AUTHOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Franck Cuny, C<< >> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 BUGS |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Log bugs and feature requests here: L |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 SUPPORT |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Project homepage: L |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
51
|
|
|
|
|
|
|
under the same terms as Perl itself. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
1; |