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