roundcubemail-plugins-kolab/plugins/calendar
2012-08-28 11:31:40 +02:00
..
drivers - Move attachment handling functions to libcalendaring module. 2012-08-16 19:03:17 +02:00
lib - Move attachment handling functions to libcalendaring module. 2012-08-16 19:03:17 +02:00
localization Move alarm translations to libcalendaring 2012-08-16 21:26:37 +02:00
skins Larry fixes/improvements 2012-08-28 11:31:40 +02:00
.gitignore Don't exclude larry skin 2012-04-21 18:53:03 +02:00
calendar.php - Move attachment handling functions to libcalendaring module. 2012-08-16 19:03:17 +02:00
calendar_base.js Refactoring: move common calendaring-related functionality into a new plugin 'libcalendaring' 2012-08-16 08:57:25 +02:00
calendar_ui.js Register handler for plugin.display_alarms only once; small code cleanup 2012-08-16 19:25:06 +02:00
config.inc.php.dist Fix typos + add documentation for two more config options 2012-06-27 22:31:42 +02:00
LICENSE Changed license to AGPL 2011-10-27 10:20:46 +02:00
package.xml - Move attachment handling functions to libcalendaring module. 2012-08-16 19:03:17 +02:00
print.js Correct email address in author section; add AGPL license header to all relevant files 2011-12-07 12:51:23 +01:00
README Big refactoring: use DateTime objects instead of unix timestamps to improve timezone and DST handling 2012-07-06 17:15:45 +02:00
TODO Store event alarm status by event uid + user id. Attention: database schema changed! 2012-05-16 18:58:57 +02: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>.sql

The client-side calendar UI relies on the 'fullcalenda'r 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

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.