Rename _write_xml_content to _xml_response
This commit is contained in:
parent
80e8750c8a
commit
42ad18bc84
@ -345,7 +345,7 @@ class Application(
|
||||
xmlutils.pretty_xml(xml_content))
|
||||
return xml_content
|
||||
|
||||
def _write_xml_content(self, xml_content):
|
||||
def _xml_response(self, xml_content):
|
||||
if logger.isEnabledFor(logging.DEBUG):
|
||||
logger.debug("Response content:\n%s",
|
||||
xmlutils.pretty_xml(xml_content))
|
||||
@ -357,7 +357,7 @@ class Application(
|
||||
def _webdav_error_response(self, status, human_tag):
|
||||
"""Generate XML error response."""
|
||||
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
|
||||
content = self._write_xml_content(xmlutils.webdav_error(human_tag))
|
||||
content = self._xml_response(xmlutils.webdav_error(human_tag))
|
||||
return status, headers, content
|
||||
|
||||
|
||||
|
@ -68,4 +68,4 @@ class ApplicationDeleteMixin:
|
||||
xml_answer = xml_delete(
|
||||
base_prefix, path, item.collection, item.href)
|
||||
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
|
||||
return client.OK, headers, self._write_xml_content(xml_answer)
|
||||
return client.OK, headers, self._xml_response(xml_answer)
|
||||
|
@ -374,4 +374,4 @@ class ApplicationPropfindMixin:
|
||||
self._encoding)
|
||||
if status == client.FORBIDDEN and xml_answer is None:
|
||||
return httputils.NOT_ALLOWED
|
||||
return status, headers, self._write_xml_content(xml_answer)
|
||||
return status, headers, self._xml_response(xml_answer)
|
||||
|
@ -116,5 +116,4 @@ class ApplicationProppatchMixin:
|
||||
logger.warning(
|
||||
"Bad PROPPATCH request on %r: %s", path, e, exc_info=True)
|
||||
return httputils.BAD_REQUEST
|
||||
return (client.MULTI_STATUS, headers,
|
||||
self._write_xml_content(xml_answer))
|
||||
return client.MULTI_STATUS, headers, self._xml_response(xml_answer)
|
||||
|
@ -290,4 +290,4 @@ class ApplicationReportMixin:
|
||||
logger.warning(
|
||||
"Bad REPORT request on %r: %s", path, e, exc_info=True)
|
||||
return httputils.BAD_REQUEST
|
||||
return (status, headers, self._write_xml_content(xml_answer))
|
||||
return status, headers, self._xml_response(xml_answer)
|
||||
|
Loading…
Reference in New Issue
Block a user