And some other unsed fields and methods.
// base: http://spf13.com/
// path: post/how-i-blog
// result: http://spf13.com/post/how-i-blog
-// TODO(bep) output check why this is still in use.
func MakePermalink(host, plink string) *url.URL {
base, err := url.Parse(host)
v.SetDefault("taxonomies", map[string]string{"tag": "tags", "category": "categories"})
v.SetDefault("permalinks", make(PermalinkOverrides, 0))
v.SetDefault("sitemap", Sitemap{Priority: -1, Filename: "sitemap.xml"})
- v.SetDefault("defaultExtension", "html")
v.SetDefault("pygmentsStyle", "monokai")
v.SetDefault("pygmentsUseClasses", false)
v.SetDefault("pygmentsCodeFences", false)
cfg, fs = newTestCfg()
)
- cfg.Set("defaultExtension", "html")
cfg.Set("verbose", true)
cfg.Set("uglyURLs", true)
</nav>`
var multiSiteTOMLConfigTemplate = `
-defaultExtension = "html"
baseURL = "http://example.com/blog"
disableSitemap = false
disableRSS = false
`
var multiSiteYAMLConfigTemplate = `
-defaultExtension: "html"
baseURL: "http://example.com/blog"
disableSitemap: false
disableRSS: false
var multiSiteJSONConfigTemplate = `
{
- "defaultExtension": "html",
"baseURL": "http://example.com/blog",
"disableSitemap": false,
"disableRSS": false,
plainInit sync.Once
plainWordsInit sync.Once
renderingConfigInit sync.Once
- pageURLInit sync.Once
}
// IsNode returns whether this is an item of one of the list types in Hugo,
}
func (p *Page) Extension() string {
- if p.extension != "" {
- // TODO(bep) output remove/deprecate this
- return p.extension
- }
- //
- // TODO(bep) return MediaType.Suffix
-
- // TODO(bep) remove this config option =>
- return p.s.Cfg.GetString("defaultExtension")
+ // Remove in Hugo 0.22.
+ helpers.Deprecated("Page", "Extension", "See OutputFormats with its MediaType", false)
+ return p.extension
}
// AllTranslations returns all translations, including the current Page.
return outfile
}
-func (p *Page) addLangFilepathPrefix(outfile string) string {
- if outfile == "" {
- outfile = helpers.FilePathSeparator
- }
-
- if !p.shouldAddLanguagePrefix() {
- return outfile
- }
- return helpers.FilePathSeparator + filepath.Join(p.Lang(), outfile)
-}
-
func sectionsFromFilename(filename string) []string {
var sections []string
dir, _ := filepath.Split(filename)
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
-
cfg.Set("uglyURLs", test.uglyURLs)
cfg.Set("canonifyURLs", test.canonifyURLs)
cfg.Set("baseURL", test.base)
Some text
`
- simplePageNoLayout = `---
-title: simple_no_layout
----
-No Layout called out`
-
- simplePageLayoutFoobar = `---
-title: simple layout foobar
-layout: foobar
----
-Layout foobar`
-
- simplePageTypeFoobar = `---
-type: foobar
----
-type foobar`
-
- simplePageTypeLayout = `---
-type: barfoo
-layout: buzfoo
----
-type and layout set`
-
simplePageWithSummaryDelimiter = `---
title: Simple
---
}
}
-func L(s ...string) []string {
- return s
-}
-
func TestSliceToLower(t *testing.T) {
t.Parallel()
tests := []struct {
for _, test := range tests {
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
-
if test.hasPermalink {
cfg.Set("permalinks", siteParmalinksSetting)
}
checkPageTitle(t, p, "Simple")
}
-func listEqual(left, right []string) bool {
- if len(left) != len(right) {
- return false
- }
-
- for i := range left {
- if left[i] != right[i] {
- return false
- }
- }
-
- return true
-}
-
// TODO(bep) this may be useful for other tests.
func compareObjects(a interface{}, b interface{}) bool {
aStr := strings.Split(fmt.Sprintf("%v", a), "")
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
cfg.Set("defaultContentLanguage", "en")
cfg.Set("baseURL", baseURL)
cfg.Set("uglyURLs", false)
return helpers.WriteToDisk(path, r, s.Fs.Destination)
}
-func (s *Site) langDir() string {
- if s.Language.Lang != s.Info.multilingual.DefaultLang.Lang || s.Info.defaultContentLanguageInSubdir {
- return s.Language.Lang
- }
- return ""
-}
-
func (s *Site) draftStats() string {
var msg string
// write alias for page 1
// TODO(bep) ml all of these n.addLang ... fix.
+ //TODO(bep) output fix
aliasPath := p.addLangPathPrefix(s.PathSpec.PaginateAliasPath(path.Join(p.sections...), 1))
link := p.Permalink()
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
cfg.Set("baseURL", baseURL)
cfg.Set("uglyURLs", uglyURLs)
cfg.Set("verbose", true)
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
cfg.Set("verbose", true)
cfg.Set("baseURL", "http://auth/bub")
cfg.Set("disableSitemap", false)
cfg, fs := newTestCfg()
cfg.Set("baseURL", "http://auth/sub/")
- cfg.Set("defaultExtension", "html")
cfg.Set("uglyURLs", uglify)
cfg.Set("pluralizeListTitles", pluralize)
cfg.Set("canonifyURLs", canonify)
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
cfg.Set("verbose", true)
cfg.Set("canonifyURLs", true)
cfg.Set("uglyURLs", true)
cfg, fs := newTestCfg()
- cfg.Set("defaultExtension", "html")
cfg.Set("uglyURLs", true)
cfg.Set("canonifyURLs", canonify)
cfg.Set("baseURL", baseURL)
cfg, fs := newTestCfg()
cfg.Set("baseURL", "http://auth/")
- cfg.Set("defaultExtension", "html")
cfg.Set("uglyURLs", false)
cfg.Set("pluralizeListTitles", false)
cfg.Set("canonifyURLs", false)
const baseFileBase = "baseof"
-var aceTemplateInnerMarkers = [][]byte{[]byte("= content")}
-var goTemplateInnerMarkers = [][]byte{[]byte("{{define"), []byte("{{ define")}
-
func isBaseTemplate(path string) bool {
return strings.Contains(path, baseFileBase)
}