summaryrefslogtreecommitdiff
path: root/src/pkg/http/status.go
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-0/+6
2010-03-04gofmt: modified algorithm for alignment of multi-line composite/list entriesRobert Griesemer1-17/+17
- only manual changes are in src/pkg/go/printer/nodes.go - use a heuristic to determine "outliers" such that not entire composites are forced to align with them - improves several places that were not unligned before due too simple heuristic - unalignes some cases that contain "outliers" - gofmt -w src misc Fixes issue 644. R=rsc, r CC=golang-dev http://codereview.appspot.com/241041
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-33/+33
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2009-12-151) Change default gofmt default settings forRobert Griesemer1-40/+40
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 3rd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180048
2009-11-04gofmt-ify hash, httpRobert Griesemer1-82/+81
(gofmt will be able to re-align map entries as in http nicely, eventually) R=rsc http://go/go-review/1018055
2009-06-09mv src/lib to src/pkgRob Pike1-0/+101
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102