mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
More quoting (#630)
This commit is contained in:
parent
609434fe76
commit
9e1adf877e
1 changed files with 7 additions and 6 deletions
|
|
@ -20,8 +20,9 @@ Configuration
|
||||||
contains a very terse version of this.
|
contains a very terse version of this.
|
||||||
|
|
||||||
- In this example we set up contacts synchronization, but calendar sync
|
- In this example we set up contacts synchronization, but calendar sync
|
||||||
works almost the same. Just swap ``type = carddav`` for ``type = caldav``
|
works almost the same. Just swap ``type = "carddav"``
|
||||||
and ``fileext = .vcf`` for ``fileext = .ics``.
|
for ``type = "caldav"`` and ``fileext = ".vcf"``
|
||||||
|
for ``fileext = ".ics"``.
|
||||||
|
|
||||||
- Take a look at the :doc:`problems` page if anything doesn't work like
|
- Take a look at the :doc:`problems` page if anything doesn't work like
|
||||||
planned.
|
planned.
|
||||||
|
|
@ -111,9 +112,9 @@ pair section::
|
||||||
...
|
...
|
||||||
conflict_resolution = "b wins"
|
conflict_resolution = "b wins"
|
||||||
|
|
||||||
Earlier we wrote that ``b = my_contacts_remote``, so when vdirsyncer encounters
|
Earlier we wrote that ``b = "my_contacts_remote"``, so when vdirsyncer encounters
|
||||||
the situation where an item changed on both sides, it will simply overwrite the
|
the situation where an item changed on both sides, it will simply overwrite the
|
||||||
local item with the one from the server. Of course ``a wins`` is also a valid
|
local item with the one from the server. Of course ``"a wins"`` is also a valid
|
||||||
value.
|
value.
|
||||||
|
|
||||||
.. _metasync_tutorial:
|
.. _metasync_tutorial:
|
||||||
|
|
@ -235,8 +236,8 @@ single name you can address them both with. You will need to manually "pair"
|
||||||
(no pun intended) those collections up like this::
|
(no pun intended) those collections up like this::
|
||||||
|
|
||||||
[pair doublecloud]
|
[pair doublecloud]
|
||||||
a = my_nextcloud
|
a = "my_nextcloud"
|
||||||
b = my_icloud
|
b = "my_icloud"
|
||||||
collections = [["mytest", "test", "3b4c9995-5c67-4021-9fa0-be4633623e1c"]]
|
collections = [["mytest", "test", "3b4c9995-5c67-4021-9fa0-be4633623e1c"]]
|
||||||
|
|
||||||
``mytest`` gives that combination of calendars a nice name you can use when
|
``mytest`` gives that combination of calendars a nice name you can use when
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue