本文整理汇总了Python中Products.CMFDynamicViewFTI.interfaces.IBrowserDefault.getDefaultPage方法的典型用法代码示例。如果您正苦于以下问题:Python IBrowserDefault.getDefaultPage方法的具体用法?Python IBrowserDefault.getDefaultPage怎么用?Python IBrowserDefault.getDefaultPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Products.CMFDynamicViewFTI.interfaces.IBrowserDefault
的用法示例。
在下文中一共展示了IBrowserDefault.getDefaultPage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getRootPath
# 需要导入模块: from Products.CMFDynamicViewFTI.interfaces import IBrowserDefault [as 别名]
# 或者: from Products.CMFDynamicViewFTI.interfaces.IBrowserDefault import getDefaultPage [as 别名]
def getRootPath(context, currentFolderOnly, topLevel, root):
"""Helper function to calculate the real root path
"""
context = aq_inner(context)
if currentFolderOnly:
folderish = getattr(aq_base(context), 'isPrincipiaFolderish', False) and not INonStructuralFolder.providedBy(context)
parent = aq_parent(context)
is_default_page = False
browser_default = IBrowserDefault(parent, None)
if browser_default is not None:
is_default_page = (browser_default.getDefaultPage() == context.getId())
if not folderish:
return '/'.join(parent.getPhysicalPath())
else:
return '/'.join(context.getPhysicalPath())
rootPath = getNavigationRoot(context, relativeRoot=root)
# Adjust for topLevel
if topLevel > 0:
contextPath = '/'.join(context.getPhysicalPath())
if not contextPath.startswith(rootPath):
return None
contextSubPathElements = contextPath[len(rootPath)+1:]
if contextSubPathElements:
contextSubPathElements = contextSubPathElements.split('/')
if len(contextSubPathElements) < topLevel:
return None
rootPath = rootPath + '/' + '/'.join(contextSubPathElements[:topLevel])
else:
return None
return rootPath