Plain text for GET / instead of malformed HTML

It's basically the same in browsers and looks nicer in tools that don't support HTML rendering (like curl).
This commit is contained in:
Unrud 2016-08-31 02:01:18 +02:00 committed by GitHub
parent 5f46cc24bd
commit f875bcd892

View File

@ -421,9 +421,7 @@ class Application:
"""Manage GET request."""
# Display a "Radicale works!" message if the root URL is requested
if not path.strip("/"):
headers = {"Content-type": "text/html"}
answer = "<!DOCTYPE html>\n<title>Radicale</title>Radicale works!"
return client.OK, headers, answer
return client.OK, {"Content-type": "text/plain"}, "Radicale works!"
if not self._access(user, path, "r"):
return NOT_ALLOWED
with self.Collection.acquire_lock("r", user):