Skip to content

Commit e5caf67

Browse files
Rom1deTroyesHugo Osvaldo Barrera
authored andcommitted
Add double quote in exemple config files (pimutils#732)
* nextcloud.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * fastmail.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * icloud.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * todoman.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * xandikos.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * davmail.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * partial-sync.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName"
1 parent f0fe104 commit e5caf67

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

docs/partial-sync.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ Paste this into your vdirsyncer config::
3232
[storage holidays_public]
3333
type = "http"
3434
# The URL to your iCalendar file.
35-
url = ...
35+
url = "..."
3636

3737
[storage holidays_private]
3838
type = "caldav"
3939
# The direct URL to your calendar.
40-
url = ...
40+
url = "..."
4141
# The credentials to your CalDAV server
42-
username = ...
43-
password = ...
42+
username = "..."
43+
password = "..."
4444

4545
Then run ``vdirsyncer discover holidays`` and ``vdirsyncer sync holidays``, and
4646
your previously created calendar should be filled with events.

docs/tutorials/davmail.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Exchange server you might get confronted with weird errors of all sorts
1717
type = "caldav"
1818
url = "http://localhost:1080/users/[email protected]/calendar/"
1919
username = "[email protected]"
20-
password = ...
20+
password = "..."
2121

2222
- Older versions of DavMail handle URLs case-insensitively. See :gh:`144`.
2323
- DavMail is handling malformed data on the Exchange server very poorly. In

docs/tutorials/fastmail.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ the settings to use::
1111
[storage cal]
1212
type = "caldav"
1313
url = "https://caldav.fastmail.com/"
14-
username = ...
15-
password = ...
14+
username = "..."
15+
password = "..."
1616

1717
[storage card]
1818
type = "carddav"
1919
url = "https://carddav.fastmail.com/"
20-
username = ...
21-
password = ...
20+
username = "..."
21+
password = "..."
2222

2323
.. _FastMail: https://www.fastmail.com/

docs/tutorials/icloud.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Vdirsyncer is regularly tested against iCloud_.
1111
[storage cal]
1212
type = "caldav"
1313
url = "https://caldav.icloud.com/"
14-
username = ...
15-
password = ...
14+
username = "..."
15+
password = "..."
1616

1717
[storage card]
1818
type = "carddav"
1919
url = "https://contacts.icloud.com/"
20-
username = ...
21-
password = ...
20+
username = "..."
21+
password = "..."
2222

2323
Problems:
2424

docs/tutorials/nextcloud.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Vdirsyncer is continuously tested against the latest version of nextCloud_::
77
[storage cal]
88
type = "caldav"
99
url = "https://nextcloud.example.com/"
10-
username = ...
11-
password = ...
10+
username = "..."
11+
password = "..."
1212

1313
[storage card]
1414
type = "carddav"

docs/tutorials/todoman.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ Assuming a config like this::
3737
[storage calendars_dav]
3838
type = "caldav"
3939
url = "https://nextcloud.example.net/"
40-
username = ...
41-
password = ...
40+
username = "..."
41+
password = "..."
4242

4343
``vdirsyncer sync`` will then synchronize the calendars of your NextCloud_
4444
instance to subfolders of ``~/.calendar/``.

docs/tutorials/xandikos.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ point vdirsyncer against the root of Xandikos like this::
1111
[storage cal]
1212
type = "caldav"
1313
url = "https://xandikos.example.com/"
14-
username = ...
15-
password = ...
14+
username = "..."
15+
password = "..."
1616

1717
[storage card]
1818
type = "carddav"
1919
url = "https://xandikos.example.com/"
20-
username = ...
21-
password = ...
20+
username = "..."
21+
password = "..."
2222

2323
.. _Xandikos: https://github.com/jelmer/xandikos

0 commit comments

Comments
 (0)