Code

. display superseder as html link in history.
authorgrubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 17 Jan 2002 08:48:19 +0000 (08:48 +0000)
committergrubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 17 Jan 2002 08:48:19 +0000 (08:48 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@560 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/htmltemplate.py

index 787803d2752a955e0d6af0659cbe188a88f22c76..b43375b12bddaa6753d924edcf3b9de2d664f42a 100644 (file)
@@ -2,8 +2,9 @@ This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
 2002-01-?? - 0.4.0??
+ . display superseder as html link in history.
+ . display links as html link in history (e.g. message history back to issue).
  . handle attachments with no name (eg tnef)
- . display links a html link in history.
 
 2002-01-16 - 0.4.0b2
 Fixed:
index 33213ae3be3d6c5ca716271bf8d6db3f69b7e829..1c449c1a0637c8d34ecd9b2ea56d959a2b6c5d6b 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.59 2002-01-17 07:58:24 grubert Exp $
+# $Id: htmltemplate.py,v 1.60 2002-01-17 08:48:19 grubert Exp $
 
 __doc__ = """
 Template engine.
@@ -463,7 +463,12 @@ class TemplateFunctions:
             elif type(args)==type({}):
                 for k in args.keys():
                     # special treatment of date, maybe links to files, authors, recipient ?
-                    arg_s += '%s: %s,'%(k,str(args[k]))
+                    if k=='superseder' and len(args[k])>0:
+                        arg_s += '<br />superseder: '
+                        for ssdr in args[k]:
+                            arg_s += '<a href="issue%s">issue%s</a>,'%(ssdr,ssdr)
+                    else:
+                        arg_s += '%s: %s,'%(k,str(args[k]))
             else:
                 arg_s = str(args)
             # shouldnt _() be used ?
@@ -898,6 +903,9 @@ class NewItemTemplate(TemplateFunctions):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.59  2002/01/17 07:58:24  grubert
+#  . display links a html link in history.
+#
 # Revision 1.58  2002/01/15 00:50:03  richard
 # #502949 ] index view for non-issues and redisplay
 #