hugolib: Add relativeURLs and canonifyURLs to Site
authorbogem <albertnigma@gmail.com>
Mon, 20 Feb 2017 08:52:06 +0000 (13:52 +0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Feb 2017 14:08:45 +0000 (15:08 +0100)
hugolib/page.go
hugolib/site.go

index c411d7e1c0423cbca7b5081b20232c12116b9b82..455efd7828b33460a6aba2fda049b0eab2599a89 100644 (file)
@@ -940,8 +940,7 @@ func (p *Page) RelPermalink() string {
        p.relPermalinkInit.Do(func() {
                link := p.getPermalink()
 
-               if p.s.Info.canonifyURLs {
-                       // replacements for relpermalink with baseURL on the form http://myhost.com/sub/ will fail later on
+               if p.s.Info.canonifyURLs { // replacements for relpermalink with baseURL on the form http://myhost.com/sub/ will fail later on
                        // have to return the URL relative from baseURL
                        relpath, err := helpers.GetRelativePath(link.String(), string(p.Site.BaseURL))
                        if err != nil {
index b369e514ad3d154b7069f6338df5809f82611db3..415a1c5975e55183e1b5f0ce09aee386b272f194 100644 (file)
@@ -249,6 +249,7 @@ type SiteInfo struct {
        Params                map[string]interface{}
        BuildDrafts           bool
        canonifyURLs          bool
+       relativeURLs          bool
        preserveTaxonomyNames bool
        Data                  *map[string]interface{}
 
@@ -977,6 +978,7 @@ func (s *Site) initializeSiteInfo() {
                GoogleAnalytics:                lang.GetString("googleAnalytics"),
                BuildDrafts:                    s.Cfg.GetBool("buildDrafts"),
                canonifyURLs:                   s.Cfg.GetBool("canonifyURLs"),
+               relativeURLs:                   s.Cfg.GetBool("relativeURLs"),
                preserveTaxonomyNames:          lang.GetBool("preserveTaxonomyNames"),
                PageCollections:                s.PageCollections,
                Files:                          &s.Files,
@@ -1744,7 +1746,7 @@ func (s *Site) renderAndWriteXML(name string, dest string, d interface{}, layout
        defer bp.PutBuffer(outBuffer)
 
        var path []byte
-       if s.Cfg.GetBool("relativeURLs") {
+       if s.Info.relativeURLs {
                path = []byte(helpers.GetDottedRelativePath(dest))
        } else {
                s := s.Cfg.GetString("baseURL")
@@ -1784,9 +1786,8 @@ func (s *Site) renderAndWritePage(name string, dest string, d interface{}, layou
        }
 
        transformLinks := transform.NewEmptyTransforms()
-       relativeURLs := s.Cfg.GetBool("relativeURLs")
 
-       if relativeURLs || s.Info.canonifyURLs {
+       if s.Info.relativeURLs || s.Info.canonifyURLs {
                transformLinks = append(transformLinks, transform.AbsURL)
        }
 
@@ -1803,7 +1804,7 @@ func (s *Site) renderAndWritePage(name string, dest string, d interface{}, layou
 
        var path []byte
 
-       if relativeURLs {
+       if s.Info.relativeURLs {
                translated, err := pageTarget.(target.OptionalTranslator).TranslateRelative(dest)
                if err != nil {
                        return err
@@ -1982,7 +1983,7 @@ func (s *Site) writeDestAlias(path, permalink string, p *Page) (err error) {
 }
 
 func (s *Site) publishDestAlias(aliasPublisher target.AliasPublisher, path, permalink string, p *Page) (err error) {
-       if s.Cfg.GetBool("relativeURLs") {
+       if s.Info.relativeURLs {
                // convert `permalink` into URI relative to location of `path`
                baseURL := helpers.SanitizeURLKeepTrailingSlash(s.Cfg.GetString("baseURL"))
                if strings.HasPrefix(permalink, baseURL) {