[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - form.py:1.9.16.2

Garrett Smith garrett at mojave-corp.com
Sat Feb 7 21:52:30 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv10944/src/zope/app/interfaces

Modified Files:
      Tag: ozzope-widgets-branch
	form.py 
Log Message:

Update to setup for widget interface creation.


=== Zope3/src/zope/app/interfaces/form.py 1.9.16.1 => 1.9.16.2 ===
--- Zope3/src/zope/app/interfaces/form.py:1.9.16.1	Sat Feb  7 21:11:57 2004
+++ Zope3/src/zope/app/interfaces/form.py	Sat Feb  7 21:52:28 2004
@@ -85,10 +85,6 @@
 class IWidget(IView):
     """Generically describes the behavior of a widget.
 
-    The widget defines a list of propertyNames, which describes
-    what properties of the widget are available to use for
-    constructing the widget render output.
-
     Note that this level must be still presentation independent.
     """
 
@@ -110,18 +106,6 @@
     visible = Attribute(
         """A flag indicating whether or not the widget is visible.""")
        
-    # XXX OZ might be able to delete this
-    propertyNames = Attribute(
-        """A list of attributes defined for the widget.""")
-
-    # XXX OZ might be able to delete this
-    def getProperty(name):
-        """Return the specified property value."""
-        
-    # XXX OZ might be able to delete this
-    def getValue(name):
-        """Deprecated - use getProperty instead."""
-
     def setRenderedValue(value):
         """Set the value to be rendered by the widget.
 




More information about the Zope3-Checkins mailing list