* src/plugins/NarrativeWeb.py: Fix typos
svn: r7260
This commit is contained in:
parent
bf3aab4a0a
commit
7cb840ebf8
@ -1,3 +1,7 @@
|
|||||||
|
2006-08-24 Brian Matherly <brian@gramps-project.org>
|
||||||
|
* src/Config/_GrampsIniKeys.py: Handle invalid default key
|
||||||
|
* src/plugins/NarrativeWeb.py: Fix typos
|
||||||
|
|
||||||
2006-08-24 Don Allingham <don@gramps-project.org>
|
2006-08-24 Don Allingham <don@gramps-project.org>
|
||||||
* src/GrampsDb/_GrampsInMemDB.py: update maps properly on commit
|
* src/GrampsDb/_GrampsInMemDB.py: update maps properly on commit
|
||||||
|
|
||||||
|
@ -1284,7 +1284,7 @@ class ContactPage(BasePage):
|
|||||||
of.write('<table><tr>')
|
of.write('<table><tr>')
|
||||||
of.write('<td height="205">')
|
of.write('<td height="205">')
|
||||||
of.write('<img height="200" ')
|
of.write('<img height="200" ')
|
||||||
of.write('src="%s" ' % thumb_path)
|
of.write('src="%s" ' % newpath)
|
||||||
of.write('alt="%s" />' % obj.get_description())
|
of.write('alt="%s" />' % obj.get_description())
|
||||||
of.write('</td></tr></table>\n')
|
of.write('</td></tr></table>\n')
|
||||||
of.write('</div>\n')
|
of.write('</div>\n')
|
||||||
@ -2508,10 +2508,10 @@ class WebReportOptions(ReportOptions):
|
|||||||
data = cursor.first()
|
data = cursor.first()
|
||||||
while data:
|
while data:
|
||||||
(handle, value) = data
|
(handle, value) = data
|
||||||
if value[3]:
|
if not value[3]:
|
||||||
media_list.append([value[4],handle])
|
|
||||||
else:
|
|
||||||
html_list.append([value[4],handle])
|
html_list.append([value[4],handle])
|
||||||
|
media_list.append([value[4],handle])
|
||||||
|
|
||||||
data = cursor.next()
|
data = cursor.next()
|
||||||
cursor.close()
|
cursor.close()
|
||||||
media_list.sort()
|
media_list.sort()
|
||||||
|
Loading…
Reference in New Issue
Block a user