Mercurial > p > roundup > code
diff roundup/templates/extended/dbinit.py @ 411:a6088556e9ba
Features and fixes.
Feature:
. Added INSTANCE_NAME to configuration - used in web and email to identify
the instance.
. Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
signature info in e-mails.
. Some more flexibility in the mail gateway and more error handling.
. Login now takes you to the page you back to the were denied access to.
Fixed:
. Lots of bugs, thanks Roch�nd others on the devel mailing list!
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 26 Nov 2001 22:55:56 +0000 |
| parents | f43af1e97fdd |
| children | 350685601f37 |
line wrap: on
line diff
--- a/roundup/templates/extended/dbinit.py Sun Nov 25 10:11:14 2001 +0000 +++ b/roundup/templates/extended/dbinit.py Mon Nov 26 22:55:56 2001 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: dbinit.py,v 1.14 2001-11-21 02:34:18 richard Exp $ +# $Id: dbinit.py,v 1.15 2001-11-26 22:55:56 richard Exp $ import os @@ -35,11 +35,13 @@ class IssueClass(roundupdb.IssueClass): ''' issues need the email information ''' + INSTANCE_NAME = instance_config.INSTANCE_NAME ISSUE_TRACKER_WEB = instance_config.ISSUE_TRACKER_WEB ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL ADMIN_EMAIL = instance_config.ADMIN_EMAIL MAILHOST = instance_config.MAILHOST MESSAGES_TO_AUTHOR = instance_config.MESSAGES_TO_AUTHOR + EMAIL_SIGNATURE_POSITION = instance_config.EMAIL_SIGNATURE_POSITION def open(name=None): @@ -176,6 +178,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.14 2001/11/21 02:34:18 richard +# Added a target version field to the extended issue schema +# # Revision 1.13 2001/10/30 00:54:45 richard # Features: # . #467129 ] Lossage when username=e-mail-address
