Mercurial > p > roundup > code
comparison roundup/templates/classic/__init__.py @ 1085:04a6b3bfbf23
instance_config -> config, and other related cleanups
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 09 Sep 2002 23:55:29 +0000 |
| parents | cf72eae57a2c |
| children |
comparison
equal
deleted
inserted
replaced
| 1084:a625adcd6254 | 1085:04a6b3bfbf23 |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: __init__.py,v 1.6 2002-09-05 23:39:14 richard Exp $ | 18 # $Id: __init__.py,v 1.7 2002-09-09 23:55:19 richard Exp $ |
| 19 | 19 |
| 20 import sys | 20 import config |
| 21 from instance_config import * | 21 from dbinit import open, init |
| 22 from dbinit import * | 22 from interfaces import Client, MailGW |
| 23 from interfaces import * | |
| 24 | 23 |
| 25 # | |
| 26 # $Log: not supported by cvs2svn $ | |
| 27 # Revision 1.5 2001/08/07 00:24:43 richard | |
| 28 # stupid typo | |
| 29 # | |
| 30 # Revision 1.4 2001/08/07 00:15:51 richard | |
| 31 # Added the copyright/license notice to (nearly) all files at request of | |
| 32 # Bizar Software. | |
| 33 # | |
| 34 # Revision 1.3 2001/07/29 07:01:39 richard | |
| 35 # Added vim command to all source so that we don't get no steenkin' tabs :) | |
| 36 # | |
| 37 # Revision 1.2 2001/07/24 10:46:22 anthonybaxter | |
| 38 # Added templatebuilder module. two functions - one to pack up the html base, | |
| 39 # one to unpack it. Packed up the two standard templates into htmlbases. | |
| 40 # Modified __init__ to install them. | |
| 41 # | |
| 42 # __init__.py magic was needed for the rather high levels of wierd import magic. | |
| 43 # Reducing level of import magic == (good, future) | |
| 44 # | |
| 45 # Revision 1.1 2001/07/23 23:28:43 richard | |
| 46 # Adding the classic template | |
| 47 # | |
| 48 # Revision 1.3 2001/07/23 23:16:01 richard | |
| 49 # Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff. | |
| 50 # | |
| 51 # Revision 1.2 2001/07/23 04:33:21 anthonybaxter | |
| 52 # split __init__.py into 2. dbinit and instance_config. | |
| 53 # | |
| 54 # | |
| 55 # vim: set filetype=python ts=4 sw=4 et si | 24 # vim: set filetype=python ts=4 sw=4 et si |
