summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1057f0c)
raw | patch | inline | side by side (parent: 1057f0c)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 21 Jan 2002 02:59:10 +0000 (02:59 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 21 Jan 2002 02:59:10 +0000 (02:59 +0000) |
Oh for some unit tests! :(
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@568 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@568 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/htmltemplate.py | patch | blob | history |
index c60ddfd0726789625245969ab1b5f78545bcdffd..f551ae4887092b80bd0b9296ecc759183e6972ec 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.62 2002-01-18 08:36:12 grubert Exp $
+# $Id: htmltemplate.py,v 1.63 2002-01-21 02:59:10 richard Exp $
__doc__ = """
Template engine.
linked node no longer
exists</strike>''')
cell.append(' <strike>%s</strike>,\n'%label)
- else:
- cell.append(' <a href="%s%s">%s</a>,\n'%(
- classname, linkid, label))
+ # "flag" this is done .... euwww
+ label = None
+ if label is not None:
+ cell.append('%s: <a href="%s%s">%s</a>\n'%(
+ classname, classname, args[k], label))
elif isinstance(prop, hyperdb.Date) and args[k]:
d = date.Date(args[k])
#
# $Log: not supported by cvs2svn $
+# Revision 1.62 2002/01/18 08:36:12 grubert
+# . add nowrap to history table date cell i.e. <td nowrap ...
+#
# Revision 1.61 2002/01/17 23:04:53 richard
# . much nicer history display (actualy real handling of property types etc)
#