SiteInfo is now a pointer on the Node
authorspf13 <steve.francia@gmail.com>
Wed, 28 May 2014 23:11:54 +0000 (19:11 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 28 May 2014 23:11:54 +0000 (19:11 -0400)
hugolib/node.go
hugolib/page_permalink_test.go
hugolib/site.go

index e7e524da2b3570130d8ab5f89833ca84816f7adf..2ff8d40cd1053984f6bd40ff2b5c7d4878091d08 100644 (file)
@@ -20,7 +20,7 @@ import (
 
 type Node struct {
        RSSLink template.HTML
-       Site    SiteInfo
+       Site    *SiteInfo
        //      layout      string
        Data        map[string]interface{}
        Title       string
index 5bbf07da8d63d3b8ae1a1ad02e79e1f55ac85a7b..51306faded4cce3afc1f29360f1d0027d30fa7f6 100644 (file)
@@ -41,7 +41,7 @@ func TestPermalink(t *testing.T) {
                                        Section: "z",
                                        Url:     test.url,
                                },
-                               Site: SiteInfo{
+                               Site: &SiteInfo{
                                        BaseUrl: test.base,
                                },
                        },
index 54f90b392dec762a359e2db4ec1c9c29f4c0b394..7a0e69fdeb8556daa9115d073f3eadba1e8e5ca5 100644 (file)
@@ -330,7 +330,7 @@ func (s *Site) CreatePages() (err error) {
                        if err != nil {
                                return err
                        }
-                       page.Site = s.Info
+                       page.Site = &s.Info
                        page.Tmpl = s.Tmpl
                        page.Section = file.Section
                        page.Dir = file.Dir
@@ -760,7 +760,7 @@ func (s *Site) RenderSitemap() error {
 
        page := &Page{}
        page.Date = s.Info.LastChange
-       page.Site = s.Info
+       page.Site = &s.Info
        page.Url = "/"
 
        pages = append(pages, page)
@@ -833,7 +833,7 @@ func (s *Site) PrettifyPath(in string) string {
 func (s *Site) NewNode() *Node {
        return &Node{
                Data: make(map[string]interface{}),
-               Site: s.Info,
+               Site: &s.Info,
        }
 }