Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 1 | -35/+28 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 1 | -0/+27 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -6/+17 | |
2010-07-01 | strings and bytes.Split: make count of 0 mean 0, not infinite. | Rob Pike | 1 | -2/+2 | |
Use a count of -1 for infinity. Ditto for Replace. R=rsc CC=golang-dev http://codereview.appspot.com/1704044 Committer: Rob Pike <r@golang.org> | |||||
2010-03-30 | simplify various code using new map index rule | Russ Cox | 1 | -5/+2 | |
R=r CC=golang-dev http://codereview.appspot.com/833044 | |||||
2010-02-24 | http: fix handling of Close, use Close in http.Post | Russ Cox | 1 | -7/+21 | |
default to HTTP/1.1 R=petar-m CC=golang-dev http://codereview.appspot.com/224041 | |||||
2010-02-19 | http: unified body transfer (read & write) logic in http.Request/Response. | Petar Maymounkov | 1 | -0/+419 | |
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> |