[Checkins] SVN: z3c.rml/trunk/src/z3c/rml/ Added To Do and make sure we do a multi build

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Mar 16 09:35:05 EDT 2007


Log message for revision 73216:
  Added To Do and make sure we do a multi build
  

Changed:
  A   z3c.rml/trunk/src/z3c/rml/TODO.txt
  U   z3c.rml/trunk/src/z3c/rml/flowable.py
  U   z3c.rml/trunk/src/z3c/rml/template.py

-=-
Added: z3c.rml/trunk/src/z3c/rml/TODO.txt
===================================================================
--- z3c.rml/trunk/src/z3c/rml/TODO.txt	2007-03-16 08:55:04 UTC (rev 73215)
+++ z3c.rml/trunk/src/z3c/rml/TODO.txt	2007-03-16 13:35:02 UTC (rev 73216)
@@ -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


Property changes on: z3c.rml/trunk/src/z3c/rml/TODO.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: z3c.rml/trunk/src/z3c/rml/flowable.py
===================================================================
--- z3c.rml/trunk/src/z3c/rml/flowable.py	2007-03-16 08:55:04 UTC (rev 73215)
+++ z3c.rml/trunk/src/z3c/rml/flowable.py	2007-03-16 13:35:02 UTC (rev 73216)
@@ -79,6 +79,7 @@
             flowables = [flowables]
         self.parent.flow += list(flowables)
 
+
 class Paragraph(Flowable):
     klass = reportlab.platypus.Paragraph
     args = ( attr.XMLContent(u''), attr.Style('style', 'para', 'Normal') )

Modified: z3c.rml/trunk/src/z3c/rml/template.py
===================================================================
--- z3c.rml/trunk/src/z3c/rml/template.py	2007-03-16 08:55:04 UTC (rev 73215)
+++ z3c.rml/trunk/src/z3c/rml/template.py	2007-03-16 13:35:02 UTC (rev 73216)
@@ -141,4 +141,4 @@
         flowables = story.process()
 
         doc._firstPageTemplateIndex = story.getFirstPageTemplateIndex(doc)
-        doc.build(flowables)
+        doc.multiBuild(flowables)



More information about the Checkins mailing list