[Zope3-checkins] CVS: Zope3/src/zope/app/location -
interfaces.py:1.2
Stephan Richter
srichter at cosmos.phy.tufts.edu
Mon Apr 26 19:15:26 EDT 2004
Update of /cvs-repository/Zope3/src/zope/app/location
In directory cvs.zope.org:/tmp/cvs-serv905/src/zope/app/location
Modified Files:
interfaces.py
Log Message:
Update field initializations to reflect API changes.
=== Zope3/src/zope/app/location/interfaces.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/location/interfaces.py:1.1 Tue Mar 2 12:51:52 2004
+++ Zope3/src/zope/app/location/interfaces.py Mon Apr 26 19:14:56 2004
@@ -11,23 +11,20 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Location framework
+"""Location framework interfaces
$Id$
"""
-
from zope.interface import Interface, Attribute
from zope import schema
class ILocation(Interface):
- """Objects that have a structural location
- """
+ """Objects that have a structural location"""
__parent__ = Attribute("The parent in the location hierarchy")
__name__ = schema.TextLine(
- __doc__=
- """The name within the parent
-
- The parent can be traversed with this name to get the object.
- """)
+ title=u"The name within the parent",
+ description=u"The parent can be traversed with this name to "
+ u"get the object."
+ )
More information about the Zope3-Checkins
mailing list