Commit e9c57bea authored by unknown's avatar unknown Committed by Andrew Bonventre

net/http,doc: use HTTP status code constants where applicable

There are a few places where the integer value is used.
Use the equivalent constants to aid with readability.

Change-Id: I023b1dbe605340544c056d0e0d9d6d5a7d7d0edc
GitHub-Last-Rev: c1c90bcd251901f9f2a305ce5ddd0d85009a3d49
GitHub-Pull-Request: golang/go#24123
Reviewed-on: https://go-review.googlesource.com/96984Reviewed-by: 's avatarAndrew Bonventre <andybons@golang.org>
parent 39852bf4
......@@ -20,11 +20,11 @@ func viewRecord(w http.ResponseWriter, r *http.Request) {
key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
record := new(Record)
if err := datastore.Get(c, key, record); err != nil {
http.Error(w, err.Error(), 500)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if err := viewTemplate.Execute(w, record); err != nil {
http.Error(w, err.Error(), 500)
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
......
......@@ -33,7 +33,7 @@ type appHandler func(http.ResponseWriter, *http.Request) error
func (fn appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if err := fn(w, r); err != nil {
http.Error(w, err.Error(), 500)
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
......
......@@ -107,7 +107,7 @@ func DateServer(rw http.ResponseWriter, req *http.Request) {
date, err := exec.Command("/bin/date").Output()
if err != nil {
http.Error(rw, err.Error(), 500)
http.Error(rw, err.Error(), http.StatusInternalServerError)
return
}
rw.Write(date)
......@@ -115,7 +115,7 @@ func DateServer(rw http.ResponseWriter, req *http.Request) {
func Logger(w http.ResponseWriter, req *http.Request) {
log.Print(req.URL)
http.Error(w, "oops", 404)
http.Error(w, "oops", http.StatusNotFound)
}
var webroot = flag.String("root", os.Getenv("HOME"), "web root directory")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment