Small correction of generated HTML.
* src/plugins/NarrativeWeb.py svn: r11284
This commit is contained in:
parent
6b684b42c5
commit
3c85a65fd3
@ -289,35 +289,30 @@ class BasePage:
|
||||
|
||||
value = _dp.parse(time.strftime('%b %d %Y'))
|
||||
value = _dd.display(value)
|
||||
|
||||
msg = _('Generated by <a href="http://gramps-project.org">'
|
||||
'GRAMPS</a> on %(date)s') % { 'date' : value }
|
||||
of.write('\t<p id="createdate" />')
|
||||
of.write(msg)
|
||||
of.write('</p>\n')
|
||||
'GRAMPS</a> on %(date)s') % {'date' : value}
|
||||
of.write('\t<p id="createdate">%s</p>\n' % msg)
|
||||
|
||||
of.write('\t<p id="copyright">')
|
||||
copy_nr = self.report.copyright
|
||||
text = ''
|
||||
if copy_nr == 0:
|
||||
if self.author:
|
||||
year = time.localtime()[0]
|
||||
cright = _('© %(year)d %(person)s') % {
|
||||
text = '© %(year)d %(person)s' % {
|
||||
'person' : self.author,
|
||||
'year' : year }
|
||||
of.write('%s' % cright)
|
||||
elif 0 < copy_nr < 7:
|
||||
text = _CC[copy_nr]
|
||||
fname = self.report.build_url_fname("somerights20.gif",
|
||||
'images', self.up)
|
||||
text = text % {'gif_fname' : fname}
|
||||
of.write(text)
|
||||
of.write('</p>\n')
|
||||
'year' : year}
|
||||
elif 0 < copy_nr < len(_CC):
|
||||
fname = os.path.join("images", "somerights20.gif")
|
||||
fname = self.report.build_url_fname(fname, None, self.up)
|
||||
text = _CC[copy_nr] % {'gif_fname' : fname}
|
||||
of.write('\t<p id="copyright">%s</p>\n' % text)
|
||||
|
||||
of.write('\t<p id="quality"><a href="http://validator.w3.org/check?uri=referer">')
|
||||
of.write('<img src="http://www.w3.org/Icons/valid-xhtml10" ')
|
||||
of.write('alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a></p>\n')
|
||||
|
||||
of.write('\t\t<div class="fullclear"></div>\n')
|
||||
|
||||
of.write('</div>\n')
|
||||
of.write('</body>\n')
|
||||
of.write('</html>')
|
||||
@ -2719,7 +2714,7 @@ class NavWebReport(Report):
|
||||
|
||||
# Copy the Creative Commons icon if the Creative Commons
|
||||
# license is requested
|
||||
if 0 < self.copyright < 7:
|
||||
if 0 < self.copyright < len(_CC):
|
||||
imgs += ["somerights20.gif"]
|
||||
|
||||
imgs += ["favicon.ico",
|
||||
|
Loading…
Reference in New Issue
Block a user