1Data::ICal::Entry::JourUnsaelr(3C)ontributed Perl DocumeDnattaat:i:oInCal::Entry::Journal(3)
2
3
4
6 Data::ICal::Entry::Journal - Represents a journal entry in an iCalendar
7 file
8
10 my $vjournal = Data::ICal::Entry::Journal->new();
11 $vjournal->add_properties(
12 summary => "Minutes of my party",
13 description => "I cried because I wanted to.",
14 # Dat*e*::ICal is not a typo here
15 dtstart => Date::ICal->new( epoch => time )->ical,
16 );
17
18 $calendar->add_entry($vjournal);
19
21 A Data::ICal::Entry::Journal object represents a single journal entry
22 in an iCalendar file. (Note that the iCalendar RFC refers to entries
23 as "components".) It is a subclass of Data::ICal::Entry and accepts
24 all of its methods.
25
27 ical_entry_type
28 Returns "VJOURNAL", its iCalendar entry name.
29
30 optional_unique_properties
31 According to the iCalendar standard, the following properties may be
32 specified at most one time for a journal entry:
33
34 class created description dtstart dtstamp
35 last-modified organizer recurrence-id sequence status
36 summary uid url
37
38 optional_repeatable_properties
39 According to the iCalendar standard, the following properties may be
40 specified any number of times for a journal entry:
41
42 attach attendee categories comment
43 contact exdate exrule related-to rdate
44 rrule request-status
45
47 Jesse Vincent "<jesse@bestpractical.com>" with David Glasser, Simon
48 Wistow, and Alex Vandiver
49
51 Copyright (c) 2005 - 2009, Best Practical Solutions, LLC. All rights
52 reserved.
53
54 This module is free software; you can redistribute it and/or modify it
55 under the same terms as Perl itself. See perlartistic.
56
58 BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
59 FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT
60 WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
61 PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND,
62 EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
63 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
64 ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
65 YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
66 NECESSARY SERVICING, REPAIR, OR CORRECTION.
67
68 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
69 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
70 REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE
71 TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
72 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
73 SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
74 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
75 FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
76 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
77 DAMAGES.
78
79
80
81perl v5.12.0 2009-07-10 Data::ICal::Entry::Journal(3)