{"id":19648788,"url":"https://github.com/bestpractical/data-ical","last_synced_at":"2025-04-28T16:30:29.654Z","repository":{"id":543898,"uuid":"173889","full_name":"bestpractical/data-ical","owner":"bestpractical","description":null,"archived":false,"fork":false,"pushed_at":"2020-01-03T14:26:59.000Z","size":304,"stargazers_count":3,"open_issues_count":2,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-05T09:25:27.615Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://search.cpan.org/dist/Data-ICal","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bestpractical.png","metadata":{"files":{"readme":"README","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-04-12T05:18:24.000Z","updated_at":"2020-11-07T04:15:41.000Z","dependencies_parsed_at":"2022-08-16T10:30:40.456Z","dependency_job_id":null,"html_url":"https://github.com/bestpractical/data-ical","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fdata-ical","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fdata-ical/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fdata-ical/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fdata-ical/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bestpractical","download_url":"https://codeload.github.com/bestpractical/data-ical/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251345729,"owners_count":21574765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T14:49:55.419Z","updated_at":"2025-04-28T16:30:29.084Z","avatar_url":"https://github.com/bestpractical.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n    Data::ICal - Generates iCalendar (RFC 2445) calendar files\n\nINSTALLATION\n        perl Makefile.PL\n        make\n        make test\n        make install\n\nSYNOPSIS\n        use Data::ICal;\n\n        my $calendar = Data::ICal-\u003enew();\n\n        my $vtodo = Data::ICal::Entry::Todo-\u003enew();\n        $vtodo-\u003eadd_properties(\n            # ... see Data::ICal::Entry::Todo documentation\n        );\n\n        # ... or\n        $calendar = Data::ICal-\u003enew(filename =\u003e 'foo.ics'); # parse existing file\n        $calendar = Data::ICal-\u003enew(data =\u003e 'BEGIN:VCALENDAR...'); # parse from scalar\n        $calendar-\u003eadd_entry($vtodo);\n        print $calendar-\u003eas_string;\n\nDESCRIPTION\n    A Data::ICal object represents a \"VCALENDAR\" object as defined in the\n    iCalendar protocol (RFC 2445, MIME type \"text/calendar\"), as implemented\n    in many popular calendaring programs such as Apple's iCal.\n\n    Each Data::ICal object is a collection of \"entries\", which are objects\n    of a subclass of Data::ICal::Entry. The types of entries defined by\n    iCalendar (which refers to them as \"components\") include events, to-do\n    items, journal entries, free/busy time indicators, and time zone\n    descriptors; in addition, events and to-do items can contain alarm\n    entries. (Currently, Data::ICal only implements to-do items and events.)\n\n    Data::ICal is a subclass of Data::ICal::Entry; see its manpage for more\n    methods applicable to Data::ICal.\n\nMETHODS\n  new [ data =\u003e $data, ] [ filename =\u003e $file ], [ vcal10 =\u003e $bool ]\n    Creates a new Data::ICal object.\n\n    If it is given a filename or data argument is passed, then this parses\n    the content of the file or string into the object. If the \"vcal10\" flag\n    is passed, parses it according to vCalendar 1.0, not iCalendar 2.0; this\n    in particular impacts the parsing of continuation lines in\n    quoted-printable sections.\n\n    If a filename or data argument is not passed, this just sets its\n    \"VERSION\" and \"PRODID\" properties to \"2.0\" (or \"1.0\" if the \"vcal10\"\n    flag is passed) and the value of the \"product_id\" method respectively.\n\n    Returns a false value upon failure to open or parse the file or data;\n    this false value is a Class::ReturnValue object and can be queried as to\n    its \"error_message\".\n\n  parse [ data =\u003e $data, ] [ filename =\u003e $file, ]\n    Parse a \".ics\" file or string containing one, and populate $self with\n    its contents.\n\n    Should only be called once on a given object, and will be automatically\n    called by \"new\" if you provide arguments to \"new\".\n\n    Returns $self on success. Returns a false value upon failure to open or\n    parse the file or data; this false value is a Class::ReturnValue object\n    and can be queried as to its \"error_message\".\n\n  ical_entry_type\n    Returns \"VCALENDAR\", its iCalendar entry name.\n\n  product_id\n    Returns the product ID used in the calendar's \"PRODID\" property; you may\n    wish to override this in a subclass for your own application.\n\n  mandatory_unique_properties\n    According to the iCalendar standard, the following properties must be\n    specified exactly one time for a calendar:\n\n          prodid version\n\n  optional_unique_properties\n    According to the iCalendar standard, the following properties may be\n    specified at most one time for a calendar:\n\n          calscale method\n\nDEPENDENCIES\n    Data::ICal requires Class::Accessor, Text::vFile::asData,\n    MIME::QuotedPrint, and Class::ReturnValue.\n\nBUGS AND LIMITATIONS\n    Data::ICal does not support time zone daylight or standard entries, so\n    time zone components are basically useless.\n\n    While Data::ICal tries to check which properties are required and\n    repeatable, this only works in simple cases; it does not check for\n    properties that must either both exist or both not exist, or for\n    mutually exclusive properties.\n\n    Data::ICal does not check to see if property parameter names are known\n    in general or allowed on the particular property.\n\n    Data::ICal does not check to see if nested entries are nested properly\n    (alarms in todos and events only, everything else in calendars only).\n\n    The only property encoding supported by Data::ICal is quoted printable.\n\n    There is no Data::ICal::Entry::Alarm base class.\n\n    Please report any bugs or feature requests to\n    \"bug-data-ical@rt.cpan.org\", or through the web interface at\n    \u003chttp://rt.cpan.org\u003e.\n\nAUTHOR\n    Jesse Vincent \"\u003cjesse@bestpractical.com\u003e\" with David Glasser, Simon\n    Wistow, and Alex Vandiver\n\nLICENCE AND COPYRIGHT\n    Copyright (c) 2005 - 2020, Best Practical Solutions, LLC. All rights\n    reserved.\n\n    This module is free software; you can redistribute it and/or modify it\n    under the same terms as Perl itself. See perlartistic.\n\nDISCLAIMER OF WARRANTY\n    BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\n    FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\n    OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n    PROVIDE THE SOFTWARE \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER\n    EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE\n    ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH\n    YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\n    NECESSARY SERVICING, REPAIR, OR CORRECTION.\n\n    IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n    WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\n    REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE\n    TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR\n    CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\n    SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\n    RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\n    FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\n    SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\n    DAMAGES.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbestpractical%2Fdata-ical","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbestpractical%2Fdata-ical","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbestpractical%2Fdata-ical/lists"}