Mercurial > p > roundup > code
diff roundup/templates/extended/dbinit.py @ 51:3a7e5515c1bd
ok, so now "./roundup-admin init" will ask questions...
...in an attempt to get a workable instance_home set up :)
_and_ anydbm has had its first test :)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jul 2001 08:45:28 +0000 |
| parents | c1f3e058c58d |
| children | 03940dfa669e |
line wrap: on
line diff
--- a/roundup/templates/extended/dbinit.py Mon Jul 23 08:25:33 2001 +0000 +++ b/roundup/templates/extended/dbinit.py Mon Jul 23 08:45:28 2001 +0000 @@ -1,15 +1,15 @@ -# $Id: dbinit.py,v 1.3 2001-07-23 07:14:41 richard Exp $ +# $Id: dbinit.py,v 1.4 2001-07-23 08:45:28 richard Exp $ import os import instance_config from roundup import roundupdb, cgi_client, mailgw -from roundup.backends import bsddb +import select_db from roundup.roundupdb import Class, FileClass -class Database(roundupdb.Database, bsddb.Database): +class Database(roundupdb.Database, select_db.Database): ''' Creates a hybrid database from: - . the BSDDB implementation in backends.bsddb + . the selected database back-end from select_db . the roundup extensions from roundupdb ''' pass @@ -171,6 +171,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.3 2001/07/23 07:14:41 richard +# Moved the database backends off into backends. +# # Revision 1.2 2001/07/23 06:25:50 richard # relfected the move to roundup/backends #
