[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Container - IOrderedContainer.py:1.3
Jim Fulton
jim@zope.com
Fri, 4 Oct 2002 13:46:50 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Container
In directory cvs.zope.org:/tmp/cvs-serv14420
Modified Files:
IOrderedContainer.py
Log Message:
Added aliases to the read and write interfaces to make references in
zcml fit on one line. :/
=== Zope3/lib/python/Zope/App/OFS/Container/IOrderedContainer.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/OFS/Container/IOrderedContainer.py:1.2 Mon Jun 10 19:27:55 2002
+++ Zope3/lib/python/Zope/App/OFS/Container/IOrderedContainer.py Fri Oct 4 13:46:49 2002
@@ -23,6 +23,8 @@
def getObjectPosition(id):
"""Get the position of the object having the id.
"""
+
+Read = IReadOrderedContainer
class IWriteOrderedContainer(Interface):
@@ -51,6 +53,7 @@
"""Move the specified objects (via ids) to the bottom.
"""
+Write = IWriteOrderedContainer
class IOrderedContainer(IReadOrderedContainer, IWriteOrderedContainer):
"""This interface adds functionality to containers that will allow