diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9911d01..8f8ed19 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,14 +15,16 @@ Version 0.17.0 - Fix bug where collection discovery under DAV-storages would produce invalid XML. See :gh:`688`. - ownCloud and Baikal are no longer tested. + +Version 0.16.6 +============== + - **Packagers:** Documentation building no longer needs a working installation of vdirsyncer. Version 0.16.5 ============== -*released on 13 June 2018* - - **Packagers:** click-log 0.3 is required. - All output will now happen on stderr (because of the upgrade of ``click-log``). diff --git a/docs/config.rst b/docs/config.rst index 2ee3b36..d4cde56 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -360,6 +360,7 @@ password. Neither are stored. Contacts for etesync. :: + [storage example_for_etesync_contacts] email = ... secrets_dir = ... @@ -377,6 +378,7 @@ password. Neither are stored. Calendars for etesync. :: + [storage example_for_etesync_calendars] email = ... secrets_dir = ... diff --git a/vdirsyncer/storage/http.py b/vdirsyncer/storage/http.py index 1c52984..64a1cf4 100644 --- a/vdirsyncer/storage/http.py +++ b/vdirsyncer/storage/http.py @@ -7,6 +7,7 @@ from ..http import USERAGENT class HttpStorage(RustStorageMixin, Storage): + storage_name = 'http' read_only = True _repr_attributes = ('username', 'url') diff --git a/vdirsyncer/storage/singlefile.py b/vdirsyncer/storage/singlefile.py index 5dc837e..1dc601c 100644 --- a/vdirsyncer/storage/singlefile.py +++ b/vdirsyncer/storage/singlefile.py @@ -13,6 +13,7 @@ logger = logging.getLogger(__name__) class SingleFileStorage(RustStorageMixin, Storage): + storage_name = 'singlefile' _repr_attributes = ('path',)