ref: 614dd2aa16942bb182b3a69bc045b963ed5de9b8
parent: 59df7db764d011b6e082d11d4660e9c8833a3b75
author: Bjørn Erik Pedersen <[email protected]>
date: Wed Sep 28 07:05:21 EDT 2016
Deprecate PageMeta.WordCount etc. Fix #2503
--- a/helpers/general.go
+++ b/helpers/general.go
@@ -237,7 +237,7 @@
// Deprecated logs ERROR logs about a deprecation, but only once for a given set of arguments' values.
func Deprecated(object, item, alternative string) {
// deprecatedLogger.Printf("%s's %s is deprecated and will be removed in Hugo %s. Use %s instead.", object, item, NextHugoReleaseVersion(), alternative)
- DistinctErrorLog.Printf("%s's %s is deprecated and will be removed VERY SOON. Use %s instead.", object, item, alternative)
+ DistinctErrorLog.Printf("%s's %s is deprecated and will be removed in a future release. Use %s instead.", object, item, alternative)
}
--- a/hugolib/page.go
+++ b/hugolib/page.go
@@ -114,6 +114,22 @@
Weight int
}
+func (*PageMeta) WordCount() int {
+ helpers.Deprecated("PageMeta", "WordCount", ".WordCount (on Page)")
+ return 0
+}
+
+func (*PageMeta) FuzzyWordCount() int {
+ helpers.Deprecated("PageMeta", "FuzzyWordCount", ".FuzzyWordCount (on Page)")
+ return 0
+
+}
+
+func (*PageMeta) ReadingTime() int {
+ helpers.Deprecated("PageMeta", "ReadingTime", ".ReadingTime (on Page)")
+ return 0
+}
+
type Position struct {
Prev *Page
Next *Page