X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=roundup%2Finit.py;h=b0e2b5b8bc03f0e38078dc3276f84f76e3541347;hb=f808f23ddce3ea66fe19b632d904c64e3aba5971;hp=9214fb614d9984c62bff26049993b85ea881e7e3;hpb=15a5ffa06710ead2fbf5136caf16545961899b70;p=roundup.git diff --git a/roundup/init.py b/roundup/init.py index 9214fb6..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.20 2002-07-14 02:05:53 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,14 +87,15 @@ 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.