roundcubemail-plugins-kolab/plugins/tasklist
Aleksander Machniak 6ffc15cded utf8 -> utf8mb4
2021-10-26 11:55:50 +02:00
..
drivers utf8 -> utf8mb4 2021-10-26 11:55:50 +02:00
helpdocs Update localization (again) 2019-10-13 15:55:15 +02:00
localization Update localization 2021-10-11 11:04:38 +02:00
skins Elastic: Unify Options icon 2019-08-26 08:30:37 +00:00
composer.json Bump version 2021-10-01 13:22:28 +02:00
config.inc.php.dist Implement client-side and user-adjustable sorting of tasks (#3259) 2014-08-13 11:07:51 +02:00
LICENSE Added package.xml and LICENSE file (#1141) 2012-11-21 11:04:57 +01:00
README Add missing link 2019-10-20 09:40:51 +02:00
tasklist.js Tasklist: Fix list scrolling in Elastic on touch devices 2021-03-21 11:34:16 +01:00
tasklist.php PHP8 compatibility fixes 2021-02-01 08:30:34 +01:00
tasklist_base.js Elastic: Task (and event) edit dialog 2018-03-22 12:38:43 +00:00
tasklist_ui.php PHP8 compatibility fixes 2021-02-01 08:30:34 +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 as well as 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

  $ 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/