Mercurial > p > roundup > code
diff roundup/templates/classic/interfaces.py @ 57:6ff85bc2dd56
Adding the classic template
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jul 2001 23:29:10 +0000 |
| parents | |
| children | e8087fc26fee |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/roundup/templates/classic/interfaces.py Mon Jul 23 23:29:10 2001 +0000 @@ -0,0 +1,28 @@ +# $Id: interfaces.py,v 1.1 2001-07-23 23:28:43 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 $ +# Revision 1.1 2001/07/23 23:16:01 richard +# Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff. +# +# + +
