From: richard Date: Mon, 12 Nov 2001 22:37:13 +0000 (+0000) Subject: Handle all the various file formats in roundup X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=17e0309abd855f17f82b7dcf38684a29ea482040;p=roundup.git Handle all the various file formats in roundup git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@395 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/install_util.py b/roundup/install_util.py index 5a47e4f..bbf1edf 100644 --- a/roundup/install_util.py +++ b/roundup/install_util.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: install_util.py,v 1.1 2001-11-12 22:26:32 jhermann Exp $ +# $Id: install_util.py,v 1.2 2001-11-12 22:37:13 richard Exp $ import os, sha @@ -32,10 +32,14 @@ def checkDigest(filename): # handle .py/.sh comment fingerprint = lines[-1][6:].strip() elif lines[-1][:10] == "', '') fingerprint = fingerprint.strip() + elif lines[-1][:8] == "/* SHA: ": + fingerprint = lines[-1][8:] + fingerprint = fingerprint.replace('*/', '') + fingerprint = fingerprint.strip() else: return 0 del lines[-1] @@ -66,10 +70,13 @@ class DigestFile: def close(self): file, ext = os.path.splitext(self.filename) - if ext in [".xml", ".ent"]: + # ".filter", ".index", ".item" are roundup-specific + if ext in [".xml", ".ent", ".html", ".filter", ".index", ".item"]: self.file.write("\n" % (self.digest.hexdigest(),)) - elif ext in [".py", ".sh", ".conf", '']: + elif ext in [".py", ".sh", ".conf", ".cgi", '']: self.file.write("#SHA: %s\n" % (self.digest.hexdigest(),)) + elif ext in [".css"]: + self.file.write("/* SHA: %s %/\n" % (self.digest.hexdigest(),)) self.file.close() @@ -101,4 +108,7 @@ if __name__ == '__main__': # # $Log: not supported by cvs2svn $ +# Revision 1.1 2001/11/12 22:26:32 jhermann +# Added install utils (digest calculation) +#