[svn r37926] Small visual tweaks.

--HG--
branch : trunk
This commit is contained in:
guido 2007-02-04 22:11:43 +01:00
parent 16f9103a0a
commit a1c7ab69f9
1 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ class H(html):
class FunctionInfo(html.div):
def __init__(self, valuedesc, csource, callstack):
super(H.FunctionInfo, self).__init__(
H.Hideable('funcinfo', 'funcinfo', valuedesc, csource,
H.Hideable('funcinfo', 'funcinfo', valuedesc, H.br(), csource,
callstack))
class PropertyDescription(html.div):
@ -54,9 +54,9 @@ class H(html):
value = str(value)
if len(value) > 100:
value = value[:100] + '...'
super(H.PropertyDescription, self).__init__(H.strong(name), ': ',
H.em(value),
class_='property')
super(H.PropertyDescription, self).__init__(name, ': ',
H.em(value),
class_='property')
class ParameterDescription(html.div):
pass