]> oss.titaniummirror.com Git - webber.git/commitdiff
webber: ./webber -v warns now about common mistakes
authorHolger Schurig <holgerschurig@gmx.de>
Fri, 26 Jun 2009 14:59:38 +0000 (16:59 +0200)
committerHolger Schurig <holgerschurig@gmx.de>
Fri, 26 Jun 2009 14:59:38 +0000 (16:59 +0200)
webber.py

index 98b1106c48d4cfcc30da7cfa7abdd23df5cabf05..5cadaaff6c9736eefc0bc0b52224230972551de2 100644 (file)
--- a/webber.py
+++ b/webber.py
@@ -108,10 +108,15 @@ class File(Holder):
                        #print "txt:", s.rstrip().encode("iso-8859-1")
                        txt.append(s)
 
+               # Warn about a bogus time entries
                if self.mtime < self.ctime:
                        log('%s: modification time cannot be before creation time' % self.rel_path)
                        self.ctime = self.mtime
 
+               # Warn about long titles / long linktitles
+               if len(self.linktitle) > 20:
+                       log('%s: define a shorter "linktitle: xxx"')
+
                self.contents = "".join(txt)
 
 
@@ -501,7 +506,7 @@ def walk_tree(dirpath):
                direc.inheritFrom(cfg)
 
                if not rel_path: rel_path = "."
-               log("reading directory %s" % rel_path, level=4)
+               log("reading directory %s" % rel_path, level=5)
 
                for s in os.listdir(dirpath):
                        full_path = os.path.join(dirpath, s)