bemade-addons/caldav_sync
Marc Durepos 838a4e12ef caldav_sync: fix a dictionary update error during sync.
Exception handling was also changed to only log the errors rather
than to raise them to the user, since the sync is run as a cron
and that we want other calendars to be polled if one fails.
2024-06-23 07:16:21 -04:00
..
data First commit for caldav_sync 2024-05-23 09:08:07 -04:00
models caldav_sync: fix a dictionary update error during sync. 2024-06-23 07:16:21 -04:00
static/description caldav_sync: Added a note to the index.html page about app-specific passwords. 2024-06-22 09:46:08 -04:00
tests caldav_sync: fix a dictionary update error during sync. 2024-06-23 07:16:21 -04:00
views Add password flag to caldav password field in the res_users view 2024-05-28 10:04:34 -04:00
__init__.py update readme, remove controller from init, add icon 2024-05-23 12:50:14 -04:00
__manifest__.py caldav_sync: fix a dictionary update error during sync. 2024-06-23 07:16:21 -04:00
README.rst updates to synchronize attendees and conference URL 2024-05-23 19:50:22 -04:00

CalDAV Synchronization
======================

Bemade Inc.

Copyright (C) 2023-June Bemade Inc. (<https://www.bemade.org>).
Author: Marc Durepos (Contact : marc@bemade.org)

This program is under the terms of the GNU Lesser General Public License (LGPL-3)
For details, visit https://www.gnu.org/licenses/lgpl-3.0.en.html

Overview
--------

The CalDAV Synchronization module for Odoo allows users to synchronize their
calendar events with CalDAV servers. This enables seamless integration of Odoo
calendar with external applications like Apple Calendar or Thunderbird.

Features
--------

- Synchronize Odoo calendar events with CalDAV servers.
- Create, update, and delete events in Odoo and reflect changes on the CalDAV
  server.
- Poll CalDAV server for changes and update Odoo calendar accordingly.

Configuration
-------------

1. Install the module in Odoo.
2. Go to the User settings in Odoo.
3. Enter the CalDAV calendar URL, username, and password on the user settings.

Usage
-----

1. Create a calendar event in Odoo and it will be synchronized with the CalDAV
   calendar.
2. Update the event in Odoo and the changes will reflect on the CalDAV server.
3. Delete the event in Odoo and it will be removed from the CalDAV server.
4. Changes made to the calendar on the CalDAV server (other email apps) will be
   polled and updated in Odoo.

Technical Details
-----------------

- The module extends the `calendar.event` model to add CalDAV synchronization
  functionality.
- It uses the `icalendar` library to format events and the `caldav` library to
  interact with CalDAV servers.
- Polling for changes on the CalDAV server can be triggered manually by
  triggering the scheduled action in Odoo.

License
-------

This program is under the terms of the GNU Lesser General Public License (LGPL-3)
For details, visit https://www.gnu.org/licenses/lgpl-3.0.en.html