summaryrefslogtreecommitdiff
path: root/lib/godoc/package.txt
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-10/+10
2010-03-12godoc: support for multiple packages in a directoryRobert Griesemer1-0/+8
- 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 Griesemer1-0/+3
- 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
2009-11-08- properly align package synopsesRobert Griesemer1-1/+1
(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-03support for command documentation:Robert Griesemer1-0/+4
- 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 Griesemer1-0/+2
- removed some underbars in section headings for better looks - various minor tweaks R=rsc http://go/go-review/1018026
2009-10-01Factored out boilerplate from all html docs in doc directory:Robert Griesemer1-7/+8
- 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
2009-08-31associate const and var declarations with a type where possibleRobert Griesemer1-0/+8
R=rsc DELTA=105 (87 added, 7 deleted, 11 changed) OCL=34062 CL=34119
2009-07-09Show BUG comments in godoc:Robert Griesemer1-0/+8
ast.go: - rename Comments -> CommentGroup (less confusion) - change all comments/docs to be *CommentGroup filter.go: - do not remove unassociated comments from program as part of export filtering (they are needed by doc.go for BUG comments) scanner.go: - exclude '\n' from //-style comments parser.go: - rewrote collection of comments: now all collected comments are *ast.CommentGroups - clarified distinction between leading and trailing comments - fixed a bug in comment collection (parseGenDecl); corresponding test case is in printer/testdata - extra documentation doc.go: - collect BUG comments - corresponding fix for parser bug in comment collection comment.go: - simplified regex printer.go: - adjust comment printing to new representation printer_test.go, testdata/*: - enable printing of doc comments - extended tests package.html, package.txt: - added Bugs section gofmt: - enable printing of doc comments R=rsc DELTA=339 (126 added, 38 deleted, 175 changed) OCL=31403 CL=31416
2009-06-22tweak the newlines so the headers stand out better.Rob Pike1-0/+4
old: CONSTANTS const ( MissingKind = iota; ) new: CONSTANTS const ( MissingKind = iota; ) R=gri,rsc DELTA=4 (4 added, 0 deleted, 0 changed) OCL=30362 CL=30598
2009-06-16delete dreg commentRob Pike1-1/+0
R=rsc OCL=30359 CL=30359
2009-06-16- some fine-tuning of godoc templates per r's suggestionRobert Griesemer1-12/+0
- removed gratuitous newline in go/printer R=r DELTA=15 (2 added, 13 deleted, 0 changed) OCL=30358 CL=30358
2009-06-16move godoc to src/cmd/godocRobert Griesemer1-0/+70
R=rsc DELTA=945 (944 added, 0 deleted, 1 changed) OCL=30315 CL=30341