Skip to content

Commit

Permalink
Added To Do and make sure we do a multi build
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Mar 16, 2007
1 parent 0ad0ca4 commit 346b3d9
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
26 changes: 26 additions & 0 deletions src/z3c/rml/TODO.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
* Rewrite attribute and element system to use interfaces and schemas.

* Create a distribution using eggs.

* Finish compatibility work.

* Documentation generator.

* DTD generator.

* Fix <pluginFlowable> tag to the following form::

<pluginFlowable module="..." function="...">
<param name="color" type="Color">#FF0000</param>
...
</pluginFlowable>

* Add TOC

* Add chart legends

* Add symbols

* Implement form fields: push button, text field, select field

See reportlab.pdfbase.pdfform
1 change: 1 addition & 0 deletions src/z3c/rml/flowable.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def process(self):
flowables = [flowables]
self.parent.flow += list(flowables)


class Paragraph(Flowable):
klass = reportlab.platypus.Paragraph
args = ( attr.XMLContent(u''), attr.Style('style', 'para', 'Normal') )
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/rml/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,4 @@ def process(self, outputFile):
flowables = story.process()

doc._firstPageTemplateIndex = story.getFirstPageTemplateIndex(doc)
doc.build(flowables)
doc.multiBuild(flowables)

0 comments on commit 346b3d9

Please sign in to comment.