Remove hugolib.HTML and hugolib.URL types
authorNoah Campbell <noahcampbell@gmail.com>
Tue, 3 Sep 2013 19:41:13 +0000 (12:41 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Tue, 3 Sep 2013 19:43:56 +0000 (12:43 -0700)
These types were not be rendered correctly by the html/template package.
Removing them gets the correct behavior.

Fixes #74

hugolib/helpers.go
hugolib/node.go
hugolib/page.go
hugolib/page_test.go
hugolib/site.go
hugolib/site_test.go
hugolib/template.go

index 08fafd37f306449f1039d8132cbc82f6b9d55600..f9283f4b844b78ca6fc46eb184c00b409257927f 100644 (file)
@@ -15,6 +15,7 @@ package hugolib
 
 import (
        "bytes"
+       "html/template"
        "errors"
        "fmt"
        "github.com/kr/pretty"
@@ -164,11 +165,11 @@ func Urlize(url string) string {
        return Sanitize(strings.ToLower(strings.Replace(strings.TrimSpace(url), " ", "-", -1)))
 }
 
-func AbsUrl(url string, base string) HTML {
+func AbsUrl(url string, base string) template.HTML {
        if strings.HasPrefix(url, "http://") || strings.HasPrefix(url, "https://") {
-               return HTML(url)
+               return template.HTML(url)
        }
-       return HTML(MakePermalink(base, url))
+       return template.HTML(MakePermalink(base, url))
 }
 
 func Gt(a interface{}, b interface{}) bool {
index a8e90b7d87206aabcf8ce332b999dc41dc01f732..404944d9d8a99ced30634d7e0b006a6b4b610c5a 100644 (file)
@@ -15,10 +15,11 @@ package hugolib
 
 import (
        "time"
+       "html/template"
 )
 
 type Node struct {
-       RSSlink     HTML
+       RSSlink     template.HTML
        Site        SiteInfo
        layout      string
        Data        map[string]interface{}
@@ -31,7 +32,7 @@ type Node struct {
 
 type UrlPath struct {
        Url       string
-       Permalink HTML
+       Permalink template.HTML
        Slug      string
        Section   string
        Path      string
index 5b2b29704c06206fbef97ff3134e068285ab8fc2..a8629250bb798287ead3ace94e983fd808488153 100644 (file)
@@ -22,6 +22,7 @@ import (
        "github.com/BurntSushi/toml"
        "github.com/theplant/blackfriday"
        "io"
+       "html/template"
        "io/ioutil"
        "launchpad.net/goyaml"
        "os"
@@ -37,8 +38,8 @@ var _ = filepath.Base("")
 type Page struct {
        Status          string
        Images          []string
-       Content         HTML
-       Summary         HTML
+       Content         template.HTML
+       Summary         template.HTML
        RawMarkdown     string // TODO should be []byte
        Params          map[string]interface{}
        RenderedContent *bytes.Buffer
@@ -184,7 +185,7 @@ func splitPageContent(data []byte, start string, end string) ([]string, []string
        return datum, lines
 }
 
-func (p *Page) Permalink() HTML {
+func (p *Page) Permalink() template.HTML {
        baseUrl := string(p.Site.BaseUrl)
        section := strings.TrimSpace(p.Section)
        pSlug := strings.TrimSpace(p.Slug)
@@ -208,7 +209,7 @@ func (p *Page) Permalink() HTML {
                        path = section + "/" + file
                }
        }
-       return HTML(MakePermalink(baseUrl, path))
+       return template.HTML(MakePermalink(baseUrl, path))
 }
 
 func (page *Page) handleTomlMetaData(datum []byte) (interface{}, error) {
@@ -426,14 +427,14 @@ func chompWhitespace(data *bufio.Reader) (r rune, err error) {
        }
 }
 
-func (p *Page) Render(layout ...string) HTML {
+func (p *Page) Render(layout ...string) template.HTML {
        curLayout := ""
 
        if len(layout) > 0 {
                curLayout = layout[0]
        }
 
-       return HTML(string(p.ExecuteTemplate(curLayout).Bytes()))
+       return template.HTML(string(p.ExecuteTemplate(curLayout).Bytes()))
 }
 
 func (p *Page) ExecuteTemplate(layout string) *bytes.Buffer {
@@ -480,12 +481,12 @@ func (page *Page) convertMarkdown(lines io.Reader) {
        b := new(bytes.Buffer)
        b.ReadFrom(lines)
        content := b.Bytes()
-       page.Content = HTML(string(blackfriday.MarkdownCommon(RemoveSummaryDivider(content))))
+       page.Content = template.HTML(string(blackfriday.MarkdownCommon(RemoveSummaryDivider(content))))
        summary, plain := getSummaryString(content)
        if plain {
-               page.Summary = HTML(string(summary))
+               page.Summary = template.HTML(string(summary))
        } else {
-               page.Summary = HTML(string(blackfriday.MarkdownCommon(summary)))
+               page.Summary = template.HTML(string(blackfriday.MarkdownCommon(summary)))
        }
 }
 
@@ -493,11 +494,11 @@ func (page *Page) convertRestructuredText(lines io.Reader) {
        b := new(bytes.Buffer)
        b.ReadFrom(lines)
        content := b.Bytes()
-       page.Content = HTML(getRstContent(content))
+       page.Content = template.HTML(getRstContent(content))
        summary, plain := getSummaryString(content)
        if plain {
-               page.Summary = HTML(string(summary))
+               page.Summary = template.HTML(string(summary))
        } else {
-               page.Summary = HTML(getRstContent(summary))
+               page.Summary = template.HTML(getRstContent(summary))
        }
 }
index 99f7c3a1aa0adba6b0c52608e8986f22cd7ecbf0..f321a165590c5c9bbe8de1aa081e064dae7db3eb 100644 (file)
@@ -4,6 +4,7 @@ import (
        "path/filepath"
        "strings"
        "testing"
+       "html/template"
 )
 
 var EMPTY_PAGE = ""
@@ -141,13 +142,13 @@ func checkPageTitle(t *testing.T, page *Page, title string) {
 }
 
 func checkPageContent(t *testing.T, page *Page, content string) {
-       if page.Content != HTML(content) {
+       if page.Content != template.HTML(content) {
                t.Fatalf("Page content is: %s.  Expected %s", page.Content, content)
        }
 }
 
 func checkPageSummary(t *testing.T, page *Page, summary string) {
-       if page.Summary != HTML(summary) {
+       if page.Summary != template.HTML(summary) {
                t.Fatalf("Page summary is: `%s`.  Expected `%s`", page.Summary, summary)
        }
 }
index 2c6c610bff5743b3833dfa525b980826cc98b5a6..0c2209cb9e2a61ff7b9a0ad1589b6b352d11b762 100644 (file)
@@ -15,6 +15,7 @@ package hugolib
 
 import (
        "bitbucket.org/pkg/inflect"
+       "html/template"
        "bytes"
        "fmt"
        "github.com/spf13/hugo/target"
@@ -41,7 +42,7 @@ type Site struct {
 }
 
 type SiteInfo struct {
-       BaseUrl    URL
+       BaseUrl    template.URL
        Indexes    OrderedIndexList
        Recent     *Pages
        LastChange time.Time
@@ -169,7 +170,7 @@ func (s *Site) initialize() {
 
        filepath.Walk(s.absContentDir(), walker)
        s.Info = SiteInfo{
-               BaseUrl: URL(s.Config.BaseUrl),
+               BaseUrl: template.URL(s.Config.BaseUrl),
                Title:   s.Config.Title,
                Recent:  &s.Pages,
                Config:  &s.Config,
@@ -206,7 +207,7 @@ func (s *Site) checkDirectories() {
 
 func (s *Site) ProcessShortcodes() {
        for _, page := range s.Pages {
-               page.Content = HTML(ShortcodesHandle(string(page.Content), page, s.Tmpl))
+               page.Content = template.HTML(ShortcodesHandle(string(page.Content), page, s.Tmpl))
        }
 }
 
@@ -220,7 +221,7 @@ func (s *Site) AbsUrlify() {
                content = strings.Replace(content, " href='/", " href='"+baseWithSlash, -1)
                content = strings.Replace(content, " href=\"/", " href=\""+baseWithSlash, -1)
                content = strings.Replace(content, baseWithoutTrailingSlash+"//", baseWithSlash, -1)
-               page.Content = HTML(content)
+               page.Content = template.HTML(content)
        }
 }
 
@@ -525,7 +526,7 @@ func (s *Site) RenderLists() error {
                        } else {
                                n.Url = Urlize(section + "/" + "index.xml")
                        }
-                       n.Permalink = HTML(string(n.Site.BaseUrl) + n.Url)
+                       n.Permalink = template.HTML(string(n.Site.BaseUrl) + n.Url)
                        y := s.NewXMLBuffer()
                        s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                        err = s.WritePublic(section+"/index.xml", y.Bytes())
@@ -591,8 +592,8 @@ func (s *Site) Stats() {
        }
 }
 
-func permalink(s *Site, plink string) HTML {
-       return HTML(MakePermalink(string(s.Info.BaseUrl), plink))
+func permalink(s *Site, plink string) template.HTML {
+       return template.HTML(MakePermalink(string(s.Info.BaseUrl), plink))
 }
 
 func (s *Site) NewNode() *Node {
index 08906e7944c2bb9b7bc9e96e09c9e1bc01b18228..25171d256204d695f3dae8fd49e2f798ab61e53b 100644 (file)
@@ -5,6 +5,7 @@ import (
        "fmt"
        "strings"
        "testing"
+       "html/template"
 )
 
 var TEMPLATE_TITLE = "{{ .Title }}"
@@ -104,7 +105,7 @@ func TestRenderThing(t *testing.T) {
        }{
                {PAGE_SIMPLE_TITLE, TEMPLATE_TITLE, "simple template"},
                {PAGE_SIMPLE_TITLE, TEMPLATE_FUNC, "simple-template"},
-               {PAGE_WITH_MD, TEMPLATE_CONTENT, "<h1>heading 1</h1>\n<p>text</p>\n<h2>heading 2</h2>\n<p>more text</p>\n"},
+               {PAGE_WITH_MD, TEMPLATE_CONTENT, "<h1>heading 1</h1>\n\n<p>text</p>\n\n<h2>heading 2</h2>\n\n<p>more text</p>\n"},
        }
 
        s := new(Site)
@@ -121,6 +122,7 @@ func TestRenderThing(t *testing.T) {
                        t.Fatalf("Unable to add template")
                }
 
+               p.Content = template.HTML(p.Content)
                html, err2 := s.RenderThing(p, templateName)
                if err2 != nil {
                        t.Errorf("Unable to render html: %s", err)
index f275c0cb9e08b64be6d8a33012708b6ca9f60622..8dd382379ed469b72f6c40f362112e0cba6f6466 100644 (file)
@@ -14,7 +14,6 @@ import (
 // It should not be used for HTML from a third-party, or HTML with
 // unclosed tags or comments. The outputs of a sound HTML sanitizer
 // and a template escaped by this package are fine for use with HTML.
-type HTML template.HTML
 
 type Template interface {
        ExecuteTemplate(wr io.Writer, name string, data interface{}) error
@@ -25,8 +24,6 @@ type Template interface {
        AddTemplate(name, tpl string) error
 }
 
-type URL template.URL
-
 type templateErr struct {
        name string
        err  error