Mercurial > p > roundup > code
diff roundup/templates/extended/interfaces.py @ 467:103f521810f7
Features added:
. Multilink properties are now displayed as comma separated values in
a textbox
. The add user link is now only visible to the admin user
. Modified the mail gateway to reject submissions from unknown
addresses if ANONYMOUS_ACCESS is denied
| author | Roche Compaan <rochecompaan@users.sourceforge.net> |
|---|---|
| date | Thu, 20 Dec 2001 15:43:01 +0000 |
| parents | aafe6980123d |
| children | 00450ff9c4e7 |
line wrap: on
line diff
--- a/roundup/templates/extended/interfaces.py Thu Dec 20 06:13:24 2001 +0000 +++ b/roundup/templates/extended/interfaces.py Thu Dec 20 15:43: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.13 2001-11-26 23:00:53 richard Exp $ +# $Id: interfaces.py,v 1.14 2001-12-20 15:43:01 rochecompaan Exp $ import instance_config from roundup import cgi_client, mailgw @@ -38,9 +38,13 @@ ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL ADMIN_EMAIL = instance_config.ADMIN_EMAIL MAILHOST = instance_config.MAILHOST + ANONYMOUS_ACCESS = instance_config.ANONYMOUS_ACCESS # # $Log: not supported by cvs2svn $ +# Revision 1.13 2001/11/26 23:00:53 richard +# This config stuff is getting to be a real mess... +# # Revision 1.12 2001/10/22 03:25:01 richard # Added configuration for: # . anonymous user access and registration (deny/allow)
