[CMF-checkins] CVS: Products/CMFCore - CMFCatalogAware.py:1.26
Julien Anguenot
ja at nuxeo.com
Fri Apr 22 12:15:40 EDT 2005
Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv1249
Modified Files:
CMFCatalogAware.py
Log Message:
trailing whitespaces
=== Products/CMFCore/CMFCatalogAware.py 1.25 => 1.26 ===
--- Products/CMFCore/CMFCatalogAware.py:1.25 Thu Apr 14 15:54:18 2005
+++ Products/CMFCore/CMFCatalogAware.py Fri Apr 22 12:15:40 2005
@@ -120,7 +120,7 @@
using something that is not an ObjectManager).
"""
items = []
-
+
# Call 'talkback' knowing that it is an opaque item.
# This will remain here as long as the discussion item does
# not implement ICallableOpaqueItem (backwards compatibility).
@@ -128,17 +128,17 @@
talkback = self.talkback
if talkback is not None:
items.append((talkback.id, talkback))
-
+
# Other opaque items than 'talkback' may have callable
# manage_after* and manage_before* hooks.
- # Loop over all attributes and add those to 'items'
+ # Loop over all attributes and add those to 'items'
# implementing 'ICallableOpaqueItem'.
self_base = aq_base(self)
for name in self_base.__dict__.keys():
obj = getattr(self_base, name)
if ICallableOpaqueItem.isImplementedBy(obj):
items.append((obj.getId(), obj))
-
+
return tuple(items)
security.declareProtected(AccessContentsInformation, 'opaqueIds')
More information about the CMF-checkins
mailing list