Mercurial > p > roundup > code
diff roundup/templates/extended/interfaces.py @ 413:aafe6980123d
This config stuff is getting to be a real mess...
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 26 Nov 2001 23:00:53 +0000 |
| parents | c0ca7f35e0c5 |
| children | 103f521810f7 |
line wrap: on
line diff
--- a/roundup/templates/extended/interfaces.py Mon Nov 26 22:56:35 2001 +0000 +++ b/roundup/templates/extended/interfaces.py Mon Nov 26 23:00:53 2001 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: interfaces.py,v 1.12 2001-10-22 03:25:01 richard Exp $ +# $Id: interfaces.py,v 1.13 2001-11-26 23:00:53 richard Exp $ import instance_config from roundup import cgi_client, mailgw @@ -24,6 +24,7 @@ ''' derives basic CGI implementation from the standard module, with any specific extensions ''' + INSTANCE_NAME = instance_config.INSTANCE_NAME TEMPLATES = instance_config.TEMPLATES FILTER_POSITION = instance_config.FILTER_POSITION ANONYMOUS_ACCESS = instance_config.ANONYMOUS_ACCESS @@ -33,12 +34,19 @@ ''' derives basic mail gateway implementation from the standard module, with any specific extensions ''' + INSTANCE_NAME = instance_config.INSTANCE_NAME 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.12 2001/10/22 03:25:01 richard +# Added configuration for: +# . anonymous user access and registration (deny/allow) +# . filter "widget" location on index page (top, bottom, both) +# Updated some documentation. +# # Revision 1.11 2001/10/09 07:38:58 richard # Pushed the base code for the extended schema CGI interface back into the # code cgi_client module so that future updates will be less painful.
