當前位置: 首頁>>代碼示例>>Python>>正文


Python IBrowserDefault.getDefaultPage方法代碼示例

本文整理匯總了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
開發者ID:collective,項目名稱:Solgema.NavigationPortlet,代碼行數:37,代碼來源:navigation.py


注:本文中的Products.CMFDynamicViewFTI.interfaces.IBrowserDefault.getDefaultPage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。