Merge branch '0.16-maintenance'

This commit is contained in:
Markus Unterwaditzer 2018-06-13 18:39:33 +02:00
commit 648cd1ae98
4 changed files with 8 additions and 2 deletions

View file

@ -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``).

View file

@ -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 = ...

View file

@ -7,6 +7,7 @@ from ..http import USERAGENT
class HttpStorage(RustStorageMixin, Storage):
storage_name = 'http'
read_only = True
_repr_attributes = ('username', 'url')

View file

@ -13,6 +13,7 @@ logger = logging.getLogger(__name__)
class SingleFileStorage(RustStorageMixin, Storage):
storage_name = 'singlefile'
_repr_attributes = ('path',)