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.
Files changed (1126) hide show
  1. rougail_output_json-1.0.0/CHANGELOG.md +51 -0
  2. rougail_output_json-1.0.0/LICENSE +165 -0
  3. rougail_output_json-1.0.0/PKG-INFO +42 -0
  4. rougail_output_json-1.0.0/README.fr.md +21 -0
  5. rougail_output_json-1.0.0/README.md +21 -0
  6. rougail_output_json-1.0.0/locale/fr/LC_MESSAGES/rougail_output_json.po +95 -0
  7. rougail_output_json-1.0.0/locale/rougail_output_json.pot +26 -0
  8. rougail_output_json-1.0.0/pyproject.toml +42 -0
  9. rougail_output_json-1.0.0/src/rougail/output_json/__init__.py +176 -0
  10. rougail_output_json-1.0.0/src/rougail/output_json/__version__.py +1 -0
  11. rougail_output_json-1.0.0/src/rougail/output_json/config.py +34 -0
  12. rougail_output_json-1.0.0/src/rougail/output_json/i18n.py +26 -0
  13. rougail_output_json-1.0.0/src/rougail/output_json/locale/fr/LC_MESSAGES/rougail_output_json.mo +0 -0
  14. rougail_output_json-1.0.0/tests/owner/file.yml +10 -0
  15. rougail_output_json-1.0.0/tests/owner-results/default.json +5 -0
  16. rougail_output_json-1.0.0/tests/owner-results/new_owner.json +5 -0
  17. rougail_output_json-1.0.0/tests/owner-results/user.json +5 -0
  18. rougail_output_json-1.0.0/tests/results/test/00_0empty.json +1 -0
  19. rougail_output_json-1.0.0/tests/results/test/00_0no_variable.json +1 -0
  20. rougail_output_json-1.0.0/tests/results/test/00_0no_variable_default_version.json +1 -0
  21. rougail_output_json-1.0.0/tests/results/test/00_0no_variable_remove_version.json +1 -0
  22. rougail_output_json-1.0.0/tests/results/test/00_0version_underscore.json +3 -0
  23. rougail_output_json-1.0.0/tests/results/test/00_1empty_variable.json +3 -0
  24. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated.json +8 -0
  25. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_multi.json +12 -0
  26. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_params_permissive.json +9 -0
  27. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable.json +10 -0
  28. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable_description.json +4 -0
  29. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable_description_multi_line.json +5 -0
  30. rougail_output_json-1.0.0/tests/results/test/00_2default_calculated_variable_transitive.json +10 -0
  31. rougail_output_json-1.0.0/tests/results/test/00_4load_subfolder.json +4 -0
  32. rougail_output_json-1.0.0/tests/results/test/00_5load_notype.json +3 -0
  33. rougail_output_json-1.0.0/tests/results/test/00_6boolean.json +8 -0
  34. rougail_output_json-1.0.0/tests/results/test/00_6boolean_no_mandatory.json +3 -0
  35. rougail_output_json-1.0.0/tests/results/test/00_6choice.json +8 -0
  36. rougail_output_json-1.0.0/tests/results/test/00_6choice_calculation.json +3 -0
  37. rougail_output_json-1.0.0/tests/results/test/00_6choice_link.json +4 -0
  38. rougail_output_json-1.0.0/tests/results/test/00_6choice_variable.json +8 -0
  39. rougail_output_json-1.0.0/tests/results/test/00_6choice_variable_link.json +9 -0
  40. rougail_output_json-1.0.0/tests/results/test/00_6choice_variable_link2.json +11 -0
  41. rougail_output_json-1.0.0/tests/results/test/00_6custom.json +4 -0
  42. rougail_output_json-1.0.0/tests/results/test/00_6domainname.json +3 -0
  43. rougail_output_json-1.0.0/tests/results/test/00_6domainname_params.json +3 -0
  44. rougail_output_json-1.0.0/tests/results/test/00_6float.json +8 -0
  45. rougail_output_json-1.0.0/tests/results/test/00_6integer.json +8 -0
  46. rougail_output_json-1.0.0/tests/results/test/00_6ip.json +5 -0
  47. rougail_output_json-1.0.0/tests/results/test/00_6network.json +5 -0
  48. rougail_output_json-1.0.0/tests/results/test/00_6number.json +8 -0
  49. rougail_output_json-1.0.0/tests/results/test/00_6port.json +5 -0
  50. rougail_output_json-1.0.0/tests/results/test/00_6regexp.json +3 -0
  51. rougail_output_json-1.0.0/tests/results/test/00_6regexp_link.json +4 -0
  52. rougail_output_json-1.0.0/tests/results/test/00_6secret.json +4 -0
  53. rougail_output_json-1.0.0/tests/results/test/00_6secret_param.json +5 -0
  54. rougail_output_json-1.0.0/tests/results/test/00_6string.json +10 -0
  55. rougail_output_json-1.0.0/tests/results/test/00_7choice_quote.json +3 -0
  56. rougail_output_json-1.0.0/tests/results/test/00_7help.json +4 -0
  57. rougail_output_json-1.0.0/tests/results/test/00_7help_quote.json +4 -0
  58. rougail_output_json-1.0.0/tests/results/test/00_7help_sup.json +4 -0
  59. rougail_output_json-1.0.0/tests/results/test/00_7value_doublequote.json +3 -0
  60. rougail_output_json-1.0.0/tests/results/test/00_7value_doublequote2.json +3 -0
  61. rougail_output_json-1.0.0/tests/results/test/00_7value_doublequote3.json +3 -0
  62. rougail_output_json-1.0.0/tests/results/test/00_7value_quote.json +3 -0
  63. rougail_output_json-1.0.0/tests/results/test/00_8calculation_information.json +3 -0
  64. rougail_output_json-1.0.0/tests/results/test/00_8test.json +11 -0
  65. rougail_output_json-1.0.0/tests/results/test/00_9choice_variable_multi.json +10 -0
  66. rougail_output_json-1.0.0/tests/results/test/00_9choice_variables.json +5 -0
  67. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation.json +3 -0
  68. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_information.json +3 -0
  69. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_information_other_variable.json +4 -0
  70. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_multi_optional.json +8 -0
  71. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_multi_optional2.json +8 -0
  72. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_multi_optional_default.json +8 -0
  73. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_optional.json +7 -0
  74. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_optional_exists.json +12 -0
  75. rougail_output_json-1.0.0/tests/results/test/00_9default_calculation_param_optional.json +4 -0
  76. rougail_output_json-1.0.0/tests/results/test/00_9default_information_other_variable.json +4 -0
  77. rougail_output_json-1.0.0/tests/results/test/00_9default_information_other_variable2.json +4 -0
  78. rougail_output_json-1.0.0/tests/results/test/00_9default_integer.json +3 -0
  79. rougail_output_json-1.0.0/tests/results/test/00_9default_number.json +3 -0
  80. rougail_output_json-1.0.0/tests/results/test/01_6boolean_multi.json +26 -0
  81. rougail_output_json-1.0.0/tests/results/test/01_6custom_multi.json +12 -0
  82. rougail_output_json-1.0.0/tests/results/test/01_6float_multi.json +42 -0
  83. rougail_output_json-1.0.0/tests/results/test/01_6integer_multi.json +42 -0
  84. rougail_output_json-1.0.0/tests/results/test/01_6integer_multi_mandatory.json +7 -0
  85. rougail_output_json-1.0.0/tests/results/test/01_6string_empty.json +7 -0
  86. rougail_output_json-1.0.0/tests/results/test/01_6string_multi.json +42 -0
  87. rougail_output_json-1.0.0/tests/results/test/01_6string_multi_length.json +12 -0
  88. rougail_output_json-1.0.0/tests/results/test/01_7value_multi_doublequote.json +7 -0
  89. rougail_output_json-1.0.0/tests/results/test/01_7value_multi_doublequote2.json +7 -0
  90. rougail_output_json-1.0.0/tests/results/test/01_7value_multi_quote.json +7 -0
  91. rougail_output_json-1.0.0/tests/results/test/01_8calculation_information_multi.json +7 -0
  92. rougail_output_json-1.0.0/tests/results/test/01_9choice_variable_multi.json +8 -0
  93. rougail_output_json-1.0.0/tests/results/test/01_9choice_variable_optional.json +3 -0
  94. rougail_output_json-1.0.0/tests/results/test/02_0tags.json +4 -0
  95. rougail_output_json-1.0.0/tests/results/test/04_0type_param.json +3 -0
  96. rougail_output_json-1.0.0/tests/results/test/04_0type_param_integer.json +3 -0
  97. rougail_output_json-1.0.0/tests/results/test/04_1auto_save.json +3 -0
  98. rougail_output_json-1.0.0/tests/results/test/04_1auto_save_and_calculated.json +4 -0
  99. rougail_output_json-1.0.0/tests/results/test/04_1auto_save_and_calculated_hidden.json +4 -0
  100. rougail_output_json-1.0.0/tests/results/test/04_1auto_save_and_hidden.json +3 -0
  101. rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden.json +5 -0
  102. rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_2.json +5 -0
  103. rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_3.json +4 -0
  104. rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_4.json +5 -0
  105. rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_5.json +5 -0
  106. rougail_output_json-1.0.0/tests/results/test/04_1default_calculation_hidden_6.json +4 -0
  107. rougail_output_json-1.0.0/tests/results/test/04_1jinja_and_hidden.json +3 -0
  108. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_boolean.json +4 -0
  109. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_optional.json +5 -0
  110. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_optional_default.json +7 -0
  111. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable.json +3 -0
  112. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable10.json +3 -0
  113. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable11.json +1 -0
  114. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable2.json +3 -0
  115. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable3.json +4 -0
  116. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable4.json +3 -0
  117. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable5.json +4 -0
  118. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable6.json +3 -0
  119. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable7.json +3 -0
  120. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable8.json +3 -0
  121. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable9.json +3 -0
  122. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_multi.json +3 -0
  123. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive.json +3 -0
  124. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive_2.json +1 -0
  125. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive_3.json +3 -0
  126. rougail_output_json-1.0.0/tests/results/test/04_5disabled_calculation_variable_transitive_4.json +3 -0
  127. rougail_output_json-1.0.0/tests/results/test/04_5validators.json +3 -0
  128. rougail_output_json-1.0.0/tests/results/test/04_5validators_differ.json +4 -0
  129. rougail_output_json-1.0.0/tests/results/test/04_5validators_multi.json +7 -0
  130. rougail_output_json-1.0.0/tests/results/test/04_5validators_multi2.json +6 -0
  131. rougail_output_json-1.0.0/tests/results/test/04_5validators_multi3.json +5 -0
  132. rougail_output_json-1.0.0/tests/results/test/04_5validators_warnings.json +3 -0
  133. rougail_output_json-1.0.0/tests/results/test/04_5validators_warnings_all.json +3 -0
  134. rougail_output_json-1.0.0/tests/results/test/05_0multi_not_uniq.json +7 -0
  135. rougail_output_json-1.0.0/tests/results/test/05_0multi_uniq.json +7 -0
  136. rougail_output_json-1.0.0/tests/results/test/12_1auto_save_expert.json +3 -0
  137. rougail_output_json-1.0.0/tests/results/test/16_0redefine_description.json +3 -0
  138. rougail_output_json-1.0.0/tests/results/test/16_2family_redefine_calculation.json +1 -0
  139. rougail_output_json-1.0.0/tests/results/test/16_2family_redefine_disabled.json +1 -0
  140. rougail_output_json-1.0.0/tests/results/test/16_3family_empty_at_ends.json +5 -0
  141. rougail_output_json-1.0.0/tests/results/test/16_5exists_nonexists.json +4 -0
  142. rougail_output_json-1.0.0/tests/results/test/16_5exists_redefine.json +3 -0
  143. rougail_output_json-1.0.0/tests/results/test/16_5redefine_calculation.json +3 -0
  144. rougail_output_json-1.0.0/tests/results/test/16_5redefine_choice.json +3 -0
  145. rougail_output_json-1.0.0/tests/results/test/16_5redefine_default.json +3 -0
  146. rougail_output_json-1.0.0/tests/results/test/16_5redefine_default_calculation.json +3 -0
  147. rougail_output_json-1.0.0/tests/results/test/16_5redefine_family.json +5 -0
  148. rougail_output_json-1.0.0/tests/results/test/16_5redefine_help.json +5 -0
  149. rougail_output_json-1.0.0/tests/results/test/16_5redefine_hidden.json +3 -0
  150. rougail_output_json-1.0.0/tests/results/test/16_5redefine_multi.json +7 -0
  151. rougail_output_json-1.0.0/tests/results/test/16_5redefine_remove_disable_calculation.json +4 -0
  152. rougail_output_json-1.0.0/tests/results/test/16_5test_redefine.json +5 -0
  153. rougail_output_json-1.0.0/tests/results/test/16_6choice_redefine.json +3 -0
  154. rougail_output_json-1.0.0/tests/results/test/16_6exists_family.json +1 -0
  155. rougail_output_json-1.0.0/tests/results/test/16_6exists_redefine_family.json +8 -0
  156. rougail_output_json-1.0.0/tests/results/test/16exists_exists.json +3 -0
  157. rougail_output_json-1.0.0/tests/results/test/17_5redefine_leadership.json +3 -0
  158. rougail_output_json-1.0.0/tests/results/test/20_0empty_family.json +1 -0
  159. rougail_output_json-1.0.0/tests/results/test/20_0family_append.json +6 -0
  160. rougail_output_json-1.0.0/tests/results/test/20_0family_underscore.json +1 -0
  161. rougail_output_json-1.0.0/tests/results/test/20_0multi_family.json +7 -0
  162. rougail_output_json-1.0.0/tests/results/test/20_0multi_family_basic.json +7 -0
  163. rougail_output_json-1.0.0/tests/results/test/20_0multi_family_expert.json +7 -0
  164. rougail_output_json-1.0.0/tests/results/test/20_0multi_family_order.json +10 -0
  165. rougail_output_json-1.0.0/tests/results/test/20_0validators_differ_redefine.json +5 -0
  166. rougail_output_json-1.0.0/tests/results/test/20_1empty_subfamily.json +1 -0
  167. rougail_output_json-1.0.0/tests/results/test/20_2family_looks_like_dynamic.json +10 -0
  168. rougail_output_json-1.0.0/tests/results/test/20_2family_looks_like_variable.json +5 -0
  169. rougail_output_json-1.0.0/tests/results/test/20_7help_family.json +8 -0
  170. rougail_output_json-1.0.0/tests/results/test/20_9default_information_parent.json +6 -0
  171. rougail_output_json-1.0.0/tests/results/test/20_9family_absolute.json +24 -0
  172. rougail_output_json-1.0.0/tests/results/test/24_0family_hidden_condition_sub_family.json +8 -0
  173. rougail_output_json-1.0.0/tests/results/test/24_0family_hidden_condition_variable_sub_family.json +8 -0
  174. rougail_output_json-1.0.0/tests/results/test/24_0family_hidden_param_condition_sub_family.json +8 -0
  175. rougail_output_json-1.0.0/tests/results/test/24_0family_mandatory_condition.json +4 -0
  176. rougail_output_json-1.0.0/tests/results/test/24_0family_mandatory_condition_variable.json +4 -0
  177. rougail_output_json-1.0.0/tests/results/test/24_7validators_variable_optional.json +6 -0
  178. rougail_output_json-1.0.0/tests/results/test/24_family_disabled_var_hidden.json +1 -0
  179. rougail_output_json-1.0.0/tests/results/test/40_0leadership.json +19 -0
  180. rougail_output_json-1.0.0/tests/results/test/40_0leadership_diff_name.json +19 -0
  181. rougail_output_json-1.0.0/tests/results/test/40_0leadership_empty.json +1 -0
  182. rougail_output_json-1.0.0/tests/results/test/40_0leadership_follower_default_calculation.json +19 -0
  183. rougail_output_json-1.0.0/tests/results/test/40_0leadership_follower_default_value.json +16 -0
  184. rougail_output_json-1.0.0/tests/results/test/40_0leadership_leader_follower.json +16 -0
  185. rougail_output_json-1.0.0/tests/results/test/40_0leadership_leader_not_multi.json +24 -0
  186. rougail_output_json-1.0.0/tests/results/test/40_0leadership_reduce.json +12 -0
  187. rougail_output_json-1.0.0/tests/results/test/40_1leadership_append_follower.json +22 -0
  188. rougail_output_json-1.0.0/tests/results/test/40_2leadership_calculation_index.json +16 -0
  189. rougail_output_json-1.0.0/tests/results/test/40_2leadership_calculation_index_2.json +16 -0
  190. rougail_output_json-1.0.0/tests/results/test/40_6leadership_follower_multi.json +43 -0
  191. rougail_output_json-1.0.0/tests/results/test/40_6leadership_follower_multi_no_mandatory.json +43 -0
  192. rougail_output_json-1.0.0/tests/results/test/40_8calculation_boolean.json +9 -0
  193. rougail_output_json-1.0.0/tests/results/test/40_8calculation_multi_variable.json +9 -0
  194. rougail_output_json-1.0.0/tests/results/test/40_8calculation_multi_variable_parent.json +6 -0
  195. rougail_output_json-1.0.0/tests/results/test/40_8calculation_multi_variable_parent2.json +8 -0
  196. rougail_output_json-1.0.0/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.json +28 -0
  197. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower-first.json +24 -0
  198. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower-last.json +24 -0
  199. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.json +21 -0
  200. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-follower.json +24 -0
  201. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-leader-first.json +20 -0
  202. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-leader-last.json +20 -0
  203. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-outside-leader.json +24 -0
  204. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-variable.json +24 -0
  205. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-variable_leader_follower.json +30 -0
  206. rougail_output_json-1.0.0/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.json +42 -0
  207. rougail_output_json-1.0.0/tests/results/test/41_0choice_leader.json +16 -0
  208. rougail_output_json-1.0.0/tests/results/test/44_0leadership_hidden.json +3 -0
  209. rougail_output_json-1.0.0/tests/results/test/44_0leadership_leader_hidden.json +3 -0
  210. rougail_output_json-1.0.0/tests/results/test/44_1leadership_append_hidden_follower.json +3 -0
  211. rougail_output_json-1.0.0/tests/results/test/44_4disabled_calcultion_follower_index.json +15 -0
  212. rougail_output_json-1.0.0/tests/results/test/44_4leadership_mandatory.json +16 -0
  213. rougail_output_json-1.0.0/tests/results/test/44_4leadership_mandatory_follower.json +16 -0
  214. rougail_output_json-1.0.0/tests/results/test/44_5leadership_leader_hidden_calculation.json +17 -0
  215. rougail_output_json-1.0.0/tests/results/test/44_6leadership_follower_disabled_calculation.json +17 -0
  216. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic.json +12 -0
  217. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_1_1.json +12 -0
  218. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_1_1_empty.json +12 -0
  219. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_empty.json +16 -0
  220. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_forbidden_char.json +14 -0
  221. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_no_description.json +12 -0
  222. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_no_description_empty.json +12 -0
  223. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_source_hidden.json +12 -0
  224. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_static.json +8 -0
  225. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_test.json +12 -0
  226. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_upper_char.json +12 -0
  227. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable.json +12 -0
  228. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_empty.json +16 -0
  229. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_optional.json +8 -0
  230. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_suffix.json +12 -0
  231. rougail_output_json-1.0.0/tests/results/test/60_0family_dynamic_variable_suffix_empty.json +12 -0
  232. rougail_output_json-1.0.0/tests/results/test/60_0family_empty.json +1 -0
  233. rougail_output_json-1.0.0/tests/results/test/60_0family_hidden.json +5 -0
  234. rougail_output_json-1.0.0/tests/results/test/60_0family_mode.json +5 -0
  235. rougail_output_json-1.0.0/tests/results/test/60_1family_dynamic_jinja.json +16 -0
  236. rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.json +17 -0
  237. rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.json +17 -0
  238. rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +17 -0
  239. rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.json +17 -0
  240. rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_outside_calc.json +13 -0
  241. rougail_output_json-1.0.0/tests/results/test/60_2family_dynamic_outside_calc_empty.json +13 -0
  242. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_description.json +14 -0
  243. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_identifier.json +14 -0
  244. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_identifier_multi.json +26 -0
  245. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix2.json +12 -0
  246. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix2_empty.json +12 -0
  247. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix_disabled.json +6 -0
  248. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix_param.json +12 -0
  249. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.json +12 -0
  250. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable.json +13 -0
  251. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable_disabled.json +10 -0
  252. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.json +9 -0
  253. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_calc_variable_empty.json +13 -0
  254. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_hidden_suffix.json +14 -0
  255. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_variable_outside_suffix.json +13 -0
  256. rougail_output_json-1.0.0/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.json +13 -0
  257. rougail_output_json-1.0.0/tests/results/test/60_6family_dynamic_leadership.json +44 -0
  258. rougail_output_json-1.0.0/tests/results/test/60_6family_dynamic_leadership_empty.json +44 -0
  259. rougail_output_json-1.0.0/tests/results/test/60_6family_subdynamic_inside.json +42 -0
  260. rougail_output_json-1.0.0/tests/results/test/60_9family_dynamic_calc_both.json +9 -0
  261. rougail_output_json-1.0.0/tests/results/test/68_0family_leadership_mode.json +19 -0
  262. rougail_output_json-1.0.0/tests/results/test_namespace/00_0empty.json +1 -0
  263. rougail_output_json-1.0.0/tests/results/test_namespace/00_0no_variable.json +1 -0
  264. rougail_output_json-1.0.0/tests/results/test_namespace/00_0no_variable_default_version.json +1 -0
  265. rougail_output_json-1.0.0/tests/results/test_namespace/00_0no_variable_remove_version.json +1 -0
  266. rougail_output_json-1.0.0/tests/results/test_namespace/00_0version_underscore.json +5 -0
  267. rougail_output_json-1.0.0/tests/results/test_namespace/00_1empty_variable.json +5 -0
  268. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated.json +10 -0
  269. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_multi.json +14 -0
  270. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_params_permissive.json +11 -0
  271. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable.json +12 -0
  272. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable_description.json +6 -0
  273. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.json +7 -0
  274. rougail_output_json-1.0.0/tests/results/test_namespace/00_2default_calculated_variable_transitive.json +12 -0
  275. rougail_output_json-1.0.0/tests/results/test_namespace/00_4load_subfolder.json +6 -0
  276. rougail_output_json-1.0.0/tests/results/test_namespace/00_5load_notype.json +5 -0
  277. rougail_output_json-1.0.0/tests/results/test_namespace/00_6boolean.json +10 -0
  278. rougail_output_json-1.0.0/tests/results/test_namespace/00_6boolean_no_mandatory.json +5 -0
  279. rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice.json +10 -0
  280. rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_calculation.json +5 -0
  281. rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_link.json +6 -0
  282. rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_variable.json +10 -0
  283. rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_variable_link.json +11 -0
  284. rougail_output_json-1.0.0/tests/results/test_namespace/00_6choice_variable_link2.json +13 -0
  285. rougail_output_json-1.0.0/tests/results/test_namespace/00_6custom.json +6 -0
  286. rougail_output_json-1.0.0/tests/results/test_namespace/00_6domainname.json +5 -0
  287. rougail_output_json-1.0.0/tests/results/test_namespace/00_6domainname_params.json +5 -0
  288. rougail_output_json-1.0.0/tests/results/test_namespace/00_6float.json +10 -0
  289. rougail_output_json-1.0.0/tests/results/test_namespace/00_6integer.json +10 -0
  290. rougail_output_json-1.0.0/tests/results/test_namespace/00_6ip.json +7 -0
  291. rougail_output_json-1.0.0/tests/results/test_namespace/00_6network.json +7 -0
  292. rougail_output_json-1.0.0/tests/results/test_namespace/00_6number.json +10 -0
  293. rougail_output_json-1.0.0/tests/results/test_namespace/00_6port.json +7 -0
  294. rougail_output_json-1.0.0/tests/results/test_namespace/00_6regexp.json +5 -0
  295. rougail_output_json-1.0.0/tests/results/test_namespace/00_6regexp_link.json +6 -0
  296. rougail_output_json-1.0.0/tests/results/test_namespace/00_6secret.json +6 -0
  297. rougail_output_json-1.0.0/tests/results/test_namespace/00_6secret_param.json +7 -0
  298. rougail_output_json-1.0.0/tests/results/test_namespace/00_6string.json +12 -0
  299. rougail_output_json-1.0.0/tests/results/test_namespace/00_7choice_quote.json +5 -0
  300. rougail_output_json-1.0.0/tests/results/test_namespace/00_7help.json +6 -0
  301. rougail_output_json-1.0.0/tests/results/test_namespace/00_7help_quote.json +6 -0
  302. rougail_output_json-1.0.0/tests/results/test_namespace/00_7help_sup.json +6 -0
  303. rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_doublequote.json +5 -0
  304. rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_doublequote2.json +5 -0
  305. rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_doublequote3.json +5 -0
  306. rougail_output_json-1.0.0/tests/results/test_namespace/00_7value_quote.json +5 -0
  307. rougail_output_json-1.0.0/tests/results/test_namespace/00_8calculation_information.json +5 -0
  308. rougail_output_json-1.0.0/tests/results/test_namespace/00_8calculation_namespace.json +5 -0
  309. rougail_output_json-1.0.0/tests/results/test_namespace/00_8calculation_param_namespace.json +5 -0
  310. rougail_output_json-1.0.0/tests/results/test_namespace/00_8test.json +13 -0
  311. rougail_output_json-1.0.0/tests/results/test_namespace/00_9choice_variable_multi.json +12 -0
  312. rougail_output_json-1.0.0/tests/results/test_namespace/00_9choice_variables.json +7 -0
  313. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation.json +5 -0
  314. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_information.json +5 -0
  315. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_information_other_variable.json +6 -0
  316. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_multi_optional.json +10 -0
  317. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_multi_optional2.json +10 -0
  318. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_multi_optional_default.json +10 -0
  319. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_optional.json +9 -0
  320. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_optional_exists.json +14 -0
  321. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_calculation_param_optional.json +6 -0
  322. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_information_other_variable.json +6 -0
  323. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_information_other_variable2.json +6 -0
  324. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_integer.json +5 -0
  325. rougail_output_json-1.0.0/tests/results/test_namespace/00_9default_number.json +5 -0
  326. rougail_output_json-1.0.0/tests/results/test_namespace/00_9extra.json +8 -0
  327. rougail_output_json-1.0.0/tests/results/test_namespace/00_9extra_calculation.json +10 -0
  328. rougail_output_json-1.0.0/tests/results/test_namespace/00_9extra_ouside.json +8 -0
  329. rougail_output_json-1.0.0/tests/results/test_namespace/01_6boolean_multi.json +28 -0
  330. rougail_output_json-1.0.0/tests/results/test_namespace/01_6custom_multi.json +14 -0
  331. rougail_output_json-1.0.0/tests/results/test_namespace/01_6float_multi.json +44 -0
  332. rougail_output_json-1.0.0/tests/results/test_namespace/01_6integer_multi.json +44 -0
  333. rougail_output_json-1.0.0/tests/results/test_namespace/01_6integer_multi_mandatory.json +9 -0
  334. rougail_output_json-1.0.0/tests/results/test_namespace/01_6string_empty.json +9 -0
  335. rougail_output_json-1.0.0/tests/results/test_namespace/01_6string_multi.json +44 -0
  336. rougail_output_json-1.0.0/tests/results/test_namespace/01_6string_multi_length.json +14 -0
  337. rougail_output_json-1.0.0/tests/results/test_namespace/01_7value_multi_doublequote.json +9 -0
  338. rougail_output_json-1.0.0/tests/results/test_namespace/01_7value_multi_doublequote2.json +9 -0
  339. rougail_output_json-1.0.0/tests/results/test_namespace/01_7value_multi_quote.json +9 -0
  340. rougail_output_json-1.0.0/tests/results/test_namespace/01_8calculation_information_multi.json +9 -0
  341. rougail_output_json-1.0.0/tests/results/test_namespace/01_9choice_variable_multi.json +10 -0
  342. rougail_output_json-1.0.0/tests/results/test_namespace/01_9choice_variable_optional.json +5 -0
  343. rougail_output_json-1.0.0/tests/results/test_namespace/02_0tags.json +6 -0
  344. rougail_output_json-1.0.0/tests/results/test_namespace/04_0type_param.json +5 -0
  345. rougail_output_json-1.0.0/tests/results/test_namespace/04_0type_param_integer.json +5 -0
  346. rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save.json +5 -0
  347. rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save_and_calculated.json +6 -0
  348. rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.json +6 -0
  349. rougail_output_json-1.0.0/tests/results/test_namespace/04_1auto_save_and_hidden.json +5 -0
  350. rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden.json +7 -0
  351. rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_2.json +7 -0
  352. rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_3.json +6 -0
  353. rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_4.json +7 -0
  354. rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_5.json +7 -0
  355. rougail_output_json-1.0.0/tests/results/test_namespace/04_1default_calculation_hidden_6.json +6 -0
  356. rougail_output_json-1.0.0/tests/results/test_namespace/04_1jinja_and_hidden.json +5 -0
  357. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation.json +7 -0
  358. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_boolean.json +6 -0
  359. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_default.json +7 -0
  360. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_multi.json +15 -0
  361. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_optional.json +7 -0
  362. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_optional_default.json +9 -0
  363. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable.json +5 -0
  364. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable10.json +5 -0
  365. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable11.json +3 -0
  366. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable2.json +5 -0
  367. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable3.json +6 -0
  368. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable4.json +5 -0
  369. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable5.json +6 -0
  370. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable6.json +5 -0
  371. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable7.json +5 -0
  372. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable8.json +5 -0
  373. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable9.json +5 -0
  374. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_multi.json +5 -0
  375. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.json +5 -0
  376. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.json +3 -0
  377. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.json +5 -0
  378. rougail_output_json-1.0.0/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.json +5 -0
  379. rougail_output_json-1.0.0/tests/results/test_namespace/04_5hidden_calculation.json +7 -0
  380. rougail_output_json-1.0.0/tests/results/test_namespace/04_5hidden_calculation2.json +7 -0
  381. rougail_output_json-1.0.0/tests/results/test_namespace/04_5hidden_calculation_default_calculation.json +7 -0
  382. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators.json +5 -0
  383. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_differ.json +6 -0
  384. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_multi.json +9 -0
  385. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_multi2.json +8 -0
  386. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_multi3.json +7 -0
  387. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_warnings.json +5 -0
  388. rougail_output_json-1.0.0/tests/results/test_namespace/04_5validators_warnings_all.json +5 -0
  389. rougail_output_json-1.0.0/tests/results/test_namespace/05_0multi_not_uniq.json +9 -0
  390. rougail_output_json-1.0.0/tests/results/test_namespace/05_0multi_uniq.json +9 -0
  391. rougail_output_json-1.0.0/tests/results/test_namespace/12_1auto_save_expert.json +5 -0
  392. rougail_output_json-1.0.0/tests/results/test_namespace/16_0redefine_description.json +5 -0
  393. rougail_output_json-1.0.0/tests/results/test_namespace/16_2family_redefine_calculation.json +3 -0
  394. rougail_output_json-1.0.0/tests/results/test_namespace/16_2family_redefine_disabled.json +3 -0
  395. rougail_output_json-1.0.0/tests/results/test_namespace/16_3family_empty_at_ends.json +7 -0
  396. rougail_output_json-1.0.0/tests/results/test_namespace/16_5exists_nonexists.json +6 -0
  397. rougail_output_json-1.0.0/tests/results/test_namespace/16_5exists_redefine.json +5 -0
  398. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_calculation.json +5 -0
  399. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_choice.json +5 -0
  400. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_default.json +5 -0
  401. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_default_calculation.json +5 -0
  402. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_family.json +7 -0
  403. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_help.json +7 -0
  404. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_hidden.json +5 -0
  405. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_multi.json +9 -0
  406. rougail_output_json-1.0.0/tests/results/test_namespace/16_5redefine_remove_disable_calculation.json +6 -0
  407. rougail_output_json-1.0.0/tests/results/test_namespace/16_5test_redefine.json +7 -0
  408. rougail_output_json-1.0.0/tests/results/test_namespace/16_6choice_redefine.json +5 -0
  409. rougail_output_json-1.0.0/tests/results/test_namespace/16_6exists_family.json +1 -0
  410. rougail_output_json-1.0.0/tests/results/test_namespace/16_6exists_redefine_family.json +10 -0
  411. rougail_output_json-1.0.0/tests/results/test_namespace/16exists_exists.json +5 -0
  412. rougail_output_json-1.0.0/tests/results/test_namespace/17_5redefine_leadership.json +5 -0
  413. rougail_output_json-1.0.0/tests/results/test_namespace/20_0empty_family.json +1 -0
  414. rougail_output_json-1.0.0/tests/results/test_namespace/20_0family_append.json +8 -0
  415. rougail_output_json-1.0.0/tests/results/test_namespace/20_0family_underscore.json +3 -0
  416. rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family.json +9 -0
  417. rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family_basic.json +9 -0
  418. rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family_expert.json +9 -0
  419. rougail_output_json-1.0.0/tests/results/test_namespace/20_0multi_family_order.json +12 -0
  420. rougail_output_json-1.0.0/tests/results/test_namespace/20_0validators_differ_redefine.json +7 -0
  421. rougail_output_json-1.0.0/tests/results/test_namespace/20_1empty_subfamily.json +1 -0
  422. rougail_output_json-1.0.0/tests/results/test_namespace/20_2family_looks_like_dynamic.json +12 -0
  423. rougail_output_json-1.0.0/tests/results/test_namespace/20_2family_looks_like_variable.json +7 -0
  424. rougail_output_json-1.0.0/tests/results/test_namespace/20_7help_family.json +10 -0
  425. rougail_output_json-1.0.0/tests/results/test_namespace/20_9default_information_parent.json +8 -0
  426. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition.json +8 -0
  427. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_boolean.json +8 -0
  428. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_sub_family.json +10 -0
  429. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.json +10 -0
  430. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_condition_with_variable.json +9 -0
  431. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.json +10 -0
  432. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_mandatory_condition.json +6 -0
  433. rougail_output_json-1.0.0/tests/results/test_namespace/24_0family_mandatory_condition_variable.json +6 -0
  434. rougail_output_json-1.0.0/tests/results/test_namespace/24_7validators_variable_optional.json +8 -0
  435. rougail_output_json-1.0.0/tests/results/test_namespace/24_family_disabled_var_hidden.json +3 -0
  436. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership.json +21 -0
  437. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_diff_name.json +21 -0
  438. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_empty.json +1 -0
  439. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_calculation.json +21 -0
  440. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_submulti.json +45 -0
  441. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.json +45 -0
  442. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_follower_default_value.json +18 -0
  443. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_leader_follower.json +18 -0
  444. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_leader_not_multi.json +26 -0
  445. rougail_output_json-1.0.0/tests/results/test_namespace/40_0leadership_reduce.json +14 -0
  446. rougail_output_json-1.0.0/tests/results/test_namespace/40_1leadership_append_follower.json +24 -0
  447. rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_calculation_index.json +18 -0
  448. rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_calculation_index_2.json +18 -0
  449. rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_calculation_param_index.json +18 -0
  450. rougail_output_json-1.0.0/tests/results/test_namespace/40_2leadership_leader_calculation.json +21 -0
  451. rougail_output_json-1.0.0/tests/results/test_namespace/40_6leadership_follower_multi.json +45 -0
  452. rougail_output_json-1.0.0/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.json +45 -0
  453. rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_boolean.json +11 -0
  454. rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_boolean_return_none.json +6 -0
  455. rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_integer.json +7 -0
  456. rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_multi_variable.json +11 -0
  457. rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_multi_variable_parent.json +8 -0
  458. rougail_output_json-1.0.0/tests/results/test_namespace/40_8calculation_multi_variable_parent2.json +10 -0
  459. rougail_output_json-1.0.0/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.json +30 -0
  460. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.json +26 -0
  461. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.json +26 -0
  462. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.json +23 -0
  463. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-follower.json +26 -0
  464. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.json +22 -0
  465. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.json +22 -0
  466. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-outside-leader.json +26 -0
  467. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-variable.json +26 -0
  468. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.json +32 -0
  469. rougail_output_json-1.0.0/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.json +44 -0
  470. rougail_output_json-1.0.0/tests/results/test_namespace/41_0choice_leader.json +18 -0
  471. rougail_output_json-1.0.0/tests/results/test_namespace/44_0leadership_hidden.json +5 -0
  472. rougail_output_json-1.0.0/tests/results/test_namespace/44_0leadership_leader_hidden.json +5 -0
  473. rougail_output_json-1.0.0/tests/results/test_namespace/44_1leadership_append_hidden_follower.json +5 -0
  474. rougail_output_json-1.0.0/tests/results/test_namespace/44_4disabled_calcultion_follower.json +19 -0
  475. rougail_output_json-1.0.0/tests/results/test_namespace/44_4disabled_calcultion_follower_index.json +17 -0
  476. rougail_output_json-1.0.0/tests/results/test_namespace/44_4leadership_mandatory.json +18 -0
  477. rougail_output_json-1.0.0/tests/results/test_namespace/44_4leadership_mandatory_follower.json +18 -0
  478. rougail_output_json-1.0.0/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.json +19 -0
  479. rougail_output_json-1.0.0/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.json +19 -0
  480. rougail_output_json-1.0.0/tests/results/test_namespace/44_9calculated_default_leadership_leader.json +18 -0
  481. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic.json +14 -0
  482. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0.json +14 -0
  483. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0_empty.json +14 -0
  484. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0_type.json +14 -0
  485. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.json +14 -0
  486. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_1.json +14 -0
  487. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_1_1_empty.json +14 -0
  488. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_empty.json +18 -0
  489. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json +16 -0
  490. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.json +15 -0
  491. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty2.json +15 -0
  492. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_jinja_number.json +15 -0
  493. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_no_description.json +14 -0
  494. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_no_description_empty.json +14 -0
  495. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_source_hidden.json +14 -0
  496. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_static.json +10 -0
  497. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_test.json +14 -0
  498. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_upper_char.json +14 -0
  499. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable.json +14 -0
  500. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_empty.json +18 -0
  501. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_optional.json +10 -0
  502. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_suffix.json +14 -0
  503. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.json +14 -0
  504. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_empty.json +1 -0
  505. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_hidden.json +7 -0
  506. rougail_output_json-1.0.0/tests/results/test_namespace/60_0family_mode.json +7 -0
  507. rougail_output_json-1.0.0/tests/results/test_namespace/60_1family_dynamic_jinja.json +18 -0
  508. rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.json +19 -0
  509. rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.json +19 -0
  510. rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +19 -0
  511. rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.json +19 -0
  512. rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_outside_calc.json +15 -0
  513. rougail_output_json-1.0.0/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.json +15 -0
  514. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc2.json +15 -0
  515. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc2_empty.json +15 -0
  516. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_description.json +16 -0
  517. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_identifier.json +16 -0
  518. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.json +28 -0
  519. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix.json +15 -0
  520. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.json +14 -0
  521. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.json +14 -0
  522. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.json +8 -0
  523. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.json +9 -0
  524. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled3.json +11 -0
  525. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.json +15 -0
  526. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.json +11 -0
  527. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json +15 -0
  528. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.json +15 -0
  529. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.json +15 -0
  530. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.json +25 -0
  531. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.json +14 -0
  532. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.json +14 -0
  533. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable.json +15 -0
  534. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.json +12 -0
  535. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.json +11 -0
  536. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.json +15 -0
  537. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.json +16 -0
  538. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.json +18 -0
  539. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.json +34 -0
  540. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside.json +19 -0
  541. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside2.json +19 -0
  542. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.json +19 -0
  543. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.json +19 -0
  544. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.json +19 -0
  545. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.json +19 -0
  546. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.json +19 -0
  547. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.json +29 -0
  548. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.json +29 -0
  549. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.json +15 -0
  550. rougail_output_json-1.0.0/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.json +15 -0
  551. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_inside.json +20 -0
  552. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_inside_empty.json +20 -0
  553. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_inside_identifier.json +20 -0
  554. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_leadership.json +46 -0
  555. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_leadership_empty.json +46 -0
  556. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.json +40 -0
  557. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.json +40 -0
  558. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.json +24 -0
  559. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.json +40 -0
  560. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.json +52 -0
  561. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.json +29 -0
  562. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.json +29 -0
  563. rougail_output_json-1.0.0/tests/results/test_namespace/60_6family_subdynamic_inside.json +44 -0
  564. rougail_output_json-1.0.0/tests/results/test_namespace/60_9extra_dynamic.json +12 -0
  565. rougail_output_json-1.0.0/tests/results/test_namespace/60_9extra_dynamic_extra.json +19 -0
  566. rougail_output_json-1.0.0/tests/results/test_namespace/60_9family_dynamic_calc_both.json +11 -0
  567. rougail_output_json-1.0.0/tests/results/test_namespace/68_0family_leadership_mode.json +21 -0
  568. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0empty.json +1 -0
  569. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0no_variable.json +1 -0
  570. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0no_variable_default_version.json +1 -0
  571. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0no_variable_remove_version.json +1 -0
  572. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_0version_underscore.json +5 -0
  573. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_1empty_variable.json +5 -0
  574. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated.json +8 -0
  575. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_multi.json +14 -0
  576. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_params_permissive.json +5 -0
  577. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable.json +6 -0
  578. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.json +6 -0
  579. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.json +7 -0
  580. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.json +6 -0
  581. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_4load_subfolder.json +6 -0
  582. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_5load_notype.json +5 -0
  583. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6boolean.json +10 -0
  584. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.json +5 -0
  585. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice.json +10 -0
  586. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_calculation.json +5 -0
  587. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_link.json +6 -0
  588. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_variable.json +10 -0
  589. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_variable_link.json +11 -0
  590. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6choice_variable_link2.json +13 -0
  591. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6custom.json +6 -0
  592. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6domainname.json +5 -0
  593. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6domainname_params.json +5 -0
  594. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6float.json +10 -0
  595. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6integer.json +10 -0
  596. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6ip.json +7 -0
  597. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6network.json +7 -0
  598. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6number.json +10 -0
  599. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6port.json +7 -0
  600. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6regexp.json +5 -0
  601. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6regexp_link.json +6 -0
  602. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6secret.json +6 -0
  603. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6secret_param.json +7 -0
  604. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_6string.json +12 -0
  605. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7choice_quote.json +5 -0
  606. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7help.json +6 -0
  607. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7help_quote.json +6 -0
  608. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7help_sup.json +6 -0
  609. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_doublequote.json +5 -0
  610. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_doublequote2.json +5 -0
  611. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_doublequote3.json +5 -0
  612. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_7value_quote.json +5 -0
  613. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8calculation_information.json +5 -0
  614. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8calculation_namespace.json +5 -0
  615. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8calculation_param_namespace.json +5 -0
  616. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_8test.json +10 -0
  617. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9choice_variable_multi.json +6 -0
  618. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9choice_variables.json +7 -0
  619. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation.json +5 -0
  620. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_information.json +5 -0
  621. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.json +6 -0
  622. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.json +8 -0
  623. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.json +8 -0
  624. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional_default.json +9 -0
  625. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_optional.json +5 -0
  626. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.json +12 -0
  627. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.json +6 -0
  628. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_information_other_variable.json +6 -0
  629. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_information_other_variable2.json +6 -0
  630. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_integer.json +5 -0
  631. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9default_number.json +5 -0
  632. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9extra.json +8 -0
  633. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9extra_calculation.json +10 -0
  634. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/00_9extra_ouside.json +8 -0
  635. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6boolean_multi.json +28 -0
  636. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6custom_multi.json +8 -0
  637. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6float_multi.json +28 -0
  638. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6integer_multi.json +28 -0
  639. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6integer_multi_mandatory.json +5 -0
  640. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6string_empty.json +8 -0
  641. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6string_multi.json +22 -0
  642. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_6string_multi_length.json +13 -0
  643. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_7value_multi_doublequote.json +7 -0
  644. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.json +7 -0
  645. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_7value_multi_quote.json +7 -0
  646. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_8calculation_information_multi.json +5 -0
  647. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_9choice_variable_multi.json +10 -0
  648. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/01_9choice_variable_optional.json +5 -0
  649. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/02_0tags.json +6 -0
  650. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_0type_param.json +5 -0
  651. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_0type_param_integer.json +5 -0
  652. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save.json +5 -0
  653. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.json +6 -0
  654. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.json +6 -0
  655. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1auto_save_and_hidden.json +3 -0
  656. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden.json +6 -0
  657. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.json +6 -0
  658. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_3.json +5 -0
  659. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.json +6 -0
  660. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_5.json +5 -0
  661. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.json +6 -0
  662. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_1jinja_and_hidden.json +3 -0
  663. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation.json +7 -0
  664. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.json +6 -0
  665. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_default.json +7 -0
  666. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_multi.json +7 -0
  667. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.json +5 -0
  668. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.json +8 -0
  669. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.json +6 -0
  670. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable10.json +5 -0
  671. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable11.json +3 -0
  672. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.json +5 -0
  673. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.json +5 -0
  674. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.json +6 -0
  675. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.json +5 -0
  676. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.json +5 -0
  677. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.json +6 -0
  678. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable8.json +3 -0
  679. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.json +5 -0
  680. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_multi.json +6 -0
  681. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.json +5 -0
  682. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.json +3 -0
  683. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.json +6 -0
  684. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.json +5 -0
  685. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5hidden_calculation.json +7 -0
  686. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5hidden_calculation2.json +5 -0
  687. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.json +7 -0
  688. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators.json +5 -0
  689. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_differ.json +6 -0
  690. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_multi.json +8 -0
  691. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_multi2.json +8 -0
  692. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_multi3.json +9 -0
  693. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_warnings.json +5 -0
  694. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/04_5validators_warnings_all.json +5 -0
  695. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/05_0multi_not_uniq.json +7 -0
  696. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/05_0multi_uniq.json +7 -0
  697. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/12_1auto_save_expert.json +5 -0
  698. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_0redefine_description.json +5 -0
  699. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_2family_redefine_calculation.json +3 -0
  700. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_2family_redefine_disabled.json +3 -0
  701. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_3family_empty_at_ends.json +7 -0
  702. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5exists_nonexists.json +6 -0
  703. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5exists_redefine.json +3 -0
  704. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_calculation.json +5 -0
  705. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_choice.json +5 -0
  706. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_default.json +5 -0
  707. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_default_calculation.json +5 -0
  708. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_family.json +7 -0
  709. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_help.json +7 -0
  710. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_hidden.json +3 -0
  711. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_multi.json +7 -0
  712. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.json +6 -0
  713. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_5test_redefine.json +7 -0
  714. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_6choice_redefine.json +5 -0
  715. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_6exists_family.json +1 -0
  716. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16_6exists_redefine_family.json +10 -0
  717. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/16exists_exists.json +5 -0
  718. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/17_5redefine_leadership.json +3 -0
  719. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0empty_family.json +1 -0
  720. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0family_append.json +8 -0
  721. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0family_underscore.json +3 -0
  722. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family.json +9 -0
  723. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family_basic.json +9 -0
  724. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family_expert.json +9 -0
  725. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0multi_family_order.json +12 -0
  726. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_0validators_differ_redefine.json +7 -0
  727. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_1empty_subfamily.json +1 -0
  728. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_2family_looks_like_dynamic.json +11 -0
  729. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_2family_looks_like_variable.json +7 -0
  730. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_7help_family.json +10 -0
  731. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/20_9default_information_parent.json +8 -0
  732. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition.json +8 -0
  733. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.json +5 -0
  734. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.json +10 -0
  735. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.json +5 -0
  736. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.json +6 -0
  737. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.json +10 -0
  738. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_mandatory_condition.json +6 -0
  739. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.json +6 -0
  740. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_7validators_variable_optional.json +8 -0
  741. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/24_family_disabled_var_hidden.json +3 -0
  742. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership.json +5 -0
  743. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_diff_name.json +5 -0
  744. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_empty.json +1 -0
  745. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.json +5 -0
  746. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.json +16 -0
  747. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.json +15 -0
  748. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.json +5 -0
  749. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_leader_follower.json +14 -0
  750. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.json +10 -0
  751. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_0leadership_reduce.json +18 -0
  752. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_1leadership_append_follower.json +5 -0
  753. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_calculation_index.json +18 -0
  754. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_calculation_index_2.json +18 -0
  755. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.json +18 -0
  756. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.json +16 -0
  757. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_6leadership_follower_multi.json +5 -0
  758. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_6leadership_follower_multi_no_mandatory.json +5 -0
  759. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_boolean.json +12 -0
  760. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.json +6 -0
  761. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_integer.json +7 -0
  762. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_multi_variable.json +10 -0
  763. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.json +8 -0
  764. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.json +10 -0
  765. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9calculation_variable_leader_follower_multi_inside.json +18 -0
  766. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-first.json +19 -0
  767. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-last.json +19 -0
  768. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.json +18 -0
  769. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower.json +20 -0
  770. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-first.json +17 -0
  771. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-last.json +17 -0
  772. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader.json +20 -0
  773. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-variable.json +20 -0
  774. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.json +24 -0
  775. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.json +30 -0
  776. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/41_0choice_leader.json +5 -0
  777. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_0leadership_hidden.json +3 -0
  778. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_0leadership_leader_hidden.json +3 -0
  779. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_1leadership_append_hidden_follower.json +3 -0
  780. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.json +11 -0
  781. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower_index.json +13 -0
  782. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4leadership_mandatory.json +5 -0
  783. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.json +5 -0
  784. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.json +5 -0
  785. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.json +6 -0
  786. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.json +13 -0
  787. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic.json +14 -0
  788. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.json +14 -0
  789. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.json +5 -0
  790. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.json +14 -0
  791. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.json +5 -0
  792. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.json +14 -0
  793. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.json +5 -0
  794. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_empty.json +5 -0
  795. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_forbidden_char.json +16 -0
  796. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.json +6 -0
  797. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty2.json +6 -0
  798. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.json +15 -0
  799. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.json +14 -0
  800. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.json +5 -0
  801. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.json +10 -0
  802. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_static.json +10 -0
  803. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_test.json +5 -0
  804. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.json +14 -0
  805. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable.json +14 -0
  806. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.json +5 -0
  807. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_optional.json +10 -0
  808. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.json +14 -0
  809. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.json +5 -0
  810. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_empty.json +1 -0
  811. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_hidden.json +3 -0
  812. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_0family_mode.json +7 -0
  813. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.json +14 -0
  814. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.json +19 -0
  815. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.json +19 -0
  816. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +6 -0
  817. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.json +6 -0
  818. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.json +15 -0
  819. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.json +6 -0
  820. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.json +15 -0
  821. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.json +6 -0
  822. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.json +15 -0
  823. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.json +15 -0
  824. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.json +21 -0
  825. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.json +15 -0
  826. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.json +14 -0
  827. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.json +5 -0
  828. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.json +8 -0
  829. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.json +9 -0
  830. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled3.json +6 -0
  831. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.json +6 -0
  832. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.json +6 -0
  833. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.json +6 -0
  834. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden.json +11 -0
  835. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_boolean.json +11 -0
  836. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_multi.json +14 -0
  837. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.json +14 -0
  838. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.json +5 -0
  839. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.json +15 -0
  840. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.json +12 -0
  841. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.json +11 -0
  842. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.json +6 -0
  843. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.json +10 -0
  844. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.json +18 -0
  845. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.json +5 -0
  846. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.json +18 -0
  847. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.json +18 -0
  848. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.json +6 -0
  849. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_1_0.json +18 -0
  850. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.json +6 -0
  851. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.json +18 -0
  852. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.json +6 -0
  853. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.json +28 -0
  854. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.json +6 -0
  855. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.json +15 -0
  856. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.json +6 -0
  857. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_inside.json +20 -0
  858. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.json +5 -0
  859. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_inside_identifier.json +20 -0
  860. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.json +14 -0
  861. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.json +5 -0
  862. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.json +40 -0
  863. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.json +40 -0
  864. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.json +24 -0
  865. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.json +5 -0
  866. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty2.json +14 -0
  867. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.json +28 -0
  868. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.json +28 -0
  869. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.json +40 -0
  870. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_9extra_dynamic.json +12 -0
  871. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.json +17 -0
  872. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.json +11 -0
  873. rougail_output_json-1.0.0/tests/results/test_namespace_read_write/68_0family_leadership_mode.json +5 -0
  874. rougail_output_json-1.0.0/tests/results/test_read_write/00_0empty.json +1 -0
  875. rougail_output_json-1.0.0/tests/results/test_read_write/00_0no_variable.json +1 -0
  876. rougail_output_json-1.0.0/tests/results/test_read_write/00_0no_variable_default_version.json +1 -0
  877. rougail_output_json-1.0.0/tests/results/test_read_write/00_0no_variable_remove_version.json +1 -0
  878. rougail_output_json-1.0.0/tests/results/test_read_write/00_0version_underscore.json +3 -0
  879. rougail_output_json-1.0.0/tests/results/test_read_write/00_1empty_variable.json +3 -0
  880. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated.json +6 -0
  881. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_multi.json +12 -0
  882. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_params_permissive.json +3 -0
  883. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable.json +4 -0
  884. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable_description.json +4 -0
  885. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.json +5 -0
  886. rougail_output_json-1.0.0/tests/results/test_read_write/00_2default_calculated_variable_transitive.json +4 -0
  887. rougail_output_json-1.0.0/tests/results/test_read_write/00_4load_subfolder.json +4 -0
  888. rougail_output_json-1.0.0/tests/results/test_read_write/00_5load_notype.json +3 -0
  889. rougail_output_json-1.0.0/tests/results/test_read_write/00_6boolean.json +8 -0
  890. rougail_output_json-1.0.0/tests/results/test_read_write/00_6boolean_no_mandatory.json +3 -0
  891. rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice.json +8 -0
  892. rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_calculation.json +3 -0
  893. rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_link.json +4 -0
  894. rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_variable.json +8 -0
  895. rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_variable_link.json +9 -0
  896. rougail_output_json-1.0.0/tests/results/test_read_write/00_6choice_variable_link2.json +11 -0
  897. rougail_output_json-1.0.0/tests/results/test_read_write/00_6custom.json +4 -0
  898. rougail_output_json-1.0.0/tests/results/test_read_write/00_6domainname.json +3 -0
  899. rougail_output_json-1.0.0/tests/results/test_read_write/00_6domainname_params.json +3 -0
  900. rougail_output_json-1.0.0/tests/results/test_read_write/00_6float.json +8 -0
  901. rougail_output_json-1.0.0/tests/results/test_read_write/00_6integer.json +8 -0
  902. rougail_output_json-1.0.0/tests/results/test_read_write/00_6ip.json +5 -0
  903. rougail_output_json-1.0.0/tests/results/test_read_write/00_6network.json +5 -0
  904. rougail_output_json-1.0.0/tests/results/test_read_write/00_6number.json +8 -0
  905. rougail_output_json-1.0.0/tests/results/test_read_write/00_6port.json +5 -0
  906. rougail_output_json-1.0.0/tests/results/test_read_write/00_6regexp.json +3 -0
  907. rougail_output_json-1.0.0/tests/results/test_read_write/00_6regexp_link.json +4 -0
  908. rougail_output_json-1.0.0/tests/results/test_read_write/00_6secret.json +4 -0
  909. rougail_output_json-1.0.0/tests/results/test_read_write/00_6secret_param.json +5 -0
  910. rougail_output_json-1.0.0/tests/results/test_read_write/00_6string.json +10 -0
  911. rougail_output_json-1.0.0/tests/results/test_read_write/00_7choice_quote.json +3 -0
  912. rougail_output_json-1.0.0/tests/results/test_read_write/00_7help.json +4 -0
  913. rougail_output_json-1.0.0/tests/results/test_read_write/00_7help_quote.json +4 -0
  914. rougail_output_json-1.0.0/tests/results/test_read_write/00_7help_sup.json +4 -0
  915. rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_doublequote.json +3 -0
  916. rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_doublequote2.json +3 -0
  917. rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_doublequote3.json +3 -0
  918. rougail_output_json-1.0.0/tests/results/test_read_write/00_7value_quote.json +3 -0
  919. rougail_output_json-1.0.0/tests/results/test_read_write/00_8calculation_information.json +3 -0
  920. rougail_output_json-1.0.0/tests/results/test_read_write/00_8test.json +8 -0
  921. rougail_output_json-1.0.0/tests/results/test_read_write/00_9choice_variable_multi.json +4 -0
  922. rougail_output_json-1.0.0/tests/results/test_read_write/00_9choice_variables.json +5 -0
  923. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation.json +3 -0
  924. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_information.json +3 -0
  925. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_information_other_variable.json +4 -0
  926. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_multi_optional.json +6 -0
  927. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_multi_optional2.json +6 -0
  928. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_multi_optional_default.json +7 -0
  929. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_optional.json +3 -0
  930. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_optional_exists.json +10 -0
  931. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_calculation_param_optional.json +4 -0
  932. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_information_other_variable.json +4 -0
  933. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_information_other_variable2.json +4 -0
  934. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_integer.json +3 -0
  935. rougail_output_json-1.0.0/tests/results/test_read_write/00_9default_number.json +3 -0
  936. rougail_output_json-1.0.0/tests/results/test_read_write/01_6boolean_multi.json +26 -0
  937. rougail_output_json-1.0.0/tests/results/test_read_write/01_6custom_multi.json +6 -0
  938. rougail_output_json-1.0.0/tests/results/test_read_write/01_6float_multi.json +26 -0
  939. rougail_output_json-1.0.0/tests/results/test_read_write/01_6integer_multi.json +26 -0
  940. rougail_output_json-1.0.0/tests/results/test_read_write/01_6integer_multi_mandatory.json +3 -0
  941. rougail_output_json-1.0.0/tests/results/test_read_write/01_6string_empty.json +6 -0
  942. rougail_output_json-1.0.0/tests/results/test_read_write/01_6string_multi.json +20 -0
  943. rougail_output_json-1.0.0/tests/results/test_read_write/01_6string_multi_length.json +11 -0
  944. rougail_output_json-1.0.0/tests/results/test_read_write/01_7value_multi_doublequote.json +5 -0
  945. rougail_output_json-1.0.0/tests/results/test_read_write/01_7value_multi_doublequote2.json +5 -0
  946. rougail_output_json-1.0.0/tests/results/test_read_write/01_7value_multi_quote.json +5 -0
  947. rougail_output_json-1.0.0/tests/results/test_read_write/01_8calculation_information_multi.json +3 -0
  948. rougail_output_json-1.0.0/tests/results/test_read_write/01_9choice_variable_multi.json +8 -0
  949. rougail_output_json-1.0.0/tests/results/test_read_write/01_9choice_variable_optional.json +3 -0
  950. rougail_output_json-1.0.0/tests/results/test_read_write/02_0tags.json +4 -0
  951. rougail_output_json-1.0.0/tests/results/test_read_write/04_0type_param.json +3 -0
  952. rougail_output_json-1.0.0/tests/results/test_read_write/04_0type_param_integer.json +3 -0
  953. rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save.json +3 -0
  954. rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save_and_calculated.json +4 -0
  955. rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.json +4 -0
  956. rougail_output_json-1.0.0/tests/results/test_read_write/04_1auto_save_and_hidden.json +1 -0
  957. rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden.json +4 -0
  958. rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_2.json +4 -0
  959. rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_3.json +3 -0
  960. rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_4.json +4 -0
  961. rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_5.json +3 -0
  962. rougail_output_json-1.0.0/tests/results/test_read_write/04_1default_calculation_hidden_6.json +4 -0
  963. rougail_output_json-1.0.0/tests/results/test_read_write/04_1jinja_and_hidden.json +1 -0
  964. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_boolean.json +4 -0
  965. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_optional.json +3 -0
  966. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_optional_default.json +6 -0
  967. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable.json +4 -0
  968. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable10.json +3 -0
  969. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable11.json +1 -0
  970. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable2.json +3 -0
  971. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable3.json +3 -0
  972. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable4.json +4 -0
  973. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable5.json +3 -0
  974. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable6.json +3 -0
  975. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable7.json +4 -0
  976. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable8.json +1 -0
  977. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable9.json +3 -0
  978. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_multi.json +4 -0
  979. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive.json +3 -0
  980. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.json +1 -0
  981. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.json +4 -0
  982. rougail_output_json-1.0.0/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.json +3 -0
  983. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators.json +3 -0
  984. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_differ.json +4 -0
  985. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_multi.json +6 -0
  986. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_multi2.json +6 -0
  987. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_multi3.json +7 -0
  988. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_warnings.json +3 -0
  989. rougail_output_json-1.0.0/tests/results/test_read_write/04_5validators_warnings_all.json +3 -0
  990. rougail_output_json-1.0.0/tests/results/test_read_write/05_0multi_not_uniq.json +5 -0
  991. rougail_output_json-1.0.0/tests/results/test_read_write/05_0multi_uniq.json +5 -0
  992. rougail_output_json-1.0.0/tests/results/test_read_write/12_1auto_save_expert.json +3 -0
  993. rougail_output_json-1.0.0/tests/results/test_read_write/16_0redefine_description.json +3 -0
  994. rougail_output_json-1.0.0/tests/results/test_read_write/16_2family_redefine_calculation.json +1 -0
  995. rougail_output_json-1.0.0/tests/results/test_read_write/16_2family_redefine_disabled.json +1 -0
  996. rougail_output_json-1.0.0/tests/results/test_read_write/16_3family_empty_at_ends.json +5 -0
  997. rougail_output_json-1.0.0/tests/results/test_read_write/16_5exists_nonexists.json +4 -0
  998. rougail_output_json-1.0.0/tests/results/test_read_write/16_5exists_redefine.json +1 -0
  999. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_calculation.json +3 -0
  1000. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_choice.json +3 -0
  1001. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_default.json +3 -0
  1002. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_default_calculation.json +3 -0
  1003. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_family.json +5 -0
  1004. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_help.json +5 -0
  1005. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_hidden.json +1 -0
  1006. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_multi.json +5 -0
  1007. rougail_output_json-1.0.0/tests/results/test_read_write/16_5redefine_remove_disable_calculation.json +4 -0
  1008. rougail_output_json-1.0.0/tests/results/test_read_write/16_5test_redefine.json +5 -0
  1009. rougail_output_json-1.0.0/tests/results/test_read_write/16_6choice_redefine.json +3 -0
  1010. rougail_output_json-1.0.0/tests/results/test_read_write/16_6exists_family.json +1 -0
  1011. rougail_output_json-1.0.0/tests/results/test_read_write/16_6exists_redefine_family.json +8 -0
  1012. rougail_output_json-1.0.0/tests/results/test_read_write/16exists_exists.json +3 -0
  1013. rougail_output_json-1.0.0/tests/results/test_read_write/17_5redefine_leadership.json +1 -0
  1014. rougail_output_json-1.0.0/tests/results/test_read_write/20_0empty_family.json +1 -0
  1015. rougail_output_json-1.0.0/tests/results/test_read_write/20_0family_append.json +6 -0
  1016. rougail_output_json-1.0.0/tests/results/test_read_write/20_0family_underscore.json +1 -0
  1017. rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family.json +7 -0
  1018. rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family_basic.json +7 -0
  1019. rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family_expert.json +7 -0
  1020. rougail_output_json-1.0.0/tests/results/test_read_write/20_0multi_family_order.json +10 -0
  1021. rougail_output_json-1.0.0/tests/results/test_read_write/20_0validators_differ_redefine.json +5 -0
  1022. rougail_output_json-1.0.0/tests/results/test_read_write/20_1empty_subfamily.json +1 -0
  1023. rougail_output_json-1.0.0/tests/results/test_read_write/20_2family_looks_like_dynamic.json +9 -0
  1024. rougail_output_json-1.0.0/tests/results/test_read_write/20_2family_looks_like_variable.json +5 -0
  1025. rougail_output_json-1.0.0/tests/results/test_read_write/20_7help_family.json +8 -0
  1026. rougail_output_json-1.0.0/tests/results/test_read_write/20_9default_information_parent.json +6 -0
  1027. rougail_output_json-1.0.0/tests/results/test_read_write/20_9family_absolute.json +23 -0
  1028. rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_hidden_condition_sub_family.json +8 -0
  1029. rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.json +3 -0
  1030. rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.json +8 -0
  1031. rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_mandatory_condition.json +4 -0
  1032. rougail_output_json-1.0.0/tests/results/test_read_write/24_0family_mandatory_condition_variable.json +4 -0
  1033. rougail_output_json-1.0.0/tests/results/test_read_write/24_7validators_variable_optional.json +6 -0
  1034. rougail_output_json-1.0.0/tests/results/test_read_write/24_family_disabled_var_hidden.json +1 -0
  1035. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership.json +3 -0
  1036. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_diff_name.json +3 -0
  1037. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_empty.json +1 -0
  1038. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_follower_default_calculation.json +3 -0
  1039. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_follower_default_value.json +3 -0
  1040. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_leader_follower.json +12 -0
  1041. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_leader_not_multi.json +8 -0
  1042. rougail_output_json-1.0.0/tests/results/test_read_write/40_0leadership_reduce.json +16 -0
  1043. rougail_output_json-1.0.0/tests/results/test_read_write/40_1leadership_append_follower.json +3 -0
  1044. rougail_output_json-1.0.0/tests/results/test_read_write/40_2leadership_calculation_index.json +16 -0
  1045. rougail_output_json-1.0.0/tests/results/test_read_write/40_2leadership_calculation_index_2.json +16 -0
  1046. rougail_output_json-1.0.0/tests/results/test_read_write/40_6leadership_follower_multi.json +3 -0
  1047. rougail_output_json-1.0.0/tests/results/test_read_write/40_6leadership_follower_multi_no_mandatory.json +3 -0
  1048. rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_boolean.json +10 -0
  1049. rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_multi_variable.json +8 -0
  1050. rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_multi_variable_parent.json +6 -0
  1051. rougail_output_json-1.0.0/tests/results/test_read_write/40_8calculation_multi_variable_parent2.json +8 -0
  1052. rougail_output_json-1.0.0/tests/results/test_read_write/40_9calculation_variable_leader_follower_multi_inside.json +16 -0
  1053. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower-first.json +17 -0
  1054. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower-last.json +17 -0
  1055. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.json +16 -0
  1056. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-follower.json +18 -0
  1057. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-leader-first.json +15 -0
  1058. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-leader-last.json +15 -0
  1059. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-outside-leader.json +18 -0
  1060. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-variable.json +18 -0
  1061. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.json +22 -0
  1062. rougail_output_json-1.0.0/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.json +28 -0
  1063. rougail_output_json-1.0.0/tests/results/test_read_write/41_0choice_leader.json +3 -0
  1064. rougail_output_json-1.0.0/tests/results/test_read_write/44_0leadership_hidden.json +1 -0
  1065. rougail_output_json-1.0.0/tests/results/test_read_write/44_0leadership_leader_hidden.json +1 -0
  1066. rougail_output_json-1.0.0/tests/results/test_read_write/44_1leadership_append_hidden_follower.json +1 -0
  1067. rougail_output_json-1.0.0/tests/results/test_read_write/44_4disabled_calcultion_follower_index.json +11 -0
  1068. rougail_output_json-1.0.0/tests/results/test_read_write/44_4leadership_mandatory.json +3 -0
  1069. rougail_output_json-1.0.0/tests/results/test_read_write/44_4leadership_mandatory_follower.json +3 -0
  1070. rougail_output_json-1.0.0/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.json +3 -0
  1071. rougail_output_json-1.0.0/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.json +4 -0
  1072. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic.json +12 -0
  1073. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_1_1.json +12 -0
  1074. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_1_1_empty.json +3 -0
  1075. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_empty.json +3 -0
  1076. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_forbidden_char.json +14 -0
  1077. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_no_description.json +12 -0
  1078. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_no_description_empty.json +3 -0
  1079. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_source_hidden.json +8 -0
  1080. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_static.json +8 -0
  1081. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_test.json +3 -0
  1082. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_upper_char.json +12 -0
  1083. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable.json +12 -0
  1084. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_empty.json +3 -0
  1085. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_optional.json +8 -0
  1086. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_suffix.json +12 -0
  1087. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.json +3 -0
  1088. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_empty.json +1 -0
  1089. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_hidden.json +1 -0
  1090. rougail_output_json-1.0.0/tests/results/test_read_write/60_0family_mode.json +5 -0
  1091. rougail_output_json-1.0.0/tests/results/test_read_write/60_1family_dynamic_jinja.json +12 -0
  1092. rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.json +17 -0
  1093. rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.json +17 -0
  1094. rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.json +4 -0
  1095. rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.json +4 -0
  1096. rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_outside_calc.json +13 -0
  1097. rougail_output_json-1.0.0/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.json +4 -0
  1098. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_description.json +13 -0
  1099. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_identifier.json +13 -0
  1100. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.json +19 -0
  1101. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.json +12 -0
  1102. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.json +3 -0
  1103. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.json +6 -0
  1104. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.json +12 -0
  1105. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.json +3 -0
  1106. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable.json +13 -0
  1107. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.json +10 -0
  1108. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.json +9 -0
  1109. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.json +4 -0
  1110. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.json +8 -0
  1111. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.json +13 -0
  1112. rougail_output_json-1.0.0/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.json +4 -0
  1113. rougail_output_json-1.0.0/tests/results/test_read_write/60_6family_dynamic_leadership.json +12 -0
  1114. rougail_output_json-1.0.0/tests/results/test_read_write/60_6family_dynamic_leadership_empty.json +3 -0
  1115. rougail_output_json-1.0.0/tests/results/test_read_write/60_6family_subdynamic_inside.json +38 -0
  1116. rougail_output_json-1.0.0/tests/results/test_read_write/60_9family_dynamic_calc_both.json +9 -0
  1117. rougail_output_json-1.0.0/tests/results/test_read_write/68_0family_leadership_mode.json +3 -0
  1118. rougail_output_json-1.0.0/tests/subconfig/file.yml +10 -0
  1119. rougail_output_json-1.0.0/tests/subconfig-results/family.json +5 -0
  1120. rougail_output_json-1.0.0/tests/subconfig-results/result.json +5 -0
  1121. rougail_output_json-1.0.0/tests/subconfig-results/variable.json +1 -0
  1122. rougail_output_json-1.0.0/tests/test_load.py +216 -0
  1123. rougail_output_json-1.0.0/tests/warnings/results/errors.yml +5 -0
  1124. rougail_output_json-1.0.0/tests/warnings/results/warnings.yml +8 -0
  1125. rougail_output_json-1.0.0/tests/warnings/structures/rougail/00-test.yml +4 -0
  1126. 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/>•&nbsp;--json.mandatory<br/>•&nbsp;--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&#x27;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/>•&nbsp;family<br/>•&nbsp;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/>•&nbsp;--json.mandatory<br/>•&nbsp;--json.no-mandatory<br/>**Variable d'environnement** : JSON.MANDATORY | Tester les variables obligatoires avant de l&#x27;afficher en JSON.<br/>La configuration doit être valide avant d&#x27;exporter les données au format JSON. C&#x27;est mieux de valider les valeurs en début du processus. | true si "[La configuration dans l&#x27;é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&#x27;une variable.<br/>**Exemples** : <br/>•&nbsp;family<br/>•&nbsp;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/>•&nbsp;--json.mandatory<br/>•&nbsp;--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&#x27;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/>•&nbsp;family<br/>•&nbsp;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"