Skip to content

Commit f2415f0

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 66caede commit f2415f0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Fixed:
1818
- timezone now applied to date for pretty-format (sf bug 1406861)
1919
- fix mangling of "_" in mail Subject class name (sf bug 1413852)
2020
- catch bad classname in URL (related to sf bug 1240541)
21+
- clean up digested_file_types (sf bug 1268303)
2122

2223

2324
2005-10-07 0.8.5

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ Robin Green,
9696
Charles Groves,
9797
Engelbert Gruber,
9898
Bruce Guenter,
99+
Thomas Arendsen Hein,
99100
Juergen Hermann,
100101
Uwe Hoffmann,
101102
Tobias Hunger,

roundup/install_util.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,16 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: install_util.py,v 1.10 2004-02-11 23:55:08 richard Exp $
18+
# $Id: install_util.py,v 1.10.4.1 2006-01-25 03:12:41 richard Exp $
1919

2020
"""Support module to generate and check fingerprints of installed files.
2121
"""
2222
__docformat__ = 'restructuredtext'
2323

2424
import os, sha, shutil
2525

26-
# ".filter", ".index", ".item", ".newitem" are roundup-specific
27-
sgml_file_types = [".xml", ".ent", ".html", ".filter", ".index", ".item", ".newitem"]
28-
hash_file_types = [".py", ".sh", ".conf", ".cgi", '']
26+
sgml_file_types = [".xml", ".ent", ".html"]
27+
hash_file_types = [".py", ".sh", ".conf", ".cgi"]
2928
slast_file_types = [".css"]
3029

3130
digested_file_types = sgml_file_types + hash_file_types + slast_file_types

0 commit comments

Comments
 (0)