12 lines
1 KiB
Python
12 lines
1 KiB
Python
|
from tiramisu import *
|
||
|
from tiramisu.setting import ALLOWED_LEADER_PROPERTIES
|
||
|
from rougail.tiramisu import func, dict_env, load_functions, ConvertDynOptionDescription
|
||
|
load_functions('tests/dictionaries/../eosfunc/test.py')
|
||
|
ALLOWED_LEADER_PROPERTIES.add("basic")
|
||
|
ALLOWED_LEADER_PROPERTIES.add("standard")
|
||
|
ALLOWED_LEADER_PROPERTIES.add("advanced")
|
||
|
option_2 = DomainnameOption(name="var1", doc="a first variable", multi=True, type="domainname", allow_ip=True, properties=frozenset({"basic", "mandatory", "notempty"}), informations={'type': 'domainname'})
|
||
|
option_3 = DomainnameOption(name="var2", doc="a second variable", multi=True, default=Calculation(func['calc_value'], Params((ParamOption(option_2)))), type="domainname", allow_ip=True, properties=frozenset({"mandatory", "notempty", "standard"}), informations={'type': 'domainname'})
|
||
|
optiondescription_1 = OptionDescription(name="rougail", doc="Rougail", children=[option_2, option_3], properties=frozenset({"basic"}))
|
||
|
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[optiondescription_1])
|