/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/platypus/ |
H A D | doctemplate.py | 343 flowables[0:0] = S 840 first = flowables[0] 869 n = len(flowables) 870 while i<n and flowables[i].getKeepWithNext() and _ktAllow(flowables[i]): i += 1 885 del flowables[:i] 886 flowables.insert(0,K) 902 f = flowables[0] 906 f = flowables[0] 907 del flowables[0] 1069 while len(flowables): [all …]
|
H A D | __init__.py | 7 from .flowables import *
|
H A D | multicol.py | 3 from .flowables import Flowable, _Container, _FindSplitterMixin, _listWrapOn
|
H A D | flowables.py | 691 def __init__(self,flowables,maxHeight=None): argument 701 if not flowables: 702 flowables = [self.NullActionFlowable()] 703 self._content = _flowableSublist(flowables) 2109 flowables, #the initial flowables argument 2125 if not isinstance(flowables,(list,tuple)): 2126 flowables = (flowables,) 2127 self._flowables = flowables 2159 flowables, #the initial flowables argument 2176 self._flowables = flowables
|
/dports/print/py-reportlab/reportlab-3.5.68/docs/reference/ |
H A D | reference.yml | 142 .getClassDoc reportlab.platypus.flowables Flowable 143 .getClassDoc reportlab.platypus.flowables XBox 145 .getClassDoc reportlab.platypus.flowables Image 146 .getClassDoc reportlab.platypus.flowables NullDraw 147 .getClassDoc reportlab.platypus.flowables Spacer 148 .getClassDoc reportlab.platypus.flowables UseUpSpace 149 .getClassDoc reportlab.platypus.flowables PageBreak 153 .getClassDoc reportlab.platypus.flowables Macro 154 .getClassDoc reportlab.platypus.flowables CallerMacro 156 .getClassDoc reportlab.platypus.flowables KeepInFrame [all …]
|
/dports/print/py-reportlab/reportlab-3.5.68/docs/source/ |
H A D | platypus.rst | 29 flowables section in Platypus 32 .. automodule:: reportlab.platypus.flowables
|
/dports/devel/py-pymisp/pymisp-2.4.128/pymisp/tools/ |
H A D | reportlab_generator.py | 1669 flowables = [] 1684 flowables.append(title) 1694 flowables.append(description) 1699 flowables.append(subtitle) 1703 flowables.append(PageBreak()) 1708 flowables += table_direct_attributes 1711 flowables.append(PageBreak()) 1715 flowables.append(event_objects_title) 1716 flowables += table_objects 1721 return flowables [all …]
|
/dports/print/py-reportlab/reportlab-3.5.68/tests/ |
H A D | test_platypus_programming.py | 16 from reportlab.platypus.flowables import DocPara, DocAssert 32 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile 55 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile
|
H A D | test_platypus_wrapping.py | 13 from reportlab.platypus.flowables import Flowable 28 from reportlab.platypus.flowables import Spacer
|
H A D | test_platypus_preformatted.py | 13 from reportlab.platypus.flowables import Flowable 28 from reportlab.platypus.flowables import Spacer, Preformatted
|
H A D | test_platypus_general.py | 560 def fillFrame(self,flowables): argument 562 while len(flowables)>0 and f is self.frame: 563 self.handle_flowable(flowables)
|
H A D | test_platypus_paragraphs.py | 14 from reportlab.platypus.flowables import Flowable, DocAssert 316 from reportlab.platypus.flowables import ParagraphAndImage, Image 373 from reportlab.platypus.flowables import ImageAndFlowables, Image 508 from reportlab.platypus.flowables import ImageAndFlowables, Image 752 flowables = [ 808 doc.build(flowables) 1232 from reportlab.platypus.flowables import AnchorFlowable 1335 from reportlab.platypus.flowables import AnchorFlowable
|
H A D | test_platypus_xref.py | 72 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile
|
H A D | test_platypus_leftright.py | 12 from reportlab.platypus.flowables import Flowable
|
H A D | test_platypus_pleaseturnover.py | 9 from reportlab.platypus.flowables import Flowable, PTOContainer, KeepInFrame
|
H A D | test_table_layout.py | 11 from reportlab.platypus.flowables import PageBreak
|
H A D | test_platypus_indents.py | 15 from reportlab.platypus.flowables import Flowable, PageBreak
|
H A D | test_charts_textlabels.py | 19 from reportlab.platypus.flowables import Spacer, PageBreak
|
H A D | test_platypus_toc.py | 24 from reportlab.platypus.flowables import Flowable, Spacer
|
/dports/textproc/py-xhtml2pdf/xhtml2pdf-0.2.5/xhtml2pdf/ |
H A D | document.py | 7 from reportlab.platypus.flowables import Spacer
|
/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/graphics/barcode/ |
H A D | code128.py | 425 from reportlab.platypus.flowables import KeepTogether
|
H A D | qr.py | 23 from reportlab.platypus.flowables import Flowable
|
H A D | test.py | 24 from reportlab.platypus.flowables import XBox, KeepTogether
|
/dports/finance/kraft/kraft-0.97/tools/ |
H A D | erml2pdf.py | 46 from reportlab.platypus.flowables import KeepTogether 619 list_style = platypus.flowables.ListStyle('Default') 679 class Illustration(platypus.flowables.Flowable):
|
/dports/print/py-reportlab/reportlab-3.5.68/ |
H A D | CHANGES.md | 504 …s now have support for automatic flowables at the top of frame. story support via the class report… 551 * `flowables.py`: fix ImageAndFlowables so it avoids testing negative availableWidth 779 * flowables.py: fix special case of doctemplate with no frames 1035 Support for wrapping arbitrary sequence of flowables around an image, 1036 using reportlab.platypus.flowables.ImageAndFlowables (similar to
|