hugolib: Add .Site.Params.mainSections
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Apr 2017 11:03:34 +0000 (13:03 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Apr 2017 11:03:34 +0000 (13:03 +0200)
Fixes #3206

hugolib/site.go
hugolib/site_test.go

index b1371045b818821003415382280c9c4bd5f73f48..c5f27b28b93dd84263f9c098a142bac414b92bca 100644 (file)
@@ -1698,6 +1698,36 @@ func (s *Site) assembleSections() {
                                wp.Page.PrevInSection = s.Sections[k][i+1].Page
                        }
                }
+
+       }
+
+       var (
+               sectionsParamId      = "mainSections"
+               sectionsParamIdLower = strings.ToLower(sectionsParamId)
+               mainSections         interface{}
+               found                bool
+       )
+
+       if mainSections, found = s.Info.Params[sectionsParamIdLower]; !found {
+               // Pick the section with most regular pages
+               var (
+                       chosenSection string
+                       pageCount     int
+               )
+
+               for sect, pages := range s.Sections {
+                       if pages.Count() >= pageCount {
+                               chosenSection = sect
+                               pageCount = pages.Count()
+                       }
+               }
+               mainSections = []string{chosenSection}
+
+               // Try to make this as backwards compatible as possible.
+               s.Info.Params[sectionsParamId] = mainSections
+               s.Info.Params[sectionsParamIdLower] = mainSections
+       } else {
+               s.Info.Params[sectionsParamId] = mainSections
        }
 }
 
index e00e8b2302192c35b580f158bbf135ffe2d33151..e18456bf9005cda9422ba947588b2bb0c44ea756 100644 (file)
@@ -400,6 +400,8 @@ func doTestSectionNaming(t *testing.T, canonify, uglify, pluralize bool) {
 
        sources := []source.ByteSource{
                {Name: filepath.FromSlash("sect/doc1.html"), Content: []byte("doc1")},
+               // Add one more page to sect to make sure sect is picked in mainSections
+               {Name: filepath.FromSlash("sect/sect.html"), Content: []byte("sect")},
                {Name: filepath.FromSlash("Fish and Chips/doc2.html"), Content: []byte("doc2")},
                {Name: filepath.FromSlash("ラーメン/doc3.html"), Content: []byte("doc3")},
        }
@@ -419,6 +421,11 @@ func doTestSectionNaming(t *testing.T, canonify, uglify, pluralize bool) {
        writeSource(t, fs, filepath.Join("layouts", "_default/list.html"), "{{.Title}}")
 
        s := buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{})
+
+       mainSections, err := s.Info.Param("mainSections")
+       require.NoError(t, err)
+       require.Equal(t, mainSections, []string{"sect"})
+
        th := testHelper{s.Cfg, s.Fs, t}
        tests := []struct {
                doc         string