summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a10c38e)
raw | patch | inline | side by side (parent: a10c38e)
author | grubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 5 Feb 2002 09:59:05 +0000 (09:59 +0000) | ||
committer | grubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 5 Feb 2002 09:59:05 +0000 (09:59 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@611 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/templatebuilder.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 4382fb87468bd94185815ef1b6adfb76038d3d74..8307c0fefba045b19e8ce07814494fe49ca2b452 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
. you can now use the roundup-admin tool pack the database
Fixed:
+ . makeHtmlBase: re.sub under python 2.2 did not replace '.', string.replace does it.
+ . preamble in tepmlateBuilder mentioned htmldata
. mailgw checks encoding on first part too.
. the mail gateway now responds with an error message when invalid values
for arguments are specified for link or mutlilink properties
index 358cfdc34a25c4a5f5981f4f836520d4260a64e5..79b1f1bbb880f464cc13292ca023f4dd0e547dd0 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: templatebuilder.py,v 1.13 2001-11-22 15:46:42 jhermann Exp $
+# $Id: templatebuilder.py,v 1.14 2002-02-05 09:59:05 grubert Exp $
import errno, re
__doc__ = """
preamble = """
# Do Not Edit (Unless You Want To)
-# This file automagically generated by roundup.htmldata.makeHtmlBase
+# This file automagically generated by roundup.templatebuilder.makeHtmlBase
#
"""
for file in filelist:
# skip the backup files created by richard's vim
if file[-1] == '~': continue
- mangled_name = os.path.basename(re.sub(r'\.', 'DOT', file))
+ mangled_name = os.path.basename(file).replace('.','DOT')
fd.write('%s = """'%mangled_name)
fd.write(re.sub(r'\$((Id|File|Log).*?)\$', r'dollar\1dollar',
open(file).read(), re.I))
#
# $Log: not supported by cvs2svn $
+# Revision 1.13 2001/11/22 15:46:42 jhermann
+# Added module docstrings to all modules.
+#
# Revision 1.12 2001/11/14 21:35:21 richard
# . users may attach files to issues (and support in ext) through the web now
#