예제 #1
0
def format_news(news):
    t = format_object(news, VISIBLE)
    return t
예제 #2
0
def format_user(user):
    s = format_object(user, VISIBLE)
    return s
예제 #3
0
def format_team(team):
    t = format_object(team, VISIBLE)
    return t
예제 #4
0
파일: checks.py 프로젝트: dingcycle/depc
def format_check(check):
    s = format_object(check, VISIBLE)
    return s
예제 #5
0
def format_variable(source):
    visible = list(VISIBLE)
    s = format_object(source, visible)
    return s
예제 #6
0
def format_source(source, config=False):
    visible = list(VISIBLE)
    if config:
        visible.append("configuration")
    s = format_object(source, visible)
    return s
예제 #7
0
파일: rules.py 프로젝트: dingcycle/depc
def format_rule(rule):
    s = format_object(rule, VISIBLE)
    return s