2013-02-11 09:08:41 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Sat Feb 9 15:46:49 UTC 2013 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
|
|
|
|
- Update to version 3.3:
|
|
|
|
|
|
* Drop support for Python < 2.6.
|
|
|
|
|
|
* Allow vGeo to be instantiated with list and not only tuples of geo
|
|
|
|
|
|
coordinates. Fixes #83.
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
* Fix encoding function to allow setting RDATE and EXDATE values and not
|
|
|
|
|
|
to have bypass encoding with an icalendar property.
|
|
|
|
|
|
* Allow setting of timezone for vDDDLists and support timezone properties
|
|
|
|
|
|
for RDATE and EXDATE component properties.
|
|
|
|
|
|
* Move setting of TZID properties to vDDDTypes, where it belongs to.
|
|
|
|
|
|
* Use @staticmethod decorator instead of wrapper function.
|
|
|
|
|
|
* Extend quoting of parameter values to all of those characters: ",;: ’'".
|
|
|
|
|
|
This fixes an outlook incompatibility with some characters. Fixes: #79, Fixes: #81.
|
|
|
|
|
|
* Define VTIMETZONE subcomponents STANDARD and DAYLIGHT for RFC5545 compliance.
|
|
|
|
|
|
- Remove the "Clean" section, useless.
|
|
|
|
|
|
|
2013-01-02 21:43:34 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Wed Jan 2 19:44:41 UTC 2013 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
|
|
|
|
- Fix building on SLES
|
|
|
|
|
|
|
2012-09-09 10:49:07 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Sat Sep 8 19:38:36 UTC 2012 - os-dev@jacraig.com
|
|
|
|
|
|
|
|
|
|
|
|
- Update to 3.1:
|
|
|
|
|
|
* Make sure parameters to certain properties propagate to the ical output.
|
|
|
|
|
|
* Re-include doctests.
|
|
|
|
|
|
* endure correct datatype at instance creation time in ``prop.vCalAddress``
|
|
|
|
|
|
and ``prop.vText``.
|
|
|
|
|
|
* Apply TZID parameter to datetimes parsed from RECURRENCE-ID
|
|
|
|
|
|
* Localize datetimes for timezones to avoid DST transition errors.
|
|
|
|
|
|
* Allow UTC-OFFSET property value data types in seconds, which follows
|
|
|
|
|
|
RFC5545 specification.
|
|
|
|
|
|
* Remove utctz and normalized_timezone methods to simplify the codebase. The
|
|
|
|
|
|
methods were too tiny to be useful and just used at one place.
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
* Removed last occurrences of old API (from_string).
|
|
|
|
|
|
* Add 'recursive' argument to property_items() to switch recursive 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).
|
|
|
|
|
|
* All unit tests fixed.
|
|
|
|
|
|
- Remove Sphinx dependency since HTML docs aren't generated anymore.
|
|
|
|
|
|
- Don't rm .swp files anymore, they were removed upstream.
|
|
|
|
|
|
|
2012-06-27 18:43:26 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Tue Jun 26 12:54:58 UTC 2012 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
|
|
|
|
- Fix building on SLE 11
|
|
|
|
|
|
- updated license to BSD-2-Clause
|
|
|
|
|
|
- Note 1: The fork has taken over maintainership and is now the
|
|
|
|
|
|
official version
|
|
|
|
|
|
- Note 2: The previous package was a git version from what was the
|
|
|
|
|
|
fork. The git tarball had version number 3.0, but for
|
|
|
|
|
|
completeness this changes entry includes changes since the last
|
|
|
|
|
|
official release, 2.2
|
|
|
|
|
|
- Update to 3.0.1b2
|
|
|
|
|
|
* 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
|
|
|
|
|
|
* Timezone parsing, issues and test fixes.
|
|
|
|
|
|
* Since we use pytz for timezones, also use UTC tzinfo object
|
|
|
|
|
|
from the pytz library instead of own implementation.
|
|
|
|
|
|
- Update to 3.0.1b1
|
|
|
|
|
|
* Update Release information.
|
|
|
|
|
|
- Update to 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
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
|
2011-09-22 14:28:26 +00:00
|
|
|
|
-------------------------------------------------------------------
|
2011-12-15 12:25:46 +00:00
|
|
|
|
Thu Dec 15 10:34:22 UTC 2011 - coolo@suse.com
|
|
|
|
|
|
|
|
|
|
|
|
- fix license to be in spdx.org format
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2011-09-22 14:28:26 +00:00
|
|
|
|
Thu Sep 22 14:26:58 UTC 2011 - Sascha.Manns@open-slx.de
|
|
|
|
|
|
|
|
|
|
|
|
- fixed license issue
|
|
|
|
|
|
- closed bug bnx#714664
|
|
|
|
|
|
|
2011-08-28 15:44:10 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Sun Aug 28 15:43:30 UTC 2011 - Sascha.Manns@open-slx.de
|
|
|
|
|
|
|
|
|
|
|
|
- fixed fdupes issue
|
|
|
|
|
|
|
2011-08-28 15:27:56 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Sun Aug 28 15:24:58 UTC 2011 - Sascha.Manns@open-slx.de
|
|
|
|
|
|
|
|
|
|
|
|
- updated Ownership
|
|
|
|
|
|
- removed rpmlintrc
|
|
|
|
|
|
|
2011-08-25 10:46:26 +00:00
|
|
|
|
-------------------------------------------------------------------
|
2011-08-28 15:15:40 +00:00
|
|
|
|
Sun Aug 28 10:09:54 CEST 2011 - hpj@urpla.net
|
2011-08-25 10:46:26 +00:00
|
|
|
|
|
2011-08-28 15:15:40 +00:00
|
|
|
|
- updated to forked version 2.2
|
2011-08-24 20:03:00 +00:00
|
|
|
|
|
2011-08-24 16:13:08 +00:00
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Fri Dec 24 12:39:25 UTC 2010 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- removed BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Mon Dec 14 18:07:59 UTC 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- updated to Version 2.1
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
|
Sun Aug 9 19:33:03 UTC 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- fixed some little Errors with the lib path
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------
|
|
|
|
|
|
Sat Apr 18 19:52:33 CEST 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- removed %%buildroot duplicate
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------
|
|
|
|
|
|
Sat Apr 18 12:11:23 CEST 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- uses %%optflags, %%py_requires and
|
|
|
|
|
|
Sourcepackage (from remote to local)
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------
|
|
|
|
|
|
Sat Mar 14 23:00:41 CET 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- added rpmlintrc
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------
|
|
|
|
|
|
Fri Jan 08 12:00:00 CET 2009 - saigkill@opensuse.org -
|
|
|
|
|
|
|
|
|
|
|
|
- updated Specfile & Makros
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------
|
|
|
|
|
|
Fri Jan 02 12:00:00 CET 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- python Version 1.2 for openSUSE_11.0
|
|
|
|
|
|
|
|
|
|
|
|
------------------------------------------------------------------
|
|
|
|
|
|
Thu Jan 01 12:00:00 CET 2009 - saigkill@opensuse.org
|
|
|
|
|
|
|
|
|
|
|
|
- builded initial version iCalendar from SVN Version
|