author | rgbecker |
Wed, 25 Oct 2000 08:57:46 +0000 | |
changeset 494 | 54257447cfe9 |
parent 442 | e3eac15cddbd |
child 518 | 5be3fcb26c78 |
permissions | -rwxr-xr-x |
494 | 1 |
#copyright ReportLab Inc. 2000 |
2 |
#see license.txt for license details |
|
3 |
#history http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/reportlab/platypus/__init__.py?cvsroot=reportlab |
|
4 |
#$Header: /tmp/reportlab/reportlab/platypus/__init__.py,v 1.11 2000/10/25 08:57:45 rgbecker Exp $ |
|
5 |
__version__=''' $Id: __init__.py,v 1.11 2000/10/25 08:57:45 rgbecker Exp $ ''' |
|
16 | 6 |
__doc__='' |
307 | 7 |
from reportlab.platypus.flowables import Flowable, Image, Macro, PageBreak, Preformatted, Spacer, XBox, \ |
367 | 8 |
CondPageBreak, KeepTogether |
284
eabeb5f4e851
Added UserDocTemplate class, and paragraph.getPlainText()
andy_robinson
parents:
253
diff
changeset
|
9 |
from reportlab.platypus.paragraph import Paragraph, cleanBlockQuotedText |
eabeb5f4e851
Added UserDocTemplate class, and paragraph.getPlainText()
andy_robinson
parents:
253
diff
changeset
|
10 |
from reportlab.platypus.paraparser import ParaFrag |
eabeb5f4e851
Added UserDocTemplate class, and paragraph.getPlainText()
andy_robinson
parents:
253
diff
changeset
|
11 |
from reportlab.platypus.tables import Table, TableStyle, CellStyle |
eabeb5f4e851
Added UserDocTemplate class, and paragraph.getPlainText()
andy_robinson
parents:
253
diff
changeset
|
12 |
from reportlab.platypus.frames import Frame |
eabeb5f4e851
Added UserDocTemplate class, and paragraph.getPlainText()
andy_robinson
parents:
253
diff
changeset
|
13 |
from reportlab.platypus.doctemplate import BaseDocTemplate, NextPageTemplate, PageTemplate, ActionFlowable, \ |
295
1f00bd112cb0
remove UserDocTemplate, but add Andy's hook methods
rgbecker
parents:
284
diff
changeset
|
14 |
SimpleDocTemplate, FrameBreak |
442 | 15 |
from xpreformatted import XPreformatted |