mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Merge pull request #1643 from pbiering/fix-issue-1635
ignore RRULESET if empty in item
This commit is contained in:
commit
675c5ce8cf
4 changed files with 71 additions and 4 deletions
|
@ -3,6 +3,7 @@
|
||||||
## 3.3.2.dev
|
## 3.3.2.dev
|
||||||
* Fix: debug logging in rights/from_file
|
* Fix: debug logging in rights/from_file
|
||||||
* Add: option [storage] use_cache_subfolder_for_item for storing item cache outside collection-root
|
* Add: option [storage] use_cache_subfolder_for_item for storing item cache outside collection-root
|
||||||
|
* Fix: ignore empty RRULESET in item
|
||||||
|
|
||||||
## 3.3.1
|
## 3.3.1
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
# Copyright © 2008 Nicolas Kandel
|
# Copyright © 2008 Nicolas Kandel
|
||||||
# Copyright © 2008 Pascal Halter
|
# Copyright © 2008 Pascal Halter
|
||||||
# Copyright © 2008-2015 Guillaume Ayoub
|
# Copyright © 2008-2015 Guillaume Ayoub
|
||||||
# Copyright © 2017-2018 Unrud <unrud@outlook.com>
|
# Copyright © 2017-2021 Unrud <unrud@outlook.com>
|
||||||
|
# Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
|
||||||
#
|
#
|
||||||
# This library is free software: you can redistribute it and/or modify
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -273,8 +274,11 @@ def visit_time_ranges(vobject_item: vobject.base.Component, child_name: str,
|
||||||
if hasattr(comp, "recurrence_id") and comp.recurrence_id.value:
|
if hasattr(comp, "recurrence_id") and comp.recurrence_id.value:
|
||||||
recurrences.append(comp.recurrence_id.value)
|
recurrences.append(comp.recurrence_id.value)
|
||||||
if comp.rruleset:
|
if comp.rruleset:
|
||||||
# Prevent possible infinite loop
|
if comp.rruleset._len is None:
|
||||||
raise ValueError("Overwritten recurrence with RRULESET")
|
logger.warning("Ignore empty RRULESET in item at RECURRENCE-ID with value '%s' and UID '%s'", comp.recurrence_id.value, comp.uid.value)
|
||||||
|
else:
|
||||||
|
# Prevent possible infinite loop
|
||||||
|
raise ValueError("Overwritten recurrence with RRULESET")
|
||||||
rec_main = comp
|
rec_main = comp
|
||||||
yield comp, True, []
|
yield comp, True, []
|
||||||
else:
|
else:
|
||||||
|
|
55
radicale/tests/static/event_exdate_without_rrule.ics
Normal file
55
radicale/tests/static/event_exdate_without_rrule.ics
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
BEGIN:VCALENDAR
|
||||||
|
VERSION:2.0
|
||||||
|
PRODID:DAVx5/4.4.3.2-ose ical4j/3.2.19
|
||||||
|
BEGIN:VEVENT
|
||||||
|
DTSTAMP:20241125T195941Z
|
||||||
|
UID:9fb6578a-07a6-4c61-8406-69229713d40e
|
||||||
|
SEQUENCE:3
|
||||||
|
SUMMARY:Escalade
|
||||||
|
DTSTART;TZID=Europe/Paris:20240606T193000
|
||||||
|
DTEND;TZID=Europe/Paris:20240606T203000
|
||||||
|
RRULE:FREQ=WEEKLY;WKST=MO;BYDAY=TH
|
||||||
|
EXDATE;TZID=Europe/Paris:20240704T193000
|
||||||
|
CLASS:PUBLIC
|
||||||
|
STATUS:CONFIRMED
|
||||||
|
BEGIN:VALARM
|
||||||
|
TRIGGER:-P1D
|
||||||
|
ACTION:DISPLAY
|
||||||
|
DESCRIPTION:Escalade
|
||||||
|
END:VALARM
|
||||||
|
END:VEVENT
|
||||||
|
BEGIN:VEVENT
|
||||||
|
DTSTAMP:20241125T195941Z
|
||||||
|
UID:9fb6578a-07a6-4c61-8406-69229713d40e
|
||||||
|
RECURRENCE-ID;TZID=Europe/Paris:20241128T193000
|
||||||
|
SEQUENCE:1
|
||||||
|
SUMMARY:Escalade avec Romain
|
||||||
|
DTSTART;TZID=Europe/Paris:20241128T193000
|
||||||
|
DTEND;TZID=Europe/Paris:20241128T203000
|
||||||
|
EXDATE;TZID=Europe/Paris:20240704T193000
|
||||||
|
CLASS:PUBLIC
|
||||||
|
STATUS:CONFIRMED
|
||||||
|
BEGIN:VALARM
|
||||||
|
TRIGGER:-P1D
|
||||||
|
ACTION:DISPLAY
|
||||||
|
DESCRIPTION:Escalade avec Romain
|
||||||
|
END:VALARM
|
||||||
|
END:VEVENT
|
||||||
|
BEGIN:VTIMEZONE
|
||||||
|
TZID:Europe/Paris
|
||||||
|
BEGIN:STANDARD
|
||||||
|
TZNAME:CET
|
||||||
|
TZOFFSETFROM:+0200
|
||||||
|
TZOFFSETTO:+0100
|
||||||
|
DTSTART:19961027T030000
|
||||||
|
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
|
||||||
|
END:STANDARD
|
||||||
|
BEGIN:DAYLIGHT
|
||||||
|
TZNAME:CEST
|
||||||
|
TZOFFSETFROM:+0100
|
||||||
|
TZOFFSETTO:+0200
|
||||||
|
DTSTART:19810329T020000
|
||||||
|
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
|
||||||
|
END:DAYLIGHT
|
||||||
|
END:VTIMEZONE
|
||||||
|
END:VCALENDAR
|
|
@ -1,6 +1,7 @@
|
||||||
# This file is part of Radicale - CalDAV and CardDAV server
|
# This file is part of Radicale - CalDAV and CardDAV server
|
||||||
# Copyright © 2012-2017 Guillaume Ayoub
|
# Copyright © 2012-2017 Guillaume Ayoub
|
||||||
# Copyright © 2017-2019 Unrud <unrud@outlook.com>
|
# Copyright © 2017-2022 Unrud <unrud@outlook.com>
|
||||||
|
# Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
|
||||||
#
|
#
|
||||||
# This library is free software: you can redistribute it and/or modify
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -166,6 +167,12 @@ permissions: RrWw""")
|
||||||
event = get_file_content("event_mixed_datetime_and_date.ics")
|
event = get_file_content("event_mixed_datetime_and_date.ics")
|
||||||
self.put("/calendar.ics/event.ics", event)
|
self.put("/calendar.ics/event.ics", event)
|
||||||
|
|
||||||
|
def test_add_event_with_exdate_without_rrule(self) -> None:
|
||||||
|
"""Test event with EXDATE but not having RRULE."""
|
||||||
|
self.mkcalendar("/calendar.ics/")
|
||||||
|
event = get_file_content("event_exdate_without_rrule.ics")
|
||||||
|
self.put("/calendar.ics/event.ics", event)
|
||||||
|
|
||||||
def test_add_todo(self) -> None:
|
def test_add_todo(self) -> None:
|
||||||
"""Add a todo."""
|
"""Add a todo."""
|
||||||
self.mkcalendar("/calendar.ics/")
|
self.mkcalendar("/calendar.ics/")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue