summaryrefslogtreecommitdiff
path: root/time/py-icalendar
AgeCommit message (Collapse)AuthorFilesLines
2010-01-20Update to 2.1:wiz3-20/+6
2.1 (2009-12-14) ================ * Fix deprecation warnings about `object.__init__` taking no parameters. * Set the VALUE parameter correctly for date values. * Long binary data would be base64 encoded with newlines, which made the iCalendar files incorrect. (This still needs testing). * Correctly handle content lines which include newlines.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
2009-05-20Update to 2.0.1, prodded by Daniel A Graham, and include a portabilitywiz4-11/+26
patch for Python 2.6 by him. iCalendar 2.0.1 (2008-07-11) ============================ API Changes: * EXDATE and RDATE now returns a vDDDLists object, which contains a list of vDDDTypes objects. This is do that EXDATE and RDATE can contain lists of dates, as per RFC. ***Note!***: This change is incompatible with earlier behavior, so if you handle EXDATE and RDATE you will need to update your code. * When createing a vDuration of -5 hours (which in itself is nonsensical), the ical output of that was -P1DT19H, which is correct, but ugly. Now it's '-PT5H', which is prettier. * Made the tests run under Python 2.5+ * Renamed the UTC class to Utc, so it would not clash with the UTC object, since that rendered the UTC object unpicklable.
2009-05-19Initial import of py-icalendar, packaged for pkgsrc-wip by mj_turnerwiz4-0/+81
with changed by jihbed. The iCalendar package is a parser/generator of iCalendar files for use with Python. It follows the RFC 2445 (iCalendar) specification The package can both generate and parse iCalendar files, and can easily be used as is. The aim is to make a package that is fully compliant to RFC 2445, well designed, simple to use and well documented.