rougail.output_json 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rougail_output_json-1.0.0/CHANGELOG.md +51 -0
- rougail_output_json-1.0.0/LICENSE +165 -0
- rougail_output_json-1.0.0/PKG-INFO +42 -0
- rougail_output_json-1.0.0/README.fr.md +21 -0
- rougail_output_json-1.0.0/README.md +21 -0
- rougail_output_json-1.0.0/locale/fr/LC_MESSAGES/rougail_output_json.po +95 -0
- rougail_output_json-1.0.0/locale/rougail_output_json.pot +26 -0
- rougail_output_json-1.0.0/pyproject.toml +42 -0
- rougail_output_json-1.0.0/src/rougail/output_json/__init__.py +176 -0
- rougail_output_json-1.0.0/src/rougail/output_json/__version__.py +1 -0
- rougail_output_json-1.0.0/src/rougail/output_json/config.py +34 -0
- rougail_output_json-1.0.0/src/rougail/output_json/i18n.py +26 -0
- rougail_output_json-1.0.0/src/rougail/output_json/locale/fr/LC_MESSAGES/rougail_output_json.mo +0 -0
- rougail_output_json-1.0.0/tests/owner/file.yml +10 -0
- rougail_output_json-1.0.0/tests/owner-results/default.json +5 -0
- rougail_output_json-1.0.0/tests/owner-results/new_owner.json +5 -0
- rougail_output_json-1.0.0/tests/owner-results/user.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_0empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/00_0no_variable.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/00_0no_variable_default_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/00_0no_variable_remove_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/00_0version_underscore.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_1empty_variable.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_multi.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_params_permissive.json +9 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable_description.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable_description_multi_line.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable_transitive.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/00_4load_subfolder.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_5load_notype.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_6boolean.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_6boolean_no_mandatory.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_6choice.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_6choice_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_6choice_link.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_6choice_variable.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_6choice_variable_link.json +9 -0
- rougail_output_json-1.0.0/tests/results/test/00_6choice_variable_link2.json +11 -0
- rougail_output_json-1.0.0/tests/results/test/00_6custom.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_6domainname.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_6domainname_params.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_6float.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_6integer.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_6ip.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_6network.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_6number.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_6port.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_6regexp.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_6regexp_link.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_6secret.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_6secret_param.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_6string.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/00_7choice_quote.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_7help.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_7help_quote.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_7help_sup.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_7value_doublequote.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_7value_doublequote2.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_7value_doublequote3.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_7value_quote.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_8calculation_information.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_8test.json +11 -0
- rougail_output_json-1.0.0/tests/results/test/00_9choice_variable_multi.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/00_9choice_variables.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_information.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_information_other_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_multi_optional.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_multi_optional2.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_multi_optional_default.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_optional.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_optional_exists.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_param_optional.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_information_other_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_information_other_variable2.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_integer.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/00_9default_number.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/01_6boolean_multi.json +26 -0
- rougail_output_json-1.0.0/tests/results/test/01_6custom_multi.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/01_6float_multi.json +42 -0
- rougail_output_json-1.0.0/tests/results/test/01_6integer_multi.json +42 -0
- rougail_output_json-1.0.0/tests/results/test/01_6integer_multi_mandatory.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/01_6string_empty.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/01_6string_multi.json +42 -0
- rougail_output_json-1.0.0/tests/results/test/01_6string_multi_length.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/01_7value_multi_doublequote.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/01_7value_multi_doublequote2.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/01_7value_multi_quote.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/01_8calculation_information_multi.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/01_9choice_variable_multi.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/01_9choice_variable_optional.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/02_0tags.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_0type_param.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_0type_param_integer.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_1auto_save.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_1auto_save_and_calculated.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_1auto_save_and_calculated_hidden.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_1auto_save_and_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_3.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_4.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_5.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_6.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_1jinja_and_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_boolean.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_optional.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_optional_default.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable10.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable11.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable2.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable3.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable4.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable5.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable6.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable7.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable8.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable9.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_multi.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive_2.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive_3.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive_4.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators_differ.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators_multi.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators_multi2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators_multi3.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators_warnings.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/04_5validators_warnings_all.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/05_0multi_not_uniq.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/05_0multi_uniq.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/12_1auto_save_expert.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_0redefine_description.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_2family_redefine_calculation.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/16_2family_redefine_disabled.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/16_3family_empty_at_ends.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/16_5exists_nonexists.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/16_5exists_redefine.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_choice.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_default.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_default_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_family.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_help.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_multi.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/16_5redefine_remove_disable_calculation.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/16_5test_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/16_6choice_redefine.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/16_6exists_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/16_6exists_redefine_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/16exists_exists.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/17_5redefine_leadership.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/20_0empty_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/20_0family_append.json +6 -0
- rougail_output_json-1.0.0/tests/results/test/20_0family_underscore.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/20_0multi_family.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/20_0multi_family_basic.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/20_0multi_family_expert.json +7 -0
- rougail_output_json-1.0.0/tests/results/test/20_0multi_family_order.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/20_0validators_differ_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/20_1empty_subfamily.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/20_2family_looks_like_dynamic.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/20_2family_looks_like_variable.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/20_7help_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/20_9default_information_parent.json +6 -0
- rougail_output_json-1.0.0/tests/results/test/20_9family_absolute.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/24_0family_hidden_condition_sub_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/24_0family_hidden_condition_variable_sub_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/24_0family_hidden_param_condition_sub_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/24_0family_mandatory_condition.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/24_0family_mandatory_condition_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test/24_7validators_variable_optional.json +6 -0
- rougail_output_json-1.0.0/tests/results/test/24_family_disabled_var_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership.json +19 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_diff_name.json +19 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_follower_default_calculation.json +19 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_follower_default_value.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_leader_follower.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_leader_not_multi.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/40_0leadership_reduce.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/40_1leadership_append_follower.json +22 -0
- rougail_output_json-1.0.0/tests/results/test/40_2leadership_calculation_index.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/40_2leadership_calculation_index_2.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/40_6leadership_follower_multi.json +43 -0
- rougail_output_json-1.0.0/tests/results/test/40_6leadership_follower_multi_no_mandatory.json +43 -0
- rougail_output_json-1.0.0/tests/results/test/40_8calculation_boolean.json +9 -0
- rougail_output_json-1.0.0/tests/results/test/40_8calculation_multi_variable.json +9 -0
- rougail_output_json-1.0.0/tests/results/test/40_8calculation_multi_variable_parent.json +6 -0
- rougail_output_json-1.0.0/tests/results/test/40_8calculation_multi_variable_parent2.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.json +28 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower-first.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower-last.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.json +21 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-leader-first.json +20 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-leader-last.json +20 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-leader.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-variable.json +24 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-variable_leader_follower.json +30 -0
- rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.json +42 -0
- rougail_output_json-1.0.0/tests/results/test/41_0choice_leader.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/44_0leadership_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/44_0leadership_leader_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/44_1leadership_append_hidden_follower.json +3 -0
- rougail_output_json-1.0.0/tests/results/test/44_4disabled_calcultion_follower_index.json +15 -0
- rougail_output_json-1.0.0/tests/results/test/44_4leadership_mandatory.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/44_4leadership_mandatory_follower.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/44_5leadership_leader_hidden_calculation.json +17 -0
- rougail_output_json-1.0.0/tests/results/test/44_6leadership_follower_disabled_calculation.json +17 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_1_1.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_1_1_empty.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_empty.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_forbidden_char.json +14 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_no_description.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_no_description_empty.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_source_hidden.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_static.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_test.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_upper_char.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_empty.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_optional.json +8 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_suffix.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_suffix_empty.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/60_0family_mode.json +5 -0
- rougail_output_json-1.0.0/tests/results/test/60_1family_dynamic_jinja.json +16 -0
- rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.json +17 -0
- rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.json +17 -0
- rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +17 -0
- rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.json +17 -0
- rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_outside_calc.json +13 -0
- rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_outside_calc_empty.json +13 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_description.json +14 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_identifier.json +14 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_identifier_multi.json +26 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix2.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix2_empty.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix_disabled.json +6 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix_param.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.json +12 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable.json +13 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable_disabled.json +10 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.json +9 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable_empty.json +13 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_hidden_suffix.json +14 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_variable_outside_suffix.json +13 -0
- rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.json +13 -0
- rougail_output_json-1.0.0/tests/results/test/60_6family_dynamic_leadership.json +44 -0
- rougail_output_json-1.0.0/tests/results/test/60_6family_dynamic_leadership_empty.json +44 -0
- rougail_output_json-1.0.0/tests/results/test/60_6family_subdynamic_inside.json +42 -0
- rougail_output_json-1.0.0/tests/results/test/60_9family_dynamic_calc_both.json +9 -0
- rougail_output_json-1.0.0/tests/results/test/68_0family_leadership_mode.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_0empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_0no_variable.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_0no_variable_default_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_0no_variable_remove_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_0version_underscore.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_1empty_variable.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_multi.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_params_permissive.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable_description.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable_transitive.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_4load_subfolder.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_5load_notype.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6boolean.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6boolean_no_mandatory.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_link.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_variable.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_variable_link.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_variable_link2.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6custom.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6domainname.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6domainname_params.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6float.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6integer.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6ip.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6network.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6number.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6port.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6regexp.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6regexp_link.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6secret.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6secret_param.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_6string.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7choice_quote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7help.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7help_quote.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7help_sup.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_doublequote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_doublequote2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_doublequote3.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_quote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_8calculation_information.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_8calculation_namespace.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_8calculation_param_namespace.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_8test.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9choice_variable_multi.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9choice_variables.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_information.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_information_other_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_multi_optional.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_multi_optional2.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_multi_optional_default.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_optional.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_optional_exists.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_param_optional.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_information_other_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_information_other_variable2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_integer.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_number.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9extra.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9extra_calculation.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/00_9extra_ouside.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6boolean_multi.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6custom_multi.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6float_multi.json +44 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6integer_multi.json +44 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6integer_multi_mandatory.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6string_empty.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6string_multi.json +44 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_6string_multi_length.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_7value_multi_doublequote.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_7value_multi_doublequote2.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_7value_multi_quote.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_8calculation_information_multi.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_9choice_variable_multi.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/01_9choice_variable_optional.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/02_0tags.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_0type_param.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_0type_param_integer.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save_and_calculated.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save_and_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_2.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_3.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_4.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_5.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_6.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_1jinja_and_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_boolean.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_default.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_multi.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_optional.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_optional_default.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable10.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable11.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable3.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable4.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable5.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable6.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable7.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable8.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable9.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_multi.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5hidden_calculation.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5hidden_calculation2.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5hidden_calculation_default_calculation.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_differ.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_multi.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_multi2.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_multi3.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_warnings.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_warnings_all.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/05_0multi_not_uniq.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/05_0multi_uniq.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/12_1auto_save_expert.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_0redefine_description.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_2family_redefine_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_2family_redefine_disabled.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_3family_empty_at_ends.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5exists_nonexists.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5exists_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_choice.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_default.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_default_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_family.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_help.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_multi.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_remove_disable_calculation.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_5test_redefine.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_6choice_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_6exists_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16_6exists_redefine_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/16exists_exists.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/17_5redefine_leadership.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0empty_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0family_append.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0family_underscore.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family_basic.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family_expert.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family_order.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_0validators_differ_redefine.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_1empty_subfamily.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_2family_looks_like_dynamic.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_2family_looks_like_variable.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_7help_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/20_9default_information_parent.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_boolean.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_sub_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_with_variable.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_mandatory_condition.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_mandatory_condition_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_7validators_variable_optional.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/24_family_disabled_var_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership.json +21 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_diff_name.json +21 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_calculation.json +21 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_submulti.json +45 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.json +45 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_value.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_leader_follower.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_leader_not_multi.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_reduce.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_1leadership_append_follower.json +24 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_calculation_index.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_calculation_index_2.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_calculation_param_index.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_leader_calculation.json +21 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_6leadership_follower_multi.json +45 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.json +45 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_boolean.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_boolean_return_none.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_integer.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_multi_variable.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_multi_variable_parent.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_multi_variable_parent2.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.json +30 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.json +23 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.json +22 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.json +22 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-leader.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-variable.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.json +32 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.json +44 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/41_0choice_leader.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_0leadership_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_0leadership_leader_hidden.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_1leadership_append_hidden_follower.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_4disabled_calcultion_follower.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_4disabled_calcultion_follower_index.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_4leadership_mandatory.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_4leadership_mandatory_follower.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/44_9calculated_default_leadership_leader.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0_type.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_1.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_1_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_empty.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty2.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_jinja_number.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_no_description.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_no_description_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_source_hidden.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_static.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_test.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_upper_char.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_empty.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_optional.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_suffix.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_hidden.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_mode.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_1family_dynamic_jinja.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_outside_calc.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc2.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc2_empty.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_description.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_identifier.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled3.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.json +25 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.json +34 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside2.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.json +29 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.json +29 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_inside.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_inside_empty.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_inside_identifier.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_leadership.json +46 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_leadership_empty.json +46 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.json +40 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.json +40 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.json +24 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.json +40 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.json +52 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.json +29 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.json +29 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_subdynamic_inside.json +44 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_9extra_dynamic.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_9extra_dynamic_extra.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/60_9family_dynamic_calc_both.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace/68_0family_leadership_mode.json +21 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0no_variable.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0no_variable_default_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0no_variable_remove_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0version_underscore.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_1empty_variable.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_multi.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_params_permissive.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_4load_subfolder.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_5load_notype.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6boolean.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_link.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_variable.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_variable_link.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_variable_link2.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6custom.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6domainname.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6domainname_params.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6float.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6integer.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6ip.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6network.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6number.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6port.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6regexp.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6regexp_link.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6secret.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6secret_param.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6string.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7choice_quote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7help.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7help_quote.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7help_sup.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_doublequote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_doublequote2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_doublequote3.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_quote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8calculation_information.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8calculation_namespace.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8calculation_param_namespace.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8test.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9choice_variable_multi.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9choice_variables.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_information.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional_default.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_optional.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_information_other_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_information_other_variable2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_integer.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_number.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9extra.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9extra_calculation.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9extra_ouside.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6boolean_multi.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6custom_multi.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6float_multi.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6integer_multi.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6integer_multi_mandatory.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6string_empty.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6string_multi.json +22 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6string_multi_length.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_7value_multi_doublequote.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_7value_multi_quote.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_8calculation_information_multi.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_9choice_variable_multi.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_9choice_variable_optional.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/02_0tags.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_0type_param.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_0type_param_integer.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save_and_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_3.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_5.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1jinja_and_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_default.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_multi.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable10.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable11.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable8.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_multi.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5hidden_calculation.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5hidden_calculation2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_differ.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_multi.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_multi2.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_multi3.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_warnings.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_warnings_all.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/05_0multi_not_uniq.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/05_0multi_uniq.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/12_1auto_save_expert.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_0redefine_description.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_2family_redefine_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_2family_redefine_disabled.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_3family_empty_at_ends.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5exists_nonexists.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5exists_redefine.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_choice.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_default.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_default_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_family.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_help.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_multi.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5test_redefine.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_6choice_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_6exists_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_6exists_redefine_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16exists_exists.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/17_5redefine_leadership.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0empty_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0family_append.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0family_underscore.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family_basic.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family_expert.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family_order.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0validators_differ_redefine.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_1empty_subfamily.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_2family_looks_like_dynamic.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_2family_looks_like_variable.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_7help_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_9default_information_parent.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_mandatory_condition.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_7validators_variable_optional.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_family_disabled_var_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_diff_name.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_leader_follower.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_reduce.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_1leadership_append_follower.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_calculation_index.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_calculation_index_2.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_6leadership_follower_multi.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_6leadership_follower_multi_no_mandatory.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_boolean.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_integer.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_multi_variable.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9calculation_variable_leader_follower_multi_inside.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-first.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-last.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-first.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-last.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-variable.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.json +24 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.json +30 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/41_0choice_leader.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_0leadership_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_0leadership_leader_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_1leadership_append_hidden_follower.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower_index.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4leadership_mandatory.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_forbidden_char.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_static.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_test.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_optional.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_hidden.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_mode.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.json +21 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled3.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_boolean.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_multi.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_1_0.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_inside.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_inside_identifier.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.json +40 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.json +40 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.json +24 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty2.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.json +40 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_9extra_dynamic.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_namespace_read_write/68_0family_leadership_mode.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_0empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_0no_variable.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_0no_variable_default_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_0no_variable_remove_version.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_0version_underscore.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_1empty_variable.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_multi.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_params_permissive.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable_description.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable_transitive.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_4load_subfolder.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_5load_notype.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6boolean.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6boolean_no_mandatory.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_link.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_variable.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_variable_link.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_variable_link2.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6custom.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6domainname.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6domainname_params.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6float.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6integer.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6ip.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6network.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6number.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6port.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6regexp.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6regexp_link.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6secret.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6secret_param.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_6string.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7choice_quote.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7help.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7help_quote.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7help_sup.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_doublequote.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_doublequote2.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_doublequote3.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_quote.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_8calculation_information.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_8test.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9choice_variable_multi.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9choice_variables.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_information.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_information_other_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_multi_optional.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_multi_optional2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_multi_optional_default.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_optional.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_optional_exists.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_param_optional.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_information_other_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_information_other_variable2.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_integer.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_number.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6boolean_multi.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6custom_multi.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6float_multi.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6integer_multi.json +26 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6integer_multi_mandatory.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6string_empty.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6string_multi.json +20 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_6string_multi_length.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_7value_multi_doublequote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_7value_multi_doublequote2.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_7value_multi_quote.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_8calculation_information_multi.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_9choice_variable_multi.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/01_9choice_variable_optional.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/02_0tags.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_0type_param.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_0type_param_integer.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save_and_calculated.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save_and_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_2.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_3.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_4.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_5.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_6.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_1jinja_and_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_boolean.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_optional.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_optional_default.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable10.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable11.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable2.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable3.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable4.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable5.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable6.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable7.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable8.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable9.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_multi.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_differ.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_multi.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_multi2.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_multi3.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_warnings.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_warnings_all.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/05_0multi_not_uniq.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/05_0multi_uniq.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/12_1auto_save_expert.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_0redefine_description.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_2family_redefine_calculation.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_2family_redefine_disabled.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_3family_empty_at_ends.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5exists_nonexists.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5exists_redefine.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_choice.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_default.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_default_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_family.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_help.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_multi.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_remove_disable_calculation.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_5test_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_6choice_redefine.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_6exists_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16_6exists_redefine_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/16exists_exists.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/17_5redefine_leadership.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0empty_family.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0family_append.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0family_underscore.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family_basic.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family_expert.json +7 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family_order.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_0validators_differ_redefine.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_1empty_subfamily.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_2family_looks_like_dynamic.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_2family_looks_like_variable.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_7help_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_9default_information_parent.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/20_9family_absolute.json +23 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_hidden_condition_sub_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_mandatory_condition.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_mandatory_condition_variable.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_7validators_variable_optional.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/24_family_disabled_var_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_diff_name.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_follower_default_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_follower_default_value.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_leader_follower.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_leader_not_multi.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_reduce.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_1leadership_append_follower.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_2leadership_calculation_index.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_2leadership_calculation_index_2.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_6leadership_follower_multi.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_6leadership_follower_multi_no_mandatory.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_boolean.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_multi_variable.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_multi_variable_parent.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_multi_variable_parent2.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9calculation_variable_leader_follower_multi_inside.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower-first.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower-last.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.json +16 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-leader-first.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-leader-last.json +15 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-leader.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-variable.json +18 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.json +22 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.json +28 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/41_0choice_leader.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_0leadership_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_0leadership_leader_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_1leadership_append_hidden_follower.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_4disabled_calcultion_follower_index.json +11 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_4leadership_mandatory.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_4leadership_mandatory_follower.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_1_1.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_1_1_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_forbidden_char.json +14 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_no_description.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_no_description_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_source_hidden.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_static.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_test.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_upper_char.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_optional.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_suffix.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_empty.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_hidden.json +1 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_mode.json +5 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_1family_dynamic_jinja.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.json +17 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_outside_calc.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_description.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_identifier.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.json +19 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.json +6 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.json +10 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.json +8 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.json +13 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.json +4 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_6family_dynamic_leadership.json +12 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_6family_dynamic_leadership_empty.json +3 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_6family_subdynamic_inside.json +38 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/60_9family_dynamic_calc_both.json +9 -0
- rougail_output_json-1.0.0/tests/results/test_read_write/68_0family_leadership_mode.json +3 -0
- rougail_output_json-1.0.0/tests/subconfig/file.yml +10 -0
- rougail_output_json-1.0.0/tests/subconfig-results/family.json +5 -0
- rougail_output_json-1.0.0/tests/subconfig-results/result.json +5 -0
- rougail_output_json-1.0.0/tests/subconfig-results/variable.json +1 -0
- rougail_output_json-1.0.0/tests/test_load.py +216 -0
- rougail_output_json-1.0.0/tests/warnings/results/errors.yml +5 -0
- rougail_output_json-1.0.0/tests/warnings/results/warnings.yml +8 -0
- rougail_output_json-1.0.0/tests/warnings/structures/rougail/00-test.yml +4 -0
- rougail_output_json-1.0.0/tests/warnings/yaml/config.yml +4 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
## 1.0.0 (2026-06-21)
|
|
2
|
+
|
|
3
|
+
### Feat
|
|
4
|
+
|
|
5
|
+
- leadership => sequence
|
|
6
|
+
- remove mandatory verification
|
|
7
|
+
- add doc
|
|
8
|
+
- add some tests
|
|
9
|
+
- allow extra kwargs
|
|
10
|
+
- remove json.read_write option
|
|
11
|
+
- default value for a calculated variable with an unknown optional variable
|
|
12
|
+
- update tests for integer type
|
|
13
|
+
- add json.get to have sub variables
|
|
14
|
+
- output return status too
|
|
15
|
+
- add error and warnings informations in json
|
|
16
|
+
- add tests
|
|
17
|
+
|
|
18
|
+
### Fix
|
|
19
|
+
|
|
20
|
+
- rougail dependencies
|
|
21
|
+
- update translation
|
|
22
|
+
- black
|
|
23
|
+
- update tests
|
|
24
|
+
- warnings and errors support
|
|
25
|
+
- remove json.get which is conflict with cli.root feature
|
|
26
|
+
- update tests
|
|
27
|
+
- add namespace parameter for ansible
|
|
28
|
+
- better namespace support
|
|
29
|
+
- ExtentionError => ExtensionError
|
|
30
|
+
- update tests
|
|
31
|
+
- update test
|
|
32
|
+
- tests
|
|
33
|
+
- tests for formatter
|
|
34
|
+
- dependency
|
|
35
|
+
- black
|
|
36
|
+
- remove negative_description support
|
|
37
|
+
- update tests
|
|
38
|
+
- version
|
|
39
|
+
- update tests
|
|
40
|
+
- update translation
|
|
41
|
+
- update tests
|
|
42
|
+
- translation
|
|
43
|
+
- update tests
|
|
44
|
+
- separation between run and print function
|
|
45
|
+
|
|
46
|
+
## 0.1.0 (2024-11-28)
|
|
47
|
+
|
|
48
|
+
### Feat
|
|
49
|
+
|
|
50
|
+
- copy from rougail-output-exporter
|
|
51
|
+
- init commit
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
|
11
|
+
License, supplemented by the additional permissions listed below.
|
|
12
|
+
|
|
13
|
+
0. Additional Definitions.
|
|
14
|
+
|
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
17
|
+
General Public License.
|
|
18
|
+
|
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
|
20
|
+
other than an Application or a Combined Work as defined below.
|
|
21
|
+
|
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
|
25
|
+
of using an interface provided by the Library.
|
|
26
|
+
|
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
|
28
|
+
Application with the Library. The particular version of the Library
|
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
|
30
|
+
Version".
|
|
31
|
+
|
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
|
35
|
+
based on the Application, and not on the Linked Version.
|
|
36
|
+
|
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
|
38
|
+
object code and/or source code for the Application, including any data
|
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
|
41
|
+
|
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
|
43
|
+
|
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
|
46
|
+
|
|
47
|
+
2. Conveying Modified Versions.
|
|
48
|
+
|
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
|
51
|
+
that uses the facility (other than as an argument passed when the
|
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
|
53
|
+
version:
|
|
54
|
+
|
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
|
56
|
+
ensure that, in the event an Application does not supply the
|
|
57
|
+
function or data, the facility still operates, and performs
|
|
58
|
+
whatever part of its purpose remains meaningful, or
|
|
59
|
+
|
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
|
61
|
+
this License applicable to that copy.
|
|
62
|
+
|
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
|
64
|
+
|
|
65
|
+
The object code form of an Application may incorporate material from
|
|
66
|
+
a header file that is part of the Library. You may convey such object
|
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
|
68
|
+
material is not limited to numerical parameters, data structure
|
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
|
71
|
+
|
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
|
73
|
+
Library is used in it and that the Library and its use are
|
|
74
|
+
covered by this License.
|
|
75
|
+
|
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
77
|
+
document.
|
|
78
|
+
|
|
79
|
+
4. Combined Works.
|
|
80
|
+
|
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
|
82
|
+
taken together, effectively do not restrict modification of the
|
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
|
85
|
+
the following:
|
|
86
|
+
|
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
|
88
|
+
the Library is used in it and that the Library and its use are
|
|
89
|
+
covered by this License.
|
|
90
|
+
|
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
92
|
+
document.
|
|
93
|
+
|
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
|
95
|
+
execution, include the copyright notice for the Library among
|
|
96
|
+
these notices, as well as a reference directing the user to the
|
|
97
|
+
copies of the GNU GPL and this license document.
|
|
98
|
+
|
|
99
|
+
d) Do one of the following:
|
|
100
|
+
|
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
|
102
|
+
License, and the Corresponding Application Code in a form
|
|
103
|
+
suitable for, and under terms that permit, the user to
|
|
104
|
+
recombine or relink the Application with a modified version of
|
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
|
107
|
+
Corresponding Source.
|
|
108
|
+
|
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
|
111
|
+
a copy of the Library already present on the user's computer
|
|
112
|
+
system, and (b) will operate properly with a modified version
|
|
113
|
+
of the Library that is interface-compatible with the Linked
|
|
114
|
+
Version.
|
|
115
|
+
|
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
|
117
|
+
be required to provide such information under section 6 of the
|
|
118
|
+
GNU GPL, and only to the extent that such information is
|
|
119
|
+
necessary to install and execute a modified version of the
|
|
120
|
+
Combined Work produced by recombining or relinking the
|
|
121
|
+
Application with a modified version of the Linked Version. (If
|
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
|
126
|
+
for conveying Corresponding Source.)
|
|
127
|
+
|
|
128
|
+
5. Combined Libraries.
|
|
129
|
+
|
|
130
|
+
You may place library facilities that are a work based on the
|
|
131
|
+
Library side by side in a single library together with other library
|
|
132
|
+
facilities that are not Applications and are not covered by this
|
|
133
|
+
License, and convey such a combined library under terms of your
|
|
134
|
+
choice, if you do both of the following:
|
|
135
|
+
|
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
|
137
|
+
on the Library, uncombined with any other library facilities,
|
|
138
|
+
conveyed under the terms of this License.
|
|
139
|
+
|
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
|
141
|
+
is a work based on the Library, and explaining where to find the
|
|
142
|
+
accompanying uncombined form of the same work.
|
|
143
|
+
|
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
|
145
|
+
|
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
|
148
|
+
versions will be similar in spirit to the present version, but may
|
|
149
|
+
differ in detail to address new problems or concerns.
|
|
150
|
+
|
|
151
|
+
Each version is given a distinguishing version number. If the
|
|
152
|
+
Library as you received it specifies that a certain numbered version
|
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
|
154
|
+
applies to it, you have the option of following the terms and
|
|
155
|
+
conditions either of that published version or of any later version
|
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
|
160
|
+
|
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
|
164
|
+
permanent authorization for you to choose that version for the
|
|
165
|
+
Library.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rougail.output_json
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Rougail output json
|
|
5
|
+
Author-email: Emmanuel Garette <gnunux@gnunux.info>
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Natural Language :: French
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
Requires-Dist: rougail-base >= 1.2.0,<2
|
|
19
|
+
Project-URL: Home, https://forge.cloud.silique.fr/stove/rougail-output-json
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
gitea: none
|
|
23
|
+
include_toc: true
|
|
24
|
+
---
|
|
25
|
+
[🇬🇧 (EN)](README.md) - [🇫🇷 (FR)](README.fr.md)
|
|
26
|
+
|
|
27
|
+
## Export configuration to JSON format
|
|
28
|
+
|
|
29
|
+
> [!NOTE]
|
|
30
|
+
>
|
|
31
|
+
> Exporting the configuration in JSON format makes it easier to process the configuration in an external tool, for example.\
|
|
32
|
+
> **Path**: json\
|
|
33
|
+
> *`disabled`*\
|
|
34
|
+
> **Disabled**: if json is not set in "[Select for output](#step.output)"
|
|
35
|
+
|
|
36
|
+
| Variable | Description | Default value | Type |
|
|
37
|
+
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
|
|
38
|
+
| **<a id="json.mandatory" name="json.mandatory">json.mandatory</a>**<br/>**Command line**: <br/>• --json.mandatory<br/>• --json.no-mandatory<br/>**Environment variable**: JSON.MANDATORY | Test mandatories variables before display in JSON.<br/>The configuration must be valid before exporting the data to JSON format. It's better to validate the values at the beginning of the process. | true if "[Configuration in output step is in read_write mode](#cli.read_write)" is false | [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` |
|
|
39
|
+
| **<a id="json.get" name="json.get">json.get</a>**<br/>**Command line**: <br/>--json.get<br/>**Environment variable**: JSON.GET | Get value for a variable or a family.<br/>By default, the entire configuration is exported as JSON. It is possible to retrieve variables values from a defined family or directly the value of a variable.<br/>**Examples**: <br/>• family<br/>• family.variable | | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) |
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
gitea: none
|
|
3
|
+
include_toc: true
|
|
4
|
+
---
|
|
5
|
+
[🇬🇧 (EN)](README.md) - [🇫🇷 (FR)](README.fr.md)
|
|
6
|
+
|
|
7
|
+
## Export de la configuration au format JSON
|
|
8
|
+
|
|
9
|
+
> [!NOTE]
|
|
10
|
+
>
|
|
11
|
+
> Exporter la configuration au format JSON permet de traiter plus facilement la configuration dans un outil exterieur par exemple.\
|
|
12
|
+
> **Chemin** : json\
|
|
13
|
+
> *`désactivé`*\
|
|
14
|
+
> **Désactivé** : si json n'est pas présent dans "[Sélection pour sortie](#step.output)"
|
|
15
|
+
|
|
16
|
+
| Variable | Description | Valeur par défaut | Type |
|
|
17
|
+
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
|
|
18
|
+
| **<a id="json.mandatory" name="json.mandatory">json.mandatory</a>**<br/>**Ligne de commande** : <br/>• --json.mandatory<br/>• --json.no-mandatory<br/>**Variable d'environnement** : JSON.MANDATORY | Tester les variables obligatoires avant de l'afficher en JSON.<br/>La configuration doit être valide avant d'exporter les données au format JSON. C'est mieux de valider les valeurs en début du processus. | true si "[La configuration dans l'état de sortie est dans mode lecture-écriture](#cli.read_write)" est false | [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `obligatoire` |
|
|
19
|
+
| **<a id="json.get" name="json.get">json.get</a>**<br/>**Ligne de commande** : <br/>--json.get<br/>**Variable d'environnement** : JSON.GET | Récupère la valeur pour une variable ou une famille.<br/>Par défaut toute la configuration est exporté en JSON. Il est possible de récupérer les valeurs de variables dans une famille défini ou directement la valeur d'une variable.<br/>**Exemples** : <br/>• family<br/>• family.variable | | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) |
|
|
20
|
+
|
|
21
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
gitea: none
|
|
3
|
+
include_toc: true
|
|
4
|
+
---
|
|
5
|
+
[🇬🇧 (EN)](README.md) - [🇫🇷 (FR)](README.fr.md)
|
|
6
|
+
|
|
7
|
+
## Export configuration to JSON format
|
|
8
|
+
|
|
9
|
+
> [!NOTE]
|
|
10
|
+
>
|
|
11
|
+
> Exporting the configuration in JSON format makes it easier to process the configuration in an external tool, for example.\
|
|
12
|
+
> **Path**: json\
|
|
13
|
+
> *`disabled`*\
|
|
14
|
+
> **Disabled**: if json is not set in "[Select for output](#step.output)"
|
|
15
|
+
|
|
16
|
+
| Variable | Description | Default value | Type |
|
|
17
|
+
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
|
|
18
|
+
| **<a id="json.mandatory" name="json.mandatory">json.mandatory</a>**<br/>**Command line**: <br/>• --json.mandatory<br/>• --json.no-mandatory<br/>**Environment variable**: JSON.MANDATORY | Test mandatories variables before display in JSON.<br/>The configuration must be valid before exporting the data to JSON format. It's better to validate the values at the beginning of the process. | true if "[Configuration in output step is in read_write mode](#cli.read_write)" is false | [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` |
|
|
19
|
+
| **<a id="json.get" name="json.get">json.get</a>**<br/>**Command line**: <br/>--json.get<br/>**Environment variable**: JSON.GET | Get value for a variable or a family.<br/>By default, the entire configuration is exported as JSON. It is possible to retrieve variables values from a defined family or directly the value of a variable.<br/>**Examples**: <br/>• family<br/>• family.variable | | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) |
|
|
20
|
+
|
|
21
|
+
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: \n"
|
|
8
|
+
"POT-Creation-Date: 2026-06-21 18:26+0200\n"
|
|
9
|
+
"PO-Revision-Date: 2026-06-21 18:27+0200\n"
|
|
10
|
+
"Last-Translator: \n"
|
|
11
|
+
"Language-Team: \n"
|
|
12
|
+
"Language: fr\n"
|
|
13
|
+
"MIME-Version: 1.0\n"
|
|
14
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
16
|
+
"Generated-By: pygettext.py 1.5\n"
|
|
17
|
+
"X-Generator: Poedit 3.9\n"
|
|
18
|
+
|
|
19
|
+
#: src/rougail/output_json/__init__.py:51
|
|
20
|
+
msgid "the \"step.output\" is not set to \"{0}\""
|
|
21
|
+
msgstr "\"step.output\" n'est pas mis à \"{0}\""
|
|
22
|
+
|
|
23
|
+
#: src/rougail/output_json/__init__.py:108
|
|
24
|
+
#: src/rougail/output_json/__init__.py:120
|
|
25
|
+
msgid "{0}: {1}"
|
|
26
|
+
msgstr "{0} : {1}"
|
|
27
|
+
|
|
28
|
+
#~ msgid "Error in config: {0}"
|
|
29
|
+
#~ msgstr "Erreur dans la configuration : {0}"
|
|
30
|
+
|
|
31
|
+
#~ msgid "The following variables are mandatory but have no value:"
|
|
32
|
+
#~ msgstr "Les variables suivantes sont obligatoire mais n'ont pas de valeur :"
|
|
33
|
+
|
|
34
|
+
#~ msgid "The following variables are inaccessible but are empty and mandatory :"
|
|
35
|
+
#~ msgstr "Les variables suivantes sont inaccessibles mais sont vides et obligatoires :"
|
|
36
|
+
|
|
37
|
+
#~ msgid "Export configuration to JSON format"
|
|
38
|
+
#~ msgstr "Export de la configuration au format JSON"
|
|
39
|
+
|
|
40
|
+
#~ msgid "Exporting the configuration in JSON format makes it easier to process the configuration in an external tool, for example."
|
|
41
|
+
#~ msgstr "Exporter la configuration au format JSON permet de traiter plus facilement la configuration dans un outil exterieur par exemple."
|
|
42
|
+
|
|
43
|
+
#~ msgid "if json is not set in \"step.output\""
|
|
44
|
+
#~ msgstr "si json n'est pas présent dans \"step.output\""
|
|
45
|
+
|
|
46
|
+
#~ msgid "test mandatories variables before display in JSON"
|
|
47
|
+
#~ msgstr "tester les variables obligatoires avant de l'afficher en JSON"
|
|
48
|
+
|
|
49
|
+
#~ msgid "The configuration must be valid before exporting the data to JSON format. It's better to validate the values at the beginning of the process."
|
|
50
|
+
#~ msgstr "La configuration doit être valide avant d'exporter les données au format JSON. C'est mieux de valider les valeurs en début du processus."
|
|
51
|
+
|
|
52
|
+
#~ msgid "true if \"cli.read_write\" is false"
|
|
53
|
+
#~ msgstr "true si \"cli.read_write\" est false"
|
|
54
|
+
|
|
55
|
+
#~ msgid "get value for a variable or a family"
|
|
56
|
+
#~ msgstr "récupère la valeur pour une variable ou une famille"
|
|
57
|
+
|
|
58
|
+
#~ msgid "By default, the entire configuration is exported as JSON. It is possible to retrieve variables values from a defined family or directly the value of a variable."
|
|
59
|
+
#~ msgstr "Par défaut toute la configuration est exporté en JSON. Il est possible de récupérer les valeurs de variables dans une famille défini ou directement la valeur d'une variable."
|
|
60
|
+
|
|
61
|
+
#~ msgid "configuration rougail-json"
|
|
62
|
+
#~ msgstr "configuration de rougail-json"
|
|
63
|
+
|
|
64
|
+
#~ msgid "display variables available in read_write mode"
|
|
65
|
+
#~ msgstr "affiche les variables valables en mode lecture écriture"
|
|
66
|
+
|
|
67
|
+
#~ msgid "display variables available in read_only mode"
|
|
68
|
+
#~ msgstr "affiche les variables valables en mode lecture seul"
|
|
69
|
+
|
|
70
|
+
#~ msgid "do not test mandatories variables before display in json"
|
|
71
|
+
#~ msgstr "ne pas tester les variables obligatoires avant de l'afficher en json"
|
|
72
|
+
|
|
73
|
+
#~ msgid "Undocumented variable"
|
|
74
|
+
#~ msgstr "Variable non documentée"
|
|
75
|
+
|
|
76
|
+
#~ msgid "Undocumented but modified variable"
|
|
77
|
+
#~ msgstr "Variable non documentée mais modifiée"
|
|
78
|
+
|
|
79
|
+
#~ msgid "Unmodifiable variable"
|
|
80
|
+
#~ msgstr "Variable non modifiable"
|
|
81
|
+
|
|
82
|
+
#~ msgid "Default value"
|
|
83
|
+
#~ msgstr "Valeur par défaut"
|
|
84
|
+
|
|
85
|
+
#~ msgid "Modified value"
|
|
86
|
+
#~ msgstr "Valeur modifiée"
|
|
87
|
+
|
|
88
|
+
#~ msgid "Original default value"
|
|
89
|
+
#~ msgstr "Valeur par défaut d'origine"
|
|
90
|
+
|
|
91
|
+
#~ msgid "Caption"
|
|
92
|
+
#~ msgstr "Légende"
|
|
93
|
+
|
|
94
|
+
#~ msgid "Variables:"
|
|
95
|
+
#~ msgstr "Variables :"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
8
|
+
"POT-Creation-Date: 2026-06-21 18:28+0200\n"
|
|
9
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
10
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
11
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
12
|
+
"MIME-Version: 1.0\n"
|
|
13
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
15
|
+
"Generated-By: pygettext.py 1.5\n"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
#: src/rougail/output_json/__init__.py:51
|
|
19
|
+
msgid "the \"step.output\" is not set to \"{0}\""
|
|
20
|
+
msgstr ""
|
|
21
|
+
|
|
22
|
+
#: src/rougail/output_json/__init__.py:108
|
|
23
|
+
#: src/rougail/output_json/__init__.py:120
|
|
24
|
+
msgid "{0}: {1}"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
build-backend = "flit_core.buildapi"
|
|
3
|
+
requires = ["flit_core >=3.8.0,<4"]
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rougail.output_json"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
description = "Rougail output json"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
license = {file = "LICENSE"}
|
|
13
|
+
classifiers = [
|
|
14
|
+
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
|
15
|
+
"Programming Language :: Python :: 3.11",
|
|
16
|
+
"Programming Language :: Python :: 3.12",
|
|
17
|
+
"Programming Language :: Python :: 3.13",
|
|
18
|
+
"Programming Language :: Python :: 3.14",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Natural Language :: English",
|
|
22
|
+
"Natural Language :: French",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
dependencies = [
|
|
26
|
+
"rougail-base >= 1.2.0,<2",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Home = "https://forge.cloud.silique.fr/stove/rougail-output-json"
|
|
31
|
+
|
|
32
|
+
[tool.commitizen]
|
|
33
|
+
name = "cz_conventional_commits"
|
|
34
|
+
tag_format = "$version"
|
|
35
|
+
version_scheme = "pep440"
|
|
36
|
+
version_provider = "pep621"
|
|
37
|
+
version_files = [
|
|
38
|
+
"src/rougail/output_json/__version__.py",
|
|
39
|
+
"pyproject.toml:version"
|
|
40
|
+
]
|
|
41
|
+
update_changelog_on_bump = true
|
|
42
|
+
changelog_merge_prerelease = true
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Silique (https://www.silique.fr)
|
|
3
|
+
Copyright (C) 2022-2026
|
|
4
|
+
|
|
5
|
+
This program is free software: you can redistribute it and/or modify it
|
|
6
|
+
under the terms of the GNU Lesser General Public License as published by the
|
|
7
|
+
Free Software Foundation, either version 3 of the License, or (at your
|
|
8
|
+
option) any later version.
|
|
9
|
+
|
|
10
|
+
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
11
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
12
|
+
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
13
|
+
details.
|
|
14
|
+
|
|
15
|
+
You should have received a copy of the GNU Lesser General Public License
|
|
16
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from typing import Any, List, Optional
|
|
20
|
+
|
|
21
|
+
from json import dumps
|
|
22
|
+
|
|
23
|
+
from tiramisu import groups
|
|
24
|
+
from tiramisu.error import PropertiesOptionError, ConfigError
|
|
25
|
+
from rougail.error import ExtensionError
|
|
26
|
+
|
|
27
|
+
from .i18n import _
|
|
28
|
+
from .__version__ import __version__
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class RougailOutputJson:
|
|
32
|
+
output_name = "json"
|
|
33
|
+
|
|
34
|
+
def __init__(
|
|
35
|
+
self,
|
|
36
|
+
config: "Config",
|
|
37
|
+
*,
|
|
38
|
+
rougailconfig: "RougailConfig" = None,
|
|
39
|
+
user_data_errors: Optional[list] = None,
|
|
40
|
+
user_data_warnings: Optional[list] = None,
|
|
41
|
+
true_config: "Config" = None,
|
|
42
|
+
**kwargs,
|
|
43
|
+
) -> None:
|
|
44
|
+
if rougailconfig is None:
|
|
45
|
+
from rougail import RougailConfig
|
|
46
|
+
|
|
47
|
+
rougailconfig = RougailConfig
|
|
48
|
+
rougailconfig["step.output"] = self.output_name
|
|
49
|
+
if rougailconfig["step.output"] != self.output_name:
|
|
50
|
+
raise ExtensionError(
|
|
51
|
+
_('the "step.output" is not set to "{0}"').format(self.output_name)
|
|
52
|
+
)
|
|
53
|
+
self.rougailconfig = rougailconfig
|
|
54
|
+
self.config = config
|
|
55
|
+
if true_config:
|
|
56
|
+
self.true_config = true_config
|
|
57
|
+
else:
|
|
58
|
+
self.true_config = config
|
|
59
|
+
try:
|
|
60
|
+
groups.namespace
|
|
61
|
+
self.support_namespace = True
|
|
62
|
+
except AttributeError:
|
|
63
|
+
self.support_namespace = False
|
|
64
|
+
if user_data_errors:
|
|
65
|
+
self.errors = user_data_errors
|
|
66
|
+
else:
|
|
67
|
+
self.errors = []
|
|
68
|
+
if user_data_warnings:
|
|
69
|
+
self.warnings = user_data_warnings
|
|
70
|
+
else:
|
|
71
|
+
self.warnings = []
|
|
72
|
+
|
|
73
|
+
def run(self) -> None:
|
|
74
|
+
ret = self.exporter()
|
|
75
|
+
if isinstance(self.dico, str):
|
|
76
|
+
value = self.dico
|
|
77
|
+
else:
|
|
78
|
+
value = dumps(self.dico, ensure_ascii=False, indent=2)
|
|
79
|
+
return ret, value
|
|
80
|
+
|
|
81
|
+
def print(self) -> str:
|
|
82
|
+
ret, data = self.run()
|
|
83
|
+
print(data)
|
|
84
|
+
return ret
|
|
85
|
+
|
|
86
|
+
def exporter(self) -> None:
|
|
87
|
+
self.dico = {}
|
|
88
|
+
self.manage_warnings()
|
|
89
|
+
if not self.manage_errors():
|
|
90
|
+
return False
|
|
91
|
+
if not self.config.isoptiondescription():
|
|
92
|
+
self.dico = self.config.value.get()
|
|
93
|
+
return True
|
|
94
|
+
self.parse_family(
|
|
95
|
+
self.config,
|
|
96
|
+
self.dico,
|
|
97
|
+
None,
|
|
98
|
+
)
|
|
99
|
+
return self.manage_errors()
|
|
100
|
+
|
|
101
|
+
def manage_warnings(self) -> None:
|
|
102
|
+
if not self.warnings:
|
|
103
|
+
return
|
|
104
|
+
warnings = []
|
|
105
|
+
for w in self.warnings:
|
|
106
|
+
if isinstance(w, dict):
|
|
107
|
+
msg, opt = next(iter(w.items()))
|
|
108
|
+
warnings.append(_("{0}: {1}").format(opt.path, msg))
|
|
109
|
+
else:
|
|
110
|
+
warnings.append(w)
|
|
111
|
+
self.dico["_warnings"] = warnings
|
|
112
|
+
|
|
113
|
+
def manage_errors(self) -> bool:
|
|
114
|
+
if not self.errors:
|
|
115
|
+
return True
|
|
116
|
+
errors = []
|
|
117
|
+
for e in self.errors:
|
|
118
|
+
if isinstance(e, dict):
|
|
119
|
+
msg, opt = next(iter(e.items()))
|
|
120
|
+
errors.append(_("{0}: {1}").format(opt.path, msg))
|
|
121
|
+
else:
|
|
122
|
+
errors.append(e)
|
|
123
|
+
self.dico["_errors"] = errors
|
|
124
|
+
# self.manage_warnings()
|
|
125
|
+
return False
|
|
126
|
+
|
|
127
|
+
def parse_family(
|
|
128
|
+
self,
|
|
129
|
+
conf,
|
|
130
|
+
child,
|
|
131
|
+
namespace,
|
|
132
|
+
):
|
|
133
|
+
for option in conf:
|
|
134
|
+
if option.isoptiondescription():
|
|
135
|
+
if option.isleadership():
|
|
136
|
+
parent = []
|
|
137
|
+
self.parse_sequence(
|
|
138
|
+
option,
|
|
139
|
+
parent,
|
|
140
|
+
)
|
|
141
|
+
else:
|
|
142
|
+
if (
|
|
143
|
+
namespace is None
|
|
144
|
+
and self.support_namespace
|
|
145
|
+
and option.group_type() is groups.namespace
|
|
146
|
+
):
|
|
147
|
+
subnamespace = option.name()
|
|
148
|
+
else:
|
|
149
|
+
subnamespace = namespace
|
|
150
|
+
parent = {}
|
|
151
|
+
self.parse_family(option, parent, subnamespace)
|
|
152
|
+
child[option.name()] = parent
|
|
153
|
+
else:
|
|
154
|
+
child[option.name()] = option.value.get()
|
|
155
|
+
|
|
156
|
+
def parse_sequence(
|
|
157
|
+
self,
|
|
158
|
+
conf,
|
|
159
|
+
parent,
|
|
160
|
+
):
|
|
161
|
+
leader, *followers = list(conf)
|
|
162
|
+
leader_values = leader.value.get()
|
|
163
|
+
for idx, leader_value in enumerate(leader_values):
|
|
164
|
+
leader_dict = {leader.name(): leader_value}
|
|
165
|
+
parent.append(leader_dict)
|
|
166
|
+
for follower in list(followers):
|
|
167
|
+
if follower.index() != idx:
|
|
168
|
+
continue
|
|
169
|
+
followers.remove(follower)
|
|
170
|
+
leader_dict[follower.name()] = follower.value.get()
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
RougailOutput = RougailOutputJson
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
__all__ = ("RougailOutputJson",)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|