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