summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Mooring <joe.mooring@veriphor.com>2024-02-01 07:33:49 -0800
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2024-02-01 17:12:52 +0100
commit963cecc12c9eae8112cebfa941f5c1bc25ab22a4 (patch)
tree3f8bf546b189eecce2a7d100edb59a10e4139bf0
parentd8f0e3071558f948b41b64bb514a01b62742a60a (diff)
all: Deprecate .Page.Lang and .Page.File.Lang
Use .Page.Language.Lang instead.
-rw-r--r--hugolib/page__meta.go4
-rw-r--r--source/fileInfo.go4
2 files changed, 7 insertions, 1 deletions
diff --git a/hugolib/page__meta.go b/hugolib/page__meta.go
index e4cb2b83b..923bf9f8b 100644
--- a/hugolib/page__meta.go
+++ b/hugolib/page__meta.go
@@ -105,6 +105,7 @@ func (p *pageMeta) Aliases() []string {
return p.pageConfig.Aliases
}
+// Deprecated: use taxonomies.
func (p *pageMeta) Author() page.Author {
hugo.Deprecate(".Author", "Use taxonomies.", "v0.98.0")
authors := p.Authors()
@@ -115,6 +116,7 @@ func (p *pageMeta) Author() page.Author {
return page.Author{}
}
+// Deprecated: use taxonomies.
func (p *pageMeta) Authors() page.AuthorList {
hugo.Deprecate(".Author", "Use taxonomies.", "v0.112.0")
return nil
@@ -151,7 +153,9 @@ func (p *pageMeta) Description() string {
return p.pageConfig.Description
}
+// Deprecated: use .Page.Language.Lang instead.
func (p *pageMeta) Lang() string {
+ hugo.Deprecate(".Page.Lang", "Use .Page.Language.Lang instead.", "v0.123.0")
return p.s.Lang()
}
diff --git a/source/fileInfo.go b/source/fileInfo.go
index 5b24bbeb2..20ddda647 100644
--- a/source/fileInfo.go
+++ b/source/fileInfo.go
@@ -51,17 +51,19 @@ func (fi *File) Dir() string {
}
// Extension is an alias to Ext().
+// Deprecated: Use Ext() instead.
func (fi *File) Extension() string {
hugo.Deprecate(".File.Extension", "Use .File.Ext instead.", "v0.96.0")
return fi.Ext()
}
// Ext returns a file's extension without the leading period (e.g. "md").
-// Deprecated: Use Extension() instead.
func (fi *File) Ext() string { return fi.p().Ext() }
// Lang returns a file's language (e.g. "sv").
+// Deprecated: use .Page.Language.Lang instead.
func (fi *File) Lang() string {
+ hugo.Deprecate(".Page.File.Lang", "Use .Page.Language.Lang instead.", "v0.123.0")
return fi.fim.Meta().Lang
}