[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - query.py:1.5
Steve Alexander
steve@cat-box.net
Mon, 6 Jan 2003 14:13:19 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv4341/src/zope/app/interfaces/services
Modified Files:
query.py
Log Message:
Made the input and output interfaces of a query configuration permit
None as a value.
=== Zope3/src/zope/app/interfaces/services/query.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/interfaces/services/query.py:1.4 Sun Jan 5 14:01:49 2003
+++ Zope3/src/zope/app/interfaces/services/query.py Mon Jan 6 14:13:14 2003
@@ -55,8 +55,10 @@
class IQueryConfigurationInfo(INamedConfigurationInfo):
permission = PermissionField(title=u'Required permission')
- inputInterfaces = InterfacesField(title=u'Input interfaces')
- outputInterfaces = InterfacesField(title=u'Output interfaces')
+ inputInterfaces = InterfacesField(title=u'Input interfaces',
+ basetype=None)
+ outputInterfaces = InterfacesField(title=u'Output interfaces',
+ basetype=None)
class IQueryConfiguration(IQueryConfigurationInfo, INamedConfiguration):
pass