proper BaseUrl handling (if has trailing slash or not)
authorspf13 <steve.francia@gmail.com>
Fri, 12 Jul 2013 02:55:07 +0000 (22:55 -0400)
committerspf13 <steve.francia@gmail.com>
Fri, 12 Jul 2013 02:55:07 +0000 (22:55 -0400)
hugolib/config.go
hugolib/site.go

index cb54b73749dc918a23b575099d5b4216f8558bea..983aa254f7e0578b66cce88c265b77a000c440da 100644 (file)
@@ -22,6 +22,7 @@ import (
        "os"
        "path"
        "path/filepath"
+       "strings"
 )
 
 // config file items
@@ -65,6 +66,11 @@ func SetupConfig(cfgfile *string, path *string) *Config {
                c.Indexes["tag"] = "tags"
                c.Indexes["category"] = "categories"
        }
+
+    if !strings.HasSuffix(c.BaseUrl, "/") {
+        c.BaseUrl = c.BaseUrl + "/"
+    }
+
        return &c
 }
 
index a1d79258d5607ab851a9a4d002fadc9556c5cd2e..4489c2a373c486650676d233eabadb176c3ea97b 100644 (file)
@@ -188,10 +188,10 @@ func (s *Site) ProcessShortcodes() {
 func (s *Site) AbsUrlify() {
        for i, _ := range s.Pages {
                content := string(s.Pages[i].Content)
-               content = strings.Replace(content, " src=\"/", " src=\""+s.c.BaseUrl+"/", -1)
-               content = strings.Replace(content, " src='/", " src='"+s.c.BaseUrl+"/", -1)
-               content = strings.Replace(content, " href='/", " href='"+s.c.BaseUrl+"/", -1)
-               content = strings.Replace(content, " href=\"/", " href=\""+s.c.BaseUrl+"/", -1)
+               content = strings.Replace(content, " src=\"/", " src=\""+s.c.BaseUrl, -1)
+               content = strings.Replace(content, " src='/", " src='"+s.c.BaseUrl, -1)
+               content = strings.Replace(content, " href='/", " href='"+s.c.BaseUrl, -1)
+               content = strings.Replace(content, " href=\"/", " href=\""+s.c.BaseUrl, -1)
                s.Pages[i].Content = template.HTML(content)
        }
 }
@@ -276,7 +276,7 @@ func (s *Site) RenderIndexes() {
                                // XML Feed
                                y := s.NewXMLBuffer()
                                n.Url = Urlize(plural + "/" + k + ".xml")
-                n.Permalink = template.HTML(string(n.Site.BaseUrl) + "/" + plural + "/" + k + ".xml")
+                n.Permalink = template.HTML(string(n.Site.BaseUrl) + plural + "/" + k + ".xml")
                                s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                                s.WritePublic(plural, k+".xml", y.Bytes())
                        }
@@ -301,7 +301,7 @@ func (s *Site) RenderLists() {
                if a := s.Tmpl.Lookup("rss.xml"); a != nil {
                        // XML Feed
                        n.Url = Urlize(section + "/index.xml")
-            n.Permalink = template.HTML(string(n.Site.BaseUrl) + "/" + section + "/index.xml")
+            n.Permalink = template.HTML(string(n.Site.BaseUrl) + section + "/index.xml")
                        y := s.NewXMLBuffer()
                        s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                        s.WritePublic(section, "index.xml", y.Bytes())
@@ -313,7 +313,7 @@ func (s *Site) RenderHomePage() {
        n := s.NewNode()
        n.Title = n.Site.Title
        n.Url = Urlize(string(n.Site.BaseUrl))
-       n.RSSlink = template.HTML(MakePermalink(string(n.Site.BaseUrl), string("/index.xml")))
+       n.RSSlink = template.HTML(MakePermalink(string(n.Site.BaseUrl), string("index.xml")))
        n.Permalink = template.HTML(string(n.Site.BaseUrl))
        n.Date = s.Pages[0].Date
        if len(s.Pages) < 9 {
@@ -328,7 +328,7 @@ func (s *Site) RenderHomePage() {
                // XML Feed
                n.Url = Urlize("index.xml")
         n.Title = "Recent Content"
-        n.Permalink = template.HTML(string(n.Site.BaseUrl) + "/index.xml")
+        n.Permalink = template.HTML(string(n.Site.BaseUrl) + "index.xml")
                y := s.NewXMLBuffer()
                s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                s.WritePublic("", "index.xml", y.Bytes())