[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/form/browser/interfaces.py
Added missing attribute to interface definition.
Benji York
benji at zope.com
Fri Feb 4 12:10:49 EST 2005
Log message for revision 29035:
Added missing attribute to interface definition.
Changed:
U Zope3/trunk/src/zope/app/form/browser/interfaces.py
-=-
Modified: Zope3/trunk/src/zope/app/form/browser/interfaces.py
===================================================================
--- Zope3/trunk/src/zope/app/form/browser/interfaces.py 2005-02-04 14:30:16 UTC (rev 29034)
+++ Zope3/trunk/src/zope/app/form/browser/interfaces.py 2005-02-04 17:10:49 UTC (rev 29035)
@@ -18,7 +18,7 @@
__docformat__ = 'restructuredtext'
from zope.interface import Interface
-from zope.schema import TextLine, Bool
+from zope.schema import TextLine, Bool, Field
from zope.app.form.interfaces import IWidget, IInputWidget
@@ -176,6 +176,10 @@
class ISourceQueryView(Interface):
"""View support for querying non-iterable sources
"""
+
+ context = Field(
+ title=u'Context',
+ description=u'Context of the view.')
def render(name):
"""Return a rendering of the search form elements
More information about the Zope3-Checkins
mailing list