Refine dump_notes usage

svn: r15194
This commit is contained in:
Doug Blank 2010-04-17 20:09:45 +00:00
parent 4f648c3c7e
commit b38c9e5144

View File

@ -338,7 +338,7 @@ class BasePage(object):
("AttrValue", attr.get_value() ) ] ("AttrValue", attr.get_value() ) ]
# get attribute note list # get attribute note list
notelist = self.dump_notes(attr.get_note_list() ) or " " notelist = self.dump_notes(attr.get_note_list() )
attr_data_row.append(("AttrNotes", notelist)) attr_data_row.append(("AttrNotes", notelist))
if showsrc: if showsrc:
@ -443,7 +443,7 @@ class BasePage(object):
""" """
if not notelist: if not notelist:
return " " return Html("p")
db = self.report.database db = self.report.database
# begin unordered list # begin unordered list
@ -505,7 +505,7 @@ class BasePage(object):
if notelist: if notelist:
htmllist = self.dump_notes( notelist ) htmllist = self.dump_notes( notelist )
else: else:
htmllist = " " htmllist = Html("p")
# if the event or event reference has a attributes attached to it, # if the event or event reference has a attributes attached to it,
# get the text and format it correctly # get the text and format it correctly
@ -520,7 +520,7 @@ class BasePage(object):
#also output notes attached to the attributes #also output notes attached to the attributes
notelist = attr.get_note_list() notelist = attr.get_note_list()
if notelist: if notelist:
htmllist.extend ( self.dump_notes( notelist ) or " " ) htmllist.extend (self.dump_notes( notelist ))
trow += Html("td", htmllist, class_ = "ColumnNotes") trow += Html("td", htmllist, class_ = "ColumnNotes")