Code

Changes to reflect cgi_client now implementing this template by default,
[roundup.git] / roundup / templates / classic / interfaces.py
1 # $Id: interfaces.py,v 1.4 2001-07-30 01:25:57 richard Exp $
3 import urlparse, os
5 import instance_config
6 from roundup import cgi_client, mailgw 
8 class Client(cgi_client.Client): 
9     ''' derives basic mail gateway implementation from the standard module, 
10         with any specific extensions 
11     ''' 
12     TEMPLATES = instance_config.TEMPLATES
14 class MailGW(mailgw.MailGW): 
15     ''' derives basic mail gateway implementation from the standard module, 
16         with any specific extensions 
17     ''' 
18     ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL
19     ADMIN_EMAIL = instance_config.ADMIN_EMAIL
20     MAILHOST = instance_config.MAILHOST
22 #
23 # $Log: not supported by cvs2svn $
24 # Revision 1.3  2001/07/29 07:01:39  richard
25 # Added vim command to all source so that we don't get no steenkin' tabs :)
26 #
27 # Revision 1.2  2001/07/29 04:07:37  richard
28 # Fixed the classic template so it's more like the "advertised" Roundup
29 # template.
30 #
31 # Revision 1.1  2001/07/23 23:28:43  richard
32 # Adding the classic template
33 #
34 # Revision 1.1  2001/07/23 23:16:01  richard
35 # Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
36 #
37 #
38 # vim: set filetype=python ts=4 sw=4 et si