mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
Update PROPPATCH to new storage API
This commit is contained in:
parent
472d016d1e
commit
e8c1defe6a
2 changed files with 13 additions and 14 deletions
|
@ -442,19 +442,13 @@ def proppatch(path, xml_request, collection):
|
|||
href.text = _href(path)
|
||||
response.append(href)
|
||||
|
||||
with collection.props as collection_props:
|
||||
for short_name, value in props_to_set.items():
|
||||
if short_name.split(":")[-1] == "calendar-timezone":
|
||||
collection.replace(None, value)
|
||||
collection_props[short_name] = value
|
||||
_add_propstat_to(response, short_name, 200)
|
||||
for short_name in props_to_remove:
|
||||
try:
|
||||
del collection_props[short_name]
|
||||
except KeyError:
|
||||
_add_propstat_to(response, short_name, 412)
|
||||
else:
|
||||
_add_propstat_to(response, short_name, 200)
|
||||
for short_name, value in props_to_set.items():
|
||||
collection.set_meta(short_name, value)
|
||||
_add_propstat_to(response, short_name, 200)
|
||||
|
||||
for short_name in props_to_remove:
|
||||
collection.set_meta(short_name, '')
|
||||
_add_propstat_to(response, short_name, 200)
|
||||
|
||||
return _pretty_xml(multistatus)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue