summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-11-08delete TODO now that compiler is better at %Rob Pike2-20/+2
adjust an inconsistency in reflect/type.go's package comment R=rsc http://go/go-review/1026029
2009-11-08use grouping instead of colors to show non-global search hits:Robert Griesemer4-134/+143
- introduced a new run per file containing all spots belonging to the same kind (e.g. var decl, const decl, etc.) - more comments, better index.go file organization R=rsc http://go/go-review/1026028
2009-11-08fix sentence extractionRobert Griesemer1-6/+13
R=rsc http://go/go-review/1026027
2009-11-08- properly align package synopsesRobert Griesemer7-47/+180
(this was surprisingly hard to get right in HTML) - show modification times in source directory listings - various tweaks R=rsc http://go/go-review/1024024
2009-11-08add top-level package comments for net, reflect, malloc.Rob Pike3-0/+17
reflect is a little more detailed than some because it affords an opportunity to explain how to approach the library. R=gri, rsc CC=go-dev http://go/go-review/1026026
2009-11-08added package documentationRobert Griesemer1-0/+1
R=r, rsc http://go/go-review/1025023
2009-11-08add a README file, so that if someone finds aRuss Cox1-0/+11
go tar ball or finds themselves staring at http://code.google.com/p/go/source/browse/, there is an obvious path back to golang.org R=r http://go/go-review/1026024
2009-11-08links to Go Nuts, issue tracker,Russ Cox2-1/+7
source code browser on code.google.com (where LICENSE file is visible) R=r http://go/go-review/1024023
2009-11-08another attempt at utf-8 uploads.Russ Cox1-7/+7
the last attempt broke uploads of binary files like .png R=r http://go/go-review/1026025
2009-11-08go for c++ programmers; fixes.Russ Cox1-55/+82
the most substantial are the wording around semicolons and around the channel manager nits. both were subtly incorrect. R=iant, r CC=go-dev http://go/go-review/1025018
2009-11-08effective go: tiny fixesRuss Cox1-39/+36
one real bug: *[]float -> *[3]float R=r http://go/go-review/1024016
2009-11-08TBRRobert Griesemer2-24/+1
1st step of renaming dirList.html -> dirlist.html (OS X filenames are not capitalization-sensitive) R=rsc http://go/go-review/1024021
2009-11-08TBRRobert Griesemer1-0/+23
step 2: adding renamed dirlist.html again R=rsc http://go/go-review/1024022
2009-11-08- better support for text files: show them nicely formattedRobert Griesemer1-21/+88
instead of serving them raw - path-related cleanups R=rsc http://go/go-review/1026021
2009-11-08make the visited color darker instead of lighterRob Pike1-1/+1
R=rsc CC=go-dev http://go/go-review/1025022
2009-11-08scaled bumpersRuss Cox4-0/+0
R=r http://go/go-review/1026023
2009-11-07- avoid division-by-zero crash in tabwriterRobert Griesemer3-6/+14
- correct tabwidth argument for some tabwriter test cases - catch negative tabwidth flag in gofmt w/o crashing R=rsc http://go/go-review/1026022
2009-11-07Adjust gccgo license references.Ian Lance Taylor2-8/+5
gccgo will be distributed under the same license as the rest of the Go code. R=r, rsc http://go/go-review/1024019
2009-11-07fixes to spec. mostly minor but several of significance.Rob Pike1-31/+64
- carriage return is white space - "" strings cannot span newlines - f(g()) is ok if g is multivalue and matches f's args R=rsc, gri CC=go-dev http://go/go-review/1024017
2009-11-07- added link to sourcesRobert Griesemer3-5/+6
- renamed listing.html -> dirList.html (there is a dirs.html already, it should probably have a better name, too) R=rsc http://go/go-review/1025020
2009-11-07nice directory listingsRobert Griesemer2-9/+69
R=rsc http://go/go-review/1026020
2009-11-07fix authentication in parallel LoadAllCLRuss Cox1-4/+11
R=r http://go/go-review/1024018
2009-11-07contribute.html fixesRuss Cox1-19/+89
R=r http://go/go-review/1025019
2009-11-07tutorial fixesRuss Cox4-118/+106
R=r CC=go-dev http://go/go-review/1024014
2009-11-07FAQ editsRuss Cox1-10/+10
R=r CC=go-dev http://go/go-review/1024015
2009-11-07require Mercurial 1.3 again (how did that get dropped?)Russ Cox1-17/+40
avoid deprecation warning about os.popen3 R=r http://go/go-review/1026018
2009-11-07language design FAQ editsRuss Cox1-8/+12
R=r http://go/go-review/1026019
2009-11-07fix a few style nits; arrange the doc list inRuss Cox2-10/+9
an order we want people to read the docs. R=r CC=go-dev http://go/go-review/1025017
2009-11-07Add flags of type float to the flag package.Vish Subramanian2-2/+71
R=r, rsc http://go/go-review/1026011 Committer: Rob Pike <r@golang.org>
2009-11-07- support to extract one-line package synopsis for package listingsRobert Griesemer2-3/+26
- formatting in dirs.html is crude, needs better html (open to suggestions), but shows the synopsis - many package comments should probably be adjusted such that the first sentence is more concise R=rsc, iant http://go/go-review/1025014
2009-11-07- blank before opening { for multi-line composite literals (as preferred by r)Robert Griesemer1-14/+37
- blank padding around composite literal contents for a less dense look (most if not all composite literals were written in that style before gofmt ran through them) - corresponding (internal) flag: compositeLitBlank - don't print a semi after a one-statement statement list (as preferred by r) - corresponding (internal flag): fewerSemis - the number of changes in nodes.go is huge because of the removed semis; hg mail requires that I gofmt the file before With both flags set to false, this CL causes no gofmt formatting change. We can turn them on if we like it (and then remove the flags). Will submit with flags disabled. R=rsc, r http://go/go-review/1025015
2009-11-07Ignore more unimportant files.Ian Lance Taylor1-2/+6
- Emacs backup files. - *.orig files left by hg merge conflicts. - core files. - generated enam.c files. - runtime.acid now has an architecture. R=rsc http://go/go-review/1026017
2009-11-07new style; live at http://r45:3456/Russ Cox3-17/+34
R=r CC=go-dev http://go/go-review/1026015
2009-11-07change --enable-languages flag to include c, c++ in first mentionRob Pike1-1/+1
R=iant http://go/go-review/1026016
2009-11-06add an item about open sourceRob Pike1-0/+6
R=rsc CC=go-dev http://go/go-review/1025013
2009-11-06Typo fixes.David Symonds6-6/+6
R=rsc CC=go-dev http://go/go-review/1026014 Committer: Russ Cox <rsc@golang.org>
2009-11-06codereview: print gofmt message when abortingRuss Cox1-3/+3
R=r CC=vish http://go/go-review/1026013
2009-11-068g has an optimizer; update its descriptionRob Pike1-5/+6
R=rsc CC=go-dev http://go/go-review/1025010
2009-11-06Contribute code instructions to use "hg codereview-login" did not work for ↵Vish Subramanian1-1/+1
me. I had to use "hg code-login". R=r, rsc http://go/go-review/1024012 Committer: Rob Pike <r@golang.org>
2009-11-06Add vish to contributors.Vish Subramanian1-0/+1
R=r, rsc http://go/go-review/1026012 Committer: Rob Pike <r@golang.org>
2009-11-06make temporary google.com -> golang.org hack more sophisticatedRuss Cox1-8/+8
R=r http://go/go-review/1024013
2009-11-068g optimizerKen Thompson9-14/+2499
R=rsc http://go/go-review/1025011
2009-11-06format composite literal types that are "short" struct type literalsRobert Griesemer4-21/+123
on one line for a more compact representation of some composite Literals R=rsc http://go/go-review/1025008
2009-11-06- application of gofmt with one-line composite literal structs enabledRobert Griesemer3-180/+46
- this CL is dependent on CL 1025008 R=r, rsc http://go/go-review/1025009
2009-11-06arm port description.Kai Backman1-3/+2
R=r http://go/go-review/1026010
2009-11-06Rename go_gccgo_setup to gccgo_install.Ian Lance Taylor3-3/+3
R=rsc CC=go-dev http://go/go-review/1026009
2009-11-06- one-line funcs in miscRobert Griesemer1-3/+1
gofmt -w misc R=rsc http://go/go-review/1025007
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer213-3670/+1297
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-06Expand section on building gccgo.Ian Lance Taylor1-4/+25
R=r http://go/go-review/1026008
2009-11-06Add a document on contributing to gccgo.Ian Lance Taylor2-1/+97
R=r, rsc CC=go-dev http://go/go-review/1025005