Fix some livereload content regressions
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 5 Apr 2018 08:57:13 +0000 (10:57 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 5 Apr 2018 12:28:45 +0000 (14:28 +0200)
Introduced in Hugo 0.38.

Fixes #4566

hugolib/hugo_sites.go
hugolib/page.go
hugolib/site.go

index f0eb21dc16af157cd46e5e707eb3c925fe9190eb..cac59e4ca041213b7ea3bf5c4d61c2288ab9acc3 100644 (file)
@@ -347,8 +347,8 @@ func (cfg *BuildCfg) shouldRender(p *Page) bool {
                return true
        }
 
-       if cfg.whatChanged != nil && p.File != nil && cfg.whatChanged.files[p.File.Filename()] {
-               return true
+       if cfg.whatChanged != nil && p.File != nil {
+               return cfg.whatChanged.files[p.File.Filename()]
        }
 
        return false
@@ -708,10 +708,15 @@ func (m *contentChangeMap) resolveAndRemove(filename string) (string, string, bu
                dir += helpers.FilePathSeparator
        }
 
-       fileTp, _ := classifyBundledFile(name)
+       fileTp, isContent := classifyBundledFile(name)
 
        // This may be a member of a bundle. Start with branch bundles, the most specific.
        if fileTp != bundleLeaf {
+               if fileTp == bundleNot && isContent {
+                       // Branch bundles does not contain content pages as resources.
+                       return dir, filename, bundleNot
+               }
+
                for i, b := range m.branches {
                        if b == dir {
                                m.branches = append(m.branches[:i], m.branches[i+1:]...)
index 2b3ca37ba15b770984f1068bf8d0920b353f7842..195e68084ac4f46f3ec1c45fef6738e4b1682b7e 100644 (file)
@@ -438,7 +438,7 @@ func (ps Pages) findPagePosByFilnamePrefix(prefix string) int {
 // will return -1 if not found
 func (ps Pages) findPagePos(page *Page) int {
        for i, x := range ps {
-               if x.Source.Path() == page.Source.Path() {
+               if x.Source.Filename() == page.Source.Filename() {
                        return i
                }
        }
index 4027ce075cae3e0cfc6674aac762260aa611b04b..b0d70bff2141493b3f98dc1dc5a167e02a568afa 100644 (file)
@@ -1225,7 +1225,8 @@ func (s *Site) absContentDir() string {
 }
 
 func (s *Site) isContentDirEvent(e fsnotify.Event) bool {
-       return s.getContentDir(e.Name) != ""
+       relDir, _ := s.PathSpec.RelContentDir(e.Name)
+       return relDir != e.Name
 }
 
 func (s *Site) getContentDir(path string) string {