"synchronize" is a hard word...

This commit is contained in:
Markus Unterwaditzer 2014-03-02 11:48:09 +01:00
parent 0be426e382
commit b0a180babe
4 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
vdirsyncer syncronizes your CalDAV addressbooks and CalDAV calendars between vdirsyncer synchronizes your CalDAV addressbooks and CalDAV calendars between
two storages. The supported storages are CalDAV, CardDAV and two storages. The supported storages are CalDAV, CardDAV and
[vdir](https://github.com/untitaker/vdir). [vdir](https://github.com/untitaker/vdir).

View file

@ -4,7 +4,7 @@ status_path=~/.vdirsyncer/status/
# CONTACTS # CONTACTS
[pair bob_contacts] [pair bob_contacts]
# This syncronizes only a single calendar/addressbook # This synchronizes only a single calendar/addressbook
a = bob_contacts_local a = bob_contacts_local
b = bob_contacts_remote b = bob_contacts_remote
# conflict_resolution = None # abort when collisions occur # conflict_resolution = None # abort when collisions occur
@ -40,9 +40,9 @@ url = https://owncloud.example.com/remote.php/caldav/calendars/bob/somecalendar/
username = # blabla username = # blabla
password = # blabla password = # blabla
# Specify a time range which should be syncronized. Either both start_date and # Specify a time range which should be synchronized. Either both start_date and
# end_date or neither have to be set. The default is to syncronize everything. # end_date or neither have to be set. The default is to synchronize everything.
# The following example syncronizes from one year in the past to one year in # The following example synchronizes from one year in the past to one year in
# the future. # the future.
# All Python expressions are allowed here. The global namespace contains # All Python expressions are allowed here. The global namespace contains

View file

@ -132,7 +132,7 @@ def _main(env, file_cfg):
@sync_command.main('[pairs...]') @sync_command.main('[pairs...]')
def sync_main(context, pairs=None): def sync_main(context, pairs=None):
'''Syncronize the given pairs. If no pairs are given, all will be '''Syncronize the given pairs. If no pairs are given, all will be
syncronized.''' synchronized.'''
if pairs is None: if pairs is None:
pairs = list(all_pairs) pairs = list(all_pairs)
actions = [] actions = []

View file

@ -4,10 +4,10 @@
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
The function in `vdirsyncer.sync` can be called on two instances of The function in `vdirsyncer.sync` can be called on two instances of
`Storage` to syncronize them. Due to the abstract API storage classes are `Storage` to synchronize them. Due to the abstract API storage classes are
implementing, the two given instances don't have to be of the same exact implementing, the two given instances don't have to be of the same exact
type. This allows us not only to syncronize a local vdir with a CalDAV type. This allows us not only to synchronize a local vdir with a CalDAV
server, but also syncronize two CalDAV servers or two local vdirs. server, but also synchronize two CalDAV servers or two local vdirs.
:copyright: (c) 2014 Markus Unterwaditzer :copyright: (c) 2014 Markus Unterwaditzer
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.