0000996: Individual attributes do no include source reference citations in Narrative Web report.

svn: r8355
This commit is contained in:
Brian Matherly 2007-04-05 12:07:05 +00:00
parent e9bd32330f
commit dbab948e8c
2 changed files with 34 additions and 14 deletions

View File

@ -1,3 +1,7 @@
2007-04-05 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: 0000996: Individual attributes do no include
source reference citations in Narrative Web report.
2007-04-05 Brian Matherly <brian@gramps-project.org>
* src/DateHandler/_DateParser.py: Fix a typo
* src/DateEdit.py: Fix a typo

View File

@ -472,20 +472,6 @@ class BasePage:
of.write('</table>\n')
of.write('</div>\n')
def display_attr_list(self,of,attrlist=None):
if not attrlist:
return
of.write('<div id="attributes">\n')
of.write('<h4>%s</h4>\n' % _('Attributes'))
of.write('<table class="infolist">\n')
for attr in attrlist:
atType = str( attr.get_type() )
of.write('<tr><td class="field">%s</td>' % atType)
of.write('<td class="data">%s</td></tr>\n' % attr.get_value())
of.write('</table>\n')
of.write('</div>\n')
def display_references(self,of,db,handlelist):
if not handlelist:
return
@ -936,6 +922,20 @@ class MediaPage(BasePage):
self.display_footer(of,db)
self.close_file(of)
def display_attr_list(self,of,attrlist=None):
if not attrlist:
return
of.write('<div id="attributes">\n')
of.write('<h4>%s</h4>\n' % _('Attributes'))
of.write('<table class="infolist">\n')
for attr in attrlist:
atType = str( attr.get_type() )
of.write('<tr><td class="field">%s</td>' % atType)
of.write('<td class="data">%s</td></tr>\n' % attr.get_value())
of.write('</table>\n')
of.write('</div>\n')
def copy_source_file(self,handle,photo):
ext = os.path.splitext(photo.get_path())[1]
to_dir = self.build_path(handle,'images')
@ -1466,6 +1466,22 @@ class IndividualPage(BasePage):
self.display_footer(of,db)
self.close_file(of)
def display_attr_list(self,of,attrlist=None):
if not attrlist:
return
of.write('<div id="attributes">\n')
of.write('<h4>%s</h4>\n' % _('Attributes'))
of.write('<table class="infolist">\n')
for attr in attrlist:
atType = str( attr.get_type() )
of.write('<tr><td class="field">%s</td>' % atType)
value = attr.get_value()
value += self.get_citation_links( attr.get_source_references() )
of.write('<td class="data">%s</td></tr>\n' % value)
of.write('</table>\n')
of.write('</div>\n')
def draw_box(self,of,center,col,person):
top = center - HEIGHT/2
xoff = XOFFSET+col*(WIDTH+HGAP)