2024-07-06 15:26:01 +02:00
|
|
|
from tiramisu import *
|
|
|
|
from tiramisu.setting import ALLOWED_LEADER_PROPERTIES
|
2024-08-29 08:32:08 +02:00
|
|
|
from re import compile as re_compile
|
2024-07-06 15:26:01 +02:00
|
|
|
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")
|
|
|
|
dict_env['choices_var'] = "{% for n in trange(0, 10) %}\n{{ n }}\n{% endfor %}\n"
|
|
|
|
option_1 = ChoiceOption(name="var", doc="a variable", values=Calculation(func['jinja_to_function'], Params((), kwargs={'__internal_jinja': ParamValue("choices_var"), '__internal_type': ParamValue("number"), '__internal_multi': ParamValue(True), 'n': ParamValue({}), 'trange': ParamValue({})})), default=9, properties=frozenset({"mandatory", "standard"}), informations={'type': 'choice'})
|
|
|
|
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1])
|