Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1033)

Delta Between Two Patch Sets: src/cmd/godoc/doc.go

Issue 3699041: code review 3699041: godoc: support for regular expression full text search (Closed)
Left Patch Set: code review 3699041: regexp search Created 14 years, 3 months ago
Right Patch Set: code review 3699041: godoc: support for regular expression full text search Created 14 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/godoc/Makefile ('k') | src/cmd/godoc/format.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 /* 5 /*
6 6
7 Godoc extracts and generates documentation for Go programs. 7 Godoc extracts and generates documentation for Go programs.
8 8
9 It has two modes. 9 It has two modes.
10 10
(...skipping 30 matching lines...) Expand all
41 arguments are considered search queries: a legal query is a 41 arguments are considered search queries: a legal query is a
42 single identifier (such as ToLower) or a qualified identifier 42 single identifier (such as ToLower) or a qualified identifier
43 (such as math.Sin). 43 (such as math.Sin).
44 -src 44 -src
45 print (exported) source in command-line mode 45 print (exported) source in command-line mode
46 -tabwidth=4 46 -tabwidth=4
47 width of tabs in units of spaces 47 width of tabs in units of spaces
48 -timestamps=true 48 -timestamps=true
49 show timestamps with directory listings 49 show timestamps with directory listings
50 -fulltext=false 50 -fulltext=false
51 » » build full text index for string search results 51 » » build full text index for regular expression queries
52 -path="" 52 -path=""
53 additional package directories (colon-separated) 53 additional package directories (colon-separated)
54 -html 54 -html
55 print HTML in command-line mode 55 print HTML in command-line mode
56 -goroot=$GOROOT 56 -goroot=$GOROOT
57 Go root directory 57 Go root directory
58 -http=addr 58 -http=addr
59 HTTP service address (e.g., '127.0.0.1:6060' or just ':6060') 59 HTTP service address (e.g., '127.0.0.1:6060' or just ':6060')
60 -server=addr 60 -server=addr
61 webserver address for command line searches 61 webserver address for command line searches
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 If the sync exit status is 1, godoc assumes that it succeeded without errors 99 If the sync exit status is 1, godoc assumes that it succeeded without errors
100 but that no files changed; the index is not updated in this case. 100 but that no files changed; the index is not updated in this case.
101 101
102 In all other cases, sync is assumed to have failed and godoc backs off running 102 In all other cases, sync is assumed to have failed and godoc backs off running
103 sync exponentially (up to 1 day). As soon as sync succeeds again (exit status 0 103 sync exponentially (up to 1 day). As soon as sync succeeds again (exit status 0
104 or 1), the normal sync rhythm is re-established. 104 or 1), the normal sync rhythm is re-established.
105 105
106 */ 106 */
107 package documentation 107 package documentation
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b