[Zope3-checkins]
SVN: Zope3/branches/jim-index/src/zope/app/security/_protections.zcml
Added security declaration for BTree iterators
Jim Fulton
jim at zope.com
Wed Aug 18 15:19:12 EDT 2004
Log message for revision 27175:
Added security declaration for BTree iterators
Changed:
U Zope3/branches/jim-index/src/zope/app/security/_protections.zcml
-=-
Modified: Zope3/branches/jim-index/src/zope/app/security/_protections.zcml
===================================================================
--- Zope3/branches/jim-index/src/zope/app/security/_protections.zcml 2004-08-18 19:18:30 UTC (rev 27174)
+++ Zope3/branches/jim-index/src/zope/app/security/_protections.zcml 2004-08-18 19:19:11 UTC (rev 27175)
@@ -20,7 +20,8 @@
keys maxKey minKey" />
</content>
<content class="BTrees.IIBTree.IITreeIterator">
- <allow attributes="__iter__ __str__ __getitem__ __len__ __contains__" />
+ <allow attributes="__iter__ __str__ __getitem__ __len__
+ __contains__ next" />
</content>
<!-- ===================================================================== -->
@@ -40,7 +41,8 @@
keys maxKey minKey" />
</content>
<content class="BTrees.IOBTree.IOTreeIterator">
- <allow attributes="__iter__ __str__ __getitem__ __len__ __contains__" />
+ <allow attributes="__iter__ __str__ __getitem__ __len__
+ __contains__ next" />
</content>
<!-- ===================================================================== -->
@@ -60,7 +62,8 @@
keys maxKey minKey" />
</content>
<content class="BTrees.OIBTree.OITreeIterator">
- <allow attributes="__iter__ __str__ __getitem__ __len__ __contains__" />
+ <allow attributes="__iter__ __str__ __getitem__ __len__
+ __contains__ next" />
</content>
<!-- ===================================================================== -->
@@ -80,7 +83,8 @@
keys maxKey minKey" />
</content>
<content class="BTrees.OOBTree.OOTreeIterator">
- <allow attributes="__iter__ __str__ __getitem__ __len__ __contains__" />
+ <allow attributes="__iter__ __str__ __getitem__ __len__
+ __contains__ next" />
</content>
<!-- ===================================================================== -->
More information about the Zope3-Checkins
mailing list