hugo/hugolib/planner.go

41 lines
746 B
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\n", p.FileName)
2013-09-04 03:52:50 +00:00
fmt.Fprintf(out, " canonical => ")
2013-09-01 14:43:29 +00:00
if s.Target == nil {
2013-09-04 03:52:50 +00:00
fmt.Fprintf(out, "%s\n", "!no target specified!")
2013-09-01 14:43:29 +00:00
continue
}
2013-09-04 03:52:50 +00:00
trns, err := s.Target.Translate(p.OutFile)
2013-09-04 03:52:50 +00:00
if err != nil {
return err
}
fmt.Fprintf(out, "%s\n", trns)
2013-09-12 23:17:53 +00: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-01 14:43:29 +00:00
}
2013-09-01 04:13:04 +00:00
return
}