Add a dummy filter for item tags

Related to #53
This commit is contained in:
Guillaume Ayoub 2012-06-14 16:35:10 +02:00
parent b5e94598e9
commit 25c3648d75

View File

@ -430,8 +430,15 @@ def report(path, xml_request, collection):
in root.findall(_tag("D", "href"))) in root.findall(_tag("D", "href")))
else: else:
hreferences = (path,) hreferences = (path,)
# TODO: handle other filters
# TODO: handle the nested comp-filters correctly
# Read rfc4791-9.7.1 for info
tag_filters = set(
element.get("name") for element
in root.findall(".//%s" % _tag("C", "comp-filter")))
else: else:
hreferences = () hreferences = ()
tag_filters = None
# Writing answer # Writing answer
multistatus = ET.Element(_tag("D", "multistatus")) multistatus = ET.Element(_tag("D", "multistatus"))
@ -454,6 +461,9 @@ def report(path, xml_request, collection):
items = collection.components items = collection.components
for item in items: for item in items:
if tag_filters and item.tag not in tag_filters:
continue
response = ET.Element(_tag("D", "response")) response = ET.Element(_tag("D", "response"))
multistatus.append(response) multistatus.append(response)