pull/146/head
Johannes Raggam 2014-07-14 11:58:38 +02:00
rodzic f5d7b8ea53
commit c8db0cdcb1
3 zmienionych plików z 9 dodań i 4 usunięć

Wyświetl plik

@ -5,7 +5,9 @@ Changelog
3.8 (unreleased) 3.8 (unreleased)
---------------- ----------------
- Handle parameters with multiple values, which is needed for VCard 3.0 - Handle parameters with multiple values, which is needed for VCard 3.0.
[t-8ch]
3.7 (2014-06-02) 3.7 (2014-06-02)
---------------- ----------------

Wyświetl plik

@ -3,7 +3,7 @@ import setuptools
import sys import sys
version = '3.7' version = '3.8.dev0'
shortdesc = 'iCalendar parser/generator' shortdesc = 'iCalendar parser/generator'
longdesc = codecs.open('README.rst', encoding='utf-8').read() longdesc = codecs.open('README.rst', encoding='utf-8').read()
longdesc += codecs.open('CHANGES.rst', encoding='utf-8').read() longdesc += codecs.open('CHANGES.rst', encoding='utf-8').read()
@ -40,7 +40,7 @@ setuptools.setup(
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
], ],
keywords='calendar calendaring ical icalendar event todo journal ' keywords='calendar calendaring ical icalendar event todo journal '
'recurring', 'recurring',
author='Plone Foundation', author='Plone Foundation',

Wyświetl plik

@ -252,6 +252,8 @@ END:VCALENDAR"""
def test_issue_116(self): def test_issue_116(self):
"""Issue #116/#117 - How to add 'X-APPLE-STRUCTURED-LOCATION' """Issue #116/#117 - How to add 'X-APPLE-STRUCTURED-LOCATION'
https://github.com/collective/icalendar/issues/116
https://github.com/collective/icalendar/issues/117
""" """
event = icalendar.Event() event = icalendar.Event()
event.add( event.add(
@ -280,7 +282,8 @@ END:VCALENDAR"""
def test_issue_142(self): def test_issue_142(self):
"""Issue #142 - Multivalued parameters """Issue #142 - Multivalued parameters
This is needed for VCard 3.0 This is needed for VCard 3.0.
https://github.com/collective/icalendar/pull/142
""" """
from icalendar.parser import Contentline, Parameters from icalendar.parser import Contentline, Parameters