[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/index - field.py:1.5
Anthony Baxter
anthony@interlink.com.au
Mon, 14 Jul 2003 05:56:09 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/index
In directory cvs.zope.org:/tmp/cvs-serv6134/zope/app/interfaces/index
Modified Files:
field.py
Log Message:
reword description.
=== Zope3/src/zope/app/interfaces/index/field.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/interfaces/index/field.py:1.4 Sat Jul 12 23:36:03 2003
+++ Zope3/src/zope/app/interfaces/index/field.py Mon Jul 14 05:56:04 2003
@@ -25,14 +25,13 @@
"""Interface for creating a FieldIndex in a catalog from the ZMI."""
interface = InterfaceField(
- title=u"Interface",
- description=u"Interface to adapts objects to before"
- u" indexing",
- required=False)
+ title=u"Interface",
+ description=u"Objects will be adapted to this interface",
+ required=False)
field_name = BytesLine(
- title=u"Field Name",
- description=u"Name of the field to index")
+ title=u"Field Name",
+ description=u"Name of the field to index")
class IUIFieldIndex(IUIFieldCatalogIndex):
"""Interface for creating a FieldIndex from the ZMI (not in a catalog)."""