Code

moving templates around
[roundup.git] / templates / classic / interfaces.py
1 #
2 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
3 # This module is free software, and you may redistribute it and/or modify
4 # under the same terms as Python, so long as this copyright message and
5 # disclaimer are retained in their original form.
6 #
7 # IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
8 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
9 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
10 # POSSIBILITY OF SUCH DAMAGE.
11 #
12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
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"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
18 # $Id: interfaces.py,v 1.1 2003-04-17 03:26:03 richard Exp $
20 from roundup import mailgw 
21 from roundup.cgi import client
23 class Client(client.Client): 
24     ''' derives basic CGI implementation from the standard module, 
25         with any specific extensions 
26     ''' 
27     pass
29 class TemplatingUtils:
30     ''' Methods implemented on this class will be available to HTML templates
31         through the 'utils' variable.
32     '''
33     pass
35 class MailGW(mailgw.MailGW): 
36     ''' derives basic mail gateway implementation from the standard module, 
37         with any specific extensions 
38     ''' 
39     pass
41 # vim: set filetype=python ts=4 sw=4 et si