summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
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
2009-11-06require gofmt for all $GOROOT/src/.../*.go.Russ Cox1-8/+31
try harder to post messages to rietveld. R=gri, r CC=go-dev http://go/go-review/1024006
2009-11-05fix UTF-8 upload bugRuss Cox1-4/+7
TBR=r http://go/go-review/1026001
2009-11-05codereview: new commandsRuss Cox1-31/+231
* clpatch * download * submit, on behalf of clpatch stir hgpatch to fix a few bugs R=r CC=go-dev http://go/go-review/1016051
2009-11-05add a place-holder link for the hour-long videoRob Pike1-0/+1
R=rsc CC=go-dev http://go/go-review/1017054
2009-11-05godoc: style update.Adam Langley1-4/+5
R=r, rsc CC=go-dev http://go/go-review/1017051
2009-11-05add -l flag to hg gofmt.Russ Cox1-4/+9
don't apply gofmt to non-go files during upload check. R=r http://go/go-review/1016048
2009-11-04add "hg gofmt" to run all modified files through gofmt.Russ Cox1-12/+93
add check before Upload, for now disabled by default, that files do not change when run through gofmt. enable by adding [codereview] force_gofmt = True to .hgrc or .hg/hgrc. add doc strings for a few more commands. rename codereview-login to code-login to make module doc visible. R=r CC=gri http://go/go-review/1018056
2009-11-04avoid infinite recursion in matcher.Russ Cox1-15/+79
after sync (or sync --local), clean up repository: * look for and close CLs submitted on our behalf * remove unmodified files from CLs * warn about empty CLs R=r http://go/go-review/1017029
2009-11-04remove "em" unit from td width specificationRobert Griesemer1-1/+1
R=rsc http://go/go-review/1018037
2009-11-04various tweaks to code review.Russ Cox1-10/+27
main one is to check at submit time that user name being used in checkin message is listed in the CONTRIBUTORS file. this should catch misconfigurations. another is to cut the @domain part from the R= and CC= lines on checkin messages, so that cc'ing someone on a change does not mean their email address is recorded for all time. R=r CC=go-dev http://go/go-review/1016036
2009-11-03Update the styling of the godoc pages.Adam Langley1-12/+61
(root.html is just temporary. It'll need some better content.) R=r CC=go-dev http://go/go-review/1017019
2009-11-03support for command documentation:Robert Griesemer4-10/+19
- made package tree handler generic so it can work on any fs tree - cleanups along the way R=rsc CC=r http://go/go-review/1017020
2009-11-02- show recursive package directory structure in package pagesRobert Griesemer3-11/+15
- removed some underbars in section headings for better looks - various minor tweaks R=rsc http://go/go-review/1018026
2009-11-02rietveld does not like code reviews with subjects longer than 100 ↵Russ Cox1-1/+3
characters, so trim the line pulled out of the description to avoid the limit. R=r http://go/go-review/1016027
2009-11-02- initial steps towards showing directory tree instead ofRobert Griesemer1-0/+6
just a single directory - all pieces present but not well integrated - directory tree served at the moment under /tree R=rsc http://go/go-review/1018016
2009-11-01code review: avoid subject changes, fix http_proxy submit bugRuss Cox1-11/+25
R=r http://go/go-review/1016021
2009-11-01code review fixesRuss Cox1-188/+282
* clean up error handling: show Exception info * white space fixes * clean up output when creating CL * simplify hg change command; add hg file * fix stale cookie bug (thanks iant) * in LoadAllCL, load each CL in a different thread, to parallelize the slow web fetches * throw away support for Mercurial before version 1.3 * add @CL-number file pattern for commands like diff * make hg sync show files being sync'ed R=r http://go/go-review/1016016
2009-10-28- added missing formatters in templatesRobert Griesemer3-4/+4
- replaced deprecated use of </font> with </span> tag - added html escaping to godoc formatters where missing - enabled text format for package documentation R=rsc http://go/go-review/1017001
2009-10-28html-escaping of fields that may be user-generatedRobert Griesemer1-4/+5
R=rsc http://go/go-review/1013019
2009-10-27godoc search bug fixes:Robert Griesemer2-12/+12
- sort by package name (instead of package path) for results with snippets - sort line numbers in results without snippets - properly characterize package clauses - experiment with a leaner look: no underlines for top-level godoc links in the left side bar Still using colors to distinguish results. Next step. R=rsc http://go/go-review/1015016
2009-10-27code search for godoc:Robert Griesemer2-7/+78
- added goroutine to automatically index in the background - added handler for search requests - added search box to top-level godoc template - added search.html template for the display of search results - changes to spec.go because of name conflicts - added extra styles to style.css (for shorter .html files) R=rsc http://go/go-review/1014011
2009-10-22add codereview-login commandRuss Cox1-0/+15
R=r CC=go-dev http://go/go-review/1012007
2009-10-22fix handling of escaped characters like ' " & < >Russ Cox1-4/+3
R=r http://go/go-review/1013007
2009-10-22Initial checkin of codereview plugin.Russ Cox1-0/+2575
The master copy is going to live elsewhere, but weAPOSTROPHEll keep a copy in the Go tree so that developers donAPOSTROPHEt have to check out two different repositories. R=r CC=go-dev http://go/go-review/1012006
2009-10-22main landing pagesRuss Cox1-0/+72
R=r DELTA=55 (7 added, 34 deleted, 14 changed) OCL=35984 CL=35986
2009-10-01Factored out boilerplate from all html docs in doc directory:Robert Griesemer3-16/+17
- the first HTML comment in those files is extracted as page title when serving them - lib/godoc.html is top-level template for all pages served - experimented a bit with package documentation layout (feedback welcome) - various related cleanups TODO: - The / page (doc/root.html) content repeats links that are in the navigation bar. It needs to be cleaned up. R=rsc DELTA=826 (86 added, 692 deleted, 48 changed) OCL=35230 CL=35245