2015-12-10 15:19:38 -07: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-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
|
|
|
)
|
|
|
|
|
2016-04-07 16:05:23 +02:00
|
|
|
// ShowPlan prints a build plan to the given Writer.
|
|
|
|
// Useful for debugging.
|
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")
|
|
|
|
}
|
|
|
|
|
2016-05-14 00:35:16 -04:00
|
|
|
for _, p := range s.AllPages {
|
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
|
|
|
}
|
2016-08-08 10:12:39 +02:00
|
|
|
if s.owner.tmpl != nil {
|
2015-11-02 17:24:50 +01:00
|
|
|
for _, l := range p.layouts() {
|
2016-08-08 10:12:39 +02:00
|
|
|
fmt.Fprintf(out, " (layout: %s, exists: %t)", l, s.owner.tmpl.Lookup(l) != nil)
|
2013-10-07 07:57:45 +03:00
|
|
|
}
|
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 => ")
|
2016-03-05 20:56:38 +01: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
|
|
|
|
2016-03-05 20:56:38 +01: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)
|
|
|
|
|
2016-03-05 20:56:38 +01:00
|
|
|
if s.targets.alias == nil {
|
2013-09-12 16:17:53 -07:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, alias := range p.Aliases {
|
2016-03-05 20:56:38 +01: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
|
|
|
|
}
|