Mercurial > p > roundup > code
changeset 558:e4c8f0657c74
oops
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 21 Jan 2002 03:25:59 +0000 |
| parents | dfac856502d1 |
| children | bb5ee2f24ee0 |
| files | roundup/htmltemplate.py |
| diffstat | 1 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/htmltemplate.py Mon Jan 21 03:01:29 2002 +0000 +++ b/roundup/htmltemplate.py Mon Jan 21 03:25:59 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: htmltemplate.py,v 1.63 2002-01-21 02:59:10 richard Exp $ +# $Id: htmltemplate.py,v 1.64 2002-01-21 03:25:59 richard Exp $ __doc__ = """ Template engine. @@ -538,8 +538,8 @@ # "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)) + cell.append('%s: <a href="%s%s">%s</a>\n'%(k, + classname, args[k], label)) elif isinstance(prop, hyperdb.Date) and args[k]: d = date.Date(args[k]) @@ -1002,6 +1002,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.63 2002/01/21 02:59:10 richard +# Fixed up the HTML display of history so valid links are actually displayed. +# Oh for some unit tests! :( +# # Revision 1.62 2002/01/18 08:36:12 grubert # . add nowrap to history table date cell i.e. <td nowrap ... #
