2025-01-02 21:02:44 +01:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
from re import compile as re_compile
from rougail . tiramisu import func , dict_env , load_functions , ConvertDynOptionDescription
load_functions ( ' ../rougail-tests/funcs/test.py ' )
try :
groups . namespace
except :
groups . addgroup ( ' namespace ' )
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
2025-04-27 16:35:13 +02:00
option_4 = StrOption ( name = " variable " , doc = " a variable " , default = " value in extra " , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/00_9extra_ouside/extra/00-base.yml ' ] , ' type ' : ' string ' } )
option_2 = StrOption ( name = " variable " , doc = " a variable " , default = Calculation ( func [ ' calc_value ' ] , Params ( ( ParamOption ( option_4 ) ) ) ) , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/00_9extra_ouside/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_2 ] , properties = frozenset ( { " standard " } ) , informations = { ' ymlfiles ' : [ ' ' ] } )
optiondescription_3 = OptionDescription ( name = " extra " , doc = " extra " , group_type = groups . namespace , children = [ option_4 ] , properties = frozenset ( { " standard " } ) , informations = { ' ymlfiles ' : [ ' ' ] } )
2025-01-02 21:02:44 +01:00
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 , optiondescription_3 ] )