bemade-addons/caldav_sync/models/__init__.py

6 lines
143 B
Python
Raw Normal View History

2024-05-23 08:50:09 -04:00
# -*- coding: utf-8 -*-
from . import calendar_event
from . import res_users
[IMP] caldav_sync: Massive rework Significant improvements to the code around synchronizing events, especially recurring ones. Too much has changed to explain fully here, so read the changelog in README.rst or read the code. Squashed commit of the following: commit e537a7f7f4a3b2e985813198b1bcc41bcc9cbce5 Author: Marc Durepos <marc@bemade.org> Date: Fri Nov 8 15:47:39 2024 -0500 caldav_sync: getting ready for launch of 0.6.0 commit 5797f8efcab4baf51a31508ac097d378d87c256e Author: Marc Durepos <marc@bemade.org> Date: Fri Nov 8 12:41:13 2024 -0500 fixup! caldav_sync: all seems good. further testing to come before merging into 17.0 commit 992778e353289b5f8df176f8691c1ed40acc9a9b Author: Marc Durepos <marc@bemade.org> Date: Fri Nov 8 12:41:02 2024 -0500 caldav_sync: all seems good. further testing to come before merging into 17.0 commit 90d05d75a20cffb484f138e0ef0279fd3f961def Author: Marc Durepos <marc@bemade.org> Date: Fri Nov 8 11:31:14 2024 -0500 caldav_sync: better sync with calls to _rewrite_recurrence commit 5ca1d56e54ada83827fa0402133c14856e134201 Author: Marc Durepos <marc@bemade.org> Date: Thu Nov 7 16:13:31 2024 -0500 caldav_sync: recurrence working from Odoo to CalDAV. Need further testing for the other direction. commit ce7b27cc6512f24fd39adac64c58c7e0c01c1aaa Author: Marc Durepos <marc@bemade.org> Date: Thu Nov 7 10:33:26 2024 -0500 caldav_sync: updating recurrences in the middle with future works, but it breaks singled out events before it (brings them back into the rrule chain) commit 421d609abdeecc6db26f970db461fc50feab5545 Author: Marc Durepos <marc@bemade.org> Date: Thu Nov 7 08:08:35 2024 -0500 caldav_sync: still working on recurrence commit 0e07d42825836987afd1c99f3c7c1733cbc4b507 Author: Marc Durepos <marc@bemade.org> Date: Wed Nov 6 16:06:43 2024 -0500 caldav_sync: moving a single event in a recurrence is synchronizing well commit 14a8b6acf066f181d716a2244c1fba1414937f58 Author: Marc Durepos <marc@bemade.org> Date: Wed Nov 6 13:53:23 2024 -0500 caldav_sync: CRUD fully functional, recurring events working with exceptions around changes in mid-sequence with rrule updates commit 068d1fb29ffbf2216a63df4df92e5fa530c0b45c Author: Marc Durepos <marc@bemade.org> Date: Tue Nov 5 16:42:42 2024 -0500 caldav_sync: all CRUD operations working. Recurrences working to some degree but not fully. commit 0104e3897c52ddaf0720fefa30a8b2e917eeb8c9 Author: Marc Durepos <marc@bemade.org> Date: Mon Nov 4 07:48:48 2024 -0500 caldav_sync: major rework underway. This commit is broken.
2024-11-08 15:49:50 -05:00
from . import calendar_recurrence
from . import calendar_attendee