diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2011-03-17 08:43:22 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2011-03-17 08:43:22 (GMT) |
commit | b253c9f66de1226ad6b72d79af70563671fe4320 (patch) | |
tree | d5a096ab5de9dfb391a9c9efa9d0421e707d90a2 /Lib/http | |
parent | b52c0be4d284782475a96ce070075b5e912bccaf (diff) | |
download | cpython-b253c9f66de1226ad6b72d79af70563671fe4320.zip cpython-b253c9f66de1226ad6b72d79af70563671fe4320.tar.gz cpython-b253c9f66de1226ad6b72d79af70563671fe4320.tar.bz2 |
Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy Zlobin.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/server.py | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py index 543abe0..c0245ec 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,15 +103,20 @@ import copy # Default error message template DEFAULT_ERROR_MESSAGE = """\ -<head> -<title>Error response</title> -</head> -<body> -<h1>Error response</h1> -<p>Error code %(code)d. -<p>Message: %(message)s. -<p>Error code explanation: %(code)s = %(explain)s. -</body> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <title>Error response</title> + </head> + <body> + <h1>Error response</h1> + <p>Error code: %(code)d</p> + <p>Message: %(message)s.</p> + <p>Error code explanation: %(code)s - %(explain)s.</p> + </body> +</html> """ DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" |