2016-03-21 19:28:42 -04:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
2015-12-10 17:19:38 -05:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-11-22 11:19:54 -05:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-11-28 09:32:02 -05:00
|
|
|
"strings"
|
2015-11-22 11:19:54 -05:00
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/cobra/doc"
|
2015-11-22 11:19:54 -05:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
|
|
|
)
|
|
|
|
|
2015-11-28 09:32:02 -05:00
|
|
|
var genmandir string
|
2015-11-22 11:19:54 -05:00
|
|
|
var genmanCmd = &cobra.Command{
|
2015-11-23 10:51:12 -05:00
|
|
|
Use: "man",
|
2015-11-22 11:19:54 -05:00
|
|
|
Short: "Generate man pages for the Hugo CLI",
|
|
|
|
Long: `This command automatically generates up-to-date man pages of Hugo's
|
|
|
|
command-line interface. By default, it creates the man page files
|
|
|
|
in the "man" directory under the current directory.`,
|
|
|
|
|
2015-12-02 05:42:53 -05:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2015-12-24 09:47:00 -05:00
|
|
|
header := &doc.GenManHeader{
|
2015-11-22 11:19:54 -05:00
|
|
|
Section: "1",
|
|
|
|
Manual: "Hugo Manual",
|
2017-04-13 10:59:05 -04:00
|
|
|
Source: fmt.Sprintf("Hugo %s", helpers.CurrentHugoVersion),
|
2015-11-22 11:19:54 -05:00
|
|
|
}
|
2015-11-28 09:32:02 -05:00
|
|
|
if !strings.HasSuffix(genmandir, helpers.FilePathSeparator) {
|
|
|
|
genmandir += helpers.FilePathSeparator
|
|
|
|
}
|
2017-01-10 04:55:03 -05:00
|
|
|
if found, _ := helpers.Exists(genmandir, hugofs.Os); !found {
|
2015-11-28 09:32:02 -05:00
|
|
|
jww.FEEDBACK.Println("Directory", genmandir, "does not exist, creating...")
|
2017-04-06 11:39:20 -04:00
|
|
|
if err := hugofs.Os.MkdirAll(genmandir, 0777); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-11-28 09:32:02 -05:00
|
|
|
}
|
|
|
|
cmd.Root().DisableAutoGenTag = true
|
|
|
|
|
2015-11-22 11:19:54 -05:00
|
|
|
jww.FEEDBACK.Println("Generating Hugo man pages in", genmandir, "...")
|
2015-12-24 09:47:00 -05:00
|
|
|
doc.GenManTree(cmd.Root(), header, genmandir)
|
2015-11-28 09:32:02 -05:00
|
|
|
|
2015-11-22 11:19:54 -05:00
|
|
|
jww.FEEDBACK.Println("Done.")
|
2015-12-02 05:42:53 -05:00
|
|
|
|
|
|
|
return nil
|
2015-11-22 11:19:54 -05:00
|
|
|
},
|
|
|
|
}
|
2015-11-28 09:32:02 -05:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
genmanCmd.PersistentFlags().StringVar(&genmandir, "dir", "man/", "the directory to write the man pages.")
|
2015-12-02 04:20:55 -05:00
|
|
|
|
|
|
|
// For bash-completion
|
|
|
|
genmanCmd.PersistentFlags().SetAnnotation("dir", cobra.BashCompSubdirsInDir, []string{})
|
2015-11-28 09:32:02 -05:00
|
|
|
}
|