summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2010-03-30godoc: support for title and subtitle headers when serving .html docsRobert Griesemer1-1/+8
and use it to show version (date) of go spec Fixes issue 68. R=rsc CC=golang-dev, r http://codereview.appspot.com/848042
2010-03-24godoc: show relative file names without leading '/' (per r's request)Robert Griesemer4-19/+19
- change the various url-xxx formatters to return a relative URL path - make the leading '/' for URLs explicit in the template - on the way change some |html formatters to |html-esc (html should only be used for formatting AST nodes) R=rsc, r CC=golang-dev http://codereview.appspot.com/740041
2010-03-19godoc: line numbers for all remote search resultsRobert Griesemer1-1/+2
Instead of returning the index lookup result via RPC which has to be corrected for the client, simply render it on the server and return the final output. R=rsc, r CC=golang-dev http://codereview.appspot.com/669041
2010-03-19godoc: revert change 5089, per gri's instructionsRuss Cox1-4/+3
R=gri CC=golang-dev http://codereview.appspot.com/630043
2010-03-20website: add Go Blog widget to frontpage,Andrew Gerrand1-2/+6
add Blog and Wiki links to sideba R=r, rsc, gri CC=golang-dev http://codereview.appspot.com/611042
2010-03-19godoc: proper file path conversion for remote searchRobert Griesemer1-3/+4
R=rsc CC=golang-dev http://codereview.appspot.com/664041
2010-03-19godoc: show (some) line numbers for remote searchRobert Griesemer2-2/+3
- show build version - use build goroot when possible R=rsc CC=golang-dev http://codereview.appspot.com/656043
2010-03-19godoc: implemented command-line searchRobert Griesemer1-0/+52
The command-line search is using a running webserver as index server; i.e., the search result is reflecting the index at the server. See the documentation for details. Usage: godoc -q query1 query2 ... Known issue: Results don't show the all-important line numbers yet due to the way the index is organized. Next CL. R=rsc, r CC=golang-dev http://codereview.appspot.com/648041
2010-03-16godoc: initial support for showing popup informationRobert Griesemer1-0/+23
for identifiers in Go source code - at the moment just show identifier kind (var, func, etc.) and name (eventually should show declaration, type, etc.) - JavaScript parts by adg R=rsc CC=adg, golang-dev http://codereview.appspot.com/578042
2010-03-12godoc: support for multiple packages in a directoryRobert Griesemer2-0/+16
- smartly select the "right" package - provide a list of other packages R=rsc CC=golang-dev http://codereview.appspot.com/466042
2010-03-10godoc: provide mode which shows exported interface in "source form"Robert Griesemer2-0/+8
- on the commandline: godoc -x big - in a webpage: provide form parameter ?m=src Known issues: - Positioning of comments incorrect in several cases. Separate CL. - Need a link/menu to switch between different modes of presentation in the web view. R=rsc CC=golang-dev http://codereview.appspot.com/376041
2010-03-04First run at a Programming FAQAndrew Gerrand1-0/+1
Moved a couple of FAQs from the main FAQ, and added some others R=r, rsc, iant, gri CC=golang-dev http://codereview.appspot.com/218070
2010-03-03codereview.py: fix for compatibility with hg >=1.4.3Andrew Gerrand1-1/+1
hg.parseurl now returns a two-value tuple; codereview.py expected 3. Changed to merely take the first return value. R=rsc, iant CC=golang-dev http://codereview.appspot.com/223087
2010-02-19remove absolute paths from search resultsRobert Griesemer1-2/+2
R=adg CC=golang-dev http://codereview.appspot.com/216053
2010-02-18godoc: path cleanups, fixed a race condition, initial support for a menu on ↵Robert Griesemer1-0/+7
pages R=rsc CC=adg, golang-dev http://codereview.appspot.com/215050
2010-02-16godoc support for directories outside $GOROOTRobert Griesemer4-17/+16
Example use: godoc -path=/home/user1:/home/build/foo -http=:6666 will start a local godoc that maps urls starting with /pkg/user1 or /pkg/foo to the respective roots specified in the path. Missing: Handling of overlapping package directories, multiple packages per directory. R=rsc CC=golang-dev http://codereview.appspot.com/206078
2010-01-28codereview: make sure each mail has a reviewerRuss Cox1-2/+10
R=r CC=golang-dev http://codereview.appspot.com/196050
2010-01-27codereview: correct handling of files created with hg cpRuss Cox1-5/+2
R=r CC=golang-dev http://codereview.appspot.com/194118
2010-01-20codereview: accommodate recent change to ui.promptRuss Cox1-2/+11
Fixes issue 525. R=r CC=golang-dev http://codereview.appspot.com/190044
2010-01-13create doc/talks/.Russ Cox1-1/+1
move talk-20091030 down. add talk given at Stanford 2010/01/12. add doc/go-logo-white.png. R=r CC=golang-dev http://codereview.appspot.com/186132 Committer: Russ Cox <rsc@golang.org>
2010-01-13Distinguish between html generation and html quoting in godoc formatters.Robert Griesemer4-13/+13
Replacement for CL 184084; originally by Roger Peppe (rogpeppe@gmail.com). R=rsc CC=golang-dev, rog http://codereview.appspot.com/189059
2010-01-13godoc: skip template wrapping for complete HTML filesRuss Cox1-1/+1
demo at http://wreck:8080/doc/ click on go_talk-20100112.html R=gri CC=golang-dev http://codereview.appspot.com/186137
2010-01-13codereview: split name list only on commas; some user names have spacesRuss Cox2-15/+17
R=r CC=golang-dev http://codereview.appspot.com/184069
2010-01-09codereview: do not send mail when submitting for othersRuss Cox1-20/+20
rename original_author to copied_from so that it reads better when used as a condition. R=r CC=golang-dev http://codereview.appspot.com/185045
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