diff roundup/templates/classic/interfaces.py @ 316:c0ca7f35e0c5

Added configuration for: . anonymous user access and registration (deny/allow) . filter "widget" location on index page (top, bottom, both) Updated some documentation.
author Richard Jones <richard@users.sourceforge.net>
date Mon, 22 Oct 2001 03:25:01 +0000
parents 45e32247aa33
children aafe6980123d
line wrap: on
line diff
--- a/roundup/templates/classic/interfaces.py	Sun Oct 21 11:42:15 2001 +0000
+++ b/roundup/templates/classic/interfaces.py	Mon Oct 22 03:25:01 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.7 2001-10-09 07:38:58 richard Exp $
+# $Id: interfaces.py,v 1.8 2001-10-22 03:25:01 richard Exp $
 
 import instance_config
 from roundup import cgi_client, mailgw 
@@ -25,6 +25,9 @@
         with any specific extensions 
     ''' 
     TEMPLATES = instance_config.TEMPLATES
+    FILTER_POSITION = instance_config.FILTER_POSITION
+    ANONYMOUS_ACCESS = instance_config.ANONYMOUS_ACCESS
+    ANONYMOUS_REGISTER = instance_config.ANONYMOUS_REGISTER
 
 class MailGW(mailgw.MailGW): 
     ''' derives basic mail gateway implementation from the standard module, 
@@ -36,6 +39,11 @@
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.7  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.
+# Also removed a debugging print statement from cgi_client.
+#
 # Revision 1.6  2001/08/07 00:24:43  richard
 # stupid typo
 #

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