本文整理汇总了Python中Products.CMFCore.PortalFolder.PortalFolderBase.objectIds方法的典型用法代码示例。如果您正苦于以下问题:Python PortalFolderBase.objectIds方法的具体用法?Python PortalFolderBase.objectIds怎么用?Python PortalFolderBase.objectIds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Products.CMFCore.PortalFolder.PortalFolderBase
的用法示例。
在下文中一共展示了PortalFolderBase.objectIds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _catalogRefs
# 需要导入模块: from Products.CMFCore.PortalFolder import PortalFolderBase [as 别名]
# 或者: from Products.CMFCore.PortalFolder.PortalFolderBase import objectIds [as 别名]
def _catalogRefs(self, aq, uc=None, rc=None):
ruleset.RLMWithBrains._catalogRefs(self,aq,uc,rc)
# Use the PortalFolderBase implementation to avoid the false
# result from a bogus inheritence of SimpleItem
names = PortalFolderBase.objectIds(self)
for name in names:
if not shasattr(self, name):
break
obj=getattr(self,name)
if obj:
#import pdb;pdb.set_trace()
if not uc:
uc = getToolByName(aq, config.UID_CATALOG)
if not rc:
rc = getToolByName(aq, config.REFERENCE_CATALOG)
url = getRelURL(uc, obj.getPhysicalPath())
uc.catalog_object(obj, url)
#rc.catalog_object(obj, url)
obj._catalogRefs(uc, uc, rc)