Mercurial > p > roundup > code
diff roundup/init.py @ 69:0eed07d99b98
oops. Html.
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Tue, 24 Jul 2001 10:54:11 +0000 |
| parents | 5e71aaa87e5b |
| children | d95a03480fd1 |
line wrap: on
line diff
--- a/roundup/init.py Tue Jul 24 10:46:22 2001 +0000 +++ b/roundup/init.py Tue Jul 24 10:54:11 2001 +0000 @@ -1,4 +1,4 @@ -# $Id: init.py,v 1.4 2001-07-24 10:46:22 anthonybaxter Exp $ +# $Id: init.py,v 1.5 2001-07-24 10:54:11 anthonybaxter Exp $ import os, shutil, sys @@ -18,6 +18,7 @@ names = os.listdir(src) try: os.mkdir(dst) + print "making", dst except OSError, error: if error.errno != 17: raise for name in names: @@ -57,6 +58,14 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.4 2001/07/24 10:46:22 anthonybaxter +# Added templatebuilder module. two functions - one to pack up the html base, +# one to unpack it. Packed up the two standard templates into htmlbases. +# Modified __init__ to install them. +# +# __init__.py magic was needed for the rather high levels of wierd import magic. +# Reducing level of import magic == (good, future) +# # Revision 1.3 2001/07/23 08:45:28 richard # ok, so now "./roundup-admin init" will ask questions in an attempt to get a # workable instance_home set up :)
