parent
f6c362073d
commit
2a7d884f07
@ -1,3 +1,6 @@
|
|||||||
|
2006-09-12 Brian Matherly <brian@gramps-project.org>
|
||||||
|
* src/docgen/RTFDoc.py: fix page breaks (#0000441)
|
||||||
|
|
||||||
2006-09-12 Don Allingham <don@gramps-project.org>
|
2006-09-12 Don Allingham <don@gramps-project.org>
|
||||||
* src/DataViews/_RelationView.py: provide a waring if a broken
|
* src/DataViews/_RelationView.py: provide a waring if a broken
|
||||||
family is detected
|
family is detected
|
||||||
@ -52,8 +55,8 @@
|
|||||||
* po/POTFILES.in: remove non-shipping modules
|
* po/POTFILES.in: remove non-shipping modules
|
||||||
|
|
||||||
2006-09-01 Brian Matherly <brian@gramps-project.org>
|
2006-09-01 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/Calendar.py: fix filter typo
|
* src/plugins/Calendar.py: fix filter typo
|
||||||
* src/plugins/WritePkg.py: don't set uid on Windows
|
* src/plugins/WritePkg.py: don't set uid on Windows
|
||||||
|
|
||||||
2006-09-01 Alex Roitman <shura@gramps-project.org>
|
2006-09-01 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/GrampsDb/_DbUtils.py: Use normal addition: this updates
|
* src/GrampsDb/_DbUtils.py: Use normal addition: this updates
|
||||||
|
@ -228,6 +228,14 @@ class RTFDoc(BaseDoc.BaseDoc):
|
|||||||
self.write_text(" ")
|
self.write_text(" ")
|
||||||
self.text = self.text + '}'
|
self.text = self.text + '}'
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Inserts a manual page break
|
||||||
|
#
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
def page_break(self):
|
||||||
|
self.f.write('\\page\n')
|
||||||
|
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Starts boldfaced text, enclosed the braces
|
# Starts boldfaced text, enclosed the braces
|
||||||
|
Loading…
Reference in New Issue
Block a user