|
|
@@ -49,42 +49,42 @@ else:
|
|
|
|
|
|
NOT_ALLOWED: types.WSGIResponse = (
|
|
|
client.FORBIDDEN, (("Content-Type", "text/plain"),),
|
|
|
- "Access to the requested resource forbidden.")
|
|
|
+ "Access to the requested resource forbidden.", None)
|
|
|
FORBIDDEN: types.WSGIResponse = (
|
|
|
client.FORBIDDEN, (("Content-Type", "text/plain"),),
|
|
|
- "Action on the requested resource refused.")
|
|
|
+ "Action on the requested resource refused.", None)
|
|
|
BAD_REQUEST: types.WSGIResponse = (
|
|
|
- client.BAD_REQUEST, (("Content-Type", "text/plain"),), "Bad Request")
|
|
|
+ client.BAD_REQUEST, (("Content-Type", "text/plain"),), "Bad Request", None)
|
|
|
NOT_FOUND: types.WSGIResponse = (
|
|
|
client.NOT_FOUND, (("Content-Type", "text/plain"),),
|
|
|
- "The requested resource could not be found.")
|
|
|
+ "The requested resource could not be found.", None)
|
|
|
CONFLICT: types.WSGIResponse = (
|
|
|
client.CONFLICT, (("Content-Type", "text/plain"),),
|
|
|
- "Conflict in the request.")
|
|
|
+ "Conflict in the request.", None)
|
|
|
METHOD_NOT_ALLOWED: types.WSGIResponse = (
|
|
|
client.METHOD_NOT_ALLOWED, (("Content-Type", "text/plain"),),
|
|
|
- "The method is not allowed on the requested resource.")
|
|
|
+ "The method is not allowed on the requested resource.", None)
|
|
|
PRECONDITION_FAILED: types.WSGIResponse = (
|
|
|
client.PRECONDITION_FAILED,
|
|
|
- (("Content-Type", "text/plain"),), "Precondition failed.")
|
|
|
+ (("Content-Type", "text/plain"),), "Precondition failed.", None)
|
|
|
REQUEST_TIMEOUT: types.WSGIResponse = (
|
|
|
client.REQUEST_TIMEOUT, (("Content-Type", "text/plain"),),
|
|
|
- "Connection timed out.")
|
|
|
+ "Connection timed out.", None)
|
|
|
REQUEST_ENTITY_TOO_LARGE: types.WSGIResponse = (
|
|
|
client.REQUEST_ENTITY_TOO_LARGE, (("Content-Type", "text/plain"),),
|
|
|
- "Request body too large.")
|
|
|
+ "Request body too large.", None)
|
|
|
REMOTE_DESTINATION: types.WSGIResponse = (
|
|
|
client.BAD_GATEWAY, (("Content-Type", "text/plain"),),
|
|
|
- "Remote destination not supported.")
|
|
|
+ "Remote destination not supported.", None)
|
|
|
DIRECTORY_LISTING: types.WSGIResponse = (
|
|
|
client.FORBIDDEN, (("Content-Type", "text/plain"),),
|
|
|
- "Directory listings are not supported.")
|
|
|
+ "Directory listings are not supported.", None)
|
|
|
INSUFFICIENT_STORAGE: types.WSGIResponse = (
|
|
|
client.INSUFFICIENT_STORAGE, (("Content-Type", "text/plain"),),
|
|
|
- "Insufficient Storage. Please contact the administrator.")
|
|
|
+ "Insufficient Storage. Please contact the administrator.", None)
|
|
|
INTERNAL_SERVER_ERROR: types.WSGIResponse = (
|
|
|
client.INTERNAL_SERVER_ERROR, (("Content-Type", "text/plain"),),
|
|
|
- "A server error occurred. Please contact the administrator.")
|
|
|
+ "A server error occurred. Please contact the administrator.", None)
|
|
|
|
|
|
DAV_HEADERS: str = "1, 2, 3, calendar-access, addressbook, extended-mkcol"
|
|
|
|
|
|
@@ -159,7 +159,7 @@ def read_request_body(configuration: "config.Configuration",
|
|
|
def redirect(location: str, status: int = client.FOUND) -> types.WSGIResponse:
|
|
|
return (status,
|
|
|
{"Location": location, "Content-Type": "text/plain"},
|
|
|
- "Redirected to %s" % location)
|
|
|
+ "Redirected to %s" % location, None)
|
|
|
|
|
|
|
|
|
def _serve_traversable(
|
|
|
@@ -214,7 +214,7 @@ def _serve_traversable(
|
|
|
# adjust on the fly default main.js of InfCloud installation
|
|
|
logger.debug("Adjust on-the-fly default InfCloud main.js in served page: %r", path)
|
|
|
answer = answer.replace(b"'InfCloud - the open source CalDAV/CardDAV web client'", b"'InfCloud - the open source CalDAV/CardDAV web client - served through Radicale CalDAV/CardDAV server'")
|
|
|
- return client.OK, headers, answer
|
|
|
+ return client.OK, headers, answer, None
|
|
|
|
|
|
|
|
|
def serve_resource(
|