summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2010-01-07add doc/devel/index.html, linked from nav barRuss Cox1-6/+3
R=r CC=golang-dev http://codereview.appspot.com/181156
2010-01-07codereview: repeated hg mail sends "PTAL"Russ Cox1-9/+29
also send out hg mail for TBR submits R=r CC=golang-dev http://codereview.appspot.com/183137
2009-12-15codereview: add golang-dev@googlegroups.comRuss Cox1-40/+33
automatically in "hg mail". also, avoid "empty list means all modified files in client" bug R=gri, cw CC=golang-dev http://codereview.appspot.com/174072
2009-12-13Ported godefs to Windows.Hector Chu1-0/+2
R=rsc http://codereview.appspot.com/164049 Committer: Russ Cox <rsc@golang.org>
2009-12-09doc: split contribute.html into code.html and contribute.htmlRuss Cox1-0/+1
R=r http://codereview.appspot.com/170042
2009-12-03codereview: do not gofmt deleted filesRuss Cox1-0/+1
R=r http://codereview.appspot.com/164083
2009-12-02codereview: move reviewers to cc line after submit,Russ Cox1-11/+18
so that the issue stops showing up on the per-reviewer dashboard page. R=r http://codereview.appspot.com/164075
2009-12-02 lxml.etree is the wrong location for this alt packageDevon H. O'Dell1-1/+1
on my linux machine this is the correct one. lxml.etree exists with an ElementTree class, but does not contain an .XML method. R=rsc http://codereview.appspot.com/163082 Committer: Russ Cox <rsc@golang.org>
2009-12-02xml.etree can also be lxml.etree (e.g. CentOS 5.4 with Python 2.4.3)Devon H. O'Dell1-1/+4
R=rsc CC=golang-dev http://codereview.appspot.com/164053 Committer: Russ Cox <rsc@golang.org>
2009-12-01some godoc cleanup:Robert Griesemer2-10/+7
- simplified dealing with parse errors: no need to intersperse them in the source - improve visibility of highlighted identifiers by showing them in bold R=rsc http://codereview.appspot.com/163051
2009-11-30Ports of lib9, libbio and libmach to Windows.Hector Chu1-1/+1
R=rsc http://codereview.appspot.com/157159 Committer: Russ Cox <rsc@golang.org>
2009-11-30codereview: allow editing of local CL descriptionRuss Cox1-1/+8
between hg clpatch and hg submit. R=r http://codereview.appspot.com/162059
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w test/benchRuss Cox1-1/+2
except chameneosredux which i know is being edited require gofmt for test/bench R=r http://codereview.appspot.com/157110
2009-11-20codereview: handle UTF-8 in message descriptionsRuss Cox1-1/+1
what a terrible way to implement strings R=r http://codereview.appspot.com/156116
2009-11-20codereview: make hg sync work with Mercurial 1.4Russ Cox1-10/+21
R=r http://codereview.appspot.com/157102
2009-11-17codereview: more attempts at robustness in the face of unexpected exceptionsRuss Cox1-36/+39
R=r http://codereview.appspot.com/156062
2009-11-17codereview: handle spaces and other unexpected chars in nicknamesRuss Cox1-1/+3
R=r http://codereview.appspot.com/157053
2009-11-17case insensitive matching in CONTRIBUTORS fileRob Pike1-1/+1
R=rsc http://codereview.appspot.com/157043
2009-11-17codereview: discard \r characters (sigh)Russ Cox1-0/+2
R=r http://codereview.appspot.com/157041
2009-11-17codereview: add clpatch --ignore_hgpatch_errors.Russ Cox1-1/+2
of limited utility but good for creating the metadata for an AUTHORS/CONTRIBUTORS change even if the patch doesn't apply cleanly. R=r http://codereview.appspot.com/154140
2009-11-17Pass ui into PostMessage to avoid nasty/confusing exceptionDevon H. O'Dell1-4/+4
R=rsc http://codereview.appspot.com/155079 Committer: Russ Cox <rsc@golang.org>
2009-11-16Add id attribute to h2 and h3 tags so that they exist when referringRobert Griesemer2-12/+12
to generated pages even if Javascript has not introduced them yet. R=rsc http://codereview.appspot.com/154167
2009-11-12codereview: clpatch tweaksRuss Cox1-3/+7
R=agl1 http://codereview.appspot.com/152114
2009-11-10video is readyRuss Cox1-1/+1
R=r http://codereview.prom.corp.google.com/1024050
2009-11-10default to codereview.appspot.comRuss Cox1-6/+1
R=r http://codereview.prom.corp.google.com/1026040
2009-11-10video is coming soonRuss Cox1-1/+1
R=r http://go/go-review/1024049
2009-11-10update video linksRuss Cox1-1/+1
R=r http://go/go-review/1024048
2009-11-10remove internal references from doc/install.htmlRuss Cox1-1/+2
and doc/contribute.html. add #go-nuts to help section on nav bar. R=r http://go/go-review/1025035
2009-11-09- add .. link to package directory listing, for easy traversalRobert Griesemer1-0/+3
- matches style of source file directory listing R=rsc http://go/go-review/1024044
2009-11-09cleanup style:Robert Griesemer4-28/+28
- consistently remove all underbars from links - this removes need for noline style - removed unused info style R=r, rsc http://go/go-review/1025032
2009-11-09make search box ever so slightly widerRobert Griesemer1-1/+1
R=rsc http://go/go-review/1024036
2009-11-09make search box width dynamically sizedRobert Griesemer1-1/+1
R=rsc, agl http://go/go-review/1024032
2009-11-08Addressing issue brought up by dsymonds:Robert Griesemer1-3/+7
- When providing alternative spellings to a query, do not prefix it with a package qualifier as the suggestion may not have any results. Correctly filtering is quite a bit of work, and clicking the alternative spelling will always also show the qualified hits if they exist (but also others). Seems good enough for now. - Give user feedback when the query syntax was wrong. - Package names in search results are now links to the respective package documentation. - Experimented with excluding main packages and test files from index with inconclusive results. Code is present and can be enabled by changing a flag in the source. This needs some more work. R=rsc CC=r, dsymonds http://go/go-review/1026033
2009-11-08make hg mail more forgiving:Russ Cox1-2/+7
create CL first, even if gofmt is needed or no reviewers listed. R=r http://go/go-review/1025025
2009-11-08assorted cleanupRuss Cox1-1/+9
R=r, iant CC=go-dev http://go/go-review/1025024
2009-11-08use grouping instead of colors to show non-global search hits:Robert Griesemer1-20/+19
- 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-08- properly align package synopsesRobert Griesemer5-15/+27
(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-08links to Go Nuts, issue tracker,Russ Cox1-0/+6
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-08TBRRobert Griesemer1-23/+0
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-07- added link to sourcesRobert Griesemer2-0/+1
- 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 Griesemer1-0/+23
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-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-07fix a few style nits; arrange the doc list inRuss Cox1-6/+6
an order we want people to read the docs. R=r CC=go-dev http://go/go-review/1025017
2009-11-07- support to extract one-line package synopsis for package listingsRobert Griesemer1-1/+1
- 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-07new style; live at http://r45:3456/Russ Cox1-1/+1
R=r CC=go-dev http://go/go-review/1026015
2009-11-06codereview: print gofmt message when abortingRuss Cox1-3/+3
R=r CC=vish http://go/go-review/1026013
2009-11-06make temporary google.com -> golang.org hack more sophisticatedRuss Cox1-8/+8
R=r http://go/go-review/1024013