[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS - ofs.zcml:1.1.2.8
Steve Alexander
steve@cat-box.net
Wed, 20 Mar 2002 18:26:28 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS
In directory cvs.zope.org:/tmp/cvs-serv16426/lib/python/Zope/App/OFS
Modified Files:
Tag: Zope-3x-branch
ofs.zcml
Log Message:
re-enabled ContainerTraversable as the ITraversable adapter for
IReadContainers.
This is the traversal policy that applies to things like TALES
path expressions. The policy implemented is to search attributes then
subobjects of the container. However, you can explicitly say whether
you want attributes or subobjects by saying foo;method or foo;content,
respectively.
=== Zope3/lib/python/Zope/App/OFS/ofs.zcml 1.1.2.7 => 1.1.2.8 ===
factory="Zope.App.OFS.Container.ContainerTraverser." />
-<!--
+
<adapter factory="Zope.App.OFS.Container.ContainerTraversable."
provides="Zope.App.Traversing.ITraversable."
for="Zope.App.OFS.Container.IContainer.IReadContainer." />
--->
+
</zopeConfigure>