[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Formulator/Widgets/XUL - XULWidget.py:1.1.2.2

Stephan Richter srichter@cbu.edu
Mon, 4 Mar 2002 01:05:26 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Formulator/Widgets/XUL
In directory cvs.zope.org:/tmp/cvs-serv27951/Widgets/XUL

Modified Files:
      Tag: srichter-OFS_Formulator-branch
	XULWidget.py 
Log Message:
- Started implementation of CompositeWidget. Note that CompositeField or 
  CompositeValidator don't make sense in the Zope 3 Formulator.

ToDo

- Finish up CompositeWidget

- Write tests

- Write a tutorial on how to use Formualtor in Zope 3

- Start implementing Converters, which are objects that convert protocol 
  native data into a basic presentable Python fornat. Note, that in Zope 2 
  the Validator was responsible for that as well. --> This was decided upon
  by Steve A., Kapil K. and Stephan R. in the zope3-dev IRC channel.



=== Zope3/lib/python/Zope/App/Formulator/Widgets/XUL/XULWidget.py 1.1.2.1 => 1.1.2.2 ===
         return "%s>%s</%s>" % (apply(renderTag, (tag,), kw), contents, tag)
     else:
+        print apply(renderTag, (tag,), kw) + " />"
         return apply(renderTag, (tag,), kw) + " />"
-    
-
-
-
-
-
-