2015-12-10 22:19:38 +00:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2013-09-01 04:13:04 +00:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2013-09-01 14:43:29 +00:00
|
|
|
"fmt"
|
2013-09-01 16:24:03 +00:00
|
|
|
"io"
|
2013-09-01 04:13:04 +00:00
|
|
|
)
|
|
|
|
|
2016-04-07 14:05:23 +00:00
|
|
|
// ShowPlan prints a build plan to the given Writer.
|
|
|
|
// Useful for debugging.
|
2013-09-01 04:13:04 +00:00
|
|
|
func (s *Site) ShowPlan(out io.Writer) (err error) {
|
2013-09-05 05:28:59 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2016-05-14 04:35:16 +00:00
|
|
|
for _, p := range s.AllPages {
|
2014-10-17 00:20:09 +00:00
|
|
|
fmt.Fprintf(out, "%s", p.Source.Path())
|
2013-09-18 17:27:56 +00:00
|
|
|
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 17:27:56 +00:00
|
|
|
}
|
2016-08-08 08:12:39 +00:00
|
|
|
if s.owner.tmpl != nil {
|
2015-11-02 16:24:50 +00:00
|
|
|
for _, l := range p.layouts() {
|
2016-08-08 08:12:39 +00:00
|
|
|
fmt.Fprintf(out, " (layout: %s, exists: %t)", l, s.owner.tmpl.Lookup(l) != nil)
|
2013-10-07 04:57:45 +00:00
|
|
|
}
|
2013-09-18 21:21:27 +00:00
|
|
|
}
|
2013-09-18 17:27:56 +00:00
|
|
|
fmt.Fprintf(out, "\n")
|
2013-09-04 03:52:50 +00:00
|
|
|
fmt.Fprintf(out, " canonical => ")
|
2016-03-05 19:56:38 +00:00
|
|
|
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
|
|
|
|
2016-03-05 19:56:38 +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)
|
|
|
|
|
2016-03-05 19:56:38 +00:00
|
|
|
if s.targets.alias == nil {
|
2013-09-12 23:17:53 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, alias := range p.Aliases {
|
2016-03-05 19:56:38 +00:00
|
|
|
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
|
|
|
|
}
|