strictdoc 0.0.49a5__tar.gz → 0.0.49a6__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 (548) hide show
  1. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/CHANGELOG.md +181 -3
  2. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/PKG-INFO +1 -1
  3. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/ruff.toml +3 -2
  4. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/__init__.py +1 -1
  5. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/excel/export/excel_generator.py +5 -5
  6. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +10 -11
  7. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +32 -35
  8. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +16 -18
  9. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +29 -32
  10. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/reqif_import.py +4 -4
  11. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/document_reference.py +3 -3
  12. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/error_handling.py +18 -18
  13. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/grammar/grammar.py +8 -8
  14. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/anchor.py +1 -1
  15. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/constants.py +11 -11
  16. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/document.py +1 -1
  17. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/document_grammar.py +59 -5
  18. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/fragment.py +2 -2
  19. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/fragment_from_file.py +2 -2
  20. strictdoc-0.0.49a5/strictdoc/backend/sdoc/models/requirement.py → strictdoc-0.0.49a6/strictdoc/backend/sdoc/models/node.py +45 -43
  21. strictdoc-0.0.49a5/strictdoc/backend/sdoc/models/node.py → strictdoc-0.0.49a6/strictdoc/backend/sdoc/models/object.py +1 -1
  22. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/object_factory.py +16 -19
  23. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/section.py +6 -6
  24. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/processor.py +22 -19
  25. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/reader.py +4 -4
  26. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/validations/requirement.py +13 -11
  27. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/validations/sdoc_validator.py +4 -4
  28. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/writer.py +17 -16
  29. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/cli/command_parser_builder.py +1 -0
  30. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/commands/diff_command.py +18 -31
  31. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/actions/export_action.py +10 -0
  32. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/analyzers/document_stats.py +7 -7
  33. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/analyzers/document_uid_analyzer.py +7 -7
  34. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/document_finder.py +3 -3
  35. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/document_iterator.py +12 -12
  36. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/document_tree.py +5 -3
  37. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/file_traceability_index.py +8 -8
  38. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/project_config.py +7 -7
  39. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/query_engine/query_object.py +17 -17
  40. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/traceability_index.py +92 -91
  41. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/traceability_index_builder.py +26 -18
  42. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/create_requirement.py +23 -22
  43. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/delete_section.py +7 -7
  44. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/section.py +22 -20
  45. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/update_document_config.py +5 -5
  46. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/update_free_text.py +9 -7
  47. strictdoc-0.0.49a6/strictdoc/core/transforms/update_grammar.py +65 -0
  48. strictdoc-0.0.49a5/strictdoc/core/transforms/update_grammar.py → strictdoc-0.0.49a6/strictdoc/core/transforms/update_grammar_element.py +44 -40
  49. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/update_requirement.py +18 -21
  50. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/document_dot_generator.py +27 -25
  51. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile1/legend.dot +1 -1
  52. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile1/requirement.dot +1 -1
  53. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile1/top_level.dot +4 -4
  54. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile2/top_level.dot +3 -3
  55. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/autogen.css +2 -2
  56. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/element.css +96 -5
  57. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/form.css +16 -61
  58. strictdoc-0.0.49a6/strictdoc/export/html/_static/html2pdf/bundle.js +1 -0
  59. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/document_type.py +9 -0
  60. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/form_objects/document_config_form_object.py +3 -3
  61. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/form_objects/document_grammar_form_object.py +173 -21
  62. strictdoc-0.0.49a6/strictdoc/export/html/form_objects/form_object.py +63 -0
  63. strictdoc-0.0.49a6/strictdoc/export/html/form_objects/grammar_form_object.py +201 -0
  64. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/form_objects/requirement_form_object.py +55 -43
  65. strictdoc-0.0.49a6/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +31 -0
  66. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/form_objects/section_form_object.py +2 -2
  67. strictdoc-0.0.49a6/strictdoc/export/html/generators/document.py +31 -0
  68. strictdoc-0.0.49a6/strictdoc/export/html/generators/document_deep_trace.py +29 -0
  69. strictdoc-0.0.49a6/strictdoc/export/html/generators/document_pdf.py +31 -0
  70. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/generators/document_table.py +8 -24
  71. strictdoc-0.0.49a6/strictdoc/export/html/generators/document_trace.py +29 -0
  72. strictdoc-0.0.49a6/strictdoc/export/html/generators/document_tree.py +22 -0
  73. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/generators/project_statistics.py +15 -67
  74. strictdoc-0.0.49a6/strictdoc/export/html/generators/source_file_coverage.py +57 -0
  75. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/generators/source_file_view_generator.py +8 -18
  76. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/generators/traceability_matrix.py +54 -22
  77. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +86 -0
  78. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +64 -0
  79. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +159 -0
  80. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +56 -0
  81. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/project_tree_stats.py +41 -0
  82. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +51 -0
  83. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +91 -0
  84. strictdoc-0.0.49a6/strictdoc/export/html/generators/view_objects/source_file_view_object.py +78 -0
  85. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/html_generator.py +2 -2
  86. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/renderers/link_renderer.py +16 -16
  87. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/renderers/markup_renderer.py +12 -14
  88. strictdoc-0.0.49a6/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +6 -0
  89. strictdoc-0.0.49a6/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +6 -0
  90. strictdoc-0.0.49a6/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +7 -0
  91. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_shared/nav.jinja.html +11 -11
  92. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +4 -3
  93. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +4 -3
  94. strictdoc-0.0.49a6/strictdoc/export/html/templates/_shared/tags.jinja.html +9 -0
  95. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +1 -1
  96. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/base.jinja.html +14 -14
  97. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/abstract/index.jinja +6 -3
  98. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/abstract/pdf.jinja +8 -0
  99. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/anchor/index.jinja +3 -3
  100. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/document_title/index.jinja +1 -0
  101. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/field/index.jinja +1 -1
  102. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/form/field/contenteditable/field_with_human_title.jinja +71 -0
  103. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +3 -8
  104. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/index.jinja +4 -4
  105. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +3 -0
  106. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +3 -0
  107. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +2 -0
  108. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +2 -0
  109. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/form/search.jinja +31 -0
  110. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form/index.jinja +38 -0
  111. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +40 -0
  112. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +35 -0
  113. {strictdoc-0.0.49a5/strictdoc/export/html/templates/components/grammar_form → strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form_element}/index.jinja +14 -17
  114. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/grammar_form/row_with_custom_field.jinja → strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +20 -21
  115. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/grammar_form/row_with_relation.jinja → strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +18 -21
  116. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +38 -0
  117. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/header/index.jinja +2 -2
  118. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/meta/index.jinja +7 -7
  119. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/node/card.jinja +1 -1
  120. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/node/index.jinja +1 -1
  121. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +1 -1
  122. strictdoc-0.0.49a6/strictdoc/export/html/templates/components/node/node_controls/index.jinja +278 -0
  123. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/node/root.jinja +1 -1
  124. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +2 -2
  125. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/files/index.jinja +4 -4
  126. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/links/index.jinja +6 -6
  127. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +1 -1
  128. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +2 -2
  129. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +2 -2
  130. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +3 -3
  131. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/title/pdf.jinja +1 -1
  132. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/h/pdf.jinja +1 -1
  133. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/text/index.jinja +1 -1
  134. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/table_key_value/index.jinja +1 -1
  135. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +2 -2
  136. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +8 -10
  137. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +6 -6
  138. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +13 -13
  139. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/actions.jinja +7 -7
  140. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +1 -1
  141. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +1 -1
  142. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +3 -2
  143. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/document/document/index.jinja +91 -0
  144. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +13 -13
  145. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +4 -4
  146. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +1 -1
  147. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +2 -2
  148. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +4 -4
  149. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/document/table/index.jinja +66 -0
  150. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/table/main.jinja +23 -23
  151. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/document/traceability/index.jinja +70 -0
  152. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +2 -2
  153. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +71 -0
  154. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +2 -2
  155. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +19 -19
  156. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +1 -1
  157. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/form.jinja +7 -7
  158. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +1 -1
  159. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +11 -11
  160. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/index.jinja +9 -9
  161. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/legend.jinja +3 -3
  162. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/git/main.jinja +22 -0
  163. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +20 -0
  164. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +1 -1
  165. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/node/section.jinja +1 -1
  166. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_index/actions.jinja +3 -3
  167. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +3 -3
  168. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_index/index.jinja +7 -7
  169. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +2 -2
  170. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/project_statistics/main.jinja +101 -0
  171. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/search/index.jinja +5 -5
  172. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/search/legend.jinja +5 -5
  173. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/search/main.jinja +2 -2
  174. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +2 -2
  175. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +5 -5
  176. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +1 -1
  177. strictdoc-0.0.49a6/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +5 -0
  178. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +5 -5
  179. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +3 -3
  180. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +8 -8
  181. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +3 -3
  182. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +6 -6
  183. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +10 -10
  184. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +1 -1
  185. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/websocket.jinja.html +1 -1
  186. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/tools/html_embedded.py +3 -3
  187. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html2pdf/html2pdf.py +8 -0
  188. strictdoc-0.0.49a6/strictdoc/export/json/json_generator.py +369 -0
  189. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/document_rst_generator.py +2 -2
  190. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/rst_to_html_fragment_writer.py +6 -3
  191. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/writer.py +7 -7
  192. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/spdx/spdx_generator.py +17 -17
  193. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +31 -33
  194. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/git/change.py +39 -41
  195. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/git/project_diff_analyzer.py +98 -100
  196. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/string.py +7 -0
  197. strictdoc-0.0.49a6/strictdoc/server/helpers/turbo.py +10 -0
  198. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/routers/main_router.py +369 -382
  199. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/routers/other_router.py +14 -22
  200. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/tasks.py +2 -2
  201. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/tools/confluence_html_table_import.py +4 -4
  202. strictdoc-0.0.49a5/strictdoc/export/html/_static/html2pdf/bundle.js +0 -1
  203. strictdoc-0.0.49a5/strictdoc/export/html/generators/document.py +0 -53
  204. strictdoc-0.0.49a5/strictdoc/export/html/generators/document_deep_trace.py +0 -52
  205. strictdoc-0.0.49a5/strictdoc/export/html/generators/document_pdf.py +0 -66
  206. strictdoc-0.0.49a5/strictdoc/export/html/generators/document_trace.py +0 -51
  207. strictdoc-0.0.49a5/strictdoc/export/html/generators/document_tree.py +0 -39
  208. strictdoc-0.0.49a5/strictdoc/export/html/generators/source_file_coverage.py +0 -32
  209. strictdoc-0.0.49a5/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -9
  210. strictdoc-0.0.49a5/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_field.jinja.html +0 -10
  211. strictdoc-0.0.49a5/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_relation.jinja.html +0 -10
  212. strictdoc-0.0.49a5/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_edit_document_grammar.jinja.html +0 -5
  213. strictdoc-0.0.49a5/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_save_document_grammar.jinja.html +0 -3
  214. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/abstract/pdf.jinja +0 -8
  215. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/document_title/index.jinja +0 -1
  216. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/form/search.jinja +0 -31
  217. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/grammar_form/row_with_reserved_field.jinja +0 -39
  218. strictdoc-0.0.49a5/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -241
  219. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -91
  220. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -66
  221. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -70
  222. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -71
  223. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/git/main.jinja +0 -22
  224. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -20
  225. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -101
  226. strictdoc-0.0.49a5/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -5
  227. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/.gitignore +0 -0
  228. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/CONTRIBUTING.md +0 -0
  229. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/Dockerfile +0 -0
  230. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/LICENSE +0 -0
  231. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/NOTICE +0 -0
  232. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/README.md +0 -0
  233. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/docs_extra/DO178_requirements.sdoc +0 -0
  234. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/docs_extra/Zephyr_requirements.sdoc +0 -0
  235. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/drafts/requirements/strictdoc.toml +0 -0
  236. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
  237. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/mypy.ini +0 -0
  238. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/pyproject.toml +0 -0
  239. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/requirements.bootstrap.txt +0 -0
  240. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/requirements.check.txt +0 -0
  241. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/__init__.py +0 -0
  242. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/excel/__init__.py +0 -0
  243. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/excel/excel_import.py +0 -0
  244. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/excel/export/__init__.py +0 -0
  245. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/excel/import_/__init__.py +0 -0
  246. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/__init__.py +0 -0
  247. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
  248. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
  249. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/reqif_export.py +0 -0
  250. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  251. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/__init__.py +0 -0
  252. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  253. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  254. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  255. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  256. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
  257. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
  258. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/include_reader.py +0 -0
  259. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  260. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/document_bibliography.py +0 -0
  261. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/document_config.py +0 -0
  262. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/document_view.py +0 -0
  263. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/free_text.py +0 -0
  264. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
  265. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/reference.py +0 -0
  266. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/models/type_system.py +0 -0
  267. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  268. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  269. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
  270. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  271. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
  272. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
  273. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
  274. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
  275. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/cli/__init__.py +0 -0
  276. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/cli/argument_int_range.py +0 -0
  277. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/cli/cli_arg_parser.py +0 -0
  278. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/cli/main.py +0 -0
  279. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/commands/__init__.py +0 -0
  280. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/commands/about_command.py +0 -0
  281. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/commands/dump_grammar_command.py +0 -0
  282. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/commands/manage_autouid_command.py +0 -0
  283. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/commands/version_command.py +0 -0
  284. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/__init__.py +0 -0
  285. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/actions/__init__.py +0 -0
  286. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/actions/import_action.py +0 -0
  287. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/actions/passthrough_action.py +0 -0
  288. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/document_meta.py +0 -0
  289. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/document_tree_iterator.py +0 -0
  290. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/environment.py +0 -0
  291. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/file_tree.py +0 -0
  292. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/finders/__init__.py +0 -0
  293. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/finders/source_files_finder.py +0 -0
  294. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/graph/abstract_bucket.py +0 -0
  295. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/graph/many_to_many_set.py +0 -0
  296. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
  297. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/graph/validations.py +0 -0
  298. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/graph_database.py +0 -0
  299. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/level_counter.py +0 -0
  300. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/query_engine/grammar.py +0 -0
  301. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/query_engine/query_reader.py +0 -0
  302. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/source_tree.py +0 -0
  303. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/constants.py +0 -0
  304. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/transforms/validation_error.py +0 -0
  305. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/core/tree_cycle_detector.py +0 -0
  306. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/__init__.py +0 -0
  307. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/dot_templates.py +0 -0
  308. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile1/document.dot +0 -0
  309. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile1/folder.dot +0 -0
  310. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile1/section.dot +0 -0
  311. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile2/document.dot +0 -0
  312. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile2/folder.dot +0 -0
  313. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile2/requirement.dot +0 -0
  314. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/dot/templates/profile2/section.dot +0 -0
  315. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/__init__.py +0 -0
  316. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/base.css +0 -0
  317. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/content.css +0 -0
  318. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
  319. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +0 -0
  320. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
  321. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
  322. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
  323. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
  324. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
  325. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
  326. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
  327. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
  328. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
  329. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/diff.css +0 -0
  330. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/diff.js +0 -0
  331. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/favicon.ico +0 -0
  332. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/layout.css +0 -0
  333. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/node.css +0 -0
  334. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/pan_with_space.js +0 -0
  335. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  336. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/requirement.css +0 -0
  337. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
  338. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  339. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/resizable_bar.js +0 -0
  340. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  341. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/source.css +0 -0
  342. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/stimulus.min.js +0 -0
  343. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/table_vew.css +0 -0
  344. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
  345. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
  346. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/tree.css +0 -0
  347. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/turbo.min.js +0 -0
  348. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  349. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  350. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  351. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  352. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  353. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  354. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  355. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  356. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  357. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  358. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  359. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  360. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  361. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  362. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  363. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  364. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  365. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  366. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  367. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  368. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  369. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  370. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  371. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  372. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  373. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  374. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  375. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
  376. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
  377. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/generators/__init__.py +0 -0
  378. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/html_templates.py +0 -0
  379. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/renderers/__init__.py +0 -0
  380. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  381. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  382. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  383. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  384. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
  385. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  386. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  387. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
  388. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  389. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
  390. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  391. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
  392. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  393. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
  394. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  395. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  396. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
  397. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
  398. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  399. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
  400. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  401. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  402. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  403. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  404. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  405. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  406. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  407. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  408. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  409. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  410. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
  411. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
  412. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  413. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
  414. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
  415. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  416. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
  417. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
  418. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
  419. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
  420. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
  421. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
  422. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  423. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
  424. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
  425. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  426. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
  427. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
  428. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  429. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
  430. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  431. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
  432. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
  433. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
  434. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
  435. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
  436. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
  437. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  438. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
  439. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
  440. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
  441. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
  442. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
  443. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
  444. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
  445. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
  446. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  447. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  448. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  449. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
  450. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
  451. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  452. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  453. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  454. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  455. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  456. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
  457. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
  458. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
  459. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
  460. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
  461. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
  462. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
  463. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  464. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  465. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
  466. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
  467. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
  468. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
  469. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
  470. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
  471. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
  472. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
  473. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
  474. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
  475. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  476. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  477. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
  478. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  479. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  480. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
  481. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  482. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  483. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
  484. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/components/section/uid/index.jinja +0 -0
  485. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
  486. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
  487. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
  488. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
  489. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
  490. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
  491. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
  492. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
  493. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
  494. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
  495. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
  496. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
  497. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
  498. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
  499. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
  500. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
  501. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
  502. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
  503. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
  504. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
  505. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
  506. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html/tools/__init__.py +0 -0
  507. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
  508. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
  509. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/__init__.py +0 -0
  510. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
  511. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
  512. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/rst_templates.py +0 -0
  513. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  514. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
  515. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/git/change_generator.py +0 -0
  516. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/git/git_client.py +0 -0
  517. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/__init__.py +0 -0
  518. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/auto_described.py +0 -0
  519. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/cast.py +0 -0
  520. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/diff.py +0 -0
  521. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/exception.py +0 -0
  522. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/file_modification_time.py +0 -0
  523. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/file_system.py +0 -0
  524. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/form_data.py +0 -0
  525. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/git_client.py +0 -0
  526. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/math.py +0 -0
  527. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/md5.py +0 -0
  528. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/mid.py +0 -0
  529. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/ordered_set.py +0 -0
  530. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/parallelizer.py +0 -0
  531. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/path_filter.py +0 -0
  532. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/pickle.py +0 -0
  533. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/rst.py +0 -0
  534. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/sha256.py +0 -0
  535. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/shard.py +0 -0
  536. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/sorting.py +0 -0
  537. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/textx.py +0 -0
  538. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/helpers/timing.py +0 -0
  539. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/__init__.py +0 -0
  540. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/app.py +0 -0
  541. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/config.py +0 -0
  542. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/error_object.py +0 -0
  543. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/main.py +0 -0
  544. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc/server/server.py +0 -0
  545. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/strictdoc.toml +0 -0
  546. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/tasks_wine.py +0 -0
  547. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/tools/link_health.py +0 -0
  548. {strictdoc-0.0.49a5 → strictdoc-0.0.49a6}/tox.ini +0 -0
@@ -2,10 +2,188 @@
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.47...HEAD)
5
+ [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.48...HEAD)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - models: requirement: preserve REFS when setting a field [\#1631](https://github.com/strictdoc-project/strictdoc/pull/1631) ([stanislaw](https://github.com/stanislaw))
10
+
11
+ **Closed issues:**
12
+
13
+ - Excel export: export multiple documents with relations between them, document the common commands [\#1639](https://github.com/strictdoc-project/strictdoc/issues/1639)
14
+ - 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
+ - auto-uid throws AttributeError when I have a COMPOSITE\_REQUIREMENT [\#1623](https://github.com/strictdoc-project/strictdoc/issues/1623)
17
+ - StrictDoc does not recognize source files with arbitrary extensions [\#1621](https://github.com/strictdoc-project/strictdoc/issues/1621)
18
+
19
+ **Merged pull requests:**
20
+
21
+ - 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
+ - server: main\_router: treat everything "not .html" as assets [\#1645](https://github.com/strictdoc-project/strictdoc/pull/1645) ([stanislaw](https://github.com/stanislaw))
23
+ - export/excel: link Excel export requirement to source files [\#1644](https://github.com/strictdoc-project/strictdoc/pull/1644) ([stanislaw](https://github.com/stanislaw))
24
+ - export/excel: allow generating Excel files for inter-document relations [\#1643](https://github.com/strictdoc-project/strictdoc/pull/1643) ([stanislaw](https://github.com/stanislaw))
25
+ - export/html2pdf: customize webdriver cache manager to allow offline use [\#1642](https://github.com/strictdoc-project/strictdoc/pull/1642) ([stanislaw](https://github.com/stanislaw))
26
+ - fix: Review changes [\#1641](https://github.com/strictdoc-project/strictdoc/pull/1641) ([dahbar](https://github.com/dahbar))
27
+ - export/html: implement --view option [\#1638](https://github.com/strictdoc-project/strictdoc/pull/1638) ([stanislaw](https://github.com/stanislaw))
28
+ - export/html2pdf: improved printing of tables \(Firefox edge case\) [\#1637](https://github.com/strictdoc-project/strictdoc/pull/1637) ([mettta](https://github.com/mettta))
29
+ - tests/integration: move several feature-related groups to features/ [\#1635](https://github.com/strictdoc-project/strictdoc/pull/1635) ([stanislaw](https://github.com/stanislaw))
30
+ - fix: Validation for views and proper tests [\#1634](https://github.com/strictdoc-project/strictdoc/pull/1634) ([dahbar](https://github.com/dahbar))
31
+ - Bump version to 0.0.49a3 [\#1632](https://github.com/strictdoc-project/strictdoc/pull/1632) ([stanislaw](https://github.com/stanislaw))
32
+ - feat: Add validation for views [\#1629](https://github.com/strictdoc-project/strictdoc/pull/1629) ([dahbar](https://github.com/dahbar))
33
+ - Bump version to 0.0.49a2 [\#1628](https://github.com/strictdoc-project/strictdoc/pull/1628) ([stanislaw](https://github.com/stanislaw))
34
+ - export/html: render requirement's human titles in HTML [\#1627](https://github.com/strictdoc-project/strictdoc/pull/1627) ([stanislaw](https://github.com/stanislaw))
35
+ - models: composite requirement: fix requirement\_prefix [\#1626](https://github.com/strictdoc-project/strictdoc/pull/1626) ([stanislaw](https://github.com/stanislaw))
36
+ - Bump version to 0.0.49a1 [\#1625](https://github.com/strictdoc-project/strictdoc/pull/1625) ([stanislaw](https://github.com/stanislaw))
37
+ - Requirements-to-source tracing: find all source files without exceptions [\#1624](https://github.com/strictdoc-project/strictdoc/pull/1624) ([stanislaw](https://github.com/stanislaw))
38
+ - Bump version to 0.0.48 [\#1619](https://github.com/strictdoc-project/strictdoc/pull/1619) ([stanislaw](https://github.com/stanislaw))
39
+
40
+ ## [0.0.48](https://github.com/strictdoc-project/strictdoc/tree/0.0.48) (2024-01-24)
41
+
42
+ [Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.47...0.0.48)
43
+
44
+ **Fixed bugs:**
45
+
46
+ - BUG: UID: loss of graph integrity during Req editing [\#1587](https://github.com/strictdoc-project/strictdoc/issues/1587)
47
+ - Standalone export: Ensure that no JS controls from the server are available [\#1529](https://github.com/strictdoc-project/strictdoc/issues/1529)
48
+ - Recursive copying of the assets shall be limited to a known set of folders [\#1472](https://github.com/strictdoc-project/strictdoc/issues/1472)
49
+ - Arrow is missing for the last requirement of a document in the requirements coverage page [\#1298](https://github.com/strictdoc-project/strictdoc/issues/1298)
50
+ - Document file name/url with invisible symbols [\#774](https://github.com/strictdoc-project/strictdoc/issues/774)
51
+
52
+ **Closed issues:**
53
+
54
+ - Traceability Matrix Screen: Small CSS layout tweaks [\#1553](https://github.com/strictdoc-project/strictdoc/issues/1553)
55
+ - UI: Search screen: Left-align the legend text to make it similar to the Diff screen [\#1534](https://github.com/strictdoc-project/strictdoc/issues/1534)
56
+ - Diff screen: Make CSS for section free text to always start a new line after its badge [\#1526](https://github.com/strictdoc-project/strictdoc/issues/1526)
57
+ - Diff screen: the Changelog content doesn't take full width when there is no content to be displayed [\#1519](https://github.com/strictdoc-project/strictdoc/issues/1519)
58
+ - Diff screen: When "collapse all", scroll to top [\#1517](https://github.com/strictdoc-project/strictdoc/issues/1517)
59
+ - Diff screen: Analyze performance of "Find and read SDoc files" step [\#1511](https://github.com/strictdoc-project/strictdoc/issues/1511)
60
+ - Diff/Changelog screen: Part 2: Stabilization and further extensions [\#1503](https://github.com/strictdoc-project/strictdoc/issues/1503)
61
+ - UI: Diff: Add more explanatory text [\#1500](https://github.com/strictdoc-project/strictdoc/issues/1500)
62
+ - UI: Diff: Remove extra dotted line artifact [\#1499](https://github.com/strictdoc-project/strictdoc/issues/1499)
63
+ - Minor visual issue: Search screen: long validation error messages overlap with "Clear query" link [\#1490](https://github.com/strictdoc-project/strictdoc/issues/1490)
64
+ - 2023-Q4: Ongoing requirements work [\#1410](https://github.com/strictdoc-project/strictdoc/issues/1410)
65
+ - Export with grammar filter [\#1374](https://github.com/strictdoc-project/strictdoc/issues/1374)
66
+ - UX: \(Make filters in toml available in UI\): Unintuitive path generation when creating a new document [\#1330](https://github.com/strictdoc-project/strictdoc/issues/1330)
67
+ - 2023-Q4: Documentation train [\#1318](https://github.com/strictdoc-project/strictdoc/issues/1318)
68
+ - DTR view: do not show TOC when there are no requirements [\#1156](https://github.com/strictdoc-project/strictdoc/issues/1156)
69
+ - Fix node markup for REQUIREMENTS COVERAGE [\#1111](https://github.com/strictdoc-project/strictdoc/issues/1111)
70
+ - Populating and auto-incrementing requirement UID automatically [\#1081](https://github.com/strictdoc-project/strictdoc/issues/1081)
71
+ - Introduce an option to activate automatic assignment of Machine Identifiers \(MID\). [\#1053](https://github.com/strictdoc-project/strictdoc/issues/1053)
72
+ - Relation between the Document Tree, Requirements Coverage and Source Coverage is confusing. [\#1037](https://github.com/strictdoc-project/strictdoc/issues/1037)
73
+ - DTR: make parts of the requirements tree collapsible [\#1031](https://github.com/strictdoc-project/strictdoc/issues/1031)
74
+ - UI: Turn FREE\_TEXT into Abstract [\#940](https://github.com/strictdoc-project/strictdoc/issues/940)
75
+ - UI: Fix the "H11" issue [\#910](https://github.com/strictdoc-project/strictdoc/issues/910)
76
+ - Decide on the names of the content fields [\#891](https://github.com/strictdoc-project/strictdoc/issues/891)
77
+ - Feature: Exporting and importing requirement subsets of a document [\#601](https://github.com/strictdoc-project/strictdoc/issues/601)
78
+ - Requirements coverage: Make the currently viewed parent requirements stick to the top [\#510](https://github.com/strictdoc-project/strictdoc/issues/510)
79
+ - Display the switch even if there are no ranges [\#427](https://github.com/strictdoc-project/strictdoc/issues/427)
80
+ - HTML2PDF: Export to PDF [\#369](https://github.com/strictdoc-project/strictdoc/issues/369)
81
+ - Feature: Search on HTML pages and CLI [\#368](https://github.com/strictdoc-project/strictdoc/issues/368)
82
+ - export/html: Scrolling indication using JS [\#216](https://github.com/strictdoc-project/strictdoc/issues/216)
6
83
 
7
84
  **Merged pull requests:**
8
85
 
86
+ - docs: minor additions for HTML2PDF and a basic docblock for Python API [\#1618](https://github.com/strictdoc-project/strictdoc/pull/1618) ([stanislaw](https://github.com/stanislaw))
87
+ - feat: Add grammar for custom views [\#1617](https://github.com/strictdoc-project/strictdoc/pull/1617) ([dahbar](https://github.com/dahbar))
88
+ - docs: update Release Notes and Roadmap [\#1616](https://github.com/strictdoc-project/strictdoc/pull/1616) ([stanislaw](https://github.com/stanislaw))
89
+ - export/html: Requirements coverage -\> Traceability matrix \(last occurrences\) [\#1615](https://github.com/strictdoc-project/strictdoc/pull/1615) ([stanislaw](https://github.com/stanislaw))
90
+ - docs: include source files from tests/\*\* [\#1614](https://github.com/strictdoc-project/strictdoc/pull/1614) ([stanislaw](https://github.com/stanislaw))
91
+ - export/spdx: export SPDX to JSON-LD [\#1613](https://github.com/strictdoc-project/strictdoc/pull/1613) ([stanislaw](https://github.com/stanislaw))
92
+ - export/spdx: Document and Package: generate to SDoc with basic meta info [\#1612](https://github.com/strictdoc-project/strictdoc/pull/1612) ([stanislaw](https://github.com/stanislaw))
93
+ - export/spdx: use CC0 1.0 as data license, set 3.0.0 for spec version [\#1611](https://github.com/strictdoc-project/strictdoc/pull/1611) ([stanislaw](https://github.com/stanislaw))
94
+ - export/spdx: meta-level SPDX SDoc tree links back to reqs as source files [\#1610](https://github.com/strictdoc-project/strictdoc/pull/1610) ([stanislaw](https://github.com/stanislaw))
95
+ - reqs-to-source traceability: forward range-based file links [\#1609](https://github.com/strictdoc-project/strictdoc/pull/1609) ([stanislaw](https://github.com/stanislaw))
96
+ - file\_traceability\_index: reorder methods to CRUD [\#1607](https://github.com/strictdoc-project/strictdoc/pull/1607) ([stanislaw](https://github.com/stanislaw))
97
+ - file\_traceability\_index: annotate all data containers [\#1606](https://github.com/strictdoc-project/strictdoc/pull/1606) ([stanislaw](https://github.com/stanislaw))
98
+ - export/spdx: view SPDX through SDoc \(basic skeleton\) [\#1605](https://github.com/strictdoc-project/strictdoc/pull/1605) ([stanislaw](https://github.com/stanislaw))
99
+ - tests/integration: extract HTML2PDF tests to a separate group [\#1604](https://github.com/strictdoc-project/strictdoc/pull/1604) ([stanislaw](https://github.com/stanislaw))
100
+ - PDF: fix the split of a long table with unusual properties. [\#1603](https://github.com/strictdoc-project/strictdoc/pull/1603) ([mettta](https://github.com/mettta))
101
+ - export/html2pdf: further improvements for bulk export [\#1602](https://github.com/strictdoc-project/strictdoc/pull/1602) ([stanislaw](https://github.com/stanislaw))
102
+ - html2pdf: add more debugging lines by using a custom HTTPClient for wdm [\#1599](https://github.com/strictdoc-project/strictdoc/pull/1599) ([stanislaw](https://github.com/stanislaw))
103
+ - export/html: PDF: improve the empty document check [\#1598](https://github.com/strictdoc-project/strictdoc/pull/1598) ([stanislaw](https://github.com/stanislaw))
104
+ - export/html: PDF: a temporary solution to detect the empty TOC [\#1597](https://github.com/strictdoc-project/strictdoc/pull/1597) ([mettta](https://github.com/mettta))
105
+ - export/html2pdf: Update page breakers types in Config API and logic [\#1595](https://github.com/strictdoc-project/strictdoc/pull/1595) ([mettta](https://github.com/mettta))
106
+ - export/html2pdf: update bundle and Config API [\#1594](https://github.com/strictdoc-project/strictdoc/pull/1594) ([mettta](https://github.com/mettta))
107
+ - export/html2pdf: update to latest bundle [\#1593](https://github.com/strictdoc-project/strictdoc/pull/1593) ([stanislaw](https://github.com/stanislaw))
108
+ - export/html2pdf: generate HTML and PDF together for easier inspection [\#1592](https://github.com/strictdoc-project/strictdoc/pull/1592) ([stanislaw](https://github.com/stanislaw))
109
+ - server: implement "export to PDF" function in UI and CLI [\#1591](https://github.com/strictdoc-project/strictdoc/pull/1591) ([stanislaw](https://github.com/stanislaw))
110
+ - server: create\_requirement: validate uniquess of UID field [\#1590](https://github.com/strictdoc-project/strictdoc/pull/1590) ([stanislaw](https://github.com/stanislaw))
111
+ - export/spdx: remove all TBDs for now as creating noise [\#1586](https://github.com/strictdoc-project/strictdoc/pull/1586) ([stanislaw](https://github.com/stanislaw))
112
+ - export/spdx: boilerplate for exporting SDoc tree to SPDX [\#1585](https://github.com/strictdoc-project/strictdoc/pull/1585) ([stanislaw](https://github.com/stanislaw))
113
+ - Bump version to 0.0.48a2 [\#1584](https://github.com/strictdoc-project/strictdoc/pull/1584) ([stanislaw](https://github.com/stanislaw))
114
+ - export/html: move toc node: add assert on whereto parameter [\#1583](https://github.com/strictdoc-project/strictdoc/pull/1583) ([mettta](https://github.com/mettta))
115
+ - docs: connect more most obvious requirements with files [\#1582](https://github.com/strictdoc-project/strictdoc/pull/1582) ([stanislaw](https://github.com/stanislaw))
116
+ - export/html: register JS file type, use TextLexer\(\) for unregistered formats [\#1581](https://github.com/strictdoc-project/strictdoc/pull/1581) ([stanislaw](https://github.com/stanislaw))
117
+ - docs: move all "Backlog"-status requirements to Backlog [\#1580](https://github.com/strictdoc-project/strictdoc/pull/1580) ([stanislaw](https://github.com/stanislaw))
118
+ - docs: link several remaining L2 requirements to L1, provide file links [\#1579](https://github.com/strictdoc-project/strictdoc/pull/1579) ([stanislaw](https://github.com/stanislaw))
119
+ - docs: link several L2 requirements to L1, provide file links [\#1578](https://github.com/strictdoc-project/strictdoc/pull/1578) ([stanislaw](https://github.com/stanislaw))
120
+ - docs: add several most obvious req-file links \(2\) [\#1577](https://github.com/strictdoc-project/strictdoc/pull/1577) ([stanislaw](https://github.com/stanislaw))
121
+ - docs: update project goals [\#1576](https://github.com/strictdoc-project/strictdoc/pull/1576) ([stanislaw](https://github.com/stanislaw))
122
+ - docs: bring in all draft requirements [\#1574](https://github.com/strictdoc-project/strictdoc/pull/1574) ([stanislaw](https://github.com/stanislaw))
123
+ - drafts/requirements: parent link for SDOC-SRS-18 \(SDoc data model\) [\#1573](https://github.com/strictdoc-project/strictdoc/pull/1573) ([stanislaw](https://github.com/stanislaw))
124
+ - traceability\_index: more precise update of links between documents [\#1572](https://github.com/strictdoc-project/strictdoc/pull/1572) ([stanislaw](https://github.com/stanislaw))
125
+ - export: html2pdf: print publication date [\#1571](https://github.com/strictdoc-project/strictdoc/pull/1571) ([stanislaw](https://github.com/stanislaw))
126
+ - docs: add the initial architecture diagram [\#1570](https://github.com/strictdoc-project/strictdoc/pull/1570) ([stanislaw](https://github.com/stanislaw))
127
+ - traceability\_index: finalize the delete\_requirement\(\) method [\#1569](https://github.com/strictdoc-project/strictdoc/pull/1569) ([stanislaw](https://github.com/stanislaw))
128
+ - export/html: improve traceability matrix table layout [\#1567](https://github.com/strictdoc-project/strictdoc/pull/1567) ([mettta](https://github.com/mettta))
129
+ - UI: Scroll indication and targeting in TOC [\#1566](https://github.com/strictdoc-project/strictdoc/pull/1566) ([mettta](https://github.com/mettta))
130
+ - docs: update Roadmap [\#1565](https://github.com/strictdoc-project/strictdoc/pull/1565) ([stanislaw](https://github.com/stanislaw))
131
+ - graph/many2many\_set: further improve handling of 1-1 and many-many links [\#1561](https://github.com/strictdoc-project/strictdoc/pull/1561) ([stanislaw](https://github.com/stanislaw))
132
+ - traceability\_index: improve handling of sections metadata [\#1560](https://github.com/strictdoc-project/strictdoc/pull/1560) ([stanislaw](https://github.com/stanislaw))
133
+ - traceability\_index: move requirements links to the new database class [\#1559](https://github.com/strictdoc-project/strictdoc/pull/1559) ([stanislaw](https://github.com/stanislaw))
134
+ - traceability\_index: move more links to the new database class [\#1558](https://github.com/strictdoc-project/strictdoc/pull/1558) ([stanislaw](https://github.com/stanislaw))
135
+ - traceability\_index: database: simplify handling of sections, anchors and links [\#1557](https://github.com/strictdoc-project/strictdoc/pull/1557) ([stanislaw](https://github.com/stanislaw))
136
+ - tests/end: move\_node: improve the stability of the test [\#1555](https://github.com/strictdoc-project/strictdoc/pull/1555) ([stanislaw](https://github.com/stanislaw))
137
+ - Code climate: traceability\_index: group methods by get, update, remove, validate [\#1554](https://github.com/strictdoc-project/strictdoc/pull/1554) ([stanislaw](https://github.com/stanislaw))
138
+ - Mass-rename: Requirements Coverage -\> Traceability Matrix \(part 1\) [\#1552](https://github.com/strictdoc-project/strictdoc/pull/1552) ([stanislaw](https://github.com/stanislaw))
139
+ - docs: Machine identifiers \(MID\) [\#1551](https://github.com/strictdoc-project/strictdoc/pull/1551) ([stanislaw](https://github.com/stanislaw))
140
+ - export/html: Diff: display MIDs for requirements, sections, and documents [\#1550](https://github.com/strictdoc-project/strictdoc/pull/1550) ([stanislaw](https://github.com/stanislaw))
141
+ - export/html: edit requirement: make MID field non-editable [\#1549](https://github.com/strictdoc-project/strictdoc/pull/1549) ([stanislaw](https://github.com/stanislaw))
142
+ - Code climate: MID class: make it a proper subclass of str [\#1548](https://github.com/strictdoc-project/strictdoc/pull/1548) ([stanislaw](https://github.com/stanislaw))
143
+ - export/html: requirement\_form\_object: simplify MID field factory method [\#1547](https://github.com/strictdoc-project/strictdoc/pull/1547) ([stanislaw](https://github.com/stanislaw))
144
+ - export/html: requirement\_form\_object: simplify MID field factory method [\#1546](https://github.com/strictdoc-project/strictdoc/pull/1546) ([stanislaw](https://github.com/stanislaw))
145
+ - export/html: create requirement: display and save MID [\#1545](https://github.com/strictdoc-project/strictdoc/pull/1545) ([stanislaw](https://github.com/stanislaw))
146
+ - export/html: requirement template: display MID [\#1544](https://github.com/strictdoc-project/strictdoc/pull/1544) ([stanislaw](https://github.com/stanislaw))
147
+ - main\_router: move\_node: adjust to recent MID change [\#1542](https://github.com/strictdoc-project/strictdoc/pull/1542) ([stanislaw](https://github.com/stanislaw))
148
+ - Bump version to 0.0.48a1 [\#1540](https://github.com/strictdoc-project/strictdoc/pull/1540) ([stanislaw](https://github.com/stanislaw))
149
+ - export/html: Diff: update JS, simplifying skeleton [\#1536](https://github.com/strictdoc-project/strictdoc/pull/1536) ([mettta](https://github.com/mettta))
150
+ - export/html: Diff/Search: improve markup/CSS [\#1535](https://github.com/strictdoc-project/strictdoc/pull/1535) ([mettta](https://github.com/mettta))
151
+ - export/html: fix scroll for diff columns [\#1533](https://github.com/strictdoc-project/strictdoc/pull/1533) ([mettta](https://github.com/mettta))
152
+ - export/html: fix scroll for table\_key\_value [\#1532](https://github.com/strictdoc-project/strictdoc/pull/1532) ([mettta](https://github.com/mettta))
153
+ - export/html: Requirements Coverage -\> Traceability Matrix [\#1531](https://github.com/strictdoc-project/strictdoc/pull/1531) ([mettta](https://github.com/mettta))
154
+ - export/html: fixes in DIFF and Static HTML export [\#1530](https://github.com/strictdoc-project/strictdoc/pull/1530) ([mettta](https://github.com/mettta))
155
+ - export/html: Diff/Search: improve CSS layout, add nav tabs template [\#1528](https://github.com/strictdoc-project/strictdoc/pull/1528) ([mettta](https://github.com/mettta))
156
+ - export/html: DIFF: improve matching of sections and document UID, write more tests [\#1527](https://github.com/strictdoc-project/strictdoc/pull/1527) ([stanislaw](https://github.com/stanislaw))
157
+ - export/html: DIFF: improve matching of comments [\#1525](https://github.com/strictdoc-project/strictdoc/pull/1525) ([stanislaw](https://github.com/stanislaw))
158
+ - export/html: DIFF: update Changelog content view [\#1524](https://github.com/strictdoc-project/strictdoc/pull/1524) ([mettta](https://github.com/mettta))
159
+ - export/html: DIFF: add a legend to explain the most basic query rules [\#1523](https://github.com/strictdoc-project/strictdoc/pull/1523) ([stanislaw](https://github.com/stanislaw))
160
+ - file\_tree: improve file finding filter [\#1521](https://github.com/strictdoc-project/strictdoc/pull/1521) ([stanislaw](https://github.com/stanislaw))
161
+ - Diff screen: Introduce the second tab with Changelog screen [\#1520](https://github.com/strictdoc-project/strictdoc/pull/1520) ([stanislaw](https://github.com/stanislaw))
162
+ - export/html: DIFF: make the JS script not a module, to work in a static export [\#1516](https://github.com/strictdoc-project/strictdoc/pull/1516) ([mettta](https://github.com/mettta))
163
+ - Code climate: remove the second favicon.ico [\#1515](https://github.com/strictdoc-project/strictdoc/pull/1515) ([stanislaw](https://github.com/stanislaw))
164
+ - drafts/requirements: generate MID identifiers for all nodes [\#1514](https://github.com/strictdoc-project/strictdoc/pull/1514) ([stanislaw](https://github.com/stanislaw))
165
+ - backend/sdoc: Requirement, Section, Document: add MID field to grammar [\#1513](https://github.com/strictdoc-project/strictdoc/pull/1513) ([stanislaw](https://github.com/stanislaw))
166
+ - export/html: fix the REQUIREMENT's field name CSS \(to not break words apart\) [\#1506](https://github.com/strictdoc-project/strictdoc/pull/1506) ([stanislaw](https://github.com/stanislaw))
167
+ - docs: update the roadmap diagram [\#1505](https://github.com/strictdoc-project/strictdoc/pull/1505) ([stanislaw](https://github.com/stanislaw))
168
+ - document\_meta: also store input doc relative path and the doc file name [\#1501](https://github.com/strictdoc-project/strictdoc/pull/1501) ([stanislaw](https://github.com/stanislaw))
169
+ - export/html: DIFF: package Section changes in a dedicated SectionChange class [\#1498](https://github.com/strictdoc-project/strictdoc/pull/1498) ([stanislaw](https://github.com/stanislaw))
170
+ - export/html: DIFF: improve preloader [\#1497](https://github.com/strictdoc-project/strictdoc/pull/1497) ([mettta](https://github.com/mettta))
171
+ - export/html: DIFF: add skeleton preloader [\#1496](https://github.com/strictdoc-project/strictdoc/pull/1496) ([mettta](https://github.com/mettta))
172
+ - export/html: update form messages markup [\#1494](https://github.com/strictdoc-project/strictdoc/pull/1494) ([mettta](https://github.com/mettta))
173
+ - export/html: DIFF: match requirements without UID, with the same title/statement/rationale [\#1493](https://github.com/strictdoc-project/strictdoc/pull/1493) ([stanislaw](https://github.com/stanislaw))
174
+ - server: /diff endpoint: fix the lhs vs rhs calculation of git trees [\#1492](https://github.com/strictdoc-project/strictdoc/pull/1492) ([stanislaw](https://github.com/stanislaw))
175
+ - export/html: DIFF: synchronize display of right and left fragment [\#1491](https://github.com/strictdoc-project/strictdoc/pull/1491) ([mettta](https://github.com/mettta))
176
+ - project\_statistics: calculate total sections [\#1489](https://github.com/strictdoc-project/strictdoc/pull/1489) ([stanislaw](https://github.com/stanislaw))
177
+ - project\_statistics: calculate sections without any free text, add relevant query [\#1488](https://github.com/strictdoc-project/strictdoc/pull/1488) ([stanislaw](https://github.com/stanislaw))
178
+ - drafts/requirements: L1: Summary of user needs, more section texts [\#1487](https://github.com/strictdoc-project/strictdoc/pull/1487) ([stanislaw](https://github.com/stanislaw))
179
+ - UI: Diff Screen to review changes between document trees [\#1485](https://github.com/strictdoc-project/strictdoc/pull/1485) ([stanislaw](https://github.com/stanislaw))
180
+ - export/html: relax update\_requirement by only regenerating the updated document itself [\#1484](https://github.com/strictdoc-project/strictdoc/pull/1484) ([stanislaw](https://github.com/stanislaw))
181
+ - export/html2pdf: project config option for custom document template [\#1483](https://github.com/strictdoc-project/strictdoc/pull/1483) ([stanislaw](https://github.com/stanislaw))
182
+ - docs: update "Security considerations" [\#1482](https://github.com/strictdoc-project/strictdoc/pull/1482) ([stanislaw](https://github.com/stanislaw))
183
+ - UI: Create Document validations: document path is not white-/blacklisted in the config [\#1481](https://github.com/strictdoc-project/strictdoc/pull/1481) ([stanislaw](https://github.com/stanislaw))
184
+ - docs: release notes fix [\#1480](https://github.com/strictdoc-project/strictdoc/pull/1480) ([stanislaw](https://github.com/stanislaw))
185
+ - export/html: file traceability: add RST lexer [\#1479](https://github.com/strictdoc-project/strictdoc/pull/1479) ([stanislaw](https://github.com/stanislaw))
186
+ - Regenerate automatic CHANGELOG [\#1478](https://github.com/strictdoc-project/strictdoc/pull/1478) ([stanislaw](https://github.com/stanislaw))
9
187
  - Bump version to 0.0.47 [\#1477](https://github.com/strictdoc-project/strictdoc/pull/1477) ([stanislaw](https://github.com/stanislaw))
10
188
 
11
189
  ## [0.0.47](https://github.com/strictdoc-project/strictdoc/tree/0.0.47) (2023-11-20)
@@ -138,7 +316,7 @@
138
316
  - Path not found: replace assert with proper error handling [\#1291](https://github.com/strictdoc-project/strictdoc/issues/1291)
139
317
  - backend/sdoc: support Child links [\#1279](https://github.com/strictdoc-project/strictdoc/issues/1279)
140
318
  - UI: Editing grammar: ensure that all requirements can be mass-updated when the fields order is changed [\#1225](https://github.com/strictdoc-project/strictdoc/issues/1225)
141
- - Documentation train 2023-Q3 [\#1209](https://github.com/strictdoc-project/strictdoc/issues/1209)
319
+ - 2023-Q3: Documentation train [\#1209](https://github.com/strictdoc-project/strictdoc/issues/1209)
142
320
  - Feature: Project statistics / progress report screen [\#1132](https://github.com/strictdoc-project/strictdoc/issues/1132)
143
321
  - Ensure a convention for the custom fields: single-line fields above, multiline fields below [\#948](https://github.com/strictdoc-project/strictdoc/issues/948)
144
322
  - UI: Make all text fields have a button "copy to buffer" [\#913](https://github.com/strictdoc-project/strictdoc/issues/913)
@@ -197,7 +375,7 @@
197
375
  - Unable to reference .cc files [\#1199](https://github.com/strictdoc-project/strictdoc/issues/1199)
198
376
  - Double-check if we want to allow RST quote blocks starting free text blocks [\#1148](https://github.com/strictdoc-project/strictdoc/issues/1148)
199
377
  - Investigate: test 'export tree to reqif' \(sometimes\) fails on Windows [\#1100](https://github.com/strictdoc-project/strictdoc/issues/1100)
200
- - Documentation train 2023-Q2 [\#1074](https://github.com/strictdoc-project/strictdoc/issues/1074)
378
+ - 2023-Q2: Documentation train [\#1074](https://github.com/strictdoc-project/strictdoc/issues/1074)
201
379
  - UI: Section: Incoming/outgoing links [\#1045](https://github.com/strictdoc-project/strictdoc/issues/1045)
202
380
  - Document TOC tree: minor UI issue: difference in offset of Section and Requirement [\#1013](https://github.com/strictdoc-project/strictdoc/issues/1013)
203
381
  - Missing documentation for inline links [\#725](https://github.com/strictdoc-project/strictdoc/issues/725)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strictdoc
3
- Version: 0.0.49a5
3
+ Version: 0.0.49a6
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/
@@ -1,6 +1,7 @@
1
1
  target-version = "py37"
2
2
  line-length = 80
3
3
 
4
+ [lint]
4
5
  select = [
5
6
  "A",
6
7
  "ARG",
@@ -44,7 +45,6 @@ select = [
44
45
  "YTT",
45
46
  ]
46
47
 
47
-
48
48
  ignore = [
49
49
  # TBD: Unnecessary `list` comprehension (rewrite using `list()`)
50
50
  "C416",
@@ -88,7 +88,8 @@ ignore = [
88
88
  # Avoid trying to fix flake8-bugbear (`B`) violations.
89
89
  unfixable = ["B"]
90
90
 
91
- [per-file-ignores]
92
91
  # B008 Do not perform function calls in argument defaults.
93
92
  # The call is performed only once at function definition time.
93
+
94
+ [lint.per-file-ignores]
94
95
  "strictdoc/server/routers/main_router.py" = ["B008"]
@@ -1,6 +1,6 @@
1
1
  from strictdoc.core.environment import SDocRuntimeEnvironment
2
2
 
3
- __version__ = "0.0.49a5"
3
+ __version__ = "0.0.49a6"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -6,13 +6,13 @@ import xlsxwriter
6
6
  from xlsxwriter.workbook import Workbook
7
7
  from xlsxwriter.worksheet import Worksheet
8
8
 
9
- from strictdoc.backend.sdoc.models.document import Document
9
+ from strictdoc.backend.sdoc.models.document import SDocDocument
10
+ from strictdoc.backend.sdoc.models.node import SDocNode
10
11
  from strictdoc.backend.sdoc.models.reference import (
11
12
  BibReference,
12
13
  FileReference,
13
14
  ParentReqReference,
14
15
  )
15
- from strictdoc.backend.sdoc.models.requirement import Requirement
16
16
  from strictdoc.backend.sdoc.models.type_system import ReferenceType
17
17
  from strictdoc.core.project_config import ProjectConfig
18
18
  from strictdoc.core.traceability_index import TraceabilityIndex
@@ -44,7 +44,7 @@ class ExcelGenerator:
44
44
  ):
45
45
  Path(output_excel_root).mkdir(parents=True, exist_ok=True)
46
46
 
47
- document: Document
47
+ document: SDocDocument
48
48
  for document in traceability_index.document_tree.document_list:
49
49
  document_out_file_name = (
50
50
  f"{document.meta.document_filename_base}.xlsx"
@@ -59,7 +59,7 @@ class ExcelGenerator:
59
59
 
60
60
  @staticmethod
61
61
  def _export_single_document(
62
- document: Document,
62
+ document: SDocDocument,
63
63
  traceability_index,
64
64
  document_out_file,
65
65
  project_config: ProjectConfig,
@@ -223,7 +223,7 @@ class ExcelGenerator:
223
223
  row = 1
224
224
 
225
225
  for content_node in document_contents:
226
- if isinstance(content_node, Requirement):
226
+ if isinstance(content_node, SDocNode):
227
227
  if content_node.reserved_uid:
228
228
  # only export the requirements with uid, allowing tracking
229
229
  row += 1
@@ -3,18 +3,15 @@ from typing import List, NamedTuple, Optional, Tuple
3
3
 
4
4
  import xlrd
5
5
 
6
- from strictdoc.backend.sdoc.models.document import Document
6
+ from strictdoc.backend.sdoc.models.document import SDocDocument
7
7
  from strictdoc.backend.sdoc.models.document_config import DocumentConfig
8
8
  from strictdoc.backend.sdoc.models.document_grammar import (
9
9
  DocumentGrammar,
10
10
  GrammarElement,
11
11
  )
12
+ from strictdoc.backend.sdoc.models.node import SDocNode, SDocNodeField
12
13
  from strictdoc.backend.sdoc.models.object_factory import SDocObjectFactory
13
14
  from strictdoc.backend.sdoc.models.reference import ParentReqReference
14
- from strictdoc.backend.sdoc.models.requirement import (
15
- Requirement,
16
- RequirementField,
17
- )
18
15
  from strictdoc.backend.sdoc.models.type_system import GrammarElementFieldString
19
16
 
20
17
 
@@ -44,7 +41,7 @@ def safe_name(dangerous_name):
44
41
  class ExcelToSDocConverter:
45
42
  @staticmethod
46
43
  # optional argument title is present for external scripts to assign a title
47
- def convert(excel_file, title=None) -> Document:
44
+ def convert(excel_file, title=None) -> SDocDocument:
48
45
  excel_workbook = xlrd.open_workbook(filename=excel_file, on_demand=True)
49
46
  xlrd_sheet: xlrd.sheet.Sheet = excel_workbook.sheet_by_index(0)
50
47
 
@@ -117,10 +114,12 @@ class ExcelToSDocConverter:
117
114
  return document
118
115
 
119
116
  @staticmethod
120
- def create_document(title: Optional[str], extra_header_pairs) -> Document:
117
+ def create_document(
118
+ title: Optional[str], extra_header_pairs
119
+ ) -> SDocDocument:
121
120
  document_config = DocumentConfig.default_config(None)
122
121
  document_title = title if title else "<No title>"
123
- document = Document(
122
+ document = SDocDocument(
124
123
  None, document_title, document_config, None, None, None, [], []
125
124
  )
126
125
 
@@ -191,7 +190,7 @@ class ExcelToSDocConverter:
191
190
  value = row_values[i].strip()
192
191
  if value != "":
193
192
  template_requirement.ordered_fields_lookup[name] = [
194
- RequirementField(
193
+ SDocNodeField(
195
194
  parent=None,
196
195
  field_name=name,
197
196
  field_value=None,
@@ -204,7 +203,7 @@ class ExcelToSDocConverter:
204
203
  template_requirement, parent_uid, role=None
205
204
  )
206
205
 
207
- requirement_field = RequirementField(
206
+ requirement_field = SDocNodeField(
208
207
  parent=template_requirement,
209
208
  field_name="REFS",
210
209
  field_value=None,
@@ -214,7 +213,7 @@ class ExcelToSDocConverter:
214
213
  template_requirement.ordered_fields_lookup["REFS"] = [
215
214
  requirement_field
216
215
  ]
217
- requirement = Requirement(
216
+ requirement = SDocNode(
218
217
  parent=template_requirement.parent,
219
218
  requirement_type=template_requirement.requirement_type,
220
219
  mid=None,
@@ -16,19 +16,16 @@ from strictdoc.backend.reqif.sdoc_reqif_fields import (
16
16
  ReqIFChapterField,
17
17
  ReqIFRequirementReservedField,
18
18
  )
19
- from strictdoc.backend.sdoc.models.document import Document
19
+ from strictdoc.backend.sdoc.models.document import SDocDocument
20
20
  from strictdoc.backend.sdoc.models.document_config import DocumentConfig
21
21
  from strictdoc.backend.sdoc.models.document_grammar import (
22
22
  DocumentGrammar,
23
23
  GrammarElement,
24
24
  )
25
25
  from strictdoc.backend.sdoc.models.free_text import FreeText
26
+ from strictdoc.backend.sdoc.models.node import SDocNode, SDocNodeField
26
27
  from strictdoc.backend.sdoc.models.reference import ParentReqReference
27
- from strictdoc.backend.sdoc.models.requirement import (
28
- Requirement,
29
- RequirementField,
30
- )
31
- from strictdoc.backend.sdoc.models.section import Section
28
+ from strictdoc.backend.sdoc.models.section import SDocSection
32
29
  from strictdoc.backend.sdoc.models.type_system import (
33
30
  GrammarElementFieldMultipleChoice,
34
31
  GrammarElementFieldSingleChoice,
@@ -39,7 +36,7 @@ from strictdoc.helpers.string import unescape
39
36
 
40
37
  class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
41
38
  @staticmethod
42
- def convert_reqif_bundle(reqif_bundle: ReqIFBundle) -> List[Document]:
39
+ def convert_reqif_bundle(reqif_bundle: ReqIFBundle) -> List[SDocDocument]:
43
40
  # TODO: Should we rather show an error that there are no specifications?
44
41
  if (
45
42
  reqif_bundle.core_content is None
@@ -48,7 +45,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
48
45
  ):
49
46
  return [P01_ReqIFToSDocConverter.create_document(title=None)]
50
47
 
51
- documents: List[Document] = []
48
+ documents: List[SDocDocument] = []
52
49
  for (
53
50
  specification
54
51
  ) in reqif_bundle.core_content.req_if_content.specifications:
@@ -70,9 +67,9 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
70
67
  spec_object_type = reqif_bundle.lookup.get_spec_type_by_ref(
71
68
  spec_object.spec_object_type
72
69
  )
73
- attribute_map: Dict[
74
- str, SpecAttributeDefinition
75
- ] = spec_object_type.attribute_map
70
+ attribute_map: Dict[str, SpecAttributeDefinition] = (
71
+ spec_object_type.attribute_map
72
+ )
76
73
  for attribute in spec_object.attributes:
77
74
  long_name_or_none: Optional[str] = attribute_map[
78
75
  attribute.definition_ref
@@ -128,8 +125,8 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
128
125
  for _ in range(
129
126
  0, current_section.ng_level - current_hierarchy.level
130
127
  ):
131
- assert not isinstance(current_section, Document)
132
- if isinstance(current_section, Section):
128
+ assert not isinstance(current_section, SDocDocument)
129
+ if isinstance(current_section, SDocSection):
133
130
  current_section = current_section.parent
134
131
  current_section.section_contents.append(section)
135
132
  else:
@@ -137,7 +134,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
137
134
  elif P01_ReqIFToSDocConverter.is_spec_object_requirement(
138
135
  spec_object
139
136
  ):
140
- requirement: Requirement = P01_ReqIFToSDocConverter.create_requirement_from_spec_object(
137
+ requirement: SDocNode = P01_ReqIFToSDocConverter.create_requirement_from_spec_object(
141
138
  spec_object=spec_object,
142
139
  parent_section=current_section,
143
140
  reqif_bundle=reqif_bundle,
@@ -150,7 +147,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
150
147
  # See SDOC_IMPL_1.
151
148
  if (
152
149
  len(document.section_contents) > 0
153
- and isinstance(document.section_contents[0], Section)
150
+ and isinstance(document.section_contents[0], SDocSection)
154
151
  and document.section_contents[0].title == "Abstract"
155
152
  ):
156
153
  assert len(document.section_contents[0].free_texts)
@@ -158,10 +155,10 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
158
155
  document.section_contents.pop(0)
159
156
 
160
157
  for used_spec_object_type_id in used_spec_object_types_ids:
161
- spec_object_type_or_none: Optional[
162
- ReqIFSpecObjectType
163
- ] = reqif_bundle.get_spec_object_type_by_ref(
164
- ref=used_spec_object_type_id,
158
+ spec_object_type_or_none: Optional[ReqIFSpecObjectType] = (
159
+ reqif_bundle.get_spec_object_type_by_ref(
160
+ ref=used_spec_object_type_id,
161
+ )
165
162
  )
166
163
  assert (
167
164
  spec_object_type_or_none is not None
@@ -259,10 +256,10 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
259
256
  return requirement_element
260
257
 
261
258
  @staticmethod
262
- def create_document(title: Optional[str]) -> Document:
259
+ def create_document(title: Optional[str]) -> SDocDocument:
263
260
  document_config = DocumentConfig.default_config(None)
264
261
  document_title = title if title else "<No title>"
265
- document = Document(
262
+ document = SDocDocument(
266
263
  None, document_title, document_config, None, None, None, [], []
267
264
  )
268
265
  document.grammar = DocumentGrammar.create_default(document)
@@ -273,13 +270,13 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
273
270
  @staticmethod
274
271
  def create_section_from_spec_object(
275
272
  spec_object: ReqIFSpecObject, level, reqif_bundle: ReqIFBundle
276
- ) -> Section:
273
+ ) -> SDocSection:
277
274
  spec_object_type = reqif_bundle.lookup.get_spec_type_by_ref(
278
275
  spec_object.spec_object_type
279
276
  )
280
- attribute_map: Dict[
281
- str, SpecAttributeDefinition
282
- ] = spec_object_type.attribute_map
277
+ attribute_map: Dict[str, SpecAttributeDefinition] = (
278
+ spec_object_type.attribute_map
279
+ )
283
280
  assert attribute_map is not None
284
281
  for attribute in spec_object.attributes:
285
282
  field_name_or_none: Optional[str] = attribute_map[
@@ -312,7 +309,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
312
309
  # Some value
313
310
  # </THE-VALUE>
314
311
  section_title = section_title.strip().replace("\n", " ")
315
- section = Section(
312
+ section = SDocSection(
316
313
  parent=None,
317
314
  mid=None,
318
315
  uid=None,
@@ -328,17 +325,17 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
328
325
  @staticmethod
329
326
  def create_requirement_from_spec_object(
330
327
  spec_object: ReqIFSpecObject,
331
- parent_section: Union[Section, Document],
328
+ parent_section: Union[SDocSection, SDocDocument],
332
329
  reqif_bundle: ReqIFBundle,
333
330
  level,
334
- ) -> Requirement:
331
+ ) -> SDocNode:
335
332
  fields = []
336
333
  spec_object_type = reqif_bundle.lookup.get_spec_type_by_ref(
337
334
  spec_object.spec_object_type
338
335
  )
339
- attribute_map: Dict[
340
- str, SpecAttributeDefinition
341
- ] = spec_object_type.attribute_map
336
+ attribute_map: Dict[str, SpecAttributeDefinition] = (
337
+ spec_object_type.attribute_map
338
+ )
342
339
 
343
340
  foreign_key_id_or_none: Optional[str] = None
344
341
  for attribute in spec_object.attributes:
@@ -382,7 +379,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
382
379
 
383
380
  enum_values = ", ".join(enum_values_resolved)
384
381
  fields.append(
385
- RequirementField(
382
+ SDocNodeField(
386
383
  parent=None,
387
384
  field_name=sdoc_field_name,
388
385
  field_value=enum_values,
@@ -410,7 +407,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
410
407
  )
411
408
  )
412
409
  fields.append(
413
- RequirementField(
410
+ SDocNodeField(
414
411
  parent=None,
415
412
  field_name=sdoc_field_name,
416
413
  field_value=attribute_value,
@@ -418,7 +415,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
418
415
  field_value_references=None,
419
416
  )
420
417
  )
421
- requirement = Requirement(
418
+ requirement = SDocNode(
422
419
  parent=parent_section,
423
420
  requirement_type="REQUIREMENT",
424
421
  mid=None,
@@ -450,7 +447,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
450
447
  )
451
448
  )
452
449
  if len(parent_refs) > 0:
453
- requirement_field = RequirementField(
450
+ requirement_field = SDocNodeField(
454
451
  parent=requirement,
455
452
  field_name="REFS",
456
453
  field_value=None,