From: richard Date: Fri, 13 Sep 2002 04:27:04 +0000 (+0000) Subject: ahah, found ya X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=73c7ea96873f7d991928225b86a74a216841e0f0;p=roundup.git ahah, found ya git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1162 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/templates/builder.py b/roundup/templates/builder.py index 11ea210..8ad9f92 100644 --- a/roundup/templates/builder.py +++ b/roundup/templates/builder.py @@ -15,7 +15,7 @@ # 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__ = """ @@ -73,8 +73,6 @@ def installHtmlBase(template, installDir): # 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') @@ -91,6 +89,12 @@ if __name__ == "__main__": # # $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