roundcubemail-plugins-kolab/plugins/tasklist
2019-10-16 19:50:01 +02:00
..
drivers Tasks: Fix saving completeness value for a new task when using database driver 2019-10-01 21:27:12 +02:00
helpdocs Update localization (again) 2019-10-13 15:55:15 +02:00
localization Update localization (again) 2019-10-13 15:55:15 +02:00
skins Elastic: Unify Options icon 2019-08-26 08:30:37 +00:00
composer.json Bump plugin versions to 3.5.1 2019-10-07 14:00:23 +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 Mention skins_allowed option 2019-10-09 18:01:51 +02:00
tasklist.js Elastic: Make checkbox pretty after adding tasks folder 2019-09-28 14:03:42 +02:00
tasklist.php Unset _token 2019-09-28 13:09:36 +02:00
tasklist_base.js Elastic: Task (and event) edit dialog 2018-03-22 12:38:43 +00:00
tasklist_ui.php Tasks: Fix folder edit/create issues 2019-05-21 11:45:37 +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 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:

* libcalendaring [1]
* 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.