hugo/hugolib/planner.go

31 lines
492 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) {
2013-09-01 14:43:29 +00:00
if len(s.Files) <= 0 {
fmt.Fprintf(out, "No source files provided.\n")
}
for _, file := range s.Files {
fmt.Fprintf(out, "%s\n", file)
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(file)
if err != nil {
return err
}
fmt.Fprintf(out, "%s\n", trns)
2013-09-01 14:43:29 +00:00
}
2013-09-01 04:13:04 +00:00
return
}