Skip to content

Commit f3942bb

Browse files
author
Richard Jones
committed
fix mail tests
1 parent b6ea478 commit f3942bb

File tree

4 files changed

+30
-16
lines changed

4 files changed

+30
-16
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2004-??-?? 0.6.8
4+
2004-04-01 0.6.8
55
Fixed:
66
- existing trackers (ie. live ones) may be used as templates for new
77
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name

doc/announcement.txt

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
I'm pleased to announce Roundup 0.6.7, a maintenance release which fixes
2-
some bugs (most notably making the EMAIL_CHARSET config variable backwards-
3-
compatible):
4-
5-
- be more backward-compatible when asking for EMAIL_CHARSET
6-
- made error on create consistent with edit when user enters invalid data
7-
for Multilink and Link form fields (sf bug 904072)
8-
- made errors from bad input in the quick "Show issue:" form more
9-
user-friendly (sf bug 904064)
10-
- don't add a query to a user's list if it's already there
11-
- nicer invalid property error in HTML templating
12-
- use EMAIL_CHARSET for message body too (still sf bug 900046)
1+
I'm pleased to announce Roundup 0.6.8, a maintenance release which fixes
2+
some bugs:
3+
4+
- existing trackers (ie. live ones) may be used as templates for new
5+
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
6+
appended (so the demo tracker's template name is "classic-demo")
7+
- handle bad multilink input at item creation time better (sf bug 917834)
8+
- make sure email signature starts on a newline (sf bug 919759)
9+
- add line to rego email to help URL detection (sf bug 906247)
10+
- look harder for text/plain in email
11+
- fixed fallback excel writer in rcsv so it has a delimiter
12+
- fixed setup.py's use of listTemplates (!)
13+
- make rdbms serialise() less trusting
14+
- handle Boolean values in history HTML display
1315

1416
If you're upgrading from an older version of Roundup you *must* follow
1517
the "Software Upgrade" guidelines given in the maintenance documentation.

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.25.2.7 2004-03-01 00:07:27 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.8 2004-04-01 00:07:35 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.6.7'
70+
__version__ = '0.6.8'
7171

7272
# vim: set filetype=python ts=4 sw=4 et si

test/test_mailgw.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# but WITHOUT ANY WARRANTY; without even the implied warranty of
99
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1010
#
11-
# $Id: test_mailgw.py,v 1.46 2003-05-06 21:49:20 kedder Exp $
11+
# $Id: test_mailgw.py,v 1.46.2.1 2004-04-01 00:07:35 richard Exp $
1212

1313
import unittest, cStringIO, tempfile, os, shutil, errno, imp, sys, difflib
1414
import rfc822
@@ -239,6 +239,7 @@ def testNewIssueAuthMsg(self):
239239
nosy: Chef, mary, richard
240240
status: unread
241241
title: Testing...
242+
242243
_______________________________________________________________________
243244
Roundup issue tracker <[email protected]>
244245
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -291,6 +292,7 @@ def testSimpleFollowup(self):
291292
292293
----------
293294
status: unread -> chatting
295+
294296
_______________________________________________________________________
295297
Roundup issue tracker <[email protected]>
296298
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -341,6 +343,7 @@ def testFollowup(self):
341343
assignedto: -> mary
342344
nosy: +john, mary
343345
status: unread -> chatting
346+
344347
_______________________________________________________________________
345348
Roundup issue tracker <[email protected]>
346349
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -387,6 +390,7 @@ def testFollowupTitleMatch(self):
387390
assignedto: -> mary
388391
nosy: +john, mary
389392
status: unread -> chatting
393+
390394
_______________________________________________________________________
391395
Roundup issue tracker <[email protected]>
392396
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -433,6 +437,7 @@ def testFollowupNosyAuthor(self):
433437
----------
434438
nosy: +john
435439
status: unread -> chatting
440+
436441
_______________________________________________________________________
437442
Roundup issue tracker <[email protected]>
438443
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -481,6 +486,7 @@ def testFollowupNosyRecipients(self):
481486
----------
482487
nosy: +john
483488
status: unread -> chatting
489+
484490
_______________________________________________________________________
485491
Roundup issue tracker <[email protected]>
486492
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -529,6 +535,7 @@ def testFollowupNosyAuthorAndCopy(self):
529535
----------
530536
nosy: +john
531537
status: unread -> chatting
538+
532539
_______________________________________________________________________
533540
Roundup issue tracker <[email protected]>
534541
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -575,6 +582,7 @@ def testFollowupNoNosyAuthor(self):
575582
576583
----------
577584
status: unread -> chatting
585+
578586
_______________________________________________________________________
579587
Roundup issue tracker <[email protected]>
580588
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -622,6 +630,7 @@ def testFollowupNoNosyRecipients(self):
622630
623631
----------
624632
status: unread -> chatting
633+
625634
_______________________________________________________________________
626635
Roundup issue tracker <[email protected]>
627636
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -752,6 +761,7 @@ def testEnc01(self):
752761
753762
----------
754763
status: unread -> chatting
764+
755765
_______________________________________________________________________
756766
Roundup issue tracker <[email protected]>
757767
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -807,6 +817,7 @@ def testMultipartEnc01(self):
807817
808818
----------
809819
status: unread -> chatting
820+
810821
_______________________________________________________________________
811822
Roundup issue tracker <[email protected]>
812823
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>
@@ -887,6 +898,7 @@ def testFollowupStupidQuoting(self):
887898
888899
----------
889900
status: unread -> chatting
901+
890902
_______________________________________________________________________
891903
Roundup issue tracker <[email protected]>
892904
<http://tracker.example/cgi-bin/roundup.cgi/bugs/issue1>

0 commit comments

Comments
 (0)