Code

oops. left a print in
[roundup.git] / roundup / init.py
1 # $Id: init.py,v 1.6 2001-07-24 11:18:25 anthonybaxter Exp $
3 import os, shutil, sys
5 def copytree(src, dst, symlinks=0):
6     """Recursively copy a directory tree using copy2().
8     The destination directory os allowed to exist.
10     If the optional symlinks flag is true, symbolic links in the
11     source tree result in symbolic links in the destination tree; if
12     it is false, the contents of the files pointed to by symbolic
13     links are copied.
15     XXX copied from shutil.py in std lib
17     """
18     names = os.listdir(src)
19     try:
20         os.mkdir(dst)
21     except OSError, error:
22         if error.errno != 17: raise
23     for name in names:
24         srcname = os.path.join(src, name)
25         dstname = os.path.join(dst, name)
26         if symlinks and os.path.islink(srcname):
27             linkto = os.readlink(srcname)
28             os.symlink(linkto, dstname)
29         elif os.path.isdir(srcname):
30             copytree(srcname, dstname, symlinks)
31         else:
32             shutil.copy2(srcname, dstname)
34 def init(instance, template, backend, adminpw):
35     ''' initialise an instance using the named template
36     '''
37     # first, copy the template dir over
38     import roundup.templatebuilder
40     template_dir = os.path.split(__file__)[0]
41     template_name = template
42     template = os.path.join(template_dir, 'templates', template)
43     copytree(template, instance)
45     roundup.templatebuilder.installHtmlBase(template_name, instance)
47     # now select database
48     db = '''# WARNING: DO NOT EDIT THIS FILE!!!
49 from roundup.backends.back_%s import Database'''%backend
50     open(os.path.join(instance, 'select_db.py'), 'w').write(db)
52     # now import the instance and call its init
53     path, instance = os.path.split(instance)
54     sys.path.insert(0, path)
55     instance = __import__(instance)
56     instance.init(adminpw)
58 #
59 # $Log: not supported by cvs2svn $
60 # Revision 1.5  2001/07/24 10:54:11  anthonybaxter
61 # oops. Html.
62 #
63 # Revision 1.4  2001/07/24 10:46:22  anthonybaxter
64 # Added templatebuilder module. two functions - one to pack up the html base,
65 # one to unpack it. Packed up the two standard templates into htmlbases.
66 # Modified __init__ to install them.
67 #
68 # __init__.py magic was needed for the rather high levels of wierd import magic.
69 # Reducing level of import magic == (good, future)
70 #
71 # Revision 1.3  2001/07/23 08:45:28  richard
72 # ok, so now "./roundup-admin init" will ask questions in an attempt to get a
73 # workable instance_home set up :)
74 # _and_ anydbm has had its first test :)
75 #
76 # Revision 1.2  2001/07/22 12:09:32  richard
77 # Final commit of Grande Splite
78 #
79 #