X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=roundup%2Ftemplates%2Fclassic%2F__init__.py;h=a64f168ab79f21496d771bf000725c1952b076b7;hb=f46cf98bff3385912d14ced1dad7b6f362be71ae;hp=1b09d7b1bce40904d2808d7fbca3a57dd350867b;hpb=c853df7b1fb5c3deee55fd7c8396f56259b060f6;p=roundup.git diff --git a/roundup/templates/classic/__init__.py b/roundup/templates/classic/__init__.py index 1b09d7b..a64f168 100644 --- a/roundup/templates/classic/__init__.py +++ b/roundup/templates/classic/__init__.py @@ -4,7 +4,7 @@ # under the same terms as Python, so long as this copyright message and # disclaimer are retained in their original form. # -# IN NO EVENT SHALL THE BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR +# IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. @@ -15,37 +15,10 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.4 2001-08-07 00:15:51 richard Exp $ +# $Id: __init__.py,v 1.7 2002-09-09 23:55:19 richard Exp $ -import sys -from instance_config import * -try: - from dbinit import * -except: - pass # in install dir (probably :) -from interfaces import * +import config +from dbinit import open, init +from interfaces import Client, MailGW -# -# $Log: not supported by cvs2svn $ -# Revision 1.3 2001/07/29 07:01:39 richard -# Added vim command to all source so that we don't get no steenkin' tabs :) -# -# Revision 1.2 2001/07/24 10:46:22 anthonybaxter -# Added templatebuilder module. two functions - one to pack up the html base, -# one to unpack it. Packed up the two standard templates into htmlbases. -# Modified __init__ to install them. -# -# __init__.py magic was needed for the rather high levels of wierd import magic. -# Reducing level of import magic == (good, future) -# -# Revision 1.1 2001/07/23 23:28:43 richard -# Adding the classic template -# -# Revision 1.3 2001/07/23 23:16:01 richard -# Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff. -# -# Revision 1.2 2001/07/23 04:33:21 anthonybaxter -# split __init__.py into 2. dbinit and instance_config. -# -# # vim: set filetype=python ts=4 sw=4 et si