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 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 - `khard <http://github.com/scheibler/khard/>`_, a commandline addressbook
framework and program. supporting :doc:`vdir`. You can use
:py:class:`vdirsyncer.storage.FilesystemStorage` with it.
- `The ppl addressbook <http://ppladdressbook.org/>`_ uses a similar enough - `The ppl addressbook <http://ppladdressbook.org/>`_ uses a storage format
storage format. There are some pitfalls though, `see the notes on the related similar to :doc:`vdir`. There are some pitfalls though, `see the notes on the
issue <https://github.com/hnrysmth/ppl/issues/47>`_. 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 Supported servers
================= =================

View file

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