2007-04-10 Don Allingham <don@gramps-project.org>

* src/GrampsDb/_ReadGedcom.py: add hack to force illegal "BET ABT" to be read
	as "EST BET"
	* src/ReportBase/_BareReportDialog.py: escape ampersands
	* src/docgen/ODFDoc.py: escape ampersands
	* src/ManagedWindow.py: escape ampersands



svn: r8377
This commit is contained in:
Don Allingham
2007-04-11 04:54:38 +00:00
parent fdec255b9f
commit 553477b1d5
5 changed files with 20 additions and 9 deletions

View File

@@ -395,7 +395,8 @@ class ManagedWindow:
#-------------------------------------------------------------------------
def set_titles(window,title,t,msg=None):
if title:
title.set_text('<span weight="bold" size="larger">%s</span>' % t)
print escape(t)
title.set_text('<span weight="bold" size="larger">%s</span>' % escape(t))
title.set_use_markup(True)
if msg:
window.set_title('%s - GRAMPS' % msg)