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