summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9a87d36)
raw | patch | inline | side by side (parent: 9a87d36)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 13 Sep 2002 04:27:04 +0000 (04:27 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 13 Sep 2002 04:27:04 +0000 (04:27 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1162 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/templates/builder.py | patch | blob | history |
index 11ea2104188564fbfe628b9acfba5926da15c7f7..8ad9f92b665946164174e12d7990a727c28ad036 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: builder.py,v 1.2 2002-09-05 23:39:13 richard Exp $
+# $Id: builder.py,v 1.3 2002-09-13 04:27:04 richard Exp $
import os, sys, glob, errno, re
__doc__ = """
# print "installing from", htmlbase.__file__, "into", installDir
modulecontents = dir(htmlbase)
for mangledfile in modulecontents:
- if mangledfile[0] == "_":
- continue
filename = re.sub('DOT', '.', mangledfile)
outfile = os.path.join(installDir, filename)
outfd = open(outfile, 'w')
#
# $Log: not supported by cvs2svn $
+# Revision 1.2 2002/09/05 23:39:13 richard
+# Fixed instance installation ... moved the htmlbase module into templates
+# and call it <template>_htmlbase.py ... no more try/except in instance __init__!
+# Added :required to form handling.
+# Handle multiple values for single form items with decent error report.
+#
# Revision 1.1 2002/08/16 04:25:03 richard
# cleanup: moved templatebuilder into templates.builder
#