aboutsummaryrefslogtreecommitdiff
path: root/src/lib/http
AgeCommit message (Expand)Author
2009-06-09mv src/lib to src/pkgRob Pike
2009-06-08Pad error text for browsers that are too smart.Russ Cox
2009-06-08add exec example to http triv.go.Russ Cox
2009-06-06Basic HTTP POST support.David Symonds
2009-06-05rebuilt Makefiles for CL 29923Russ Cox
2009-06-02Fixes to URL functionality:Steve Newman
2009-05-18move ShortWrite error into io so that other packages can use it.Russ Cox
2009-05-12Allow http.Redirect to do both temporary (307) and permanent (301) redirects.David Symonds
2009-05-08implications of stricter type equality:Russ Cox
2009-05-08move things out of sys into os and runtimeRuss Cox
2009-05-08throw away os._Error.Russ Cox
2009-05-08embeddability: change bufio.BufRead to bufio.Reader etc.Rob Pike
2009-05-08Name change to improve embeddability:Rob Pike
2009-05-08minor cleanup, not required by compiler changesRuss Cox
2009-05-04Remake exvar package to be more Go-ish.David Symonds
2009-04-28Add a HTTP handler to the exvar package.David Symonds
2009-04-27Fix the chunked encoding - terminate the chunk with CRLF.Stephen Ma
2009-04-19Initial cut at an "exported variables" (exvar) package.David Symonds
2009-04-19Readn is a silly name when there's no n. Change to FullRead.Rob Pike
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Err...Rob Pike
2009-04-16Convert go tree to hierarchical pkg directory:Russ Cox
2009-04-16regenerate Makefiles.Russ Cox
2009-04-15code changes for array conversion.Russ Cox
2009-04-15make Location translate relative path to absoluteRuss Cox
2009-04-14http additionsRuss Cox
2009-04-07add path.Clean and other utilities.Russ Cox
2009-04-02change in negationRobert Griesemer
2009-03-11Rename os.FD to os.File.Russ Cox
2009-03-11document httpRuss Cox
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox
2009-02-17drop trailing slashes - missed comment from last reviewRob Pike
2009-02-17more fun with triv.go: flags and argumentsRob Pike
2009-02-13convert composite literals from { } to ( ).Russ Cox
2009-02-05further pedagogy: a channel that satisfies the HTTP server interfaceRob Pike
2009-02-05take advantage of methods on funcsRuss Cox
2009-02-03fix build. missed this fileRuss Cox
2009-02-03bufio:Russ Cox
2009-02-02flesh out http server.Russ Cox
2009-01-30update go code tree to new func rules.Russ Cox
2009-01-20delete exportRuss Cox
2009-01-16casify miscRuss Cox
2009-01-16casify httpRuss Cox
2009-01-15convert strconvRuss Cox
2009-01-06new new & makeRuss Cox
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
2008-12-18convert *[] to [].Russ Cox
2008-12-10assorted cleanup and fixesRuss Cox
2008-11-19refine gobuild: the files must be *_test.go not *test.goRob Pike
2008-11-19gobuild: add coverage rule, ignore files in package main.Russ Cox
2008-11-19leave 6.out around after gotest;Russ Cox