view roundup/templates/extended/interfaces.py @ 55:bd7be96eb56d

Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
author Richard Jones <richard@users.sourceforge.net>
date Mon, 23 Jul 2001 23:16:01 +0000
parents
children 0791d13baea7
line wrap: on
line source

# $Id: interfaces.py,v 1.1 2001-07-23 23:16:01 richard Exp $

import instance_config
from roundup import cgi_client, mailgw 

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

#
# $Log: not supported by cvs2svn $
#



Roundup Issue Tracker: http://roundup-tracker.org/