1Data::ICal::Entry::TodoU(s3e)r Contributed Perl DocumentaDtaitoan::ICal::Entry::Todo(3)
2
3
4

NAME

6       Data::ICal::Entry::Todo - Represents a to-do entry in an iCalendar file
7

SYNOPSIS

9           my $vtodo = Data::ICal::Entry::Todo->new();
10           $vtodo->add_properties(
11               summary   => "go to sleep",
12               status    => 'INCOMPLETE',
13               # Dat*e*::ICal is not a typo here
14               dtstart   => Date::ICal->new( epoch => time )->ical,
15           );
16
17           $calendar->add_entry($vtodo);
18
19           $vtodo->add_entry($alarm);
20

DESCRIPTION

22       A Data::ICal::Entry::Todo object represents a single to-do entry in an
23       iCalendar file.  (Note that the iCalendar RFC refers to entries as
24       "components".)  It is a subclass of Data::ICal::Entry and accepts all
25       of its methods.
26

METHODS

28   ical_entry_type
29       Returns "VTODO", its iCalendar entry name.
30
31   optional_unique_properties
32       According to the iCalendar standard, the following properties may be
33       specified at most one time for a to-do item:
34
35             class  completed  created  description  dtstamp
36             dtstart  geo  last-modified  location  organizer
37             percent-complete  priority  recurrence-id  sequence  status
38             summary  uid  url
39
40       In addition, "due" and "duration" may be specified at most once each,
41       but not both in the same entry (though this restriction is not
42       enforced).
43
44   optional_repeatable_properties
45       According to the iCalendar standard, the following properties may be
46       specified any number of times for a to-do item:
47
48             attach  attendee  categories  comment  contact
49             exdate  exrule  request-status  related-to  resources
50             rdate  rrule
51

AUTHOR

53       Jesse Vincent "<jesse@bestpractical.com>" with David Glasser, Simon
54       Wistow, and Alex Vandiver
55
57       Copyright (c) 2005 - 2009, Best Practical Solutions, LLC.  All rights
58       reserved.
59
60       This module is free software; you can redistribute it and/or modify it
61       under the same terms as Perl itself. See perlartistic.
62

DISCLAIMER OF WARRANTY

64       BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
65       FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT
66       WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
67       PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND,
68       EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
69       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
70       ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
71       YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
72       NECESSARY SERVICING, REPAIR, OR CORRECTION.
73
74       IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
75       WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
76       REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE
77       TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
78       CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
79       SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
80       RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
81       FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
82       SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
83       DAMAGES.
84
85
86
87perl v5.12.0                      2009-07-10        Data::ICal::Entry::Todo(3)
Impressum