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
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:]...)
// 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
}
}
}
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 {