Expand the ShowPlan functionality
authorNoah Campbell <noahcampbell@gmail.com>
Wed, 4 Sep 2013 03:52:50 +0000 (20:52 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Wed, 4 Sep 2013 03:52:50 +0000 (20:52 -0700)
hugolib/planner.go
hugolib/site.go
hugolib/site_show_plan_test.go
hugolib/site_url_test.go
target/file.go

index 52a54e9bf21d83a8ba8ed4a8b20a05543f7fdeb1..31d9e61667635df4fbd319a2d3b617ffa8ac809e 100644 (file)
@@ -12,10 +12,19 @@ func (s *Site) ShowPlan(out io.Writer) (err error) {
 
        for _, file := range s.Files {
                fmt.Fprintf(out, "%s\n", file)
+               fmt.Fprintf(out, " canonical => ")
                if s.Target == nil {
-                       fmt.Fprintf(out, " *implicit* => %s\n", "!no target specified!")
+                       fmt.Fprintf(out, "%s\n", "!no target specified!")
                        continue
                }
+
+               trns, err := s.Target.Translate(file)
+               if err != nil {
+                       return err
+               }
+
+               fmt.Fprintf(out, "%s\n", trns)
+
        }
        return
 }
index bb1ff31979220c3563c1f1bae3c92a26c9b00408..d7016762c8dc33676529c55fdf97fc3b9c03f959 100644 (file)
@@ -74,7 +74,7 @@ type Site struct {
        Info       SiteInfo
        Shortcodes map[string]ShortcodeFunc
        timer      *nitro.B
-       Target     target.Publisher
+       Target     target.Output
 }
 
 type SiteInfo struct {
@@ -114,7 +114,8 @@ func (s *Site) Build() (err error) {
 
 func (s *Site) Analyze() {
        s.Process()
-       s.checkDescriptions()
+       s.initTarget()
+       s.ShowPlan(os.Stdout)
 }
 
 func (s *Site) prepTemplates() {
@@ -173,7 +174,7 @@ func (s *Site) Write() {
 func (s *Site) checkDescriptions() {
        for _, p := range s.Pages {
                if len(p.Description) < 60 {
-                       fmt.Print(p.FileName + " ")
+                       fmt.Println(p.FileName + " ")
                }
        }
 }
@@ -543,7 +544,7 @@ func (s *Site) RenderLists() error {
 
                if a := s.Tmpl.Lookup("rss.xml"); a != nil {
                        // XML Feed
-                       n.Url = Urlize(section + ".xml")
+                       n.Url = helpers.Urlize(section + ".xml")
                        n.Permalink = template.HTML(string(n.Site.BaseUrl) + n.Url)
                        y := s.NewXMLBuffer()
                        s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
@@ -647,14 +648,17 @@ func (s *Site) NewXMLBuffer() *bytes.Buffer {
        return bytes.NewBufferString(header)
 }
 
-func (s *Site) WritePublic(path string, content []byte) (err error) {
-
+func (s *Site) initTarget() {
        if s.Target == nil {
                s.Target = &target.Filesystem{
                        PublishDir: s.absPublishDir(),
                        UglyUrls:   s.Config.UglyUrls,
                }
        }
+}
+
+func (s *Site) WritePublic(path string, content []byte) (err error) {
+       s.initTarget()
 
        if s.Config.Verbose {
                fmt.Println(path)
index 40366e6cc109b8fb573b526f756145d71eb8b9bd..97ab46b7e061d47fc9eeec6da800996d2d87a369 100644 (file)
@@ -3,6 +3,7 @@ package hugolib
 import (
        "bytes"
        "testing"
+       "github.com/spf13/hugo/target"
 )
 
 func checkShowPlanExpected(t *testing.T, expected, got string) {
@@ -30,6 +31,28 @@ func TestDegenerateNoTarget(t *testing.T) {
                t.Errorf("ShowPlan unexpectedly returned an error: %s", err)
        }
 
-       expected := "foo/bar/file.md\n *implicit* => !no target specified!\n"
+       expected := "foo/bar/file.md\n canonical => !no target specified!\n"
        checkShowPlanExpected(t, expected, out.String())
 }
+
+func TestFileTarget(t *testing.T) {
+       s := &Site{Target: new(target.Filesystem)}
+       s.Files = append(s.Files, "foo/bar/file.md")
+       out := new(bytes.Buffer)
+       s.ShowPlan(out)
+
+       expected := "foo/bar/file.md\n canonical => foo/bar/file/index.html\n"
+       checkShowPlanExpected(t, expected, out.String())
+}
+
+func TestFileTargetUgly(t *testing.T) {
+       s := &Site{Target: &target.Filesystem{UglyUrls: true}}
+       s.Files = append(s.Files, "foo/bar/file.md")
+       out := new(bytes.Buffer)
+       s.ShowPlan(out)
+
+       expected := "foo/bar/file.md\n canonical => foo/bar/file.html\n"
+       checkShowPlanExpected(t, expected, out.String())
+}
+
+
index 6384f797be861564de3582fe7df309bec18579ec..f182503c0cb8c3d649c801c23751913e2cc87f77 100644 (file)
@@ -40,6 +40,10 @@ func (t *InMemoryTarget) Publish(label string, reader io.Reader) (err error) {
        return
 }
 
+func (t *InMemoryTarget) Translate(label string) (dest string, err error) {
+       return label, nil
+}
+
 func TestPageCount(t *testing.T) {
        target := new(InMemoryTarget)
        s := &Site{Target: target}
index 8e342316859bb8e7b065fa294d0c907662427600..2df708fcf86fb495ca45add1195533bf0126d4aa 100644 (file)
@@ -16,6 +16,11 @@ type Translator interface {
        Translate(string) (string, error)
 }
 
+type Output interface {
+       Publisher
+       Translator
+}
+
 type Filesystem struct {
        UglyUrls         bool
        DefaultExtension string
@@ -52,18 +57,24 @@ func (fs *Filesystem) Translate(src string) (dest string, err error) {
        if src == "/" {
                return "index.html", nil
        }
-       if fs.UglyUrls {
-               return src, nil
-       }
 
        dir, file := path.Split(src)
        ext := fs.extension(path.Ext(file))
        name := filename(file)
 
+       if fs.UglyUrls {
+               return path.Join(dir, fmt.Sprintf("%s%s", name, ext)), nil
+       }
+
        return path.Join(dir, name, fmt.Sprintf("index%s", ext)), nil
 }
 
 func (fs *Filesystem) extension(ext string) string {
+       switch ext {
+       case ".md", ".rst": // TODO make this list configurable.  page.go has the list of markup types.
+               return ".html"
+       }
+
        if ext != "" {
                return ext
        }