[Zope3-checkins] CVS: Zope3/src/zope/app/browser/container -
adding.py:1.14.2.2
Stephan Richter
srichter at cosmos.phy.tufts.edu
Fri Aug 15 17:25:19 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/browser/container
In directory cvs.zope.org:/tmp/cvs-serv9687/browser/container
Modified Files:
Tag: dreamcatcher-ttwschema-branch
adding.py
Log Message:
Fixed infinite recursion bug that occurred for IAdding menus.
All of the new components and features seem to work now. It's time to write
the last tests, so we can merge the branch into the head.
=== Zope3/src/zope/app/browser/container/adding.py 1.14.2.1 => 1.14.2.2 ===
--- Zope3/src/zope/app/browser/container/adding.py:1.14.2.1 Thu Aug 14 18:46:24 2003
+++ Zope3/src/zope/app/browser/container/adding.py Fri Aug 15 16:24:45 2003
@@ -79,7 +79,7 @@
factory = zapi.queryFactory(self.context, name)
if factory is None:
- return zapi.ContextSuper(Adding, self).publishTraverse(
+ return zapi.ContextSuper(BasicAdding, self).publishTraverse(
request, name)
return factory
More information about the Zope3-Checkins
mailing list