[Zope-Checkins] SVN: Zope/trunk/lib/python/Acquisition/ Actually move the README.txt that I added to the Acquisition egg earlier to

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78385: Actually move the README.txt that I added to the Acquisition egg earlier to the package itself and make it a doctest. Changed: A Zope/trunk/lib/python/Acquisition/README.txt U Zope/trunk/lib/python/Acquisition/tests.py -=- Copied:

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Products/Five/browser/providerexpression.py A viewlet needs to be __of__ the view (it expects its __parent__ to be the view,

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78390: A viewlet needs to be __of__ the view (it expects its __parent__ to be the view, not the context). Changed: U Zope/branches/philikon-aq/lib/python/Products/Five/browser/providerexpression.py -=- Modified:

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Products/Five/viewlet/manager.py Only wrap if there's __of__

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78392: Only wrap if there's __of__ Changed: U Zope/branches/philikon-aq/lib/python/Products/Five/viewlet/manager.py -=- Modified: Zope/branches/philikon-aq/lib/python/Products/Five/viewlet/manager.py

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Products/Five/browser/providerexpression.py Small refactoring: actually wrap in the provider in provider.__parent__, which

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78394: Small refactoring: actually wrap in the provider in provider.__parent__, which *usually* ends up being the view, unless the provider decides otherwise. Changed: U Zope/branches/philikon-aq/lib/python/Products/Five/browser/providerexpression.py -=-

[Zope-Checkins] SVN: Zope/tags/philikon-aq-checkpoint/ Tag a checkpoint before I start getting evil on this branch.

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78395: Tag a checkpoint before I start getting evil on this branch. Changed: A Zope/tags/philikon-aq-checkpoint/ -=- Copied: Zope/tags/philikon-aq-checkpoint (from rev 78394, Zope/branches/philikon-aq) ___

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/ Death to __of__!

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78398: Death to __of__! Changed: U Zope/branches/philikon-aq/lib/python/OFS/Traversable.py U Zope/branches/philikon-aq/lib/python/Products/Five/browser/metaconfigure.py U Zope/branches/philikon-aq/lib/python/Products/Five/browser/providerexpression.py

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Products/Five/browser/tests/test_pages.py Rip out test that tested the bogus behaviour of having self.context (where

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78399: Rip out test that tested the bogus behaviour of having self.context (where 'self' is a view) have an aq_chain that includes the view again. Naturally, this branch is all about ripping this out. Changed: U

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/AccessControl/ Use either obj.__parent__or aq_parent(obj) instead of obj.aq_parent.

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78401: Use either obj.__parent__or aq_parent(obj) instead of obj.aq_parent. Both are the canonical forms of getting to an object's parent now. Changed: U Zope/branches/philikon-aq/lib/python/AccessControl/ImplPython.py U

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Shared/DC/Scripts/Bindings.py Use the canonical form for getting to an object's innermost wrapper

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78403: Use the canonical form for getting to an object's innermost wrapper and an object's parent by usingn the aq_parent and aq_inner *functions*, not attributes. Changed: U Zope/branches/philikon-aq/lib/python/Shared/DC/Scripts/Bindings.py -=- Modified:

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Products/Five/browser/pagetemplatefile.py Remove bogus line. There actually *is* a proper options dict coming

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78404: Remove bogus line. There actually *is* a proper options dict coming from the base class. Changed: U Zope/branches/philikon-aq/lib/python/Products/Five/browser/pagetemplatefile.py -=- Modified:

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py There was a 'not' too much. Thanks Hanno.

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78405: There was a 'not' too much. Thanks Hanno. Changed: U Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py -=- Modified: Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py ===

[Zope-Checkins] SVN: Zope/branches/philikon-aq/lib/python/Acquisition/ Add a module-level aq_inContextOf function, along the lines of the

2007-07-27 Thread Philipp von Weitershausen
Log message for revision 78408: Add a module-level aq_inContextOf function, along the lines of the module-level aq_acquire, aq_inner, aq_parent, etc. functions. Changed: U Zope/branches/philikon-aq/lib/python/Acquisition/_Acquisition.c U