The NetBSD Project

CVS log for pkgsrc/time/py-icalendar/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / time / py-icalendar

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.51: download - view: text, markup, annotated - select for diffs
Sat Apr 12 13:36:49 2025 UTC (7 days, 16 hours ago) by wiz
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2 lines
py-icalendar: update to 6.1.3.

6.1.3 (2025-03-19)

Bug fixes:

    Fix to permit TZID forward references to VTIMEZONEs
    Stabelize timezone id lookup, see Issue 780.

6.1.2 (2025-03-19)

Minor changes:

    Add funding link to Tidelift.
    Link to related package.
    Shorten first example in documentation.
    Add name and email properties to vCalAddress.
    Add type hint for property params in icalendar.prop.
    Set default value for params as params={} in mulitple constructors in icalendar.prop to improve usability.
    Improve object initialization performance in icalendar.prop.
    Add type hint for params in multiple constructors in icalendar.prop.

Bug fixes:

    Restrict timezones tested, see Issue 763

Revision 1.50: download - view: text, markup, annotated - select for diffs
Sun Jan 19 18:46:34 2025 UTC (2 months, 4 weeks ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2025Q1-base, pkgsrc-2025Q1
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +4 -4 lines
py-icalendar: update to 6.1.1.

6.1.1 (2025-01-18)

Minor changes:

    Add a weekday attribute to :class:`icalendar.prop.vWeekday` components. See Issue 749.
    Document :class:`icalendar.prop.vRecur` property. See Issue 758.
    Print failure of doctest to aid debugging.
    Improve documentation of :class:`icalendar.prop.vGeo`
    Fix tests, improve code readability, fix typing. See Issue 766 and Issue 765.

Breaking changes:

    The relative attribute of vWeekday components has the correct sign now. See Issue 749.

New features:

    Add :ref:`Security Policy`
    Python types in documentation now link to their documentation pages using intersphinx.

Revision 1.49: download - view: text, markup, annotated - select for diffs
Sun Nov 24 10:25:40 2024 UTC (4 months, 3 weeks ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q4-base, pkgsrc-2024Q4
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +2 -2 lines
py-icalendar: update to 6.1.0.

Minor changes:
    Add end, start, duration, DTSTART, DUE, and DURATION attributes to Todo components. See Issue 662.
    Add DTSTART, TZOFFSETTO and TZOFFSETFROM properties to TimezoneStandard and TimezoneDaylight. See Issue 662.
    Format test code with Ruff. See Issue 672.
    Document the Debian package. See Issue 701.
    Document vDatetime.from_ical
    Allow passing a datetime.date to TZP.localize_utc and TZP.localize methods.
    Document component classes with description from RFC 5545.
    Merge “File Structure” and “Overview” sections in the docs. See Issue 626.
    Update code blocks in usage.rst with the correct lexer.
    Tidy up the docstring for icalendar.prop.vPeriod.
    Improve typing and fix typing issues

New features:
    Add VALARM properties for RFC 9074. See Issue 657
    Test compatibility with Python 3.13
    Add Timezone.from_tzinfo() and Timezone.from_tzid() to create a Timezone component from a datetime.tzinfo timezone. See Issue 722.
    Add icalendar.prop.tzid_from_tzinfo.
    Add icalendar.alarms module to calculate alarm times. See Issue 716.
    Add Event.alarms and Todo.alarms to access alarm calculation.
    Add Component.DTSTAMP and Component.LAST_MODIFIED properties for datetime in UTC.
    Add Component.is_thunderbird() to check if the component uses custom properties by Thunderbird.
    Add X_MOZ_SNOOZE_TIME and X_MOZ_LASTACK properties to Event and Todo.
    Add Alarm.ACKNOWLEDGED, Alarm.TRIGGER, Alarm.REPEAT, and Alarm.DURATION properties as well as Alarm.triggers to calculate alarm triggers.
    Add __doc__ string documentation for vDate, vBoolean, vCalAddress, vDuration, vFloat, vGeo, vInt, vPeriod, vTime, vUTCOffset and vUri. See Issue 742.
    Add DTSTART, TZOFFSETTO, and TZOFFSETFROM to TimezoneStandard and TimezoneDaylight
    Use example methods of components without arguments.
    Add events, timezones, and todos property to Calendar for nicer access.
    To calculate which timezones are in use and add them to the Calendar when needed these methods are added: get_used_tzids, get_missing_tzids, and add_missing_timezones.
    Identify the TZID of more timezones from dateutil.
    Identify totally unknown timezones using a UTC offset lookup tree generated in icalendar.timezone.equivalent_timezone_ids and stored in icalendar.timezone.equivalent_timezone_ids.
    Add icalendar.timezone.tzid to identify a timezone’s TZID.

Bug fixes:
    Add icalendar.timezone to the documentation.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Mon Oct 14 09:43:57 2024 UTC (6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +5 -1 lines
py-icalendar: add test status and upstream bug report URL

Revision 1.47: download - view: text, markup, annotated - select for diffs
Mon Oct 14 05:27:42 2024 UTC (6 months ago) by adam
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +6 -11 lines
py-icalendar: updated to 6.0.1

6.0.1 (2024-10-13)

New features:

Added Event.end, Event.start, Event.dtstart, and Event.dtend attributes. See Issue 662.
Test compatibility with Python 3.13

Bug fixes:

Fix a few __all__ variables.
Added missing docs folder to distribution packages.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Sat Oct 12 10:50:04 2024 UTC (6 months, 1 week ago) by wiz
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +13 -6 lines
py-icalendar: update to 6.0.0.

6.0.0 (2024-09-28)

Minor changes:
    Add __all__ variable to each modules in icalendar package
    Improve test coverage.
    Adapt test_with_doctest.py to correctly run on Windows.
    Measure branch coverage when running tests.
    Export Component base class for typing
New features:
    Use pyproject.toml file instead of setup.py
Bug fixes:
    Fix link to stable release of tox in documentation.
    Fix a bad bytes replace in unescape_char.
    Handle ValueError in vBinary.from_ical.
    Ignore the BOM character in incorrectly encoded ics files.

6.0.0a0 (2024-07-03)

Minor changes:
    Test that all code works with both pytz and zoneinfo.
    Add message to GitHub release, pointing to the changelog
    Make coverage report submission optional for pull requests
    Parallelize coverage
    Rename master branch to main, see Issue
    Update docs/usage.rst to use zoneinfo instead of pytz.
    Added missing public classes and functions to API documentation.
    Improved namespace management in the icalendar directory.
    Add Python version badge and badge for test coverage
    Remove 4.x badge
    Update list of tox environments
    Use Coveralls’ GitHub Action
    Check distribution in CI
Breaking changes:
    Use zoneinfo for icalendar objects created from strings, see Issue #609.
    This is an tested extension of the functionality, not a restriction: If you create icalendar objects with pytz timezones in your code, icalendar will continue to work in the same way. Your code is not affected.
    zoneinfo will be used for those objects that icalendar creates itself. This happens for example when parsing an .ics file, strings or bytes with from_ical().
    If you rely on icalendar providing timezones from pytz, you can add one line to your code to get the behavior of versions below 6:
    import icalendar
    icalendar.use_pytz()
Replaced pkg_resources.get_distribution with importlib.metadata in docs/conf.py to allow building docs on Python 3.12.
Remove is_broken property. Use errors instead to check if a component had suppressed parsing errors. See Issue 424.
Remove untested and broken LocalTimezone and FixedOffset tzinfo sub-classes, see Issue 67
Remove Python 3.7 as compatible. icalendar is compatible with Python versions 3.8 - 3.12, and PyPy3.
Remove pytz as a dependency of icalendar. If you require pytz, add it to your dependency list or install it additionally with:
pip install icalendar==6.* pytz
New features:
    Check code quality with Ruff, optional report
    Test compatibility with Python 3.12
    Add function icalendar.use_pytz().
    Allows selecting components with walk(select=func) where func takes a component and returns True or False.
    Add compatibility to RFC 7529, adding vMonth and vSkip
    Add sphinx-autobuild for livehtml Makefile target.
    Add pull request preview on Read the Docs, building only on changes to documentation-related files.
    Add link to pull request preview builds in the pull request description only when there are changes to documentation-related files.
    Add documentation of live HTML preview of documentation and clean up of install.rst.
    Add sphinx-copybutton to allow copying code blocks with a single click of a button.
Bug fixes:
    Change documentation to represent compatibility with Python 3.8 - 3.12, and PyPy3.
    Rename RFC 2445 to RFC 5545, see Issue 278

Revision 1.45: download - view: text, markup, annotated - select for diffs
Wed Jun 26 16:29:02 2024 UTC (9 months, 3 weeks ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base, pkgsrc-2024Q3
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -2 lines
py-icalendar: update to 5.0.13.

5.0.13 (2024-06-20)
-------------------

Minor changes:

- Guide to delete the build folder before running tests
- Add funding information
- Make documentation build with Python 3.12
- Update windows to olson conversion for Greenland Standard Time
- Extend examples in Usage with alarm and recurrence
- Document how to serve the built documentation to view with the browser
- Improve test coverage

New features:

- Create GitHub releases for each tag.

Bug fixes:

- Parse calendars with X-COMMENT properties at the end the file by ignoring these properites

Revision 1.44: download - view: text, markup, annotated - select for diffs
Fri Apr 5 10:39:47 2024 UTC (12 months, 2 weeks ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q2-base, pkgsrc-2024Q2
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +4 -2 lines
py-icalendar: update to 5.0.12.

5.0.12 (2024-03-19)
-------------------

Minor changes:

- Added corpus to fuzzing directory
- Added exclusion of fuzzing corpus in MANIFEST.in
- Augmented fuzzer to optionally convert multiple calendars from a source string
- Add script to convert OSS FUZZ test cases to Python/pytest test cases
- Added additional exception handling of defined errors to fuzzer, to allow fuzzer to explore deeper
- Added more instrumentation to fuzz-harness
- Rename "contributor" to "collaborator" in documentation
- Correct the outdated "icalendar view myfile.ics" command in documentation. #588
- Update GitHub Actions steps versions
- Keep GitHub Actions up to date with GitHub's Dependabot

Bug fixes:

- ...
- Fixed index error in cal.py when attempting to pop from an empty stack
- Fixed type error in prop.py when attempting to join strings into a byte-string
- Caught Wrong Date Format in ical_fuzzer to resolve fuzzing coverage blocker

Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Nov 6 13:53:16 2023 UTC (17 months, 1 week ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +5 -6 lines
py-icalendar: update to 5.0.11.

5.0.11 (2023-11-03)
-------------------

Minor changes:

- The cli utility now displays start and end datetimes in the user's local timezone.
  Ref: #561
  [vimpostor]

New features:

- Added fuzzing harnesses, for integration to OSSFuzz.
- icalendar releases are deployed to Github releases
  Fixes: #563
  [jacadzaca]

Bug fixes:

- CATEGORIES field now accepts a string as argument
  Ref: #322
  [jacadzaca]
- Multivalue FREEBUSY property is now parsed properly
  Ref: #27
  [jacadzaca]
- Compare equality and inequality of calendars more completely
  Ref: #570
- Use non legacy timezone name.
  Ref: #567
- Add some compare functions.
  Ref: #568
- Change OSS Fuzz build script to point to harnesses in fuzzing directory
  Ref: #574

Revision 1.42: download - view: text, markup, annotated - select for diffs
Fri Oct 20 07:25:50 2023 UTC (18 months ago) by wiz
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +2 -2 lines
py-icalendar: update to 5.0.10.

5.0.10 (unreleased)
-------------------

Bug fixes:

- Component._encode stops ignoring parameters argument on native values, now merges them
  Fixes: #557
  [zocker1999net]

5.0.9 (2023-09-24)
------------------

Bug fixes:

- PERIOD values now set the timezone of their start and end. #556

5.0.8 (2023-09-18)
------------------

Minor changes:

- Update build configuration to build readthedocs. #538
- No longer run the ``plone.app.event`` tests.
- Add documentation on how to parse ``.ics`` files. #152
- Move pip caching into Python setup action.
- Check that issue #165 can be closed.
- Updated about.rst for issue #527
- Avoid ``vText.__repr__`` BytesWarning.

Bug fixes:

- Calendar components are now properly compared
  Ref: #550
  Fixes: #526
  [jacadzaca]

Revision 1.41: download - view: text, markup, annotated - select for diffs
Tue May 30 04:23:55 2023 UTC (22 months, 3 weeks ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -2 lines
py-icalendar: updated to 5.0.7

5.0.7
Bug fixes:
- to_ical() now accepts RRULE BYDAY values>=10

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun May 28 16:54:32 2023 UTC (22 months, 3 weeks ago) by wiz
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2 lines
py-icalendar: update to 5.0.6.

5.0.6 (2023-05-26)
------------------

Minor changes:

- Adjusted duration regex

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu May 4 11:50:12 2023 UTC (23 months, 2 weeks ago) by wiz
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +5 -2 lines
py-icalendar: update to 5.0.5.

5.0.5 (2023-04-13)
------------------

Minor changes:

- Added support for BYWEEKDAY in vRecur ref: #268

Bug fixes:

- Fix problem with ORGANIZER in FREE/BUSY #348

5.0.4 (2022-12-29)
------------------

Minor changes:

- Improved documentation
  Ref: #503, #504

Bug fixes:

- vBoolean can now be used as an parameter
  Ref: #501
  Fixes: #500
  [jacadzaca]


5.0.3 (2022-11-23)
------------------

New features:

- vDDDTypes is hashable #487 #492 [niccokunzmann]

Bug fixes:

- vDDDTypes' equality also checks the dt attribute #497 #492 [niccokunzmann]

5.0.2 (2022-11-03)
------------------

Minor changes:

- Refactored cal.py, tools.py and completed remaining minimal refactoring in parser.py. Ref: #481 [pronoym99]
- Calendar.from_ical no longer throws long errors
  Ref: #473
  Fixes: #472
  [jacadzaca]
- Make datetime value shorter by removing the value parameter where possible.
  Fixes: #318
  [jacadzaca], [niccokunzmann]

New features:

- source code in documentation is tested using doctest #445 [niccokunzmann]

Bug fixes:

- broken properties are not added to the parent component
  Ref: #471
  Fixes: #464
  [jacadzaca]

5.0.1 (2022-10-22)
------------------

Minor changes:

- fixed setuptools deprecation warnings [mgorny]

Bug fixes:

- a well-known timezone timezone prefixed with a `/` is treated as if the slash wasn't present
  Ref: #467
  Fixes: #466
  [jacadzaca]

5.0.0 (2022-10-17)
------------------

Minor changes:

- removed deprecated test checks [tuergeist]
- Fix: cli does not support DURATION #354 [mamico]
- Add changelog and contributing to readthedocs documentation #428 [peleccom]
- fixed small typos #323 [rohnsha0]
- unittest to parametrized pytest refactoring [jacadzaca]

Breaking changes:

- Require Python 3.7 as minimum Python version.  [maurits] [niccokunzmann]
- icalendar now takes a ics file directly as an input
- icalendar's CLI utility program's output is different
- Drop Support for Python 3.6. Versions 3.7 - 3.11 are supported and tested.

New features:

- icalendar utility outputs a 'Duration' row
- icalendar can take multiple ics files as an input

Bug fixes:

- Changed tools.UIDGenerator instance methods to static methods
  Ref: #345
  [spralja]
- proper handling of datetime objects with `tzinfo` generated through zoneinfo.ZoneInfo.
  Ref: #334
  Fixes: #333
  [tobixen]
- Timestamps in UTC does not need tzid
  Ref: #338
  Fixes: #335
  [tobixen]
-  add ``__eq__`` to ``icalendar.prop.vDDDTypes`` #391 [jacadzaca]
- Refactor deprecated unittest aliases for Python 3.11 compatibility #330 [tirkarthi]

5.0.0a1 (2022-07-11)
--------------------

Breaking changes:

- Drop support for Python 3.4, 3.5 and PyPy2.  [maurits]

New features:

- Document development setup
  Ref: #358
  [niccokunzmann]

Bug fixes:

- Test with GitHub Actions.  [maurits]

Revision 1.38: download - view: text, markup, annotated - select for diffs
Tue Jul 12 05:59:51 2022 UTC (2 years, 9 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -3 lines
py-icalendar: updated to 4.1.0

4.1.0 (2022-07-11)
------------------
New features:
- No longer test on Python 3.4, 3.5 and PyPy2, because we cannot get it to work.
  Technically it should still work, it is just no longer tested.
  Do not expect much development on branch 4.x anymore.
  The master branch will be for the remaining Python versions that we support.
Bug fixes:
- Test with GitHub Actions.


4.0.9 (2021-10-16)
------------------
Bug fixes:
- Fix vCategories for correct en/de coding.
- vDuration property value: Fix changing duration sign after multiple ``to_ical`` calls.


4.0.8 (2021-10-07)
------------------
Bug fixes:
- Support added for Python 3.9 and 3.10 (no code changes needed).
- Replace bare 'except:' with 'except Exception:'

Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Jan 5 15:41:28 2022 UTC (3 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +4 -2 lines
python: egg.mk: add USE_PKG_RESOURCES flag

This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.

Set this flag for packages that need it and bump PKGREVISION.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Tue Jan 4 20:55:11 2022 UTC (3 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -1 lines
*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS

Revision 1.35: download - view: text, markup, annotated - select for diffs
Sat Jan 9 09:30:26 2021 UTC (4 years, 3 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -2 lines
py-icalendar: updated to 4.0.7

4.0.7:
Bug fixes:
- fixed rrule handling, re-enabled test_create_america_new_york()

Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu May 7 04:58:11 2020 UTC (4 years, 11 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2 lines
py-icalendar: updated to 4.0.6

4.0.6:
Bug fixes:
- Use ``vText`` as default type, when convert recurrence definition to ical string.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Sat Mar 21 07:26:09 2020 UTC (5 years, 1 month ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2020Q1-base, pkgsrc-2020Q1
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -2 lines
py-icalendar: updated to 4.0.5

4.0.5:
Bug fixes:
- Fixed a docs issue related to building on Read the Docs

Revision 1.32: download - view: text, markup, annotated - select for diffs
Wed Dec 11 10:28:58 2019 UTC (5 years, 4 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +3 -3 lines
py-icalendar: updated to 4.0.4

4.0.4:
Bug fixes:
- Reduce Hypothesis iterations to speed up testing, allowing PRs to pass

Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Oct 11 10:16:44 2018 UTC (6 years, 6 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +4 -3 lines
py-icalendar: updated to 4.0.3

4.0.3:
Bug fixes:
- Categories are comma separated not 1 per line.
- mark test with mixed timezoneaware and naive datetimes as an expected failure.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Jul 9 17:47:01 2018 UTC (6 years, 9 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q3-base, pkgsrc-2018Q3
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -2 lines
py-icalendar: updated to 4.0.2

4.0.2:
Update all pypi.python.org URLs to pypi.org

Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Apr 3 13:19:56 2018 UTC (7 years ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +7 -4 lines
py-icalendar: updated to 4.0.1

4.0.1:
Added rudimentary command line interface.
Readme, setup and travis updates.

4.0.0:
Breaking changes: Drop support for Python 2.6 and 3.3.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Sep 4 17:02:10 2017 UTC (7 years, 7 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -2 lines
3.11.7:
New features:
* added vUTCOffset.ignore_exceptions to allow surpressing of failed TZOFFSET parsing (for now this ignores the check for offsets > 24h)

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Aug 6 19:30:51 2017 UTC (7 years, 8 months ago) by adam
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -2 lines
3.11.6:
Bug fixes:
Fix VTIMEZONEs including RDATEs

Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri Jul 14 10:55:54 2017 UTC (7 years, 9 months ago) by adam
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +2 -2 lines
3.11.5:

Bug fixes:
- added an assertion that VTIMEZONE sub-components' DTSTART must be of type
  DATETIME
- Fix handling of VTIMEZONEs with subcomponents with the same DTSTARTs and
  OFFSETs but which are of different types

Revision 1.25: download - view: text, markup, annotated - select for diffs
Thu May 11 17:36:28 2017 UTC (7 years, 11 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
Updated py-icalendar to 3.11.4.

3.11.4 (2017-05-10)
-------------------

Bug fixes:

- Don't break on parameter values which contain equal signs, e.g. base64 encoded
  binary data [geier]

- Fix handling of VTIMEZONEs with subcomponents with the same DTSTARTs.
  [geier]


3.11.3 (2017-02-15)
-------------------

Bug fixes:

- Removed ``setuptools`` as a dependency as it was only required by setup.py
  and not by the package.

- Don't split content lines on the unicode ``LINE SEPARATOR`` character
  ``\u2028`` but only on ``CRLF`` or ``LF``.

3.11.2 (2017-01-12)
-------------------

Bug fixes:

- Run tests with python 3.5 and 3.6.
  [geier]

- Allow tests failing with pypy3 on travis.ci.
  [geier]


3.11.1 (2016-12-19)
-------------------

Bug fixes:

- Encode error message before adding it to the stack of collected error messages.


3.11 (2016-11-18)
-----------------

Fixes:

- Successfully test with pypy and pypy3.  [gforcada]

- Minor documentation update.  [tpltnt]

Revision 1.24: download - view: text, markup, annotated - select for diffs
Mon Feb 20 17:00:37 2017 UTC (8 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -4 lines
Switch py-dateutils to plain DEPENDS.

It supports both python 2 and 3 nowadays.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Thu Jul 28 13:58:45 2016 UTC (8 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
Updated py-icalendar to 3.10.

3.10 (2016-05-26)
-----------------

New:

- Updated components description to better comply with RFC 5545.
  Refs #183.
  [stlaz]

- Added PERIOD value type to date types.
  Also fixes incompatibilities described in #184.
  Refs #189.
  [stlaz]

Fixes:

- Fix testsuite for use with ``dateutil>=2.5``.
  Refs #195.
  [untitaker]

- Reintroduce cal.Component.is_broken that was removed with 3.9.2.
  Refs #185.
  [geier]


3.9.2 (2016-02-05)
------------------

New:

- Defined ``test_suite`` in setup.py.
  Now tests can be run via ``python setup.py test``.
  [geier]

Fixes:

- Fixed cal.Component.from_ical() representing an unknown component as one of the known.
  [stlaz]

- Fixed possible IndexError exception during parsing of an ical string.
  [stlaz]

- When doing a boolean test on ``icalendar.cal.Component``, always return ``True``.
  Before it was returning ``False`` due to CaselessDict, if it didn't contain any items.
  [stlaz]

- Fixed date-time being recognized as date or time during parsing.
  Added better error handling to parsing from ical strings.
  [stlaz]

- Added __version__ attribute to init.py.
  [TomTry]

- Documentation fixes.
  [TomTry]

- Pep 8, UTF 8 headers, dict/list calls to literals.
  [thet]


3.9.1 (2015-09-08)
------------------

- Fix ``vPeriod.__repr__``.
  [spacekpe]

- Improve foldline() performance. This improves the foldline performance,
  especially for large strings like base64-encoded inline attachements. In some
  cases (1MB string) from 7 Minutes to less than 20ms for ASCII data and 500ms
  for non-ASCII data. Ref: #163.
  [emfree]


3.9.0 (2015-03-24)
------------------

- Creating timezone objects from VTIMEZONE components.
  [geier]

- Make ``python-dateutil`` a dependency.
  [geier]

- Made RRULE tolerant of trailing semicolons.
  [sleeper]

- Documentation fixes.
  [t-8ch, thet]

3.8.4 (2014-11-01)
------------------

- Add missing BYWEEKNO to recurrence rules.
  [russkel]

Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Jun 8 17:43:43 2016 UTC (8 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q2-base, pkgsrc-2016Q2
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -2 lines
Switch to MASTER_SITES_PYPI.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Sun Aug 31 21:35:11 2014 UTC (10 years, 7 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
Update to 3.8.3:

3.8.3 (2014-08-26)
------------------

- PERCENT property in VTODO renamed to PERCENT-COMPLETE, according to RFC5545.
  [thomascube]

Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Jul 22 10:17:25 2014 UTC (10 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -8 lines
Update to 3.8.2, fixing the bug I reported 18 minutes ago.

3.8.2 (2014-07-22)
------------------

- Exclude editor backup files from egg distributions. Fixes #144.
  [thet]

Revision 1.19: download - view: text, markup, annotated - select for diffs
Tue Jul 22 09:57:15 2014 UTC (10 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +8 -2 lines
Update to 3.8.1:

3.8.1 (2014-07-17)
------------------

- The representation of CaselessDicts in 3.8 changed the name attribute of
  Components and therefore broke the external API. This has been fixed.
  [untitaker]


3.8 (2014-07-17)
----------------

- Allow dots in property names (Needed for vCard compatibility). Refs #143.
  [untitaker]

- Change class representation for CaselessDict objects to always include the
  class name or the class' name attribute, if available. Also show
  subcomponents for Component objects.
  [thet]

- Don't use data_encode for CaselessDict class representation but use dict's
  __repr__ method.
  [t-8ch]

- Handle parameters with multiple values, which is needed for vCard 3.0.
  Refs #142.
  [t-8ch]

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Jun 9 12:29:23 2014 UTC (10 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q2-base, pkgsrc-2014Q2
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -2 lines
Update to 3.7:

3.7 (2014-06-02)
----------------

- For components with ``ignore_exceptions`` set to ``True``, mark unparseable
  lines as broken instead rising a ``ValueError``. ``VEVENT`` components have
  ``ignore_exceptions`` set to ``True`` by default. Ref #131. Fixes #104.
  [jkiang13]

- Make ``python-dateutil`` a soft-dependency.
  [boltnev]

- Add optional ``sorted`` parameter to ``Component.to_ical``. Setting it to
  false allows the user to preserve the original property and parameter order.
  Ref #136. Fixes #133.
  [untitaker]

- Fix tests for latest ``pytz``. Don't set ``tzinfo`` directly on datetime
  objects, but use pytz's ``localize`` function. Ref #138.
  [untitaker, thet]

- Remove incorrect use of __all__. We don't encourage using ``from package
  import *`` imports. Fixes #129.
  [eric-wieser]


3.6.2 (2014-04-05)
------------------

- Pep8 and cleanup.
  [lasudry]

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Jan 19 09:12:17 2014 UTC (11 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -2 lines
Update to 3.6.1:

3.6.1 (2014-01-13)
------------------

- Open text files referenced by setup.py as utf-8, no matter what the locale
  settings are set to. Fixes #122.
  [sochotnicky]

- Add tox.ini to source tarball, which simplifies testing for in distributions.
  [sochotnicky]


3.6 (2014-01-06)
----------------

- Python3 (3.3+) + Python 2 (2.6+) support [geier]

- Made sure to_ical() always returns bytes [geier]

- Support adding lists to a component property, which value already was a list
  and remove the Component.set method, which was only used by the add method.
  [thet]

- Remove ability to add property parameters via a value's params attribute when
  adding via cal.add (that was only possible for custom value objects and makes
  up a strange API), but support a parameter attribute on cal.add's method
  signature to pass a dictionary with property parameter key/value pairs.
  Fixes #116.
  [thet]

- Backport some of Regebro's changes from his regebro-refactor branch.
  [thet]

- Raise explicit error on another malformed content line case.
  [hajdbo]

- Correctly parse datetime component property values with timezone information
  when parsed from ical strings.
  [untitaker]

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Jan 16 10:41:53 2014 UTC (11 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +4 -2 lines
Convert to use versioned_dependencies.mk.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Jul 8 08:49:16 2013 UTC (11 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -3 lines
Update to 3.5:

3.5 (2013-07-03)
----------------

- Let to_unicode be more graceful for non-unicode strings, as like CMFPlone's
  safe_unicode does it.
  [thet]

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat May 4 23:48:02 2013 UTC (11 years, 11 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2013Q2-base, pkgsrc-2013Q2
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -3 lines
Update to 3.4:

3.4 (2013-04-24)
----------------

- Switch to unicode internally. This should fix all en/decoding errors.
  [thet]

- Support for non-ascii parameter values. Fixes #88.
  [warvariuc]

- Added functions to transform chars in string with '\\' + any of r'\,;:' chars
  into '%{:02X}' form to avoid splitting on chars escaped with '\\'.
  [warvariuc]

- Allow seconds in vUTCOffset properties. Fixes #55.
  [thet]

- Let ``Component.decode`` better handle vRecur and vDDDLists properties.
  Fixes #70.
  [thet]

- Don't let ``Component.add`` re-encode already encoded values. This simplifies
  the API, since there is no need explicitly pass ``encode=False``. Fixes #82.
  [thet]

- Rename tzinfo_from_dt to tzid_from_dt, which is what it does.
  [thet]

- More support for dateutil parsed tzinfo objects. Fixes #89.
  [leo-naeka]

- Remove python-dateutil version fix at all. Current python-dateutil has Py3
  and Py2 compatibility.
  [thet]

- Declare the required python-dateutil dependency in setup.py. Fixes #90.
  [kleink]

- Raise test coverage.
  [thet]

- Remove interfaces module, as it is unused.
  [thet]

- Remove ``test_doctests.py``, test suite already created properly in
  ``test_icalendar.py``.
  [rnix]

- Transformed doctests into unittests, Test fixes and cleanup.
  [warvariuc]

Revision 1.13: download - view: text, markup, annotated - select for diffs
Sun Feb 17 16:10:04 2013 UTC (12 years, 2 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
Bump PKGREVISION for readded py-pytz dependency.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Feb 17 15:58:56 2013 UTC (12 years, 2 months ago) by kleink
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -1 lines
Put back the dependency on py-pytz which is still used by py-icalendar;
apparently the previous tests-only dependency on py-dateutil has
crept into the library sources but install_requires wasn't updated
to reflect this.

Per discussion with wiz.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sat Feb 16 18:08:48 2013 UTC (12 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +4 -3 lines
This now needs py-dateutil instead of py-pytz. Bump PKGREVISION.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Feb 9 17:02:26 2013 UTC (12 years, 2 months ago) by kleink
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +3 -1 lines
Missed in previous: Define empty USE_LANGUAGES.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sat Feb 9 16:55:33 2013 UTC (12 years, 2 months ago) by kleink
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -6 lines
Update py-icalendar to 3.3.

3.3 (2013-02-08)
----------------

* Drop support for Python < 2.6.
  [thet]

* Allow vGeo to be instantiated with list and not only tuples of geo
  coordinates. Fixes #83.
  [thet]

* Don't force to pass a list to vDDDLists and allow setting individual RDATE
  and EXDATE values without having to wrap them in a list.
  [thet]

* Fix encoding function to allow setting RDATE and EXDATE values and not to
  have bypass encoding with an icalendar property.
  [thet]

* Allow setting of timezone for vDDDLists and support timezone properties for
  RDATE and EXDATE component properties.
  [thet]

* Move setting of TZID properties to vDDDTypes, where it belongs to.
  [thet]

* Use @staticmethod decorator instead of wrapper function.
  [warvariuc, thet]

* Extend quoting of parameter values to all of those characters: ",;: ’'".
  This fixes an outlook incompatibility with some characters. Fixes: #79,
  Fixes: #81.
  [warvariuc]

* Define VTIMETZONE subcomponents STANDARD and DAYLIGHT for RFC5545 compliance.
  [thet]

Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Feb 9 16:36:12 2013 UTC (12 years, 2 months ago) by kleink
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2 lines
LICENSE changed to 2-clause-bsd back in in 3.0.1b2.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sat Dec 8 23:36:45 2012 UTC (12 years, 4 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2012Q4-base, pkgsrc-2012Q4
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +7 -3 lines
Update to 3.2:

3.2 (2012-11-27)
----------------

* Documentation file layout restructuring.
  [thet]

* Fix time support. vTime events can be instantiated with a datetime.time
  object, and do not inherit from datetime.time itself.
  [rdunklau]

* Correctly handle tzinfo objects parsed with dateutil. Fixes #77.
  [warvariuc, thet]

* Text values are escaped correclty. Fixes #74.
  [warvariuc]

* Returned old folding algorithm, as the current implementation fails in some
  cases. Fixes #72, Fixes #73.
  [warvariuc]

* Supports to_ical() on date/time properties for dates prior to 1900.
  [cdevienne]

Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Oct 8 13:04:28 2012 UTC (12 years, 6 months ago) by asau
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -3 lines
Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Thu Sep 13 20:12:16 2012 UTC (12 years, 7 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +4 -2 lines
Update to 3.1:

Changes in version 3.0
======================

API Change
----------

Since version we unified to icalendar de/serialization API to use only to_ical
(for writing an ical string from the internal representation) and from_ical
(for parsing an ical string into the internal representation).

to_ical is now used instead of the methods ical, string, as_string and instead
of string casting via __str__ and str.

from_ical is now used instead of from_string.

This change is a requirement for future Python 3 compatibility. Please update
your code to reflect to the new API.

Timezone support
----------------

Timezones are now fully supported in icalendar for serialization and
deserialization. We use the pytz library for timezone components of datetime
instances. The timezone identifiers must be valid pytz respectively Olson
database timezone identifiers. This can be a problem for 'GMT' identifiers,
which are not defined in the Olson database.

Instead of the own UTC tzinfo implementation we use pytz UTC tzinfo object now.


About this fork which is not a fork anymore
===========================================

Aim of this fork (not fork anymore, read further) was to bring this package up
to date with latest icalendar `RFC`_ specification as part of
`plone.app.event`_ project which goal is to bring recurrent evens to `Plone`_.

After some thoughts we (Plone developers involved with `plone.app.event`_) send
a suggestion to icalendar-dev@codespeak.net to take over mainaining of
`icalendar`_. Nobody object and since version 2.2 we are back to development.

.. _`icalendar`: http://pypi.python.org/pypi/icalendar
.. _`plone.app.event`: http://github.com/collective/plone.app.event
.. _`Plone`: http://plone.org
.. _`pytz`: http://pypi.python.org/pypi/pytz
.. _`setuptools`: http://pypi.python.org/pypi/setuptools
.. _`RFC`: http://www.ietf.org/rfc/rfc5545.txt
.. _`BSD`: https://github.com/collective/icalendar/issues/2


3.1

    Make sure parameters to certain properties propagate to the
    ical output. [kanarip]
    Re-include doctests. [rnix]
    endure correct datatype at instance creation time in prop.vCalAddress
    and prop.vText. [rnix]
    Apply TZID parameter to datetimes parsed from RECURRENCE-ID
    [dbstovall]
    Localize datetimes for timezones to avoid DST transition errors.
    [dbstovall]
    Allow UTC-OFFSET property value data types in seconds, which
    follows RFC5545 specification. [nikolaeff]
    Remove utctz and normalized_timezone methods to simplify the
    codebase. The methods were too tiny to be useful and just used
    at one place. [thet]
    When using Component.add() to add icalendar properties, force
    a value conversion to UTC for CREATED, DTSTART and LAST-MODIFIED.
    The RFC expects UTC for those properties. [thet]
    Removed last occurrences of old API (from_string). [Rembane]
    Add
    listing. For example when parsing a text/calendar text including
    multiple components (e.g. a VCALENDAR with 5 VEVENTs), the
    previous situation required us to look over all properties in
    VEVENTs even if we just want the properties under the VCALENDAR
    component (VERSION, PRODID, CALSCALE, METHOD). [dmikurube]
    All unit tests fixed. [mikaelfrykholm]

3.0.1b2 (2012-03-01)

    For all TZID parameters in DATE-TIME properties, use timezone
    identifiers (e.g. Europe/Vienna) instead of timezone names
    (e.g. CET), as required by RFC5545. Timezone names are used
    together with timezone identifiers in the Timezone components.
    [thet]
    Timezone parsing, issues and test fixes. [mikaelfrykholm,
    garbas, tgecho]
    Since we use pytz for timezones, also use UTC tzinfo object
    from the pytz library instead of own implementation. [thet]

3.0.1b1 (2012-02-24)

    Update Release information. [thet]

3.0

    Add API for proper Timezone support. Allow creating ical
    DATE-TIME strings with timezone information from Python datetimes
    with pytz based timezone information and vice versa. [thet]
    Unify API to only use to_ical and from_ical and remove string
    casting as a requirement for Python 3 compatibility: New:
    to_ical. Old: ical, string, as_string and string casting via
    __str__ and str. New: from_ical. Old: from_string. [thet]

Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Jan 20 12:08:47 2012 UTC (13 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -13 lines
Update to 2.2.

2.2
---

* migration to https://github.com/collective/icalendar using svn2git preserving
  tags, branches and authors.
  [garbas]

* using tox for testing on python 2.4, 2.5, 2.6, 2.6.
  [garbas]

* fixed tests so they pass also under python 2.7.
  [garbas]

* running tests on https://jenkins.plone.org/job/icalendar (only 2.6 for now)
  with some other metrics (pylint, clonedigger, coverage).
  [garbas]

* review and merge changes from https://github.com/cozi/icalendar fork.
  [garbas]

* created sphinx documentation and started documenting development and goals.
  [garbas]

* hook out github repository to http://readthedocs.org service so sphinx
  documentation is generated on each commit (for master). Documentation can be
  visible on: http://readthedocs.org/docs/icalendar/en/latest/
  [garbas]

Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Jan 20 10:34:23 2010 UTC (15 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2 lines
Update to 2.1:

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.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Wed May 20 13:38:47 2009 UTC (15 years, 11 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +5 -6 lines
Update to 2.0.1, prodded by Daniel A Graham, and include a portability
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.

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Tue May 19 09:19:45 2009 UTC (15 years, 11 months ago) by wiz
Branches: TNF
CVS tags: pkgsrc-20090519
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Initial import of py-icalendar, packaged for pkgsrc-wip by mj_turner
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.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue May 19 09:19:45 2009 UTC (15 years, 11 months ago) by wiz
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>