Mercurial > p > roundup > code
diff roundup-server @ 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 | 59ed29a879f6 |
| children | a28a80b714f9 |
line wrap: on
line diff
--- a/roundup-server Sun Nov 25 10:11:14 2001 +0000 +++ b/roundup-server Mon Nov 26 22:55:56 2001 +0000 @@ -20,7 +20,7 @@ Based on CGIHTTPServer in the Python library. -$Id: roundup-server,v 1.19 2001-11-12 22:51:04 jhermann Exp $ +$Id: roundup-server,v 1.20 2001-11-26 22:55:56 richard Exp $ """ import sys @@ -247,8 +247,8 @@ except SystemExit: raise except: - type, value = sys.exc_info()[:2] - usage('%s: %s'%(type, value)) + exc_type, exc_value = sys.exc_info()[:2] + usage('%s: %s'%(exc_type, exc_value)) # we don't want the cgi module interpreting the command-line args ;) sys.argv = sys.argv[:1] @@ -262,6 +262,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.19 2001/11/12 22:51:04 jhermann +# Fixed option & associated error handling +# # Revision 1.18 2001/11/01 22:04:37 richard # Started work on supporting a pop3-fetching server # Fixed bugs:
