summaryrefslogtreecommitdiff
path: root/src/lib/http/request.go
AgeCommit message (Collapse)AuthorFilesLines
2009-06-09mv src/lib to src/pkgRob Pike1-413/+0
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
2009-06-06Basic HTTP POST support.David Symonds1-4/+27
R=rsc APPROVED=rsc DELTA=45 (37 added, 1 deleted, 7 changed) OCL=29964 CL=29990
2009-05-08throw away os._Error.Russ Cox1-6/+9
make some error types in a few packages R=r DELTA=110 (25 added, 46 deleted, 39 changed) OCL=28382 CL=28561
2009-05-08embeddability: change bufio.BufRead to bufio.Reader etc.Rob Pike1-4/+4
R=rsc DELTA=112 (0 added, 4 deleted, 108 changed) OCL=28537 CL=28543
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace ↵Rob Pike1-4/+4
*os.Errors with os.Errors. lib/template updated to use new setup; its clients also updated. Step 2 will make os's error support internally much cleaner. R=rsc OCL=27586 CL=27586
2009-03-11document httpRuss Cox1-7/+55
R=r DELTA=84 (63 added, 4 deleted, 17 changed) OCL=25950 CL=26126
2009-02-02flesh out http server.Russ Cox1-42/+81
convert to uppercase names. R=r DELTA=613 (460 added, 61 deleted, 92 changed) OCL=24139 CL=24145
2009-01-20delete exportRuss Cox1-3/+3
TBR=r OCL=23121 CL=23127
2009-01-16casify miscRuss Cox1-1/+1
R=r DELTA=247 (20 added, 50 deleted, 177 changed) OCL=22951 CL=22955
2009-01-16casify httpRuss Cox1-18/+18
R=r DELTA=33 (0 added, 0 deleted, 33 changed) OCL=22947 CL=22949
2009-01-06new new & makeRuss Cox1-2/+2
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-6/+4
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox1-4/+6
R=r OCL=21563 CL=21571
2008-10-08Fixes breakage caused by semicolon restriction.Cary Hull1-19/+19
R=rsc APPROVED=rsc DELTA=50 (4 added, 0 deleted, 46 changed) OCL=16707 CL=16725
2008-09-24early HTTP library and trivial serverRuss Cox1-0/+300
R=r OCL=15777 CL=15791