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