Merge pull request #20 from codegangsta/JMS-5
Improved help by allowing help topics for subcommands
This commit is contained in:
commit
c21c2776b8
88
help.go
88
help.go
@ -7,35 +7,81 @@ import (
|
|||||||
"text/template"
|
"text/template"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// The text template for the Default help topic.
|
||||||
|
// cli.go uses text/template to render templates. You can
|
||||||
|
// render custom help text by setting this variable.
|
||||||
|
var AppHelpTemplate = `NAME:
|
||||||
|
{{.Name}} - {{.Usage}}
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
{{.Name}} [global options] command [command options] [arguments...]
|
||||||
|
|
||||||
|
VERSION:
|
||||||
|
{{.Version}}
|
||||||
|
|
||||||
|
COMMANDS:
|
||||||
|
{{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}}
|
||||||
|
{{end}}
|
||||||
|
GLOBAL OPTIONS:
|
||||||
|
{{range .Flags}}{{.}}
|
||||||
|
{{end}}
|
||||||
|
`
|
||||||
|
|
||||||
|
// The text template for the command help topic.
|
||||||
|
// cli.go uses text/template to render templates. You can
|
||||||
|
// render custom help text by setting this variable.
|
||||||
|
var CommandHelpTemplate = `NAME:
|
||||||
|
{{.Name}} - {{.Usage}}
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
command {{.Name}} [command options] [arguments...]
|
||||||
|
|
||||||
|
DESCRIPTION:
|
||||||
|
{{.Description}}
|
||||||
|
|
||||||
|
OPTIONS:
|
||||||
|
{{range .Flags}}{{.}}
|
||||||
|
{{end}}
|
||||||
|
`
|
||||||
|
|
||||||
var helpCommand = Command{
|
var helpCommand = Command{
|
||||||
Name: "help",
|
Name: "help",
|
||||||
ShortName: "h",
|
ShortName: "h",
|
||||||
Usage: "Shows a list of commands or help for one command",
|
Usage: "Shows a list of commands or help for one command",
|
||||||
Action: func(c *Context) {
|
Action: func(c *Context) {
|
||||||
helpTemplate := `NAME:
|
args := c.Args()
|
||||||
{{.Name}} - {{.Usage}}
|
if len(args) > 0 {
|
||||||
|
showCommandHelp(c)
|
||||||
USAGE:
|
} else {
|
||||||
{{.Name}} [global options] command [command options] [arguments...]
|
showAppHelp(c)
|
||||||
|
}
|
||||||
VERSION:
|
|
||||||
{{.Version}}
|
|
||||||
|
|
||||||
COMMANDS:
|
|
||||||
{{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}}
|
|
||||||
{{end}}
|
|
||||||
GLOBAL OPTIONS:
|
|
||||||
{{range .Flags}}{{.}}
|
|
||||||
{{end}}
|
|
||||||
`
|
|
||||||
|
|
||||||
w := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0)
|
|
||||||
t := template.Must(template.New("help").Parse(helpTemplate))
|
|
||||||
t.Execute(w, c.App)
|
|
||||||
w.Flush()
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func showAppHelp(c *Context) {
|
||||||
|
printHelp(AppHelpTemplate, c.App)
|
||||||
|
}
|
||||||
|
|
||||||
|
func showCommandHelp(c *Context) {
|
||||||
|
name := c.Args()[0]
|
||||||
|
for _, c := range c.App.Commands {
|
||||||
|
if c.HasName(name) {
|
||||||
|
printHelp(CommandHelpTemplate, c)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("No help topic for '%v'\n", name)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
func printHelp(templ string, data interface{}) {
|
||||||
|
w := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0)
|
||||||
|
t := template.Must(template.New("help").Parse(templ))
|
||||||
|
t.Execute(w, data)
|
||||||
|
w.Flush()
|
||||||
|
}
|
||||||
|
|
||||||
func showVersion(c *Context) {
|
func showVersion(c *Context) {
|
||||||
fmt.Printf("%v version %v\n", c.App.Name, c.App.Version)
|
fmt.Printf("%v version %v\n", c.App.Name, c.App.Version)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user