X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=roundup%2Finit.py;h=b0e2b5b8bc03f0e38078dc3276f84f76e3541347;hb=8cae7869d7bbde4750aaef094b58d3c0ba0571bf;hp=fe2cde8b678939abe5a5e7c69a96aa120c40394d;hpb=d6d3d8a89a693906e93d5cbdf0f02f3c33643c07;p=roundup.git diff --git a/roundup/init.py b/roundup/init.py index fe2cde8..b0e2b5b 100644 --- a/roundup/init.py +++ b/roundup/init.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: init.py,v 1.19 2002-05-23 01:14:20 richard Exp $ +# $Id: init.py,v 1.24 2002-09-10 12:44:42 richard Exp $ __doc__ = """ Init (create) a roundup instance. @@ -36,7 +36,7 @@ def copytree(src, dst, symlinks=0): it is false, the contents of the files pointed to by symbolic links are copied. - XXX copied from shutil.py in std lib + This was copied from shutil.py in std lib. """ names = os.listdir(src) @@ -65,7 +65,7 @@ def install(instance_home, template, backend): The instance_home directory will be created using the files found in the named template (roundup.templates.). A standard instance_home contains: - . instance_config.py + . config.py - simple configuration of things like the email address for the mail gateway, the mail domain, the mail host, ... . dbinit.py and select_db.py @@ -87,18 +87,20 @@ def install(instance_home, template, backend): the template. ''' # first, copy the template dir over - import roundup.templatebuilder + from roundup.templates import builder + # copy the roundup.templates.