summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7c64606)
raw | patch | inline | side by side (parent: 7c64606)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 19 Dec 2003 01:50:19 +0000 (01:50 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 19 Dec 2003 01:50:19 +0000 (01:50 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2028 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/mailgw.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 00be53cf48c19b5ec0c41a9c2bebce4f53c68b69..4bca3e6b070172f5f529d9c269e2d2fb2246c02e 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- use HTTP 'Content-Length' header (modified sf patch 844577)
- HTML generated is now HTML4 (or optionally XHTML) compliant (sf feature
814314 and sf patch 834620)
+- default stylesheet turns off sidebar when printing
Fixed:
- mysql documentation fixed to note requirement of 4.0+ and InnoDB
- tidied up forms in default stylesheet
- force textareas to use monospace fonts, lessening surprise on the user
+2004-??-?? 0.6.5
+Fixed:
+- mailgw handling of subject-line errors
+
2003-12-17 0.6.4
Fixed:
diff --git a/roundup/mailgw.py b/roundup/mailgw.py
index 468333ec42bd4eca5deb6d89bb1ae0cb12f1aea4..af2cde4628176225ac69a1eda6b94881f38a6d96 100644 (file)
--- a/roundup/mailgw.py
+++ b/roundup/mailgw.py
an exception, the original message is bounced back to the sender with the
explanatory message given in the exception.
-$Id: mailgw.py,v 1.139 2003-12-04 23:34:25 richard Exp $
+$Id: mailgw.py,v 1.140 2003-12-19 01:50:19 richard Exp $
"""
import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri
errors, props = setPropArrayFromString(self, cl, args, nodeid)
# handle any errors parsing the argument list
if errors:
- errors = '\n- '.join(errors)
+ errors = '\n- '.join(map(str, errors))
raise MailUsageError, '''
There were problems handling your subject line argument list:
- %s