line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#!/usr/bin/perl -w |
2
|
|
|
|
|
|
|
# -*- Mode: perl -*- |
3
|
|
|
|
|
|
|
#====================================================================== |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# This package is free software and is provided "as is" without |
6
|
|
|
|
|
|
|
# express or implied warranty. It may be used, redistributed and/or |
7
|
|
|
|
|
|
|
# modified under the same terms as perl itself. ( Either the Artistic |
8
|
|
|
|
|
|
|
# License or the GPL. ) |
9
|
|
|
|
|
|
|
# |
10
|
|
|
|
|
|
|
# $Id: ICal.pm,v 1.12 2001/08/04 05:53:12 srl Exp $ |
11
|
|
|
|
|
|
|
# |
12
|
|
|
|
|
|
|
# (C) COPYRIGHT 2000-2001, Reefknot developers. |
13
|
|
|
|
|
|
|
# |
14
|
|
|
|
|
|
|
# See the AUTHORS file included in the distribution for a full list. |
15
|
|
|
|
|
|
|
#====================================================================== |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
|
7966
|
use Net::ICal::Alarm; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
10
|
|
18
|
1
|
|
|
1
|
|
653
|
use Net::ICal::Attendee; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
19
|
1
|
|
|
1
|
|
575
|
use Net::ICal::Calendar; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
20
|
1
|
|
|
1
|
|
19
|
use Net::ICal::Component; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
21
|
1
|
|
|
1
|
|
27
|
use Net::ICal::Duration; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
22
|
1
|
|
|
1
|
|
586
|
use Net::ICal::ETJ; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
14
|
|
23
|
1
|
|
|
1
|
|
569
|
use Net::ICal::Event; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
11
|
|
24
|
1
|
|
|
1
|
|
581
|
use Net::ICal::Freebusy; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
25
|
1
|
|
|
1
|
|
610
|
use Net::ICal::Journal; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
26
|
1
|
|
|
1
|
|
24
|
use Net::ICal::Period; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
27
|
1
|
|
|
1
|
|
28
|
use Net::ICal::Property; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
28
|
1
|
|
|
1
|
|
700
|
use Net::ICal::Recurrence; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
22
|
|
29
|
1
|
|
|
1
|
|
43
|
use Net::ICal::Time; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
30
|
1
|
|
|
1
|
|
725
|
use Net::ICal::Todo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
12
|
|
31
|
1
|
|
|
1
|
|
53
|
use Net::ICal::Trigger; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
32
|
1
|
|
|
1
|
|
20
|
use Net::ICal::Util; |
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
54
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$VERSION = "0.15"; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Net::ICal; |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
__END__ |