-// Copyright 2015 The Hugo Authors. All rights reserved.
+// Copyright 2016 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.
package hugolib
import (
- "bytes"
"errors"
"fmt"
"html/template"
// used to indicate if run as a test.
var testMode bool
-var DefaultTimer *nitro.B
+var defaultTimer *nitro.B
var distinctErrorLogger = helpers.NewDistinctErrorLogger()
}
func init() {
- DefaultTimer = nitro.Initalize()
+ defaultTimer = nitro.Initalize()
}
func (s *Site) timerStep(step string) {
if s.timer == nil {
- s.timer = DefaultTimer
+ s.timer = defaultTimer
}
s.timer.Step(step)
}
}
return nil
- } else {
- return err
}
+ return err
+
}
func (s *Site) Analyze() error {
return err
}
+// Stats prints Hugo builds stats to the console.
+// This is what you see after a successful hugo build.
func (s *Site) Stats() {
jww.FEEDBACK.Println(s.draftStats())
jww.FEEDBACK.Println(s.futureStats())
}
-func (s *Site) NewXMLBuffer() *bytes.Buffer {
- header := "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n"
- return bytes.NewBufferString(header)
-}
-
func (s *Site) pageTarget() target.Output {
s.initTargetList()
return s.targets.page