parent
bf8bd90bcb
commit
3a9bcc7555
@ -127,6 +127,10 @@ class Item:
|
|||||||
def content_length(self):
|
def content_length(self):
|
||||||
return len(self.serialize().encode(config.get("encoding", "request")))
|
return len(self.serialize().encode(config.get("encoding", "request")))
|
||||||
|
|
||||||
|
@property
|
||||||
|
def etag(self):
|
||||||
|
return get_etag(self.serialize())
|
||||||
|
|
||||||
|
|
||||||
class Collection:
|
class Collection:
|
||||||
"""Collection stored in several files per calendar."""
|
"""Collection stored in several files per calendar."""
|
||||||
|
@ -271,7 +271,7 @@ def _propfind_response(path, item, props, user, write=False):
|
|||||||
element = ET.Element(tag)
|
element = ET.Element(tag)
|
||||||
is404 = False
|
is404 = False
|
||||||
if tag == _tag("D", "getetag"):
|
if tag == _tag("D", "getetag"):
|
||||||
element.text = storage.get_etag(item.serialize())
|
element.text = item.etag
|
||||||
elif tag == _tag("D", "principal-URL"):
|
elif tag == _tag("D", "principal-URL"):
|
||||||
tag = ET.Element(_tag("D", "href"))
|
tag = ET.Element(_tag("D", "href"))
|
||||||
tag.text = _href(path)
|
tag.text = _href(path)
|
||||||
|
Loading…
Reference in New Issue
Block a user