Example #1
0
def getComponentType(typeName):
    return getCached('componentType', _getComponentType, typeName)
Example #2
0
def getComponents(page, column):
    return getCached('components', _getComponents, page, column)
Example #3
0
def getUser(googleUser, isAdmin):
    return getCached('user', _getUser, googleUser, isAdmin)
Example #4
0
def getRole(roleName):
    return getCached('role', _getRole, roleName)
Example #5
0
def getGuestUser():
    return getCached('user_guest', _getGuestUser)
Example #6
0
def getSystemUser():
    return getCached('user_system', _getSystemUser)
Example #7
0
def getRessourceType(name):
    return getCached('ressourceType', _getRessourceType, name)
Example #8
0
def getPageTemplate(templateName):
    return getCached('pageTemplate', _getPageTemplate, templateName)
Example #9
0
def getPage(currentSpace, pageUrl):
    return getCached('page', _getPage, currentSpace, pageUrl)
Example #10
0
def getTheme(themeName):
    return getCached('theme', _getTheme, themeName)
Example #11
0
def getSpace(spaceName):
    return getCached('space', _getSpace, spaceName)