mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix #66
This commit is contained in:
parent
a35aa13925
commit
5a89f9c66b
1 changed files with 22 additions and 3 deletions
|
|
@ -22,9 +22,28 @@ 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.
|
||||
|
||||
This storage has many raceconditions and is very slow. What this basically
|
||||
means is that you shouldn't use this storage unless you have to (e.g. you
|
||||
use a calendar client which requires it)'''
|
||||
.. note::
|
||||
This storage has many raceconditions and is very slow. What this
|
||||
basically means is that you shouldn't use this storage unless you have
|
||||
to (e.g. you use a calendar client which requires it)
|
||||
|
||||
Example for syncing with :py:class:`vdirsyncer.storage.CaldavStorage`::
|
||||
|
||||
[pair my_calendar]
|
||||
a = my_calendar_local
|
||||
b = my_calendar_remote
|
||||
|
||||
[storage my_calendar_local]
|
||||
type = singlefile
|
||||
path = ~/my_calendar.ics
|
||||
|
||||
[storage my_calendar_remote]
|
||||
type = caldav
|
||||
url = https://caldav.example.org/username/my_calendar/
|
||||
#username =
|
||||
#password =
|
||||
|
||||
'''
|
||||
|
||||
_repr_attributes = ('path',)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue