hugolob: A first incorporation of output types in rendering
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 6 Mar 2017 12:40:06 +0000 (13:40 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 27 Mar 2017 13:43:56 +0000 (15:43 +0200)
hugolib/hugo_sites.go
hugolib/page.go
hugolib/site.go
hugolib/site_render.go
output/outputType.go

index 88c0caa390c9dd7b048c8cab47ef121092e7dbe5..84f49bbc9e0228268becb77d92c35a9c11447fd5 100644 (file)
@@ -550,9 +550,9 @@ func (s *Site) preparePagesForRender(cfg *BuildCfg) {
 
                                // TODO(bep) output this is temporary
                                if p.IsNode() && p.Kind != KindTaxonomyTerm {
-                                       p.mediaTypes = mediaTypesWithRSS
+                                       p.outputTypes = outputTypesWithRSS
                                } else {
-                                       p.mediaTypes = mediaTypesHTML
+                                       p.outputTypes = outputTypesHTML
                                }
 
                                //analyze for raw stats
index fb842ca37a8dc84dbea4361cc632977e3299df5f..17d3e9af62c21a961217adb52fefbb227cbe3736 100644 (file)
@@ -23,6 +23,7 @@ import (
 
        "github.com/mitchellh/mapstructure"
        "github.com/spf13/hugo/helpers"
+       "github.com/spf13/hugo/output"
        "github.com/spf13/hugo/parser"
 
        "html/template"
@@ -36,11 +37,8 @@ import (
        "time"
        "unicode/utf8"
 
-       "github.com/spf13/hugo/output"
-
        "github.com/spf13/cast"
        bp "github.com/spf13/hugo/bufferpool"
-       "github.com/spf13/hugo/media"
        "github.com/spf13/hugo/source"
 )
 
@@ -203,9 +201,8 @@ type Page struct {
 
        lang string
 
-       // The media types this page will be rendered to.
-       // TODO(bep) probably wrap this to add additional information like template evaluation?
-       mediaTypes media.Types
+       // The output types this page will be rendered to.
+       outputTypes output.Types
 
        // Used to pick the correct template(s)
        layoutIdentifier pageLayoutIdentifier
@@ -676,6 +673,7 @@ func (p *Page) Section() string {
 }
 
 func (p *Page) layouts(layouts ...string) []string {
+       // TODO(bep) output
        if len(p.layoutsCalculated) > 0 {
                return p.layoutsCalculated
        }
@@ -1879,8 +1877,8 @@ func kindFromFilename(filename string) string {
 
 // TODO(bep) output
 var (
-       mediaTypesWithRSS = media.Types{media.HTMLType, media.RSSType}
-       mediaTypesHTML    = media.Types{media.HTMLType}
+       outputTypesWithRSS = output.Types{output.HTMLType, output.RSSType}
+       outputTypesHTML    = output.Types{output.HTMLType}
 )
 
 func (p *Page) setValuesForKind(s *Site) {
index ee20ecc193fb19bb8ae1af8a14f12e6374ce5de5..08bfcf4d6d6ddf56e6fa4eb1e807404634df7a04 100644 (file)
@@ -1676,6 +1676,7 @@ func errorCollator(results <-chan error, errs chan<- error) {
        close(errs)
 }
 
+// TODO(bep) output move
 func (s *Site) appendThemeTemplates(in []string) []string {
        if !s.PathSpec.ThemeSet() {
                return in
index 54c88d9b2e8cf19f5bd8126f4a6d06709bdeaf73..7da4e433fbd2bbe9af30bbc04cbdbcfcbf5dee0a 100644 (file)
@@ -21,7 +21,7 @@ import (
        "time"
 
        bp "github.com/spf13/hugo/bufferpool"
-       "github.com/spf13/hugo/media"
+       "github.com/spf13/hugo/output"
 )
 
 // renderPages renders pages each corresponding to a markdown file.
@@ -64,13 +64,21 @@ func pageRenderer(s *Site, pages <-chan *Page, results chan<- error, wg *sync.Wa
        defer wg.Done()
        for p := range pages {
                // TODO(bep) output
-               for _, mediaType := range p.mediaTypes {
-                       switch mediaType {
+               for _, outputType := range p.outputTypes {
+                       var layouts []string
+
+                       if len(p.layoutsCalculated) > 0 {
+                               // TODO(bep) output
+                               layouts = p.layoutsCalculated
+                       } else {
+                               layouts = s.layoutHandler.For(p.layoutIdentifier, "", outputType)
+                       }
+
+                       switch outputType {
 
-                       case media.HTMLType:
+                       case output.HTMLType:
                                targetPath := p.TargetPath()
 
-                               layouts := p.layouts()
                                s.Log.DEBUG.Printf("Render %s to %q with layouts %q", p.Kind, targetPath, layouts)
 
                                if err := s.renderAndWritePage("page "+p.FullFilePath(), targetPath, p, s.appendThemeTemplates(layouts)...); err != nil {
@@ -84,7 +92,7 @@ func pageRenderer(s *Site, pages <-chan *Page, results chan<- error, wg *sync.Wa
                                        }
                                }
 
-                       case media.RSSType:
+                       case output.RSSType:
                                if err := s.renderRSS(p); err != nil {
                                        results <- err
                                }
index d79ab059049256d6a7a4d41a39bceb315adc1bb8..222494b090ae28e477ba7b4a57bf9e7025031155 100644 (file)
@@ -29,6 +29,8 @@ var (
        }
 )
 
+type Types []Type
+
 // Type represents an output represenation, usually to a file on disk.
 type Type struct {
        // The Name is used as an identifier. Internal output types (i.e. HTML and RSS)