Code

. htmltemplate list() wasn't sorting...
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 22 Jan 2002 22:55:28 +0000 (22:55 +0000)
committerrichard <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
roundup/htmltemplate.py

index 15126c7c24dd2c97c5502f61b385b1d9ad1ef27c..340e490e1e62e3d20c70a8af8890f24c9b177799 100644 (file)
@@ -22,6 +22,7 @@ Fixed:
  . 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)
@@ -15,7 +15,7 @@
 # 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.
@@ -468,6 +468,7 @@ class TemplateFunctions:
         if not isinstance(propcl, hyperdb.Multilink):
             return _('[List: not a Multilink]')
         value = self.cl.get(self.nodeid, property)
+       value.sort()
         if reverse:
             value.reverse()
 
@@ -1047,6 +1048,9 @@ class NewItemTemplate(TemplateFunctions):
 
 #
 # $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
 #