예제 #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)