File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed
roundup/templates/extended Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1- # $Id: __init__.py,v 1.2 2001-07-23 04:33:21 anthonybaxter Exp $
1+ # $Id: __init__.py,v 1.3 2001-07-23 23:16:01 richard Exp $
22
33from instance_config import *
44from dbinit import *
5+ from interfaces import *
56
67#
78# $Log: not supported by cvs2svn $
9+ # Revision 1.2 2001/07/23 04:33:21 anthonybaxter
10+ # split __init__.py into 2. dbinit and instance_config.
11+ #
812#
Original file line number Diff line number Diff line change 1+ # $Id: interfaces.py,v 1.1 2001-07-23 23:16:01 richard Exp $
2+
3+ import instance_config
4+ from roundup import cgi_client , mailgw
5+
6+ class Client (cgi_client .Client ):
7+ ''' derives basic mail gateway implementation from the standard module,
8+ with any specific extensions
9+ '''
10+ TEMPLATES = instance_config .TEMPLATES
11+ pass
12+
13+ class MailGW (mailgw .MailGW ):
14+ ''' derives basic mail gateway implementation from the standard module,
15+ with any specific extensions
16+ '''
17+ ISSUE_TRACKER_EMAIL = instance_config .ISSUE_TRACKER_EMAIL
18+ ADMIN_EMAIL = instance_config .ADMIN_EMAIL
19+ MAILHOST = instance_config .MAILHOST
20+
21+ #
22+ # $Log: not supported by cvs2svn $
23+ #
24+
25+
You can’t perform that action at this time.
0 commit comments