当前位置: 首页>>代码示例>>Python>>正文


Python html.DEFAULT_PASSWORD_DISPLAY属性代码示例

本文整理汇总了Python中gluon.html.DEFAULT_PASSWORD_DISPLAY属性的典型用法代码示例。如果您正苦于以下问题:Python html.DEFAULT_PASSWORD_DISPLAY属性的具体用法?Python html.DEFAULT_PASSWORD_DISPLAY怎么用?Python html.DEFAULT_PASSWORD_DISPLAY使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在gluon.html的用法示例。


在下文中一共展示了html.DEFAULT_PASSWORD_DISPLAY属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: widget

# 需要导入模块: from gluon import html [as 别名]
# 或者: from gluon.html import DEFAULT_PASSWORD_DISPLAY [as 别名]
def widget(cls, field, value, **attributes):
        """
        Generates a INPUT password tag.
        If a value is present it will be shown as a number of '*', not related
        to the length of the actual value.

        see also: `FormWidget.widget`
        """
        # detect if attached a IS_STRONG with entropy
        default = dict(
            _type='password',
            _value=(value and DEFAULT_PASSWORD_DISPLAY) or '',
        )
        attr = cls._attributes(field, default, **attributes)

        # deal with entropy check!
        requires = field.requires
        if not isinstance(requires, (list, tuple)):
            requires = [requires]
        is_strong = [r for r in requires if isinstance(r, IS_STRONG)]
        if is_strong:
            attr['_data-w2p_entropy'] = is_strong[0].entropy if is_strong[0].entropy else "null"
        # end entropy check
        output = INPUT(**attr)
        return output 
开发者ID:HackPucBemobi,项目名称:touch-pay-client,代码行数:27,代码来源:sqlhtml.py


注:本文中的gluon.html.DEFAULT_PASSWORD_DISPLAY属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。