mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Add the "set_mimetype" method forgotten during the merge (closes #657)
This commit is contained in:
parent
42ba9e0dca
commit
54aa8817e7
1 changed files with 9 additions and 0 deletions
|
@ -362,6 +362,15 @@ class Collection(object):
|
||||||
text = serialize(headers, items)
|
text = serialize(headers, items)
|
||||||
self.save(text)
|
self.save(text)
|
||||||
|
|
||||||
|
def set_mimetype(self, mimetype):
|
||||||
|
"""Set the mimetype of the collection."""
|
||||||
|
with self.props as props:
|
||||||
|
if "tag" not in props:
|
||||||
|
if mimetype == "text/vcard":
|
||||||
|
props["tag"] = "VADDRESSBOOK"
|
||||||
|
else:
|
||||||
|
props["tag"] = "VCALENDAR"
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def tag(self):
|
def tag(self):
|
||||||
"""Type of the collection."""
|
"""Type of the collection."""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue