hugolib: Correctly identify "my_index_page.md"
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 25 Mar 2017 08:56:00 +0000 (09:56 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 25 Mar 2017 18:57:01 +0000 (19:57 +0100)
The above example was earlier identified as a section page and not a regular page.

Fixes #3234

hugolib/page.go
hugolib/site_test.go

index e23434a78e99145852bcfa658fd57925b411e1a7..141a71420fb21c1e58fc03913d6dc7d1eb993374 100644 (file)
@@ -1859,8 +1859,15 @@ func sectionsFromFilename(filename string) []string {
        return sections
 }
 
+const (
+       regularPageFileNameDoesNotStartWith = "_index"
+
+       // There can be "my_regular_index_page.md but not /_index_file.md
+       regularPageFileNameDoesNotContain = helpers.FilePathSeparator + regularPageFileNameDoesNotStartWith
+)
+
 func kindFromFilename(filename string) string {
-       if !strings.Contains(filename, "_index") {
+       if !strings.HasPrefix(filename, regularPageFileNameDoesNotStartWith) && !strings.Contains(filename, regularPageFileNameDoesNotContain) {
                return KindPage
        }
 
index 7919ba377b87ffcbca672316917c2dd09d87bf1f..b8a5eb21123fdcfe3e373abf8ec6e403bbe8a84b 100644 (file)
@@ -201,6 +201,20 @@ func TestLastChange(t *testing.T) {
        require.Equal(t, 2017, s.Info.LastChange.Year(), "Site.LastChange should be set to the page with latest Lastmod (year 2017)")
 }
 
+// Issue #_index
+func TestPageWithUnderScoreIndexInFilename(t *testing.T) {
+       t.Parallel()
+
+       cfg, fs := newTestCfg()
+
+       writeSource(t, fs, filepath.Join("content", "sect/my_index_file.md"), "---\ntitle: doc1\nweight: 1\ndate: 2014-05-29\n---\n# doc1\n*some content*")
+
+       s := buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{SkipRender: true})
+
+       require.Len(t, s.RegularPages, 1)
+
+}
+
 // Issue #957
 func TestCrossrefs(t *testing.T) {
        t.Parallel()