summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c145344)
raw | patch | inline | side by side (parent: c145344)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 22 Jan 2002 22:55:28 +0000 (22:55 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 22 Jan 2002 22:55:28 +0000 (22:55 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@587 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/htmltemplate.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 15126c7c24dd2c97c5502f61b385b1d9ad1ef27c..340e490e1e62e3d20c70a8af8890f24c9b177799 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
. fixed status changes in mail gateway (eg. unread -> chatting)
. we'll actually distribute the frontends directory now, as advertised...
. handle stripping of "AW:" from subject line
+ . htmltemplate list() wasn't sorting...
2002-01-16 - 0.4.0b2
index ff0276fbf09c82f1cf3be6dcfce85aaaf3c5a618..4157729b652c808d1cda17673d185532be82da1a 100644 (file)
--- a/roundup/htmltemplate.py
+++ b/roundup/htmltemplate.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: htmltemplate.py,v 1.67 2002-01-22 22:46:22 richard Exp $
+# $Id: htmltemplate.py,v 1.68 2002-01-22 22:55:28 richard Exp $
__doc__ = """
Template engine.
if not isinstance(propcl, hyperdb.Multilink):
return _('[List: not a Multilink]')
value = self.cl.get(self.nodeid, property)
+ value.sort()
if reverse:
value.reverse()
#
# $Log: not supported by cvs2svn $
+# Revision 1.67 2002/01/22 22:46:22 richard
+# more htmltemplate cleanups and unit tests
+#
# Revision 1.66 2002/01/22 06:35:40 richard
# more htmltemplate tests and cleanup
#