* src/DrawDoc.py: support for drawing wedges and rotated text

* src/docgen/PSDrawDoc.py: postscipt support for wedges and rotated text
* src/docgen/PdfDrawDoc.py: PDF support for wedges and rotated text
* src/docgen/SvgDrawDoc.py: SVG support for wedges and rotated text
* src/docgen/OpenDrawDoc.py: OpenOffice support for wedges and rotated text
* src/plugins/FanChart.py: Fan chart report


* src/GenericFilter.py: rewrote IsAncestorOf and IsDescendantOf rules
to be more efficient and to properly handle loop detection.
* src/RelLib.py: Added the getValidDeath and getValidBirth methods to
the Person class
* src/plugins/WebPage.py: Handle filter errors
* src/docgen/OpenOfficeDoc.py: pass non-unicode names to zipfile


svn: r1716
This commit is contained in:
Don Allingham
2003-06-13 04:00:24 +00:00
parent dd959c379e
commit 9c43834a21
6 changed files with 495 additions and 79 deletions

View File

@ -202,8 +202,6 @@ class PSDrawDoc(DrawDoc.DrawDoc):
return ( (centerx + cos(sangle+delta) * rad),
(centery + sin(sangle+delta) * rad))
# return ( (centerx + cos(sangle+delta) * rad)-self.lmargin,
# (centery + sin(sangle+delta) * rad)-self.tmargin)
def rotate_text(self,style,text,x,y,angle):