Rename ignoreDotFile to isDotFile (which is what it is)
authorbep <bjorn.erik.pedersen@gmail.com>
Tue, 20 Jan 2015 12:21:50 +0000 (13:21 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 20 Jan 2015 12:21:50 +0000 (13:21 +0100)
tpl/template.go

index ac203af8902b2a08521ead3960da647b7fe3f773..84a3fd146278e593c1813ffb6643be2d8d5a0514 100644 (file)
@@ -1198,7 +1198,7 @@ func (t *GoHtmlTemplate) GenerateTemplateNameFrom(base, path string) string {
        return filepath.ToSlash(name)
 }
 
-func ignoreDotFile(path string) bool {
+func isDotFile(path string) bool {
        return filepath.Base(path)[0] == '.'
 }
 
@@ -1214,7 +1214,7 @@ func (t *GoHtmlTemplate) loadTemplates(absPath string, prefix string) {
                }
 
                if !fi.IsDir() {
-                       if ignoreDotFile(path) {
+                       if isDotFile(path) {
                                return nil
                        }