config.Set("logI18nWarnings", logI18nWarnings)
if baseURL != "" {
- if !strings.HasSuffix(baseURL, "/") {
- baseURL = baseURL + "/"
- }
config.Set("baseURL", baseURL)
}
_ [4]byte
paginationPageCount uint64
- BaseURL template.URL
Taxonomies TaxonomyList
Authors AuthorList
Social SiteSocial
return fmt.Sprintf("Site(%q)", s.Title)
}
+func (s *SiteInfo) BaseURL() template.URL {
+ return template.URL(s.s.PathSpec.BaseURL.String())
+}
+
// Used in tests.
type siteBuilderCfg struct {
func newSiteInfo(cfg siteBuilderCfg) SiteInfo {
return SiteInfo{
s: cfg.s,
- BaseURL: template.URL(cfg.baseURL),
multilingual: newMultiLingualForLanguage(cfg.language),
PageCollections: cfg.pageCollections,
Params: make(map[string]interface{}),
}
s.Info = SiteInfo{
- BaseURL: template.URL(helpers.SanitizeURLKeepTrailingSlash(s.Cfg.GetString("baseURL"))),
Title: lang.GetString("title"),
Author: lang.GetStringMap("author"),
Social: lang.GetStringMapString("social"),
menuEntryURL := in
menuEntryURL = helpers.SanitizeURLKeepTrailingSlash(s.s.PathSpec.URLize(menuEntryURL))
if !s.canonifyURLs {
- menuEntryURL = helpers.AddContextRoot(string(s.BaseURL), menuEntryURL)
+ menuEntryURL = helpers.AddContextRoot(s.s.PathSpec.BaseURL.String(), menuEntryURL)
}
return menuEntryURL
}
require.NoError(t, err)
s.initializeSiteInfo()
- if s.Info.BaseURL != template.URL(this.expected) {
- t.Errorf("[%d] got %s expected %s", i, s.Info.BaseURL, this.expected)
+ if s.Info.BaseURL() != template.URL(this.expected) {
+ t.Errorf("[%d] got %s expected %s", i, s.Info.BaseURL(), this.expected)
}
}
}