Add Orage and khard to client apps

Fix #122
This commit is contained in:
Markus Unterwaditzer 2014-10-03 14:58:03 +02:00
parent 281b537531
commit 9b6dba8511
2 changed files with 19 additions and 10 deletions

View file

@ -2,17 +2,24 @@
Supported software
==================
Clients supporting vdir
=======================
Client applications
===================
- `khal <http://lostpackets.de/khal/>`_, a calendar application.
- `khal <http://lostpackets.de/khal/>`_, a calendar application supporting
:doc:`vdir`. You can use :py:class:`vdirsyncer.storage.FilesystemStorage`
with it.
- `vdirsyncer <http://vdirsyncer.readthedocs.org/>`_, a synchronization
framework and program.
- `khard <http://github.com/scheibler/khard/>`_, a commandline addressbook
supporting :doc:`vdir`. You can use
:py:class:`vdirsyncer.storage.FilesystemStorage` with it.
- `The ppl addressbook <http://ppladdressbook.org/>`_ uses a similar enough
storage format. There are some pitfalls though, `see the notes on the related
issue <https://github.com/hnrysmth/ppl/issues/47>`_.
- `The ppl addressbook <http://ppladdressbook.org/>`_ uses a storage format
similar to :doc:`vdir`. There are some pitfalls though, `see the notes on the
related issue <https://github.com/hnrysmth/ppl/issues/47>`_.
- `The graphical calendar app Orage <http://www.kolumbus.fi/~w408237/orage/>`_
saves a calendar in a single ``.ics`` file. You can use
:py:class:`vdirsyncer.storage.SingleFileStorage` with it.
Supported servers
=================

View file

@ -19,8 +19,10 @@ logger = log.get(__name__)
class SingleFileStorage(Storage):
'''Save data in single VCALENDAR file, like Orage -- a calendar app for
XFCE -- and Radicale do. Usable as ``singlefile`` in the config file.
'''Save data in single ``.vcf`` or ``.ics`` file. Usable as ``singlefile``
in the config file.
The storage basically guesses how items should be joined in the file.
.. versionadded:: 0.1.6