Skip to content

Commit 9078324

Browse files
author
Engelbert Gruber
committed
add nowrap to history table date cell i.e. <td nowrap ...
1 parent 340665f commit 9078324

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roundup/htmltemplate.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: htmltemplate.py,v 1.61 2002-01-17 23:04:53 richard Exp $
18+
# $Id: htmltemplate.py,v 1.62 2002-01-18 08:36:12 grubert Exp $
1919

2020
__doc__ = """
2121
Template engine.
@@ -564,7 +564,7 @@ def do_history(self, direction='descending'):
564564
handled by the history display!</em></strong>''')
565565
arg_s = '<strong><em>' + str(args) + '</em></strong>'
566566
date_s = date_s.replace(' ', '&nbsp;')
567-
l.append('<tr><td valign=top>%s</td><td valign=top>%s</td>'
567+
l.append('<tr><td nowrap valign=top>%s</td><td valign=top>%s</td>'
568568
'<td valign=top>%s</td><td valign=top>%s</td></tr>'%(date_s,
569569
user, action, arg_s))
570570
if comments:
@@ -1000,6 +1000,9 @@ def render(self, form):
10001000

10011001
#
10021002
# $Log: not supported by cvs2svn $
1003+
# Revision 1.61 2002/01/17 23:04:53 richard
1004+
# . much nicer history display (actualy real handling of property types etc)
1005+
#
10031006
# Revision 1.60 2002/01/17 08:48:19 grubert
10041007
# . display superseder as html link in history.
10051008
#

0 commit comments

Comments
 (0)