--- a/reportlab/platypus/doctemplate.py Fri Jul 07 16:18:37 2000 +0000
+++ b/reportlab/platypus/doctemplate.py Fri Jul 07 16:21:12 2000 +0000
@@ -31,9 +31,12 @@
#
###############################################################################
# $Log: doctemplate.py,v $
+# Revision 1.26 2000/07/07 16:21:12 rgbecker
+# Cosmetics
+#
# Revision 1.25 2000/07/06 12:40:37 rgbecker
# Push canvas into flowables during wrap/split
-#
+#
# Revision 1.24 2000/07/05 12:22:21 rgbecker
# Force _calc in SimpleDocTemplae.build
#
@@ -108,7 +111,7 @@
# Revision 1.1 2000/05/12 12:53:33 rgbecker
# Initial try at a document template class
#
-__version__=''' $Id: doctemplate.py,v 1.25 2000/07/06 12:40:37 rgbecker Exp $ '''
+__version__=''' $Id: doctemplate.py,v 1.26 2000/07/07 16:21:12 rgbecker Exp $ '''
__doc__="""
This module contains the core structure of platypus.
@@ -194,7 +197,7 @@
class PageTemplate:
"""
essentially a list of Frames and an onPage routine to call at the start
- of a page when this is selected. onPageEnd gets calld at the end.
+ of a page when this is selected. onPageEnd gets called at the end.
derived classes can also implement beforeDrawPage and afterDrawPage if they want
"""
def __init__(self,id=None,frames=[],onPage=_doNothing, onPageEnd=_doNothing):
--- a/reportlab/platypus/frames.py Fri Jul 07 16:18:37 2000 +0000
+++ b/reportlab/platypus/frames.py Fri Jul 07 16:21:12 2000 +0000
@@ -31,16 +31,19 @@
#
###############################################################################
# $Log: frames.py,v $
+# Revision 1.4 2000/07/07 16:21:12 rgbecker
+# Cosmetics
+#
# Revision 1.3 2000/07/06 12:40:38 rgbecker
# Push canvas into flowables during wrap/split
-#
+#
# Revision 1.2 2000/06/13 13:03:31 aaron_watters
# more documentation changes
#
# Revision 1.1 2000/06/01 15:23:06 rgbecker
# Platypus re-organisation
#
-__version__=''' $Id: frames.py,v 1.3 2000/07/06 12:40:38 rgbecker Exp $ '''
+__version__=''' $Id: frames.py,v 1.4 2000/07/07 16:21:12 rgbecker Exp $ '''
__doc__="""
"""
class Frame:
@@ -144,7 +147,7 @@
add = _add
def split(self,flowable,canv):
- '''As the flowable to split using up the available space.'''
+ '''Ask the flowable to split using up the available space.'''
y = self.y
p = self.y1p
s = self.atTop and 0 or flowable.getSpaceBefore()