[reportlab-users] FrameBreak NextFrameFlowable
Mario Teijeiro Otero
emeteo at escomposlinux.org
Tue Jan 25 20:05:53 EST 2005
Hi,
I think I found one bug in doctemplate.py:
I append a NextFrameFlowable in story to select the next
frame, and I append a FrameBreak, nothing success.
I think This is because in function BaseDocTemplate.handle_frameEnd
there are the next code:
if hasattr(self,'_nextFrameIndex'):
frame = self.pageTemplate.frames[self._nextFrameIndex]
del self._nextFrameIndex
self.handle_frameBegin(resume)
And I think it should be:
if hasattr(self,'_nextFrameIndex'):
self.frame = self.pageTemplate.frames[self._nextFrameIndex]
del self._nextFrameIndex
self.handle_frameBegin(resume)
I don't know if this is the right list. If it is not, where can I
report about this bug ?
Thanks
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://two.pairlist.net/pipermail/reportlab-users/attachments/20050126/d7341ccf/attachment.bin
More information about the reportlab-users
mailing list