summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1cbbb3c)
raw | patch | inline | side by side (parent: 1cbbb3c)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 6 Feb 2002 03:47:16 +0000 (03:47 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 6 Feb 2002 03:47:16 +0000 (03:47 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@613 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
test/test_htmltemplate.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 84f02a598d75645a6e1ac7009fa73196b7a69b7f..ed3577d180a11c1b1aff3b72ac98c6777c8abc21 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
This file contains the changes to the Roundup system over time. The entries
are given with the most recent entry first.
+2002-02-?? - ?????
+Fixed:
+ . respect encodings in non multipart messages.
+ . makeHtmlBase: re.sub under python 2.2 did not replace '.', string.replace
+ does it.
+ . preamble in tepmlateBuilder mentioned htmldata
+ . mailgw checks encoding on first part too.
+ . #511586 ] unittest FAIL: testReldate_date
+
+
2002-01-24 - 0.4.0
Feature:
. much nicer history display (actualy real handling of property types etc)
. you can now use the roundup-admin tool pack the database
Fixed:
- . respect encodings in non multipart messages.
- . makeHtmlBase: re.sub under python 2.2 did not replace '.', string.replace does it.
- . preamble in tepmlateBuilder mentioned htmldata
- . mailgw checks encoding on first part too.
. the mail gateway now responds with an error message when invalid values
for arguments are specified for link or mutlilink properties
. modified unit test to check nosy and assignedto when specified as arguments
. run_tests testReldate_date failed if LANG is 'german'
. mailgw failures (unexpected ones) are forwarded to the roundup admin
+
2002-01-16 - 0.4.0b2
Fixed:
. #495392 ] empty nosy -patch
index e5b1e8b7c9407d11d7cb15d032937a33f6e7825a..f18bd7b94312b7c4a44f61ca874e67ab555b20e9 100644 (file)
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
-# $Id: test_htmltemplate.py,v 1.7 2002-01-23 20:09:41 jhermann Exp $
+# $Id: test_htmltemplate.py,v 1.8 2002-02-06 03:47:16 richard Exp $
import unittest, cgi, time
def testReldate_date(self):
self.assertEqual(self.tf.do_reldate('date'), '- 2y 1m')
- self.assertEqual(self.tf.do_reldate('date', pretty=1),
- ' 1 %s 2000' % time.strftime('%B', time.localtime(0)))
+ date = self.tf.cl.get('1', 'date')
+ self.assertEqual(self.tf.do_reldate('date', pretty=1), date.pretty())
# def do_download(self, property):
def testDownload_novalue(self):
#
# $Log: not supported by cvs2svn $
+# Revision 1.7 2002/01/23 20:09:41 jhermann
+# Proper fix for failing test
+#
# Revision 1.6 2002/01/23 05:47:57 richard
# more HTML template cleanup and unit tests
#