strictdoc 0.0.51__tar.gz → 0.0.52__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 (545) hide show
  1. {strictdoc-0.0.51 → strictdoc-0.0.52}/.gitignore +1 -0
  2. {strictdoc-0.0.51 → strictdoc-0.0.52}/CHANGELOG.md +102 -2
  3. {strictdoc-0.0.51 → strictdoc-0.0.52}/PKG-INFO +1 -1
  4. {strictdoc-0.0.51 → strictdoc-0.0.52}/docs_extra/DO178_requirements.sdoc +16 -16
  5. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/__init__.py +1 -1
  6. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/error_handling.py +89 -106
  7. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/grammar/grammar.py +3 -121
  8. strictdoc-0.0.52/strictdoc/backend/sdoc/grammar/grammar_builder.py +55 -0
  9. strictdoc-0.0.52/strictdoc/backend/sdoc/grammar/grammar_grammar.py +100 -0
  10. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/grammar/type_system.py +20 -2
  11. strictdoc-0.0.51/strictdoc/backend/sdoc/include_reader.py → strictdoc-0.0.52/strictdoc/backend/sdoc/grammar_reader.py +14 -16
  12. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/constants.py +9 -5
  13. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_config.py +14 -1
  14. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_grammar.py +33 -13
  15. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_view.py +2 -0
  16. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/node.py +5 -0
  17. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/section.py +3 -0
  18. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/processor.py +40 -26
  19. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/reader.py +0 -3
  20. strictdoc-0.0.52/strictdoc/backend/sdoc/validations/sdoc_validator.py +272 -0
  21. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/writer.py +7 -0
  22. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/document_finder.py +37 -18
  23. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/document_tree.py +17 -2
  24. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/file_tree.py +13 -2
  25. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/traceability_index_builder.py +40 -0
  26. strictdoc-0.0.52/strictdoc/export/html/_static/collapsible_tree.js +30 -0
  27. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/content.css +3 -3
  28. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +1 -1
  29. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/element.css +7 -3
  30. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/node.css +27 -0
  31. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/project_tree.css +100 -27
  32. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/project_tree.js +77 -55
  33. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/grammar_form_object.py +5 -1
  34. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +8 -3
  35. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/html_generator.py +3 -1
  36. strictdoc-0.0.52/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +5 -0
  37. strictdoc-0.0.52/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +4 -0
  38. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form/index.jinja +15 -0
  39. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/index.jinja +4 -0
  40. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +1 -1
  41. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -1
  42. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -1
  43. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/index.jinja +3 -1
  44. strictdoc-0.0.52/strictdoc/export/html/templates/screens/project_index/main.jinja +56 -0
  45. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +1 -1
  46. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +7 -6
  47. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -1
  48. strictdoc-0.0.52/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +55 -0
  49. strictdoc-0.0.52/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +27 -0
  50. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +6 -1
  51. strictdoc-0.0.52/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +25 -0
  52. strictdoc-0.0.52/strictdoc/export/html/templates/website/document/index.jinja +1 -0
  53. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/routers/main_router.py +1 -0
  54. strictdoc-0.0.51/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -38
  55. strictdoc-0.0.51/strictdoc/backend/sdoc/validations/requirement.py +0 -191
  56. strictdoc-0.0.51/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -67
  57. strictdoc-0.0.51/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -3
  58. strictdoc-0.0.51/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -99
  59. {strictdoc-0.0.51 → strictdoc-0.0.52}/CONTRIBUTING.md +0 -0
  60. {strictdoc-0.0.51 → strictdoc-0.0.52}/Dockerfile +0 -0
  61. {strictdoc-0.0.51 → strictdoc-0.0.52}/LICENSE +0 -0
  62. {strictdoc-0.0.51 → strictdoc-0.0.52}/NOTICE +0 -0
  63. {strictdoc-0.0.51 → strictdoc-0.0.52}/README.md +0 -0
  64. {strictdoc-0.0.51 → strictdoc-0.0.52}/docs_extra/Zephyr_requirements.sdoc +0 -0
  65. {strictdoc-0.0.51 → strictdoc-0.0.52}/drafts/requirements/strictdoc.toml +0 -0
  66. {strictdoc-0.0.51 → strictdoc-0.0.52}/drafts/rst_examples.sdoc +0 -0
  67. {strictdoc-0.0.51 → strictdoc-0.0.52}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
  68. {strictdoc-0.0.51 → strictdoc-0.0.52}/mypy.ini +0 -0
  69. {strictdoc-0.0.51 → strictdoc-0.0.52}/pyproject.toml +0 -0
  70. {strictdoc-0.0.51 → strictdoc-0.0.52}/requirements.bootstrap.txt +0 -0
  71. {strictdoc-0.0.51 → strictdoc-0.0.52}/requirements.check.txt +0 -0
  72. {strictdoc-0.0.51 → strictdoc-0.0.52}/ruff.toml +0 -0
  73. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/__init__.py +0 -0
  74. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/excel/__init__.py +0 -0
  75. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/excel/excel_import.py +0 -0
  76. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/excel/export/__init__.py +0 -0
  77. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/excel/export/excel_generator.py +0 -0
  78. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/excel/import_/__init__.py +0 -0
  79. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
  80. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/__init__.py +0 -0
  81. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
  82. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +0 -0
  83. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
  84. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
  85. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +0 -0
  86. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/reqif_export.py +0 -0
  87. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/reqif_import.py +0 -0
  88. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  89. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/__init__.py +0 -0
  90. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/document_reference.py +0 -0
  91. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  92. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  93. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  94. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  95. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  96. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/anchor.py +0 -0
  97. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document.py +0 -0
  98. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_bibliography.py +0 -0
  99. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_from_file.py +0 -0
  100. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/free_text.py +0 -0
  101. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
  102. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/object.py +0 -0
  103. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
  104. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/reference.py +0 -0
  105. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/type_system.py +0 -0
  106. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
  107. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  108. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  109. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
  110. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  111. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
  112. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
  113. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
  114. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
  115. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/cli/__init__.py +0 -0
  116. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/cli/argument_int_range.py +0 -0
  117. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/cli/cli_arg_parser.py +0 -0
  118. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/cli/command_parser_builder.py +0 -0
  119. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/cli/main.py +0 -0
  120. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/commands/__init__.py +0 -0
  121. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/commands/about_command.py +0 -0
  122. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/commands/diff_command.py +0 -0
  123. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/commands/dump_grammar_command.py +0 -0
  124. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/commands/manage_autouid_command.py +0 -0
  125. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/commands/version_command.py +0 -0
  126. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/__init__.py +0 -0
  127. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/actions/__init__.py +0 -0
  128. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/actions/export_action.py +0 -0
  129. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/actions/import_action.py +0 -0
  130. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/actions/passthrough_action.py +0 -0
  131. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/analyzers/document_stats.py +0 -0
  132. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
  133. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/document_iterator.py +0 -0
  134. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/document_meta.py +0 -0
  135. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/document_tree_iterator.py +0 -0
  136. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/environment.py +0 -0
  137. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/file_traceability_index.py +0 -0
  138. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/finders/__init__.py +0 -0
  139. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/finders/source_files_finder.py +0 -0
  140. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/graph/abstract_bucket.py +0 -0
  141. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/graph/many_to_many_set.py +0 -0
  142. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
  143. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/graph/validations.py +0 -0
  144. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/graph_database.py +0 -0
  145. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/level_counter.py +0 -0
  146. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/project_config.py +0 -0
  147. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/query_engine/grammar.py +0 -0
  148. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/query_engine/query_object.py +0 -0
  149. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/query_engine/query_reader.py +0 -0
  150. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/source_tree.py +0 -0
  151. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/traceability_index.py +0 -0
  152. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/constants.py +0 -0
  153. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/create_requirement.py +0 -0
  154. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/delete_section.py +0 -0
  155. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/section.py +0 -0
  156. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/update_document_config.py +0 -0
  157. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/update_free_text.py +0 -0
  158. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/update_grammar.py +0 -0
  159. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/update_grammar_element.py +0 -0
  160. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/update_requirement.py +0 -0
  161. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/transforms/validation_error.py +0 -0
  162. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/core/tree_cycle_detector.py +0 -0
  163. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/__init__.py +0 -0
  164. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/document_dot_generator.py +0 -0
  165. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/dot_templates.py +0 -0
  166. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/document.dot +0 -0
  167. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/folder.dot +0 -0
  168. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/legend.dot +0 -0
  169. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/requirement.dot +0 -0
  170. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/section.dot +0 -0
  171. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/top_level.dot +0 -0
  172. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/document.dot +0 -0
  173. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/folder.dot +0 -0
  174. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/requirement.dot +0 -0
  175. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/section.dot +0 -0
  176. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/top_level.dot +0 -0
  177. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/__init__.py +0 -0
  178. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/autogen.css +0 -0
  179. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/base.css +0 -0
  180. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/collapsible_list.js +0 -0
  181. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
  182. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
  183. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
  184. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
  185. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
  186. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
  187. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
  188. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
  189. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
  190. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/diff.css +0 -0
  191. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/diff.js +0 -0
  192. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/favicon.ico +0 -0
  193. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
  194. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
  195. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
  196. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/form.css +0 -0
  197. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
  198. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/layout.css +0 -0
  199. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/pan_with_space.js +0 -0
  200. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  201. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirement.css +0 -0
  202. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
  203. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  204. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/resizable_bar.js +0 -0
  205. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  206. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/source.css +0 -0
  207. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/stimulus.min.js +0 -0
  208. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/table_vew.css +0 -0
  209. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
  210. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
  211. /strictdoc-0.0.51/strictdoc/export/html/_static/tree.css → /strictdoc-0.0.52/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
  212. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/turbo.min.js +0 -0
  213. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  214. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  215. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  216. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  217. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  218. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  219. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  220. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  221. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  222. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  223. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  224. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  225. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  226. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  227. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  228. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  229. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  230. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  231. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  232. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  233. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  234. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  235. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  236. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  237. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  238. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  239. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  240. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
  241. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
  242. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/document_type.py +0 -0
  243. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
  244. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/document_grammar_form_object.py +0 -0
  245. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/form_object.py +0 -0
  246. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/requirement_form_object.py +0 -0
  247. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
  248. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
  249. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/__init__.py +0 -0
  250. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/document.py +0 -0
  251. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
  252. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_pdf.py +0 -0
  253. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_table.py +0 -0
  254. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_trace.py +0 -0
  255. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_tree.py +0 -0
  256. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/project_statistics.py +0 -0
  257. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
  258. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/source_file_view_generator.py +0 -0
  259. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
  260. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
  261. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
  262. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
  263. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
  264. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
  265. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
  266. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
  267. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/html_templates.py +0 -0
  268. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/renderers/__init__.py +0 -0
  269. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  270. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/renderers/link_renderer.py +0 -0
  271. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
  272. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  273. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  274. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  275. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
  276. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
  277. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
  278. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
  279. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  280. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  281. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
  282. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  283. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
  284. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  285. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
  286. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  287. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
  288. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  289. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  290. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
  291. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
  292. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
  293. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
  294. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  295. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
  296. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  297. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  298. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  299. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  300. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  301. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  302. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  303. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  304. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  305. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  306. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
  307. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
  308. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  309. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
  310. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
  311. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  312. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
  313. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
  314. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
  315. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
  316. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
  317. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
  318. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
  319. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
  320. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
  321. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
  322. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  323. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
  324. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
  325. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  326. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
  327. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
  328. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  329. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
  330. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  331. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
  332. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
  333. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
  334. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
  335. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
  336. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
  337. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
  338. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  339. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
  340. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
  341. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
  342. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
  343. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
  344. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
  345. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
  346. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/base.jinja.html +0 -0
  347. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
  348. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/abstract/pdf.jinja +0 -0
  349. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
  350. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
  351. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  352. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  353. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  354. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
  355. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
  356. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  357. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  358. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  359. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/document_title/index.jinja +0 -0
  360. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
  361. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
  362. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  363. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  364. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
  365. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
  366. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
  367. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
  368. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
  369. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
  370. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
  371. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
  372. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
  373. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
  374. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
  375. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
  376. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
  377. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
  378. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
  379. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
  380. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
  381. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
  382. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
  383. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/meta/index.jinja +0 -0
  384. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
  385. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  386. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  387. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
  388. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
  389. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
  390. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
  391. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
  392. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
  393. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
  394. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
  395. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
  396. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
  397. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
  398. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
  399. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
  400. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
  401. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
  402. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
  403. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
  404. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
  405. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
  406. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/title/pdf.jinja +0 -0
  407. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
  408. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
  409. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  410. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  411. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
  412. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/h/pdf.jinja +0 -0
  413. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  414. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  415. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
  416. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
  417. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  418. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  419. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
  420. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/uid/index.jinja +0 -0
  421. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
  422. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
  423. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
  424. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
  425. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
  426. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
  427. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
  428. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
  429. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
  430. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
  431. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
  432. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
  433. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
  434. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
  435. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
  436. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
  437. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
  438. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
  439. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
  440. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
  441. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
  442. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
  443. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
  444. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
  445. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
  446. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
  447. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
  448. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
  449. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
  450. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
  451. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
  452. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
  453. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
  454. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
  455. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
  456. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
  457. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
  458. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
  459. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
  460. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
  461. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
  462. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
  463. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
  464. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
  465. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
  466. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
  467. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
  468. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
  469. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
  470. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
  471. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
  472. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
  473. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
  474. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
  475. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
  476. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
  477. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
  478. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
  479. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
  480. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
  481. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
  482. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
  483. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
  484. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
  485. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
  486. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
  487. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
  488. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/tools/__init__.py +0 -0
  489. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html/tools/html_embedded.py +0 -0
  490. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html2pdf/html2pdf.py +0 -0
  491. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
  492. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
  493. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/json/json_generator.py +0 -0
  494. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/__init__.py +0 -0
  495. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
  496. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
  497. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/document_rst_generator.py +0 -0
  498. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/rst_templates.py +0 -0
  499. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
  500. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  501. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/rst/writer.py +0 -0
  502. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/spdx/spdx_generator.py +0 -0
  503. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
  504. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
  505. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/git/change.py +0 -0
  506. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/git/change_generator.py +0 -0
  507. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/git/git_client.py +0 -0
  508. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/git/project_diff_analyzer.py +0 -0
  509. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/__init__.py +0 -0
  510. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/auto_described.py +0 -0
  511. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/cast.py +0 -0
  512. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/diff.py +0 -0
  513. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/exception.py +0 -0
  514. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/file_modification_time.py +0 -0
  515. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/file_system.py +0 -0
  516. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/form_data.py +0 -0
  517. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/git_client.py +0 -0
  518. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/math.py +0 -0
  519. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/md5.py +0 -0
  520. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/mid.py +0 -0
  521. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/ordered_set.py +0 -0
  522. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/parallelizer.py +0 -0
  523. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/path_filter.py +0 -0
  524. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/pickle.py +0 -0
  525. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/rst.py +0 -0
  526. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/sha256.py +0 -0
  527. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/shard.py +0 -0
  528. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/sorting.py +0 -0
  529. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/string.py +0 -0
  530. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/textx.py +0 -0
  531. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/helpers/timing.py +0 -0
  532. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/__init__.py +0 -0
  533. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/app.py +0 -0
  534. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/config.py +0 -0
  535. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/error_object.py +0 -0
  536. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/helpers/turbo.py +0 -0
  537. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/main.py +0 -0
  538. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/routers/other_router.py +0 -0
  539. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc/server/server.py +0 -0
  540. {strictdoc-0.0.51 → strictdoc-0.0.52}/strictdoc.toml +0 -0
  541. {strictdoc-0.0.51 → strictdoc-0.0.52}/tasks.py +0 -0
  542. {strictdoc-0.0.51 → strictdoc-0.0.52}/tasks_wine.py +0 -0
  543. {strictdoc-0.0.51 → strictdoc-0.0.52}/tools/confluence_html_table_import.py +0 -0
  544. {strictdoc-0.0.51 → strictdoc-0.0.52}/tools/link_health.py +0 -0
  545. {strictdoc-0.0.51 → strictdoc-0.0.52}/tox.ini +0 -0
@@ -48,6 +48,7 @@ strictdoc-project.github.io/
48
48
 
49
49
  ### StrictDoc's developer test ###
50
50
  __*.sdoc
51
+ __*.sgra
51
52
 
52
53
  ### webdriver_manager: cache with downloaded Chrome Driver binaries ###
53
54
  strictdoc/export/html2pdf/.wdm
@@ -2,22 +2,122 @@
2
2
 
3
3
  ## [Unreleased](https://github.com/strictdoc-project/strictdoc/tree/HEAD)
4
4
 
5
- [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.48...HEAD)
5
+ [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.51...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Bump version to 0.0.51 [\#1717](https://github.com/strictdoc-project/strictdoc/pull/1717) ([stanislaw](https://github.com/stanislaw))
10
+
11
+ ## [0.0.51](https://github.com/strictdoc-project/strictdoc/tree/0.0.51) (2024-03-20)
12
+
13
+ [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.50...0.0.51)
14
+
15
+ **Fixed bugs:**
16
+
17
+ - UI: Search screen: fix the case when finding requirements/sections [\#1716](https://github.com/strictdoc-project/strictdoc/pull/1716) ([stanislaw](https://github.com/stanislaw))
18
+
19
+ **Merged pull requests:**
20
+
21
+ - export/html: Update project tree markup [\#1715](https://github.com/strictdoc-project/strictdoc/pull/1715) ([mettta](https://github.com/mettta))
22
+
23
+ ## [0.0.50](https://github.com/strictdoc-project/strictdoc/tree/0.0.50) (2024-03-19)
24
+
25
+ [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.49...0.0.50)
6
26
 
7
27
  **Fixed bugs:**
8
28
 
29
+ - UI: Project tree: Visual artefact when the fragments are not displayed [\#1709](https://github.com/strictdoc-project/strictdoc/issues/1709)
30
+ - No module named 'requests' when running "export --html2pdf" [\#1701](https://github.com/strictdoc-project/strictdoc/issues/1701)
31
+ - UI: Diff screen: do not build source file traceability when doing history [\#1708](https://github.com/strictdoc-project/strictdoc/pull/1708) ([stanislaw](https://github.com/stanislaw))
32
+
33
+ **Closed issues:**
34
+
35
+ - Implement CSS styles for RST warning and info boxes in HTML [\#1706](https://github.com/strictdoc-project/strictdoc/issues/1706)
36
+ - Update strictdoc.tmLanguage [\#1589](https://github.com/strictdoc-project/strictdoc/issues/1589)
37
+
38
+ **Merged pull requests:**
39
+
40
+ - docs: regenerate Read the Docs [\#1714](https://github.com/strictdoc-project/strictdoc/pull/1714) ([stanislaw](https://github.com/stanislaw))
41
+ - Bump version to 0.0.50 [\#1713](https://github.com/strictdoc-project/strictdoc/pull/1713) ([stanislaw](https://github.com/stanislaw))
42
+ - Styles: add CSS for RST admonition markup [\#1712](https://github.com/strictdoc-project/strictdoc/pull/1712) ([mettta](https://github.com/mettta))
43
+ - export/html: project\_index: Show fragments by default, disable switcher, add info about including file [\#1711](https://github.com/strictdoc-project/strictdoc/pull/1711) ([mettta](https://github.com/mettta))
44
+ - docs: FAQ: resources: FOSDEM 2024 [\#1710](https://github.com/strictdoc-project/strictdoc/pull/1710) ([stanislaw](https://github.com/stanislaw))
45
+ - export/html: show the "included documents" only when there are included docs [\#1705](https://github.com/strictdoc-project/strictdoc/pull/1705) ([stanislaw](https://github.com/stanislaw))
46
+ - backend/sdoc: remove last occurrences of Fragment, document the change [\#1704](https://github.com/strictdoc-project/strictdoc/pull/1704) ([stanislaw](https://github.com/stanislaw))
47
+ - Migration from Fragments to includable Documents [\#1703](https://github.com/strictdoc-project/strictdoc/pull/1703) ([stanislaw](https://github.com/stanislaw))
48
+ - html2pdf: fix the issue of running within virtual environments [\#1702](https://github.com/strictdoc-project/strictdoc/pull/1702) ([stanislaw](https://github.com/stanislaw))
49
+ - Bump version to 0.0.49 [\#1700](https://github.com/strictdoc-project/strictdoc/pull/1700) ([stanislaw](https://github.com/stanislaw))
50
+
51
+ ## [0.0.49](https://github.com/strictdoc-project/strictdoc/tree/0.0.49) (2024-03-11)
52
+
53
+ [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.48...0.0.49)
54
+
55
+ **Fixed bugs:**
56
+
57
+ - auto-uid strips RELATIONS if the REQUIREMENT has no UID/MID [\#1630](https://github.com/strictdoc-project/strictdoc/issues/1630)
58
+ - BUG: the "Copy to clipboard" button is missing after node editing [\#1588](https://github.com/strictdoc-project/strictdoc/issues/1588)
59
+ - Adjust the grammar rules and validation rules of the forms. [\#947](https://github.com/strictdoc-project/strictdoc/issues/947)
9
60
  - models: requirement: preserve REFS when setting a field [\#1631](https://github.com/strictdoc-project/strictdoc/pull/1631) ([stanislaw](https://github.com/stanislaw))
10
61
 
11
62
  **Closed issues:**
12
63
 
64
+ - UI: Edit grammar element: implement the component for human title [\#1674](https://github.com/strictdoc-project/strictdoc/issues/1674)
65
+ - Documentation: List of `DOCUMENT` grammar elements does not specify where `REQ_PREFIX` belongs [\#1670](https://github.com/strictdoc-project/strictdoc/issues/1670)
66
+ - Extend/change the 'edit' menu on each node. [\#1661](https://github.com/strictdoc-project/strictdoc/issues/1661)
67
+ - Missing validation on "Edit Grammar" form in the frontend [\#1659](https://github.com/strictdoc-project/strictdoc/issues/1659)
13
68
  - Excel export: export multiple documents with relations between them, document the common commands [\#1639](https://github.com/strictdoc-project/strictdoc/issues/1639)
14
69
  - HTML2PDF: Make the webdriver\_manager to avoid downloading newer versions if a cached one already exists [\#1636](https://github.com/strictdoc-project/strictdoc/issues/1636)
15
- - auto-uid strips RELATIONS if the REQUIREMENT has no UID/MID [\#1630](https://github.com/strictdoc-project/strictdoc/issues/1630)
16
70
  - auto-uid throws AttributeError when I have a COMPOSITE\_REQUIREMENT [\#1623](https://github.com/strictdoc-project/strictdoc/issues/1623)
17
71
  - StrictDoc does not recognize source files with arbitrary extensions [\#1621](https://github.com/strictdoc-project/strictdoc/issues/1621)
72
+ - Will not process sdoc files in --output-dir [\#1620](https://github.com/strictdoc-project/strictdoc/issues/1620)
73
+ - HTML pages: bundle all fonts inside StrictDoc's bundle to avoid hitting Internet all the time [\#1601](https://github.com/strictdoc-project/strictdoc/issues/1601)
74
+ - UI: Editing arbitrary Nodes, not only Requirement [\#1537](https://github.com/strictdoc-project/strictdoc/issues/1537)
75
+ - Path resolution for fragments: must read fragments relative to the sdoc input path [\#1261](https://github.com/strictdoc-project/strictdoc/issues/1261)
76
+ - Project tree: highlight the current document [\#1127](https://github.com/strictdoc-project/strictdoc/issues/1127)
77
+ - Activate collapsible TOC JS code for static HTML export [\#1097](https://github.com/strictdoc-project/strictdoc/issues/1097)
18
78
 
19
79
  **Merged pull requests:**
20
80
 
81
+ - backend/sdoc: writing fragments back to files [\#1699](https://github.com/strictdoc-project/strictdoc/pull/1699) ([stanislaw](https://github.com/stanislaw))
82
+ - backend/sdoc: writing fragments back to files [\#1697](https://github.com/strictdoc-project/strictdoc/pull/1697) ([stanislaw](https://github.com/stanislaw))
83
+ - backend/sdoc: rework the parsing algorithm for fragments [\#1696](https://github.com/strictdoc-project/strictdoc/pull/1696) ([stanislaw](https://github.com/stanislaw))
84
+ - backend/sdoc: resolve relative paths to full paths when importing fragments [\#1695](https://github.com/strictdoc-project/strictdoc/pull/1695) ([stanislaw](https://github.com/stanislaw))
85
+ - docs: update Roadmap [\#1693](https://github.com/strictdoc-project/strictdoc/pull/1693) ([stanislaw](https://github.com/stanislaw))
86
+ - Bump version to 0.0.49a7 [\#1690](https://github.com/strictdoc-project/strictdoc/pull/1690) ([stanislaw](https://github.com/stanislaw))
87
+ - export/html: update form error styles for fields and field groups \(driven by HUMAN\_TITLE\) [\#1689](https://github.com/strictdoc-project/strictdoc/pull/1689) ([stanislaw](https://github.com/stanislaw))
88
+ - export/html: make collapsible\_list.js based on MutationObserver [\#1686](https://github.com/strictdoc-project/strictdoc/pull/1686) ([mettta](https://github.com/mettta))
89
+ - export/html: define the copy\_to\_clipboard in expandable node components [\#1685](https://github.com/strictdoc-project/strictdoc/pull/1685) ([mettta](https://github.com/mettta))
90
+ - export/html: Use self-hosting fonts [\#1684](https://github.com/strictdoc-project/strictdoc/pull/1684) ([mettta](https://github.com/mettta))
91
+ - Bump version to 0.0.49a6 [\#1682](https://github.com/strictdoc-project/strictdoc/pull/1682) ([stanislaw](https://github.com/stanislaw))
92
+ - export/html: improve the edit grammar form [\#1681](https://github.com/strictdoc-project/strictdoc/pull/1681) ([mettta](https://github.com/mettta))
93
+ - export/html: highlight current document [\#1680](https://github.com/strictdoc-project/strictdoc/pull/1680) ([stanislaw](https://github.com/stanislaw))
94
+ - export/dot: minor improvements to the layout [\#1679](https://github.com/strictdoc-project/strictdoc/pull/1679) ([stanislaw](https://github.com/stanislaw))
95
+ - server: several validation messages: requirement -\> node [\#1678](https://github.com/strictdoc-project/strictdoc/pull/1678) ([stanislaw](https://github.com/stanislaw))
96
+ - Code climate: update to new Ruff settings [\#1676](https://github.com/strictdoc-project/strictdoc/pull/1676) ([stanislaw](https://github.com/stanislaw))
97
+ - server: requirement\_form\_object: adapt to custom elements in the last places [\#1675](https://github.com/strictdoc-project/strictdoc/pull/1675) ([stanislaw](https://github.com/stanislaw))
98
+ - docs: add a note about not detecting .sdoc files in the output/ folder [\#1673](https://github.com/strictdoc-project/strictdoc/pull/1673) ([stanislaw](https://github.com/stanislaw))
99
+ - docs: SDoc grammar DOCUMENT fields: add REQ\_PREFIX [\#1672](https://github.com/strictdoc-project/strictdoc/pull/1672) ([stanislaw](https://github.com/stanislaw))
100
+ - screens/diff: improve the legend with "HEAD vs HEAD+" [\#1671](https://github.com/strictdoc-project/strictdoc/pull/1671) ([stanislaw](https://github.com/stanislaw))
101
+ - feat: Make the document grammar editable with respect to human titles [\#1669](https://github.com/strictdoc-project/strictdoc/pull/1669) ([dahbar](https://github.com/dahbar))
102
+ - export/dot: disable requirement links [\#1668](https://github.com/strictdoc-project/strictdoc/pull/1668) ([stanislaw](https://github.com/stanislaw))
103
+ - export/json: basic JSON export [\#1667](https://github.com/strictdoc-project/strictdoc/pull/1667) ([stanislaw](https://github.com/stanislaw))
104
+ - server: creating grammar elements and arbitrary nodes [\#1666](https://github.com/strictdoc-project/strictdoc/pull/1666) ([stanislaw](https://github.com/stanislaw))
105
+ - export/html: Preparing the menu structure for adding new node types [\#1665](https://github.com/strictdoc-project/strictdoc/pull/1665) ([mettta](https://github.com/mettta))
106
+ - Some style enhancements [\#1664](https://github.com/strictdoc-project/strictdoc/pull/1664) ([mettta](https://github.com/mettta))
107
+ - export/html: node\_controls: Updating the layout and icons for the "Add node" menu [\#1663](https://github.com/strictdoc-project/strictdoc/pull/1663) ([mettta](https://github.com/mettta))
108
+ - Refactoring: DocumentGrammarFormObject -\> GrammarElementFormObject, move more logic from Jinja to Python [\#1662](https://github.com/strictdoc-project/strictdoc/pull/1662) ([stanislaw](https://github.com/stanislaw))
109
+ - html2pdf: update bundle.js: Paragraph: split nested inline elements [\#1660](https://github.com/strictdoc-project/strictdoc/pull/1660) ([mettta](https://github.com/mettta))
110
+ - export/html: introduce view\_objects to encapsulate Jinja templates data [\#1657](https://github.com/strictdoc-project/strictdoc/pull/1657) ([stanislaw](https://github.com/stanislaw))
111
+ - html2pdf: update bundle.js: Add options to manually invoke or automatically run the script [\#1656](https://github.com/strictdoc-project/strictdoc/pull/1656) ([mettta](https://github.com/mettta))
112
+ - Refactoring: Document -\> SDocDocument [\#1655](https://github.com/strictdoc-project/strictdoc/pull/1655) ([stanislaw](https://github.com/stanislaw))
113
+ - Refactoring: Section -\> SDocSection [\#1654](https://github.com/strictdoc-project/strictdoc/pull/1654) ([stanislaw](https://github.com/stanislaw))
114
+ - Refactoring: Requirement -\> SDocNode [\#1653](https://github.com/strictdoc-project/strictdoc/pull/1653) ([stanislaw](https://github.com/stanislaw))
115
+ - Refactoring: rename three helper classes from Requirement\* -\> Node\* [\#1652](https://github.com/strictdoc-project/strictdoc/pull/1652) ([stanislaw](https://github.com/stanislaw))
116
+ - Refactoring: requirement.py -\> node.py [\#1651](https://github.com/strictdoc-project/strictdoc/pull/1651) ([stanislaw](https://github.com/stanislaw))
117
+ - Refactoring: Node -\> SDocObject [\#1650](https://github.com/strictdoc-project/strictdoc/pull/1650) ([stanislaw](https://github.com/stanislaw))
118
+ - html2pdf: update bundle.js: Fix 'block overruns the page bottom' [\#1649](https://github.com/strictdoc-project/strictdoc/pull/1649) ([mettta](https://github.com/mettta))
119
+ - html2pdf: update bundle.js: Add \<object\> preprocessing [\#1648](https://github.com/strictdoc-project/strictdoc/pull/1648) ([mettta](https://github.com/mettta))
120
+ - Regenerate CHANGELOG [\#1647](https://github.com/strictdoc-project/strictdoc/pull/1647) ([stanislaw](https://github.com/stanislaw))
21
121
  - tests/end2end: test opening a hyperlink to an CSV asset [\#1646](https://github.com/strictdoc-project/strictdoc/pull/1646) ([stanislaw](https://github.com/stanislaw))
22
122
  - server: main\_router: treat everything "not .html" as assets [\#1645](https://github.com/strictdoc-project/strictdoc/pull/1645) ([stanislaw](https://github.com/stanislaw))
23
123
  - export/excel: link Excel export requirement to source files [\#1644](https://github.com/strictdoc-project/strictdoc/pull/1644) ([stanislaw](https://github.com/stanislaw))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strictdoc
3
- Version: 0.0.51
3
+ Version: 0.0.52
4
4
  Summary: StrictDoc is open-source software for technical documentation and requirements management.
5
5
  Project-URL: Changelog, https://github.com/strictdoc-project/strictdoc/blob/main/CHANGELOG.md
6
6
  Project-URL: Homepage, https://strictdoc.readthedocs.io/en/stable/
@@ -197,6 +197,22 @@ COMMENT: >>>
197
197
  S: Source file coverage is StrictDoc's experimental feature. With a more detailed specification, we can turn it to a more advanced and clear presentation of the needed aspects.
198
198
  <<<
199
199
 
200
+ [REQUIREMENT]
201
+ MID: 8bd26640450f448c8228464223c21373
202
+ UID: DO178-9
203
+ COMPLIANCE: C
204
+ STATUS: Active
205
+ TITLE: Project-level grammar
206
+ STATEMENT: >>>
207
+ StrictDoc shall support creation of a project-level grammar.
208
+ <<<
209
+ RATIONALE: >>>
210
+ A single grammar defined for a project (same grammar for several documents) helps to standardize the structure of all documents in a documentation tree and reduces the effort needed to create identical grammars all the time.
211
+ <<<
212
+ COMMENT: >>>
213
+ S: This feature is easy to implement. The easiest implementation path is to include a config parameter, such as ``project_grammar`` in the already-existing ``strictdoc.toml`` file. At startup, StrictDoc recognizes the parameter and reads the grammar from a separate file. The project grammar becomes a single source of truth for all documents in the project tree but the option to override a grammar for a given document is still preserved.
214
+ <<<
215
+
200
216
  [/SECTION]
201
217
 
202
218
  [SECTION]
@@ -288,22 +304,6 @@ COMMENT: >>>
288
304
  S: This is easy to implement but would be nice to have it specified in terms of how exactly it should look like. The requirements coverage screen was one experimental attempt to visualize and highlight the uncovered requirements but we didn't stabilize the feature in terms of the visual clarity.
289
305
  <<<
290
306
 
291
- [REQUIREMENT]
292
- MID: 8bd26640450f448c8228464223c21373
293
- UID: DO178-9
294
- COMPLIANCE: C
295
- STATUS: Backlog
296
- TITLE: Project-level grammar
297
- STATEMENT: >>>
298
- StrictDoc shall support creation of a project-level grammar.
299
- <<<
300
- RATIONALE: >>>
301
- A single grammar defined for a project (same grammar for several documents) helps to standardize the structure of all documents in a documentation tree and reduces the effort needed to create identical grammars all the time.
302
- <<<
303
- COMMENT: >>>
304
- S: This feature is easy to implement. The easiest implementation path is to include a config parameter, such as ``project_grammar`` in the already-existing ``strictdoc.toml`` file. At startup, StrictDoc recognizes the parameter and reads the grammar from a separate file. The project grammar becomes a single source of truth for all documents in the project tree but the option to override a grammar for a given document is still preserved.
305
- <<<
306
-
307
307
  [REQUIREMENT]
308
308
  MID: a1fb2f7cd7cd4c8eb33c3407a791fd88
309
309
  UID: DO178-16
@@ -1,6 +1,6 @@
1
1
  from strictdoc.core.environment import SDocRuntimeEnvironment
2
2
 
3
- __version__ = "0.0.51"
3
+ __version__ = "0.0.52"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -1,11 +1,16 @@
1
1
  from textx import TextXSyntaxError
2
2
 
3
+ from strictdoc.backend.sdoc.models.document import SDocDocument
4
+ from strictdoc.backend.sdoc.models.document_config import DocumentConfig
3
5
  from strictdoc.backend.sdoc.models.document_grammar import (
4
6
  DocumentGrammar,
5
7
  GrammarElement,
6
8
  GrammarElementField,
7
9
  )
8
- from strictdoc.backend.sdoc.models.document_view import ViewElement
10
+ from strictdoc.backend.sdoc.models.document_view import (
11
+ DocumentView,
12
+ ViewElement,
13
+ )
9
14
  from strictdoc.backend.sdoc.models.node import (
10
15
  SDocNode,
11
16
  SDocNodeField,
@@ -30,16 +35,14 @@ class StrictDocSemanticError(Exception):
30
35
  self.file_path = filename
31
36
 
32
37
  @staticmethod
33
- def unknown_requirement_type(
34
- requirement_type, line=None, col=None, filename=None
35
- ):
38
+ def unknown_requirement_type(node: SDocNode, path_to_sdoc_file: str):
36
39
  return StrictDocSemanticError(
37
- title=f"Invalid requirement type: {requirement_type}.",
40
+ title=f"Invalid requirement type: {node.requirement_type}.",
38
41
  hint=None,
39
42
  example=None,
40
- line=line,
41
- col=col,
42
- filename=filename,
43
+ line=node.ng_line_start,
44
+ col=node.ng_col_start,
45
+ filename=path_to_sdoc_file,
43
46
  )
44
47
 
45
48
  @staticmethod
@@ -48,9 +51,7 @@ class StrictDocSemanticError(Exception):
48
51
  field_name: str,
49
52
  requirement: SDocNode,
50
53
  document_grammar: DocumentGrammar,
51
- line=None,
52
- col=None,
53
- filename=None,
54
+ path_to_sdoc_file: str,
54
55
  ):
55
56
  grammar_dump = document_grammar.dump_fields(
56
57
  requirement.requirement_type
@@ -62,102 +63,88 @@ class StrictDocSemanticError(Exception):
62
63
  f"for type: {requirement.requirement_type}."
63
64
  ),
64
65
  example=None,
65
- line=line,
66
- col=col,
67
- filename=filename,
66
+ line=requirement.ng_line_start,
67
+ col=requirement.ng_col_start,
68
+ filename=path_to_sdoc_file,
68
69
  )
69
70
 
70
71
  @staticmethod
71
72
  def missing_required_field(
72
- requirement: SDocNode,
73
+ node: SDocNode,
73
74
  grammar_field: GrammarElementField,
74
75
  document_grammar: DocumentGrammar,
75
- line=None,
76
- col=None,
77
- filename=None,
76
+ path_to_sdoc_file: str,
78
77
  ):
79
- grammar_fields = document_grammar.dump_fields(
80
- requirement.requirement_type
81
- )
78
+ grammar_fields = document_grammar.dump_fields(node.requirement_type)
82
79
  return StrictDocSemanticError(
83
80
  title=(
84
81
  f"Requirement is missing a field that is required by "
85
82
  f"grammar: {grammar_field.title}."
86
83
  ),
87
84
  hint=(
88
- f"Requirement fields: [{requirement.dump_fields_as_parsed()}], "
85
+ f"Requirement fields: [{node.dump_fields_as_parsed()}], "
89
86
  f"grammar fields: [{grammar_fields}]."
90
87
  ),
91
88
  example=None,
92
- line=line,
93
- col=col,
94
- filename=filename,
89
+ line=node.ng_line_start,
90
+ col=node.ng_col_start,
91
+ filename=path_to_sdoc_file,
95
92
  )
96
93
 
97
94
  @staticmethod
98
95
  def unexpected_field_outside_grammar(
99
- requirement: SDocNode,
96
+ node: SDocNode,
100
97
  requirement_field: SDocNodeField,
101
98
  document_grammar: DocumentGrammar,
102
- line=None,
103
- col=None,
104
- filename=None,
99
+ path_to_sdoc_file: str,
105
100
  ):
106
- grammar_fields = document_grammar.dump_fields(
107
- requirement.requirement_type
108
- )
101
+ grammar_fields = document_grammar.dump_fields(node.requirement_type)
109
102
  return StrictDocSemanticError(
110
103
  title=(
111
104
  f"Unexpected field outside grammar: "
112
105
  f"{requirement_field.field_name}"
113
106
  ),
114
107
  hint=(
115
- f"Requirement fields: [{requirement.dump_fields_as_parsed()}], "
108
+ f"Requirement fields: [{node.dump_fields_as_parsed()}], "
116
109
  f"grammar fields: [{grammar_fields}]."
117
110
  ),
118
111
  example=None,
119
- line=line,
120
- col=col,
121
- filename=filename,
112
+ line=node.ng_line_start,
113
+ col=node.ng_col_start,
114
+ filename=path_to_sdoc_file,
122
115
  )
123
116
 
124
117
  @staticmethod
125
118
  def wrong_field_order(
126
- requirement: SDocNode,
119
+ node: SDocNode,
127
120
  document_grammar: DocumentGrammar,
128
121
  problematic_field: SDocNodeField,
129
- line=None,
130
- col=None,
131
- filename=None,
122
+ path_to_sdoc_file: str,
132
123
  ):
133
124
  assert isinstance(
134
125
  problematic_field, SDocNodeField
135
126
  ), f"{problematic_field}"
136
- requirement_dump = requirement.dump_fields_as_parsed()
137
- grammar_dump = document_grammar.dump_fields(
138
- requirement.requirement_type
139
- )
127
+ requirement_dump = node.dump_fields_as_parsed()
128
+ grammar_dump = document_grammar.dump_fields(node.requirement_type)
140
129
  return StrictDocSemanticError(
141
130
  title=f"Wrong field order for requirement: [{requirement_dump}].",
142
131
  hint=(
143
132
  f"Problematic field: {problematic_field.field_name}. "
144
133
  f"Compare with the document grammar: [{grammar_dump}] "
145
- f"for type: {requirement.requirement_type}."
134
+ f"for type: {node.requirement_type}."
146
135
  ),
147
136
  example=None,
148
- line=line,
149
- col=col,
150
- filename=filename,
137
+ line=node.ng_line_start,
138
+ col=node.ng_col_start,
139
+ filename=path_to_sdoc_file,
151
140
  )
152
141
 
153
142
  @staticmethod
154
143
  def invalid_choice_field(
155
- requirement: SDocNode,
144
+ node: SDocNode,
156
145
  document_grammar: DocumentGrammar,
157
146
  requirement_field: SDocNodeField,
158
- line=None,
159
- col=None,
160
- filename=None,
147
+ path_to_sdoc_file: str,
161
148
  ):
162
149
  return StrictDocSemanticError(
163
150
  title=(
@@ -168,24 +155,22 @@ class StrictDocSemanticError(Exception):
168
155
  f"Problematic field: {requirement_field.field_name}. "
169
156
  f"Compare with the document grammar: "
170
157
  f"["
171
- f"{document_grammar.dump_fields(requirement.requirement_type)}"
158
+ f"{document_grammar.dump_fields(node.requirement_type)}"
172
159
  f"] "
173
- f"for type: {requirement.requirement_type}."
160
+ f"for type: {node.requirement_type}."
174
161
  ),
175
162
  example=None,
176
- line=line,
177
- col=col,
178
- filename=filename,
163
+ line=node.ng_line_start,
164
+ col=node.ng_col_start,
165
+ filename=path_to_sdoc_file,
179
166
  )
180
167
 
181
168
  @staticmethod
182
169
  def invalid_multiple_choice_field(
183
- requirement: SDocNode,
170
+ node: SDocNode,
184
171
  document_grammar: DocumentGrammar,
185
172
  requirement_field: SDocNodeField,
186
- line=None,
187
- col=None,
188
- filename=None,
173
+ path_to_sdoc_file: str,
189
174
  ):
190
175
  return StrictDocSemanticError(
191
176
  title=(
@@ -196,22 +181,21 @@ class StrictDocSemanticError(Exception):
196
181
  f"Problematic field: {requirement_field.field_name}. "
197
182
  f"Compare with the document grammar: "
198
183
  f"["
199
- f"{document_grammar.dump_fields(requirement.requirement_type)}"
184
+ f"{document_grammar.dump_fields(node.requirement_type)}"
200
185
  f"] "
201
- f"for type: {requirement.requirement_type}."
186
+ f"for type: {node.requirement_type}."
202
187
  ),
203
188
  example=None,
204
- line=line,
205
- col=col,
206
- filename=filename,
189
+ line=node.ng_line_start,
190
+ col=node.ng_col_start,
191
+ filename=path_to_sdoc_file,
207
192
  )
208
193
 
209
194
  @staticmethod
210
195
  def not_comma_separated_choices(
196
+ node: SDocNode,
211
197
  requirement_field: SDocNodeField,
212
- line=None,
213
- col=None,
214
- filename=None,
198
+ path_to_sdoc_file,
215
199
  ):
216
200
  return StrictDocSemanticError(
217
201
  title=(
@@ -220,17 +204,16 @@ class StrictDocSemanticError(Exception):
220
204
  ),
221
205
  hint="MultipleChoice field requires ', '-separated values.",
222
206
  example=None,
223
- line=line,
224
- col=col,
225
- filename=filename,
207
+ line=node.ng_line_start,
208
+ col=node.ng_col_start,
209
+ filename=path_to_sdoc_file,
226
210
  )
227
211
 
228
212
  @staticmethod
229
213
  def not_comma_separated_tag_field(
214
+ node: SDocNode,
230
215
  requirement_field: SDocNodeField,
231
- line=None,
232
- col=None,
233
- filename=None,
216
+ path_to_sdoc_file: str,
234
217
  ):
235
218
  return StrictDocSemanticError(
236
219
  title=(
@@ -239,18 +222,16 @@ class StrictDocSemanticError(Exception):
239
222
  ),
240
223
  hint="Tag field requires ', '-separated values.",
241
224
  example=None,
242
- line=line,
243
- col=col,
244
- filename=filename,
225
+ line=node.ng_line_start,
226
+ col=node.ng_col_start,
227
+ filename=path_to_sdoc_file,
245
228
  )
246
229
 
247
230
  @staticmethod
248
231
  def invalid_reference_type_item(
249
- requirement: SDocNode,
232
+ node: SDocNode,
250
233
  reference_item: Reference,
251
- line=None,
252
- col=None,
253
- filename=None,
234
+ path_to_sdoc_file: str,
254
235
  ):
255
236
  role_and_type = (
256
237
  f"{reference_item.ref_type} / {reference_item.role}"
@@ -262,19 +243,19 @@ class StrictDocSemanticError(Exception):
262
243
  f"Requirement relation type/role is not registered: "
263
244
  f"{role_and_type}."
264
245
  ),
265
- hint=(f"Problematic requirement: {requirement.reserved_uid}."),
246
+ hint=f"Problematic requirement: {node.reserved_uid}.",
266
247
  example=None,
267
- line=line,
268
- col=col,
269
- filename=filename,
248
+ line=node.ng_line_start,
249
+ col=node.ng_col_start,
250
+ filename=path_to_sdoc_file,
270
251
  )
271
252
 
272
253
  @staticmethod
273
254
  def grammar_missing_reserved_statement(
274
255
  grammar_element: GrammarElement,
275
- line=None,
276
- col=None,
277
- filename=None,
256
+ path_to_sdoc_file: str,
257
+ line: int,
258
+ column: int,
278
259
  ):
279
260
  return StrictDocSemanticError(
280
261
  title=(
@@ -288,17 +269,16 @@ class StrictDocSemanticError(Exception):
288
269
  ),
289
270
  example=None,
290
271
  line=line,
291
- col=col,
292
- filename=filename,
272
+ col=column,
273
+ filename=path_to_sdoc_file,
293
274
  )
294
275
 
295
276
  @staticmethod
296
277
  def view_references_nonexisting_grammar_element(
278
+ document: SDocDocument,
279
+ document_view: DocumentView,
297
280
  view_element: ViewElement,
298
281
  object_type: str,
299
- line=None,
300
- col=None,
301
- filename=None,
302
282
  ):
303
283
  return StrictDocSemanticError(
304
284
  title=(
@@ -310,19 +290,18 @@ class StrictDocSemanticError(Exception):
310
290
  "object in the grammar or the default REQUIREMENT object."
311
291
  ),
312
292
  example=None,
313
- line=line,
314
- col=col,
315
- filename=filename,
293
+ line=document_view.ng_line_start,
294
+ col=document_view.ng_col_start,
295
+ filename=document.meta.input_doc_full_path,
316
296
  )
317
297
 
318
298
  @staticmethod
319
299
  def view_references_nonexisting_field(
300
+ document: SDocDocument,
301
+ document_view: DocumentView,
320
302
  view_element: ViewElement,
321
303
  object_type: str,
322
304
  field_name: str,
323
- line=None,
324
- col=None,
325
- filename=None,
326
305
  ):
327
306
  return StrictDocSemanticError(
328
307
  title=(
@@ -334,15 +313,19 @@ class StrictDocSemanticError(Exception):
334
313
  "field in the grammar for the given grammar element."
335
314
  ),
336
315
  example=None,
337
- line=line,
338
- col=col,
339
- filename=filename,
316
+ line=document_view.ng_line_start,
317
+ col=document_view.ng_col_start,
318
+ filename=document.meta.input_doc_full_path,
340
319
  )
341
320
 
342
321
  @staticmethod
343
322
  def default_view_doesnt_exist(
344
- default_view: str, line=None, col=None, filename=None
323
+ document: SDocDocument,
324
+ document_config: DocumentConfig,
325
+ default_view: str,
345
326
  ):
327
+ filename = document.meta.input_doc_full_path
328
+
346
329
  return StrictDocSemanticError(
347
330
  title=(
348
331
  f"Default view '{default_view}' does not exist in the document."
@@ -352,8 +335,8 @@ class StrictDocSemanticError(Exception):
352
335
  "VIEWS configuration."
353
336
  ),
354
337
  example=None,
355
- line=line,
356
- col=col,
338
+ line=document_config.ng_line_start,
339
+ col=document_config.ng_col_start,
357
340
  filename=filename,
358
341
  )
359
342