From: Bjørn Erik Pedersen Date: Thu, 1 Nov 2018 20:08:12 +0000 (+0100) Subject: hugolib: Deprecate .Site.Ref and .Site.RelRef X-Git-Tag: v0.51~27 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6c6a6c87ec2b5ac7342e268ab47861429230f7f4;p=brevno-suite%2Fhugo hugolib: Deprecate .Site.Ref and .Site.RelRef Fixes #5386 --- diff --git a/hugolib/site.go b/hugolib/site.go index d0d84dc6..e58dd39b 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -583,6 +583,8 @@ func (s *siteRefLinker) refLink(ref string, source interface{}, relative bool, o // Ref will give an absolute URL to ref in the given Page. func (s *SiteInfo) Ref(ref string, page *Page, options ...string) (string, error) { + // Remove in Hugo 0.53 + helpers.Deprecated("Site", ".Ref", "Use .Site.GetPage", false) outputFormat := "" if len(options) > 0 { outputFormat = options[0] @@ -593,6 +595,8 @@ func (s *SiteInfo) Ref(ref string, page *Page, options ...string) (string, error // RelRef will give an relative URL to ref in the given Page. func (s *SiteInfo) RelRef(ref string, page *Page, options ...string) (string, error) { + // Remove in Hugo 0.53 + helpers.Deprecated("Site", ".RelRef", "Use .Site.GetPage", false) outputFormat := "" if len(options) > 0 { outputFormat = options[0]