-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/pkgsite: option to show "exported" declarations of main packages #5727
Comments
Labels changed: added priority-soon, godoc, removed priority-triage. Owner changed to @griesemer. |
A future version of godoc may be significantly refactored/rewritten and simplified, which is why I'd rather not add an extra flag to godoc which then must be maintained. But here's a very simple CL that does just that and illustrates how you can customize godoc for your purposes. Let me know if this is what you are looking for; and if you can live with your own custom version of godoc. https://golang.org/cl/10409043 Status changed to WaitingForReply. |
Will this future version have this option in some form? Because if that's the case, the CL will hold us over until then. Otherwise I'd rather not have to maintain a custom version of godoc forever. As an idea for the future version: Instead of a flag could be show a hyperlink on the cmd page that would allow you to view exported things anyway. There is an option to add m=all to the URL manually to show private things in a package. Would be nice if both things were linked on the page cmd/package pages. |
Owner changed to bgarcia@golang.org. |
Comment 11 by bt@brandonthomson.com: Just had to rebuild my godoc for Go 1.3 and it's a bit more tricky to apply this change now. First you need to get the go.tools repo because godoc has been moved into there. Then, search for "info.IsMain = " in go.tools/godoc/server.go. Change that line to: info.IsMain = false && pkgname == "main" to change it permanently (or add a flag like the CL above if you really need it). Now to build the binary you can cd into go.tools/cmd/godoc and do 'go install' or 'go build -o godoc' or something like that. Haven't tested it extensively yet but it seems to be working. |
Instructions for the new location:
|
Is there any 3rd party library to generate godoc for main package? I really need it. |
rename the package from |
godoc refuses to generate source level documentation for the main package "because it is a command, not a library". For more information see golang/go#5727 The package name "topologyd" is also unavailable because it's the designated output file for "go build". To avoid the conflict, the weird capitalization was chosen as an easy straightforward fix. Therefore this commit renames main() to topologyd.Main() and creates a new "main" package which only contains a main function that calls topologyD.Main(). Go developers, sometimes your decision making process is really very backwards...
The text was updated successfully, but these errors were encountered: