~ubuntu-branches/ubuntu/quantal/libdata-ical-perl/quantal

« back to all changes in this revision

Viewing changes to lib/Data/ICal/Entry/Journal.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Nathan Handler, gregor herrmann
  • Date: 2009-07-13 19:53:11 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090713195311-i3yhxyumglrjgzjc
Tags: 0.16+dfsg-1
* New upstream release
  + Fixed escaping of backslash (\) characters
  + Always use CRLF as the newline character, per RFC 3445
* Added /me to Uploaders and Copyright
* Standards-Version 3.8.2 (no changes)
* Use shorter debhelper format
* debian/rules: Get around Module::Install 0.85 bug, which causes
  CPAN to be executed during build (ick!)

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

[ gregor herrmann ]
* debian/control: bump debhelper to 7.0.50 (override_* feature).

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
Data::ICal::Entry::Journal - Represents a journal entry in an iCalendar file
11
11
 
12
 
 
13
12
=head1 SYNOPSIS
14
13
 
15
14
    my $vjournal = Data::ICal::Entry::Journal->new();
21
20
    );
22
21
 
23
22
    $calendar->add_entry($vjournal);
24
 
  
 
23
 
25
24
=head1 DESCRIPTION
26
25
 
27
 
A L<Data::ICal::Entry::Journal> object represents a single journal entry in an iCalendar file.
28
 
(Note that the iCalendar RFC refers to entries as "components".)  It is a subclass
29
 
of L<Data::ICal::Entry> and accepts all of its methods.
 
26
A L<Data::ICal::Entry::Journal> object represents a single journal
 
27
entry in an iCalendar file.  (Note that the iCalendar RFC refers to
 
28
entries as "components".)  It is a subclass of L<Data::ICal::Entry>
 
29
and accepts all of its methods.
30
30
 
31
31
=head1 METHODS
32
32
 
42
42
 
43
43
=head2 optional_unique_properties
44
44
 
45
 
According to the iCalendar standard, the following properties may be specified
46
 
at most one time for a journal entry:
 
45
According to the iCalendar standard, the following properties may be
 
46
specified at most one time for a journal entry:
47
47
 
48
48
    class  created  description  dtstart  dtstamp 
49
49
    last-modified  organizer  recurrence-id  sequence  status 
61
61
 
62
62
=head2 optional_repeatable_properties
63
63
 
64
 
According to the iCalendar standard, the following properties may be specified
65
 
any number of times for a journal entry:
 
64
According to the iCalendar standard, the following properties may be
 
65
specified any number of times for a journal entry:
66
66
 
67
67
        attach  attendee  categories  comment 
68
68
        contact  exdate  exrule  related-to  rdate 
80
80
 
81
81
=head1 AUTHOR
82
82
 
83
 
Jesse Vincent  C<< <jesse@bestpractical.com> >> with David Glasser and Simon Wistow
84
 
 
 
83
Jesse Vincent C<< <jesse@bestpractical.com> >> with David Glasser,
 
84
Simon Wistow, and Alex Vandiver
85
85
 
86
86
=head1 LICENCE AND COPYRIGHT
87
87
 
88
 
Copyright (c) 2005, Best Practical Solutions, LLC.  All rights reserved.
 
88
Copyright (c) 2005 - 2009, Best Practical Solutions, LLC.  All rights reserved.
89
89
 
90
90
This module is free software; you can redistribute it and/or
91
91
modify it under the same terms as Perl itself. See L<perlartistic>.