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