roundcubemail-plugins-kolab/plugins/calendar
Aleksander Machniak 3840ffc5fe Allow accept/decline/delegate (again) on event update request (Bifrost#T27859)
When handling an iTip request for an updated event where
start or end date has been changed, user will be able to change
his participant status.

In such cases we display RSVP buttons instead of "Update in my calendar"
button and highlight the event date.

So, e.g. if you accepted the event and then its time has been
changed by the organizer, you will be able to decline it or vice-versa.
2017-03-30 10:25:12 +02:00
..
drivers T1841: Support non-all-day exceptions to all-day events and vice-versa 2016-12-30 05:33:02 -05:00
helpdocs Doc: Add note about "--" selection in invitation handler (Bifrost#T20284) 2017-01-12 11:42:06 +01:00
lib Allow Status:Tentative (Bifrost#T15994) 2017-02-02 11:19:28 +01:00
localization Allow Status:Tentative (Bifrost#T15994) 2017-02-02 11:19:28 +01:00
skins Allow accept/decline/delegate (again) on event update request (Bifrost#T27859) 2017-03-30 10:25:12 +02:00
.gitignore Don't exclude larry skin 2012-04-21 18:53:03 +02:00
calendar.php Update an event on itip-attend page for logged-in users (Bifrost#T27847) 2017-03-28 10:59:58 +02:00
calendar_base.js Fix bug where Save as Event (and task) form was visible before the dialog was created 2015-11-09 16:21:16 +01:00
calendar_ui.js Improved organizer handling on a shared event (Bifrost#T23218) 2017-02-08 19:14:34 +01:00
composer.json Update homepage/download URL for groupware plugins 2015-05-12 08:54:53 +02:00
config.inc.php.dist Option kolab_invitation_calendars is false by default 2016-04-08 09:19:55 +02:00
LICENSE Changed license to AGPL 2011-10-27 10:20:46 +02:00
print.js - Onyl print events from active calendars (#4603) 2015-02-17 14:04:57 +01:00
README Remove outdated note about PHP 5.3 requirement 2015-06-16 09:26:52 +02: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 database version strings 2015-03-01 19:00:27 +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 some general calendar-based operations such as alarms handling or iCal
parsing/exporting this plugins requires the `libcalendaring` plugin which
is also part of the Kolab Roundcube Plugins repository. Make sure that plugin
is installed and configured correctly.

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


REQUIREMENTS
------------

Some functions are shared with other plugins and therefore being moved to
library plugins. Thus in order to run the calendar plugin, you also need the
following plugins installed:

* libcalendaring [1]
* libkolab [1] (when using the 'kolab' driver)


INSTALLATION
------------

For a manual installation of the calendar plugin (and its dependencies),
execute the following steps. This will set it up with the database backend
driver.

1. Get the source from git

  $ cd /tmp
  $ git clone https://git.kolab.org/diffusion/RPK/roundcubemail-plugins-kolab.git
  $ cd /<path-to-roundcube>/plugins
  $ cp -r /tmp/roundcubemail-plugins-kolab/plugins/calendar .
  $ cp -r /tmp/roundcubemail-plugins-kolab/plugins/libcalendaring .

2. Create calendar plugin configuration

  $ cd calendar/
  $ cp config.inc.php.dist config.inc.php
  $ edit config.inc.php

3. Initialize the calendar database tables

  $ mysql roundcubemail < drivers/database/SQL/mysql.initial.sql

4. Enable the calendar plugin

  $ cd ../../
  $ edit config/config.inc.php

Add 'calendar' to the list of active plugins:

  $config['plugins'] = array(
    (...)
    'calendar',
  );



[1] https://git.kolab.org/diffusion/RPK/