本文整理汇总了Python中Components.config.ConfigSubsection.blacklist方法的典型用法代码示例。如果您正苦于以下问题:Python ConfigSubsection.blacklist方法的具体用法?Python ConfigSubsection.blacklist怎么用?Python ConfigSubsection.blacklist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Components.config.ConfigSubsection
的用法示例。
在下文中一共展示了ConfigSubsection.blacklist方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: addHost
# 需要导入模块: from Components.config import ConfigSubsection [as 别名]
# 或者: from Components.config.ConfigSubsection import blacklist [as 别名]
def addHost(name):
s = ConfigSubsection()
s.name = ConfigText(default=name, fixed_size=False)
s.enable_incoming = ConfigYesNo(default=False)
s.enable_outgoing = ConfigYesNo(default=False)
s.address = ConfigText(fixed_size=False)
s.password = ConfigPassword()
s.protocol = ConfigSelection(
default="growl",
choices=[
("growl", "Growl"),
("gntp", "GNTP"),
("snarl", "Snarl"),
("prowl", "Prowl"),
("syslog", "Syslog UDP"),
],
)
s.level = ConfigSelection(
default="-1",
choices=[
("-1", _("Low (Yes/No)")),
("0", _("Normal (Information)")),
("1", _("High (Warning)")),
("2", _("Highest (Emergency)")),
],
)
s.blacklist = ConfigSet(choices=[])
config.plugins.growlee.hosts.append(s)
return s
示例2: ConfigPassword
# 需要导入模块: from Components.config import ConfigSubsection [as 别名]
# 或者: from Components.config.ConfigSubsection import blacklist [as 别名]
growlee.password = ConfigPassword()
password = growlee.password.value
growlee.prowl_api_key = ConfigText()
growlee.protocol = ConfigSelection(
default="growl", choices=[("growl", "Growl"), ("snarl", "Snarl"), ("prowl", "Prowl")]
)
growlee.level = ConfigSelection(
default="-1",
choices=[
("-1", _("Low (Yes/No)")),
("0", _("Normal (Information)")),
("1", _("High (Warning)")),
("2", _("Highest (Emergency)")),
],
)
growlee.blacklist = ConfigSet(choices=[])
if growlee.protocol.value == "prowl":
password = growlee.prowl_api_key.value
s = addHost(_("Converted connection"))
s.enable_incoming.value = growlee.enable_incoming.value
s.enable_outgoing.value = growlee.enable_outgoing.value
s.address.value = growlee.address.value
s.password.value = password
s.protocol.value = growlee.protocol.value
s.level.value = growlee.level.value
s.blacklist.value = growlee.blacklist.value
growlee.enable_incoming.value = False
growlee.enable_outgoing.value = False
growlee.address.value = ""