On Mon, 23 Feb 2009 23:25:48 +0000
Dave Warnock <dwarn...@gmail.com> wrote:
> How/where do I define my 404 page and get it to be displayed when I
> declare error(404)?
You have to send it as response to the client manually.
e.g. 
self.error(404)
self.response.out.write("""<html><head>
<title>Not Found</title>
</head><body>
<h1>404 - Not Found</h1>
Sorry, but this file could not be found by our webserver.
</body></html>""")

Attachment: signature.asc
Description: PGP signature



Reply via email to