本文整理匯總了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