From 001ec99e577b56479149fbe39de1d9291a134527 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Tue, 26 Jun 2012 20:00:16 +0200 Subject: [PATCH] Fixed up HTTP response status info a bit. --- wrw/proto.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/wrw/proto.py b/wrw/proto.py index 7df66ff..881f4e4 100644 --- a/wrw/proto.py +++ b/wrw/proto.py @@ -1,8 +1,12 @@ statusinfo = { - 400: ("Bad Request", "Your issued HTTP request is invalid."), - 403: ("Forbidden", "You are not authorized to view the requested resource."), + 400: ("Bad Request", "Invalid HTTP request."), + 401: ("Unauthorized", "Authentication must be provided for the requested resource."), + 403: ("Forbidden", "You are not authorized to request the requested resource."), 404: ("Not Found", "The requested resource was not found."), - 500: ("Server Error", "An internal error occurred.") + 405: ("Method Not Allowed", "The request method is not recognized or permitted by the requested resource."), + 500: ("Server Error", "An internal error occurred."), + 501: ("Not Implemented", "The requested functionality has not been implemented."), + 503: ("Service Unavailable", "Service is being denied at this time."), } def httpdate(ts): -- 2.11.0