summaryrefslogtreecommitdiff
path: root/src/pkg/http/readrequest_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-9/+9
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-0/+35
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-10/+10
2010-03-16http: change RawPath to mean raw path, not raw everything-after-scheme.Russ Cox1-1/+1
The new meaning is more useful for both websocket and http. R=r, petar-m, ukai CC=golang-dev, madari http://codereview.appspot.com/582043
2010-03-04gofmt: modified algorithm for alignment of multi-line composite/list entriesRobert Griesemer1-1/+1
- only manual changes are in src/pkg/go/printer/nodes.go - use a heuristic to determine "outliers" such that not entire composites are forced to align with them - improves several places that were not unligned before due too simple heuristic - unalignes some cases that contain "outliers" - gofmt -w src misc Fixes issue 644. R=rsc, r CC=golang-dev http://codereview.appspot.com/241041
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-19/+19
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2010-02-19http: unified body transfer (read & write) logic in http.Request/Response.Petar Maymounkov1-0/+1
Compliance issue addressed here: POST requests carrying form data are required to use "identity" transfer encoding by common nginx and apache server configurations, e.g. wordpress.com (and many others). So, Request needed to be able to send non-chunked encodings. Thus, Request is extended to support identity and chunked encodings, like Response. Since the Read() and Write() logic are shared by both (and are quite long), it is exported in a separate file transfer.go. R=rsc CC=golang-dev http://codereview.appspot.com/217048 Committer: Russ Cox <rsc@golang.org>
2010-02-01http: test for ReadReqeustPetar Maymounkov1-0/+96
R=rsc, rsc1 CC=golang-dev http://codereview.appspot.com/195068 Committer: Russ Cox <rsc@golang.org>