roundcubemail-plugins-kolab/plugins/calendar
2013-03-14 09:30:12 +01:00
..
drivers Don't display local-change warning if calendar owner is organizer; Better wording for wanring text (#1693) 2013-03-13 15:34:13 +01:00
lib Fix iCal newline escaping (#1694) + typo 2013-03-14 09:30:12 +01:00
localization Don't display local-change warning if calendar owner is organizer; Better wording for wanring text (#1693) 2013-03-13 15:34:13 +01:00
skins Minor calendar UI improvements: make date fields wide enough; display client's current timezone name 2013-03-06 12:30:12 +01:00
.gitignore Don't exclude larry skin 2012-04-21 18:53:03 +02:00
calendar.php Don't set empty attendees array for move/resize actions; otherwise attendees are deleted 2013-03-14 09:28:53 +01:00
calendar_base.js Fix js error when saving a message as task or event 2012-11-21 10:51:58 +01:00
calendar_ui.js Don't display local-change warning if calendar owner is organizer; Better wording for wanring text (#1693) 2013-03-13 15:34:13 +01:00
config.inc.php.dist Allow to configure smtp settings for unauthenticated itip sending (#599) 2012-10-03 11:30:19 +02:00
LICENSE Changed license to AGPL 2011-10-27 10:20:46 +02:00
package.xml Added upgrading instructions for the calendar module (#1179) 2012-11-08 12:18:28 +01:00
print.js Fix calendar printing after refactoring and skin update 2012-10-04 12:52:56 +02:00
README Update SQL scripts to match Roundcube format for schema upgrades, update/add UPGRADING instructions 2013-01-18 09:40:48 +01:00
TODO Store event alarm status by event uid + user id. Attention: database schema changed! 2012-05-16 18:58:57 +02:00
UPGRADING Update SQL scripts to match Roundcube format for schema upgrades, update/add UPGRADING instructions 2013-01-18 09:40:48 +01:00

A calendar module for Roundcube
-------------------------------

This plugin currently supports a local database as well as a Kolab groupware
server as backends for calendar and event storage. For both drivers, some
initialization of the local database is necessary. To do so, execute the
SQL commands in drivers/<yourchoice>/SQL/<yourdatabase>.initial.sql

The client-side calendar UI relies on the "fullcalendar" project by Adam Arshaw
with extensions made for the use in Roundcube. All changes are published in
an official fork at https://github.com/roundcube/fullcalendar

For recurring event computation, some utility classes from the Horde project
are used. They are packaged in a slightly modified version with this plugin.

iCalendar parsing is done with the help of the Horde_iCalendar class. A copy
of that class with all its dependencies is part of this package. In order
to update it, execute lib/get_horde_icalendar.sh > lib/Horde_iCalendar.php
Finally apply the patch lib/Horde_iCalendar_timezone.diff to fix timezone
handling when parsing iCal files.

IMPORTANT
---------
The calendar module makes heavy use of PHP's DateTime as well as DateInterval
classes. The latter one requires at least PHP 5.3.0 to run.