2024-07-06 15:26:01 +02:00
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 " )
dict_env [ ' frozen_rougail.dyn {{ suffix }}.var ' ] = " { % i f suffix == ' val2 ' % } \n disabled \n { % e ndif % } \n "
dict_env [ ' frozen_rougail.dyn {{ suffix }}.family.var ' ] = " { % i f suffix == ' val2 ' % } \n disabled \n { % e ndif % } \n "
dict_env [ ' hidden_rougail.dyn {{ suffix }} ' ] = " { % i f suffix == ' val2 ' % } \n disabled \n { % e ndif % } \n "
2024-08-05 16:24:26 +02:00
option_3 = StrOption ( name = " var " , doc = " a variable " , properties = frozenset ( { " basic " , " force_default_on_freeze " , " mandatory " , Calculation ( func [ ' jinja_to_property ' ] , Params ( ( ParamValue ( " frozen " ) ) , kwargs = { ' __internal_jinja ' : ParamValue ( " frozen_rougail.dyn {{ suffix }}.var " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' suffix ' : ParamSuffix ( ) , ' when ' : ParamValue ( True ) , ' inverse ' : ParamValue ( False ) } ) , help_function = func [ ' jinja_to_property_help ' ] ) } ) , informations = { ' type ' : ' string ' } )
option_5 = StrOption ( name = " var " , doc = " a new variable " , properties = frozenset ( { " basic " , " force_default_on_freeze " , " mandatory " , Calculation ( func [ ' jinja_to_property ' ] , Params ( ( ParamValue ( " frozen " ) ) , kwargs = { ' __internal_jinja ' : ParamValue ( " frozen_rougail.dyn {{ suffix }}.family.var " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' suffix ' : ParamSuffix ( ) , ' when ' : ParamValue ( True ) , ' inverse ' : ParamValue ( False ) } ) , help_function = func [ ' jinja_to_property_help ' ] ) } ) , informations = { ' type ' : ' string ' } )
2024-07-06 15:26:01 +02:00
optiondescription_4 = OptionDescription ( name = " family " , doc = " a family " , children = [ option_5 ] , properties = frozenset ( { " basic " } ) )
2024-08-05 16:24:26 +02:00
optiondescription_2 = ConvertDynOptionDescription ( name = " dyn {{ suffix }} " , doc = " a dynamic family " , suffixes = [ " val1 " , " val2 " ] , children = [ option_3 , optiondescription_4 ] , properties = frozenset ( { " basic " , Calculation ( func [ ' jinja_to_property ' ] , Params ( ( ParamValue ( " hidden " ) ) , kwargs = { ' __internal_jinja ' : ParamValue ( " hidden_rougail.dyn {{ suffix }} " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' suffix ' : ParamSuffix ( ) , ' when ' : ParamValue ( True ) , ' inverse ' : ParamValue ( False ) } ) , help_function = func [ ' jinja_to_property_help ' ] ) } ) )
2024-07-06 15:26:01 +02:00
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " Rougail " , children = [ optiondescription_2 ] , properties = frozenset ( { " basic " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )