X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=wrw%2Fproto.py;h=ab3737b8f70575c363f93991b659ebaf88f60f59;hb=3ba5e96caf3d5b25c9dead35c65dd4b9ac694f44;hp=7df66ff1d91d00b97eabb4c7962e4fc60aaea679;hpb=ea18777a1f761acd6b790467db79679b94850af9;p=wrw.git diff --git a/wrw/proto.py b/wrw/proto.py index 7df66ff..ab3737b 100644 --- a/wrw/proto.py +++ b/wrw/proto.py @@ -1,8 +1,14 @@ +import time + 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):