From: richard Date: Mon, 23 Jul 2001 23:20:35 +0000 (+0000) Subject: forgot to remove the interfaces from the dbinit module ;) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=281394d44e9a773c3df875ade191d9cf0c5c4ad2;p=roundup.git forgot to remove the interfaces from the dbinit module ;) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@60 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/templates/extended/dbinit.py b/roundup/templates/extended/dbinit.py index a677082..ac7c654 100644 --- a/roundup/templates/extended/dbinit.py +++ b/roundup/templates/extended/dbinit.py @@ -1,9 +1,9 @@ -# $Id: dbinit.py,v 1.4 2001-07-23 08:45:28 richard Exp $ +# $Id: dbinit.py,v 1.5 2001-07-23 23:20:35 richard Exp $ import os import instance_config -from roundup import roundupdb, cgi_client, mailgw +from roundup import roundupdb import select_db from roundup.roundupdb import Class, FileClass @@ -22,21 +22,6 @@ class IssueClass(roundupdb.IssueClass): MAILHOST = instance_config.MAILHOST -class Client(cgi_client.Client): - ''' derives basic mail gateway implementation from the standard module, - with any specific extensions - ''' - TEMPLATES = instance_config.TEMPLATES - pass - -class MailGW(mailgw.MailGW): - ''' derives basic mail gateway implementation from the standard module, - with any specific extensions - ''' - ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL - ADMIN_EMAIL = instance_config.ADMIN_EMAIL - MAILHOST = instance_config.MAILHOST - def open(name=None): ''' as from the roundupdb method openDB @@ -171,6 +156,11 @@ def init(adminpw): # # $Log: not supported by cvs2svn $ +# Revision 1.4 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 :) +# _and_ anydbm has had its first test :) +# # Revision 1.3 2001/07/23 07:14:41 richard # Moved the database backends off into backends. #