Mercurial > p > roundup > code
diff roundup/install_util.py @ 3497:897ac2dab754 maint-0.8
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Jan 2006 03:12:41 +0000 |
| parents | fc52d57c6c3e |
| children |
line wrap: on
line diff
--- a/roundup/install_util.py Wed Jan 25 03:01:51 2006 +0000 +++ b/roundup/install_util.py Wed Jan 25 03:12:41 2006 +0000 @@ -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.10 2004-02-11 23:55:08 richard Exp $ +# $Id: install_util.py,v 1.10.4.1 2006-01-25 03:12:41 richard Exp $ """Support module to generate and check fingerprints of installed files. """ @@ -23,9 +23,8 @@ import os, sha, shutil -# ".filter", ".index", ".item", ".newitem" are roundup-specific -sgml_file_types = [".xml", ".ent", ".html", ".filter", ".index", ".item", ".newitem"] -hash_file_types = [".py", ".sh", ".conf", ".cgi", ''] +sgml_file_types = [".xml", ".ent", ".html"] +hash_file_types = [".py", ".sh", ".conf", ".cgi"] slast_file_types = [".css"] digested_file_types = sgml_file_types + hash_file_types + slast_file_types
