roundcubemail-plugins-kolab/plugins/tasklist
Aleksander Machniak 609336d71f Fix PHP8 warnings
2023-06-06 14:52:01 +02:00
..
drivers Fix PHP8 warnings 2023-06-06 14:52:01 +02:00
helpdocs Update localization, fix bugs in some localization files 2022-12-01 12:41:13 +01:00
localization "Edit/Share" -> "Edit" for CalDAV folders 2023-01-06 14:39:48 +01:00
skins CalDAV driver for Tasks 2023-01-03 10:42:54 +01:00
tests Add tests for the localization files 2022-12-01 12:42:11 +01:00
composer.json Try to support PHP >= 7.2, small refactoring 2022-11-30 12:54:29 +01:00
config.inc.php.dist Revert tasklist driver default change 2023-04-21 15:08:42 +02:00
LICENSE Added package.xml and LICENSE file (#1141) 2012-11-21 11:04:57 +01:00
README CalDAV driver for Tasks 2023-01-03 10:42:54 +01:00
tasklist.js CalDAV driver for Tasks 2023-01-03 10:42:54 +01:00
tasklist.php "Edit/Share" -> "Edit" also for the database driver 2023-01-17 14:52:44 +01:00
tasklist_base.js Elastic: Task (and event) edit dialog 2018-03-22 12:38:43 +00:00
tasklist_ui.php PHP8 fixes - code style 2023-01-18 16:38:22 +01: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 task management module for Roundcube
--------------------------------------

This plugin currently supports a local database, CalDAV server or a Kolab groupware
server as backends for tasklists and todo items storage.


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

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

* kolab/libcalendaring [1]
* kolab/libkolab [1]


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

For a manual installation of the 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/tasklist .
  $ cp -r /tmp/roundcubemail-plugins-kolab/plugins/libcalendaring .
  $ cp -r /tmp/roundcubemail-plugins-kolab/plugins/libkolab .

2. Create tasklist plugin configuration

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

3. Initialize the tasklist database tables

  $ cd ../../
  $ bin/initdb.sh --dir=plugins/tasklist/drivers/database/SQL

4. Build css styles for the Elastic skin (if needed)

  $ lessc --relative-urls -x plugins/libkolab/skins/elastic/libkolab.less > plugins/libkolab/skins/elastic/libkolab.min.css

5. Enable the tasklist plugin

  $ edit config/config.inc.php

Add 'tasklist' to the list of active plugins:

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


IMPORTANT
---------

This plugin doesn't work with the Classic skin of Roundcube because no
templates are available for that skin.

Use Roundcube `skins_allowed` option to limit skins available to the user
or remove incompatible skins from the skins folder.

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