/usr/share/perl5/RDF/iCalendar.pm is in librdf-icalendar-perl 0.004-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | package RDF::iCalendar;
use 5.008;
use strict;
use RDF::iCalendar::Exporter;
BEGIN {
$RDF::iCalendar::AUTHORITY = 'cpan:TOBYINK';
$RDF::iCalendar::VERSION = '0.004';
}
1;
__END__
=head1 NAME
RDF::iCalendar - convert from RDF to iCalendar
=head1 DESCRIPTION
This module doesn't do anything itself; it just loads RDF::iCalendar::Exporter
for you.
=head2 RDF::iCalendar::Exporter
L<RDF::iCalendar::Exporter> takes some RDF using the W3C's iCalendar vocabulary,
and outputs L<RDF::iCalendar::Entity> objects.
=head2 RDF::iCalendar::Importer
B<RDF::vCard::Importer> will do the reverse, but doesn't exist yet.
=head2 RDF::iCalendar::Entity
An L<RDF::iCalendar::Entity> objects is an individual iCalendar calendar. It overloads
stringification, so just treat it like a string.
=head2 RDF::iCalendar::Line
L<RDF::iCalendar::Line> is internal fu that you probably don't want to touch.
=head1 BUGS
Please report any bugs to
L<https://rt.cpan.org/Public/Dist/Display.html?Name=RDF-iCalendar>.
=head1 SEE ALSO
L<http://www.w3.org/TR/rdfcal/>.
L<http://www.perlrdf.org/>.
L<RDF::vCard>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT
Copyright 2011, 2013 Toby Inkster
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|