Closed GoogleCodeExporter closed 9 years ago
Here is the code that was modified in the pisa_tags.py file:
class pisaTagP(pisaTag):
def start(self, c):
# save the type of tag; it's used in PmlBaseDoc.afterFlowable()
# to check if we need to add an outline-entry
# c.frag.tag = self.tag
if c.node.parentNode and c.node.parentNode.tagName == 'li' and
c.node.previousSibling:
c.frag.bulletText = u' '
if self.attr.align is not None:
#print self.attr.align, getAlign(self.attr.align)
c.frag.alignment = getAlign(self.attr.align)
Original comment by seanb1...@gmail.com
on 5 Mar 2009 at 7:27
Thanks for the fix. I used a more general approach in pisa_context.py. Will be
available in 3.0.30
Original comment by dirk.holtwick
on 26 Mar 2009 at 6:22
Original issue reported on code.google.com by
seanb1...@gmail.com
on 5 Mar 2009 at 3:39