aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/http
AgeCommit message (Expand)Author
2011-08-24http: adjust test threshold for larger suse buffersBrad Fitzpatrick
2011-08-24http: on invalid request, send 400 responseBrad Fitzpatrick
2011-08-23http: delete error kludgeRuss Cox
2011-08-23http: add MaxBytesReader to limit request body sizeBrad Fitzpatrick
2011-08-18mime: ParseMediaType returns os.Error now, not a nil mapBrad Fitzpatrick
2011-08-18http: remove a TODO due to new behavior of nil mapsRob Pike
2011-08-17url: new packageRob Pike
2011-08-10http: corrects undocumented side effects in http.DefaultTransport's RoundTrip...Dave Grijalva
2011-08-10http: fix ParseMultipartForm after MultipartReader errorBrad Fitzpatrick
2011-08-09http: configurable and default request header size limitBrad Fitzpatrick
2011-08-09http: add test to serve content in index.htmlYasuhiro Matsumoto
2011-08-04http: correct path to serve index.html.Yasuhiro Matsumoto
2011-08-04http: add more MPEG-4 MIME types to sniffer, and disable MP4 sniffing.David Symonds
2011-08-01http: correct format flags when printing errors during testsAlex Brainman
2011-07-28http: make serveFile redirects relative to work with StripPrefixAndrew Balholm
2011-07-27container/vector: removed some uses of container/vector in other pkgsJohn Asmuth
2011-07-26http: set content type for fileserver directory listingsRobert Griesemer
2011-07-26http: implement MP4 sniffing.David Symonds
2011-07-22pkg/http: fix a couple of error messagesRob Pike
2011-07-22http: clarify use of w.conn.body in Write when sniffing.David Symonds
2011-07-21http: fix chunking bug during content sniffingRuss Cox
2011-07-21undo CL 4808044 / 1bd754e69ce7Russ Cox
2011-07-21http: do not parse req.URL for CONNECTYasuhiro Matsumoto
2011-07-21http: disable sniffer for now.David Symonds
2011-07-21http: sniffing algorithm.David Symonds
2011-07-18http: let FileServer work when path doesn't begin with a slashBrad Fitzpatrick
2011-07-18http: drain the pipe output in TestHandlerPanic to avoid logging deadlock.David Symonds
2011-07-17http: make tests quiet, fixing a test raceBrad Fitzpatrick
2011-07-15http: fixes for sniffingRuss Cox
2011-07-15http: sniffing placeholderRuss Cox
2011-07-14cgi: make test less flakyBrad Fitzpatrick
2011-07-14go/printer: changed max. number of newlines from 3 to 2Robert Griesemer
2011-07-13fix build from e904b6784768 breakageBrad Fitzpatrick
2011-07-13http: fix Content-Type of file extension.Yasuhiro Matsumoto
2011-07-11http: support for periodic flushing in ReverseProxyBrad Fitzpatrick
2011-07-11cgi: close stdout reader pipe when finishedBrad Fitzpatrick
2011-07-09http: update triv.go with gofixAndrew Balholm
2011-07-08sort: rename helpers: s/Sort// in sort.Sort[Float64s|Ints|Strings]Andrew Gerrand
2011-07-07cgi: don't depend on CGI.pm for testsBrad Fitzpatrick
2011-06-30http/cgi: add Handler.Dir to specify working directoryYasuhiro Matsumoto
2011-06-29http: document that ServerConn and ClientConn are low-levelBrad Fitzpatrick
2011-06-29http: make NewChunkedReader publicAndrew Balholm
2011-06-28strings.Split: make the default to split all.Rob Pike
2011-06-27http: respect Handlers setting Connection: close in their responseBrad Fitzpatrick
2011-06-27http: add FileSystem interface, make FileServer use itBrad Fitzpatrick
2011-06-27http: add StripPrefix handler wrapperBrad Fitzpatrick
2011-06-27http: do TLS handshake explicitly before copying TLS stateBrad Fitzpatrick
2011-06-24http: better handling of 0-length Request.BodyBrad Fitzpatrick
2011-06-24http: assume ContentLength 0 on GET requestsBrad Fitzpatrick
2011-06-23http: buffer Request.WriteBrad Fitzpatrick