當前位置: 首頁>>代碼示例>>Python>>正文


Python TAG.font方法代碼示例

本文整理匯總了Python中gluon.html.TAG.font方法的典型用法代碼示例。如果您正苦於以下問題:Python TAG.font方法的具體用法?Python TAG.font怎麽用?Python TAG.font使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gluon.html.TAG的用法示例。


在下文中一共展示了TAG.font方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: table_template

# 需要導入模塊: from gluon.html import TAG [as 別名]
# 或者: from gluon.html.TAG import font [as 別名]
def table_template(table):
    from gluon.html import TR, TD, TABLE, TAG

    def FONT(*args, **kwargs):
        return TAG.font(*args, **kwargs)

    def types(field):
        f_type = field.type
        if not isinstance(f_type,str):
            return ' '
        elif f_type == 'string':
            return field.length
        elif f_type == 'id':
            return B('pk')
        elif f_type.startswith('reference') or \
                f_type.startswith('list:reference'):
            return B('fk')
        else:
            return ' '

    # This is horribe HTML but the only one graphiz understands
    rows = []
    cellpadding = 4
    color = "#000000"
    bgcolor = "#FFFFFF"
    face = "Helvetica"
    face_bold = "Helvetica Bold"
    border = 0

    rows.append(TR(TD(FONT(table, _face=face_bold, _color=bgcolor),
                           _colspan=3, _cellpadding=cellpadding,
                           _align="center", _bgcolor=color)))
    for row in db[table]:
        rows.append(TR(TD(FONT(row.name, _color=color, _face=face_bold),
                              _align="left", _cellpadding=cellpadding,
                              _border=border),
                       TD(FONT(row.type, _color=color, _face=face),
                               _align="left", _cellpadding=cellpadding,
                               _border=border),
                       TD(FONT(types(row), _color=color, _face=face),
                               _align="center", _cellpadding=cellpadding,
                               _border=border)))
    return "< %s >" % TABLE(*rows, **dict(_bgcolor=bgcolor, _border=1,
                                          _cellborder=0, _cellspacing=0)
                             ).xml() 
開發者ID:kwmcc,項目名稱:IDEal,代碼行數:47,代碼來源:appadmin.py

示例2: table_template

# 需要導入模塊: from gluon.html import TAG [as 別名]
# 或者: from gluon.html.TAG import font [as 別名]
def table_template(table):
    from gluon.html import TR, TD, TABLE, TAG

    def FONT(*args, **kwargs):
        return TAG.font(*args, **kwargs)

    def types(field):
        f_type = field.type
        if not isinstance(f_type,str):
            return ' '
        elif f_type == 'string':
            return field.length
        elif f_type == 'id':
            return B('pk')
        elif f_type.startswith('reference') or \
                f_type.startswith('list:reference'):
            return B('fk')
        else:
            return ' '

    def type_repr(field):
        result = field.type
        if 'reference' in field.type:
            result = field.type.replace('reference ', '--> ')
            if field.name.endswith('_id')  and field.name[:-3]==result[len('--> '):] :
                result = '--> '
        return result
        
    # This is horribe HTML but the only one graphiz understands
    rows = []
    cellpadding = 4
    color = "#000000"
    bgcolor = "#FFFFFF"
    face = "Helvetica"
    face_bold = "Helvetica Bold"
    border = 0

    rows.append(TR(TD(FONT(table, _face=face_bold, _color='blue'),  #  _size="20" doesn't work..
                           _colspan=3, _cellpadding=cellpadding,
                           _align="center", _bgcolor=bgcolor)))
    for row in db[table]:
        if is_interesting_field(  row.name +" "+ row.type +" "+ str(types(row)) ):
            rows.append(TR(TD(FONT(row.name, _color=color, _face=face_bold),
                                  _align="left", _cellpadding=cellpadding,
                                  _border=border),
                           TD(FONT(type_repr(row), _color=color, _face=face),
                                   _align="left", _cellpadding=cellpadding,
                                   _border=border),
                           TD(FONT(types(row), _color=color, _face=face),
                                   _align="center", _cellpadding=cellpadding,
                                   _border=border)))
    return "< %s >" % TABLE(*rows, **dict(_bgcolor=bgcolor, _border=1,
                                          _cellborder=0, _cellspacing=0)
                             ).xml() 
開發者ID:dz0,項目名稱:web2py_grand_helpers,代碼行數:56,代碼來源:plugin_dbgraph.py


注:本文中的gluon.html.TAG.font方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。