mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
source: Cache language config
``` benchmark old ns/op new ns/op delta BenchmarkSiteBuilding/frontmatter=YAML|num_root_sections=1|num_pages=5000|tags_per_page=0|shortcodes=false|render=false-4 552742744 501838152 -9.21% benchmark old allocs new allocs delta BenchmarkSiteBuilding/frontmatter=YAML|num_root_sections=1|num_pages=5000|tags_per_page=0|shortcodes=false|render=false-4 3047393 2957378 -2.95% benchmark old bytes new bytes delta BenchmarkSiteBuilding/frontmatter=YAML|num_root_sections=1|num_pages=5000|tags_per_page=0|shortcodes=false|render=false-4 356533864 354291924 -0.63% ```
This commit is contained in:
parent
2342df4d2d
commit
4aff2b6e74
1 changed files with 8 additions and 3 deletions
|
@ -27,10 +27,15 @@ import (
|
||||||
type SourceSpec struct {
|
type SourceSpec struct {
|
||||||
Cfg config.Provider
|
Cfg config.Provider
|
||||||
Fs *hugofs.Fs
|
Fs *hugofs.Fs
|
||||||
|
|
||||||
|
languages map[string]interface{}
|
||||||
|
defaultContentLanguage string
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewSourceSpec(cfg config.Provider, fs *hugofs.Fs) SourceSpec {
|
func NewSourceSpec(cfg config.Provider, fs *hugofs.Fs) SourceSpec {
|
||||||
return SourceSpec{Cfg: cfg, Fs: fs}
|
defaultLang := cfg.GetString("defaultContentLanguage")
|
||||||
|
languages := cfg.GetStringMap("languages")
|
||||||
|
return SourceSpec{Cfg: cfg, Fs: fs, languages: languages, defaultContentLanguage: defaultLang}
|
||||||
}
|
}
|
||||||
|
|
||||||
// File represents a source content file.
|
// File represents a source content file.
|
||||||
|
@ -139,8 +144,8 @@ func (sp SourceSpec) NewFile(relpath string) *File {
|
||||||
f.baseName = helpers.Filename(f.LogicalName())
|
f.baseName = helpers.Filename(f.LogicalName())
|
||||||
|
|
||||||
lang := strings.TrimPrefix(filepath.Ext(f.baseName), ".")
|
lang := strings.TrimPrefix(filepath.Ext(f.baseName), ".")
|
||||||
if _, ok := sp.Cfg.GetStringMap("languages")[lang]; lang == "" || !ok {
|
if _, ok := sp.languages[lang]; lang == "" || !ok {
|
||||||
f.lang = sp.Cfg.GetString("defaultContentLanguage")
|
f.lang = sp.defaultContentLanguage
|
||||||
f.translationBaseName = f.baseName
|
f.translationBaseName = f.baseName
|
||||||
} else {
|
} else {
|
||||||
f.lang = lang
|
f.lang = lang
|
||||||
|
|
Loading…
Reference in a new issue