mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
Merge branch 'improved-broken-vcard-handling' of https://github.com/pbiering/Radicale into pbiering-improved-broken-vcard-handling
This commit is contained in:
commit
6b683477cb
3 changed files with 28 additions and 2 deletions
|
@ -28,6 +28,7 @@ in them for XML requests (all but PUT).
|
|||
import posixpath
|
||||
import re
|
||||
import xml.etree.ElementTree as ET
|
||||
from pprint import pprint
|
||||
from collections import OrderedDict
|
||||
from datetime import datetime, timedelta, timezone
|
||||
from http import client
|
||||
|
@ -552,7 +553,8 @@ def propfind(base_prefix, path, xml_request, read_collections,
|
|||
else:
|
||||
response = _propfind_response(
|
||||
base_prefix, path, collection, props, user, write=True)
|
||||
multistatus.append(response)
|
||||
if response:
|
||||
multistatus.append(response)
|
||||
for collection in read_collections:
|
||||
if collection in collections:
|
||||
continue
|
||||
|
@ -563,7 +565,8 @@ def propfind(base_prefix, path, xml_request, read_collections,
|
|||
else:
|
||||
response = _propfind_response(
|
||||
base_prefix, path, collection, props, user, write=False)
|
||||
multistatus.append(response)
|
||||
if response:
|
||||
multistatus.append(response)
|
||||
|
||||
return client.MULTI_STATUS, _pretty_xml(multistatus)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue