summaryrefslogtreecommitdiff
path: root/src/pkg/http
AgeCommit message (Expand)AuthorFilesLines
2010-06-16http: reply to Expect 100-continue requests automaticallyBrad Fitzpatrick2-0/+35
2010-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox1-4/+11
2010-06-08http: add Head function for making HTTP HEAD requestsAndrew Gerrand2-1/+23
2010-06-06http: fix erroneous commentAndrew Gerrand1-4/+4
2010-06-03http: handle status 304 correctlyRuss Cox1-0/+11
2010-05-27changes &x -> x[0:] for array to slice conversionRuss Cox1-1/+1
2010-05-11http: prevent crash if remote server is not responding with "HTTP/"Robert Griesemer1-1/+1
2010-04-05http: fix documentation exampleRuss Cox1-6/+7
2010-03-30simplify various code using new map index ruleRuss Cox3-47/+30
2010-03-30single argument panicRuss Cox1-6/+2
2010-03-29http: add HandleFunc as shortcut to Handle(path, HandlerFunc(func))Andrew Gerrand1-0/+11
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-1/+1
2010-03-24runtime: malloc sampling, pprof interfaceRuss Cox2-0/+103
2010-03-20http: add Error helper functionAndrew Gerrand1-4/+7
2010-03-16http: change RawPath to mean raw path, not raw everything-after-scheme.Russ Cox4-70/+109
2010-03-16http: add ParseQueryPetar Maymounkov2-5/+8
2010-03-04gofmt: modified algorithm for alignment of multi-line composite/list entriesRobert Griesemer4-20/+20
2010-03-02gofmt: fix alignment of multi-line var declarationsRobert Griesemer1-2/+2
2010-03-03http: corrected comment for Response.GetHeader.Andrew Gerrand1-7/+6
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer9-145/+145
2010-02-25go/printer, gofmt: align comments in multi-line expression listsRobert Griesemer1-1/+1
2010-02-25strings: delete Runes, BytesRuss Cox4-8/+4
2010-02-24http: fix handling of Close, use Close in http.PostRuss Cox5-11/+68
2010-02-22http: use RawURL in Request.WritePetar Maymounkov2-5/+8
2010-02-22http: fix bug in PostPetar Maymounkov1-1/+3
2010-02-21http request URI should never be emptyMichael Hoisie1-1/+1
2010-02-19http: unified body transfer (read & write) logic in http.Request/Response.Petar Maymounkov6-348/+482
2010-02-19http: add Pending method to ServerConn, ClientConnPetar Maymounkov1-1/+19
2010-02-19http: add DumpRequest, DumpResponse, for debuggingPetar Maymounkov2-0/+77
2010-02-18http: persistent connection objectsPetar Maymounkov2-0/+286
2010-02-18http: do not edit Response.ContentLength in Response.WritePetar Maymounkov1-6/+7
2010-02-12http: clarify ServeHTTP returnRuss Cox1-0/+5
2010-02-10Added tests for http.Request/Response.Write()Petar Maymounkov2-0/+173
2010-02-09mime: new package, use in httpMichael Hoisie1-12/+2
2010-02-09http: protect io.WriteString in Request/Response.Write with error checking,Petar Maymounkov2-4/+13
2010-02-05http: sort header keys when writing Response or Request to wirePetar Maymounkov2-11/+24
2010-02-04http: use ChunkWriter in Request.WritePetar Maymounkov1-27/+15
2010-02-01http: test for ReadReqeustPetar Maymounkov1-0/+96
2010-01-29http: increase header line limit, let req.Host override req.URL.HostPetar Maymounkov1-4/+11
2010-01-28http: add lexing functionsPetar Maymounkov3-0/+223
2010-01-28Cosmetic bug or compliance fixes in http.Response.Petar Maymounkov2-15/+17
2010-01-25http: make Request.Body an io.ReadCloser, matching Response.Body.Petar Maymounkov4-16/+19
2010-01-19http: handle old HTTP/1.0 unchunked "read to EOF" bodies.Russ Cox2-10/+186
2010-01-18Significant extension to http.Response, which now adheres to thePetar Maymounkov5-94/+548
2010-01-07http: most of a URL shouldn't use URL-escapingRuss Cox3-18/+41
2010-01-06http: avoid header duplication - take struct fields out of Header mapRuss Cox1-2/+12
2010-01-06Add http.CanonicalPath and tests for it. Remove BUG(rsc) from url.go.Ivan Krasin2-9/+95
2009-12-15Add basic http authentication support.Ivan Krasin1-0/+11
2009-12-151) Change default gofmt default settings forRobert Griesemer10-611/+611
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike2-3/+4