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:
Stéphane Charette 2008-05-04 06:54:26 +00:00
parent c1d7c2e8eb
commit f6bc65df90

View File

@ -630,7 +630,7 @@ class BasePage:
if format:
text = u"<pre>%s</pre>" % text
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</div>\n\n')
@ -1563,12 +1563,9 @@ class IntroductionPage(BasePage):
note_obj = db.get_note_from_gramps_id(note_id)
text = note_obj.get(markup=True)
if note_obj.get_format():
of.write('\t<pre>\n%s\n' % text)
of.write('\t</pre>\n')
of.write(u'\t<pre>%s</pre>\n' % text)
else:
of.write('\t<p>')
of.write(u'</p>\n\t<p>'.join(text.split("\n")))
of.write('</p>\n')
of.write(u'<br />'.join(text.split("\n")))
self.display_footer(of,db)
self.close_file(of)
@ -1611,12 +1608,9 @@ class HomePage(BasePage):
note_obj = db.get_note_from_gramps_id(note_id)
text = note_obj.get(markup=True)
if note_obj.get_format():
of.write('\t<pre>\n%s\n' % text)
of.write('\t</pre>\n')
of.write(u'\t<pre>%s</pre>' % text)
else:
of.write('\t<p>')
of.write(u'</p>\n\t<p>'.join(text.split("\n")))
of.write('</p>\n')
of.write(u'<br />'.join(text.split("\n")))
self.display_footer(of,db)
self.close_file(of)
@ -2455,7 +2449,7 @@ class IndividualPage(BasePage):
if format:
of.write(u"<pre>%s</pre>" % text )
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('\t\t\t\t</td>\n')
of.write('\t\t\t</tr>\n')
@ -2554,9 +2548,7 @@ class IndividualPage(BasePage):
if format:
text += u"<pre>%s</pre>" % note_text
else:
text += u"<p>"
text += u"<br />".join(note_text.split("\n"))
text += u"</p>"
return text
def get_citation_links(self, source_ref_list):