hugo/hugolib/planner.go

53 lines
1.1 KiB
Go
Raw Normal View History

2013-09-01 04:13:04 +00:00
package hugolib
import (
2013-09-01 14:43:29 +00:00
"fmt"
"io"
2013-09-01 04:13:04 +00:00
)
func (s *Site) ShowPlan(out io.Writer) (err error) {
if s.Source == nil || len(s.Source.Files()) <= 0 {
2013-09-01 14:43:29 +00:00
fmt.Fprintf(out, "No source files provided.\n")
}
for _, p := range s.Pages {
fmt.Fprintf(out, "%s", p.Source.Path())
if p.IsRenderable() {
fmt.Fprintf(out, " (renderer: markdown)")
2013-09-18 18:52:30 +00:00
} else {
fmt.Fprintf(out, " (renderer: n/a)")
}
2013-09-18 18:52:30 +00:00
if s.Tmpl != nil {
for _, l := range p.Layout() {
fmt.Fprintf(out, " (layout: %s, exists: %t)", l, s.Tmpl.Lookup(l) != nil)
}
}
fmt.Fprintf(out, "\n")
2013-09-04 03:52:50 +00:00
fmt.Fprintf(out, " canonical => ")
if s.Targets.Page == nil {
2013-09-18 18:52:30 +00:00
fmt.Fprintf(out, "%s\n\n", "!no target specified!")
2013-09-01 14:43:29 +00:00
continue
}
2013-09-04 03:52:50 +00:00
trns, err := s.PageTarget().Translate(p.TargetPath())
2013-09-04 03:52:50 +00:00
if err != nil {
return err
}
fmt.Fprintf(out, "%s\n", trns)
if s.Targets.Alias == nil {
2013-09-12 23:17:53 +00:00
continue
}
for _, alias := range p.Aliases {
aliasTrans, err := s.AliasTarget().Translate(alias)
2013-09-12 23:17:53 +00:00
if err != nil {
return err
}
fmt.Fprintf(out, " %s => %s\n", alias, aliasTrans)
}
2013-09-18 18:52:30 +00:00
fmt.Fprintln(out)
2013-09-01 14:43:29 +00:00
}
2013-09-01 04:13:04 +00:00
return
}