better handling of end-of-line for text notes; use [br] like we do in 2.2.x instead of [p]
svn: r10658
This commit is contained in:
parent
c1d7c2e8eb
commit
f6bc65df90
@ -630,7 +630,7 @@ class BasePage:
|
|||||||
if format:
|
if format:
|
||||||
text = u"<pre>%s</pre>" % text
|
text = u"<pre>%s</pre>" % text
|
||||||
else:
|
else:
|
||||||
text = u"</p>\n\t\t<p>".join(text.split("\n"))
|
text = u"<br />".join(text.split("\n"))
|
||||||
of.write('\t\t<p>%s</p>\n' % text)
|
of.write('\t\t<p>%s</p>\n' % text)
|
||||||
of.write('\t</div>\n\n')
|
of.write('\t</div>\n\n')
|
||||||
|
|
||||||
@ -1563,12 +1563,9 @@ class IntroductionPage(BasePage):
|
|||||||
note_obj = db.get_note_from_gramps_id(note_id)
|
note_obj = db.get_note_from_gramps_id(note_id)
|
||||||
text = note_obj.get(markup=True)
|
text = note_obj.get(markup=True)
|
||||||
if note_obj.get_format():
|
if note_obj.get_format():
|
||||||
of.write('\t<pre>\n%s\n' % text)
|
of.write(u'\t<pre>%s</pre>\n' % text)
|
||||||
of.write('\t</pre>\n')
|
|
||||||
else:
|
else:
|
||||||
of.write('\t<p>')
|
of.write(u'<br />'.join(text.split("\n")))
|
||||||
of.write(u'</p>\n\t<p>'.join(text.split("\n")))
|
|
||||||
of.write('</p>\n')
|
|
||||||
|
|
||||||
self.display_footer(of,db)
|
self.display_footer(of,db)
|
||||||
self.close_file(of)
|
self.close_file(of)
|
||||||
@ -1611,12 +1608,9 @@ class HomePage(BasePage):
|
|||||||
note_obj = db.get_note_from_gramps_id(note_id)
|
note_obj = db.get_note_from_gramps_id(note_id)
|
||||||
text = note_obj.get(markup=True)
|
text = note_obj.get(markup=True)
|
||||||
if note_obj.get_format():
|
if note_obj.get_format():
|
||||||
of.write('\t<pre>\n%s\n' % text)
|
of.write(u'\t<pre>%s</pre>' % text)
|
||||||
of.write('\t</pre>\n')
|
|
||||||
else:
|
else:
|
||||||
of.write('\t<p>')
|
of.write(u'<br />'.join(text.split("\n")))
|
||||||
of.write(u'</p>\n\t<p>'.join(text.split("\n")))
|
|
||||||
of.write('</p>\n')
|
|
||||||
|
|
||||||
self.display_footer(of,db)
|
self.display_footer(of,db)
|
||||||
self.close_file(of)
|
self.close_file(of)
|
||||||
@ -2455,7 +2449,7 @@ class IndividualPage(BasePage):
|
|||||||
if format:
|
if format:
|
||||||
of.write(u"<pre>%s</pre>" % text )
|
of.write(u"<pre>%s</pre>" % text )
|
||||||
else:
|
else:
|
||||||
of.write(u"</p>\n\t\t\t\t\t<p>".join(text.split("\n")))
|
of.write(u"<br />".join(text.split("\n")))
|
||||||
of.write('</p>\n')
|
of.write('</p>\n')
|
||||||
of.write('\t\t\t\t</td>\n')
|
of.write('\t\t\t\t</td>\n')
|
||||||
of.write('\t\t\t</tr>\n')
|
of.write('\t\t\t</tr>\n')
|
||||||
@ -2554,9 +2548,7 @@ class IndividualPage(BasePage):
|
|||||||
if format:
|
if format:
|
||||||
text += u"<pre>%s</pre>" % note_text
|
text += u"<pre>%s</pre>" % note_text
|
||||||
else:
|
else:
|
||||||
text += u"<p>"
|
|
||||||
text += u"<br />".join(note_text.split("\n"))
|
text += u"<br />".join(note_text.split("\n"))
|
||||||
text += u"</p>"
|
|
||||||
return text
|
return text
|
||||||
|
|
||||||
def get_citation_links(self, source_ref_list):
|
def get_citation_links(self, source_ref_list):
|
||||||
|
Loading…
Reference in New Issue
Block a user