summaryrefslogtreecommitdiff
path: root/src/pkg/http/client.go
AgeCommit message (Expand)AuthorFilesLines
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-3/+11
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-88/+62
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-15/+44
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-60/+19
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-66/+150
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-1/+8
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-7/+63
2010-06-08http: add Head function for making HTTP HEAD requestsAndrew Gerrand1-1/+13
2010-02-25strings: delete Runes, BytesRuss Cox1-1/+1
2010-02-24http: fix handling of Close, use Close in http.PostRuss Cox1-0/+1
2010-02-22http: fix bug in PostPetar Maymounkov1-1/+3
2010-01-25http: make Request.Body an io.ReadCloser, matching Response.Body.Petar Maymounkov1-1/+7
2010-01-18Significant extension to http.Response, which now adheres to thePetar Maymounkov1-91/+4
2009-12-15Add basic http authentication support.Ivan Krasin1-0/+11
2009-12-151) Change default gofmt default settings forRobert Griesemer1-60/+60
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-1/+1
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-16/+16
2009-11-08a nagging inconsistency: capitalization ofRuss Cox1-6/+6
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-3/+1
2009-10-23publish Request.Write (rename from Request.write)Rob Pike1-1/+1
2009-10-19test and fix http redirect handlingRuss Cox1-0/+1
2009-10-08more lgtm files from gofmtRuss Cox1-1/+1
2009-10-06apply gofmt to go, gob, hash, http, image, io, json, logRuss Cox1-11/+11
2009-09-17unused importsRuss Cox1-1/+0
2009-09-15more "declared and not used".Russ Cox1-1/+1
2009-08-26add io.LimitReader.Russ Cox1-0/+6
2009-08-12convert non-low-level non-google pkg codeRuss Cox1-1/+0
2009-07-15change HTTP access for RPC.Russ Cox1-32/+40
2009-07-06allow conversion to interface typeRuss Cox1-3/+1
2009-06-25Change os.Error convention:Russ Cox1-23/+25
2009-06-24Change strings.Split, bytes.Split to take a maximum substring count argument.David Symonds1-5/+4
2009-06-23Fix http client handling of status messages with spaces (e.g. "HTTP/1.1 400 BadDavid Symonds1-33/+24
2009-06-09Basic HTTP client.Steve Newman1-0/+227