aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/http/request.go
AgeCommit message (Expand)Author
2010-09-08http: do not cache CanonicalHeaderKeyJukka-Pekka Kekkonen
2010-08-23http: doc nitRuss Cox
2010-08-22http: fix typo in http.Request documentationScott Lawrence
2010-08-17http: parse query string always, not just in GETRuss Cox
2010-07-14mime/multipart and HTTP multipart/form-data supportBrad Fitzpatrick
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike
2010-06-16http: reply to Expect 100-continue requests automaticallyBrad Fitzpatrick
2010-06-06http: fix erroneous commentAndrew Gerrand
2010-05-11http: prevent crash if remote server is not responding with "HTTP/"Robert Griesemer
2010-03-30simplify various code using new map index ruleRuss Cox
2010-03-16http: add ParseQueryPetar Maymounkov
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer
2010-02-25strings: delete Runes, BytesRuss Cox
2010-02-22http: use RawURL in Request.WritePetar Maymounkov
2010-02-21http request URI should never be emptyMichael Hoisie
2010-02-19http: unified body transfer (read & write) logic in http.Request/Response.Petar Maymounkov
2010-02-09http: protect io.WriteString in Request/Response.Write with error checking,Petar Maymounkov
2010-02-05http: sort header keys when writing Response or Request to wirePetar Maymounkov
2010-02-04http: use ChunkWriter in Request.WritePetar Maymounkov
2010-01-29http: increase header line limit, let req.Host override req.URL.HostPetar Maymounkov
2010-01-28Cosmetic bug or compliance fixes in http.Response.Petar Maymounkov
2010-01-25http: make Request.Body an io.ReadCloser, matching Response.Body.Petar Maymounkov
2010-01-18Significant extension to http.Response, which now adheres to thePetar Maymounkov
2010-01-07http: most of a URL shouldn't use URL-escapingRuss Cox
2010-01-06http: avoid header duplication - take struct fields out of Header mapRuss Cox
2009-12-151) Change default gofmt default settings forRobert Griesemer
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike
2009-11-24Change to container/vector interface:Robert Griesemer
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox
2009-11-17http: do not crash accessing r.Form if ParseForm failsRuss Cox
2009-11-10allow user agent to mention Go.Russ Cox
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer
2009-11-08a nagging inconsistency: capitalization ofRuss Cox
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer
2009-10-23publish Request.Write (rename from Request.write)Rob Pike
2009-10-08more lgtm files from gofmtRuss Cox
2009-10-03Fixing HTTP POST handling to work with Chrome and Safari.Bill Neubauer
2009-09-15more "declared and not used".Russ Cox
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox
2009-08-27remove Line in bufio.ReadLine(Bytes|Slice|String)Russ Cox
2009-08-20naming cleanup.Russ Cox
2009-08-12convert non-low-level non-google pkg codeRuss Cox
2009-06-29bug163 bug164 bug166Russ Cox
2009-06-29io.StringBytes -> strings.BytesRuss Cox
2009-06-25http Request parsing, plus a convenient accessor.David Symonds
2009-06-25Change os.Error convention:Russ Cox
2009-06-24Change strings.Split, bytes.Split to take a maximum substring count argument.David Symonds
2009-06-23Fix http client handling of status messages with spaces (e.g. "HTTP/1.1 400 BadDavid Symonds
2009-06-22Don't prefix Url.Path with a slash in Request.write,David Symonds