strictdoc 0.8.0__tar.gz → 0.9.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) hide show
  1. {strictdoc-0.8.0 → strictdoc-0.9.0}/NOTICE +5 -4
  2. {strictdoc-0.8.0 → strictdoc-0.9.0}/PKG-INFO +7 -7
  3. strictdoc-0.9.0/README.md +4 -0
  4. {strictdoc-0.8.0 → strictdoc-0.9.0}/pyproject.toml +20 -7
  5. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/__init__.py +1 -1
  6. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/export/excel_generator.py +33 -22
  7. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/import_/excel_sheet_proxy.py +18 -6
  8. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +15 -4
  9. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +78 -161
  10. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +74 -177
  11. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/reqif_export.py +4 -7
  12. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/reqif_import.py +4 -3
  13. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/error_handling.py +72 -68
  14. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/grammar/grammar.py +36 -31
  15. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +6 -0
  16. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/grammar_reader.py +1 -1
  17. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/anchor.py +1 -1
  18. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/constants.py +7 -1
  19. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/document.py +109 -37
  20. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/document_config.py +68 -8
  21. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/document_from_file.py +26 -15
  22. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/document_grammar.py +321 -111
  23. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/document_view.py +1 -1
  24. strictdoc-0.9.0/strictdoc/backend/sdoc/models/free_text.py +14 -0
  25. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/inline_link.py +0 -1
  26. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/model.py +38 -31
  27. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/node.py +123 -105
  28. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/object_factory.py +3 -1
  29. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/reference.py +0 -3
  30. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/section.py +40 -22
  31. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/type_system.py +4 -3
  32. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/processor.py +22 -58
  33. strictdoc-0.9.0/strictdoc/backend/sdoc/reader.py +236 -0
  34. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/validations/sdoc_validator.py +45 -49
  35. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/writer.py +98 -74
  36. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/caching_reader.py +13 -9
  37. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/comment_parser/marker_lexer.py +59 -0
  38. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/constants.py +11 -0
  39. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/coverage_reports/gcov.py +262 -0
  40. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/helpers/comment_preprocessor.py +30 -0
  41. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/marker_parser.py +212 -0
  42. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/models/function_range_marker.py +1 -1
  43. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/models/range_marker.py +10 -6
  44. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +25 -17
  45. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/models/source_node.py +19 -0
  46. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/processors/general_language_marker_processors.py +1 -1
  47. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/reader.py +14 -15
  48. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/reader_c.py +49 -36
  49. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/reader_python.py +47 -54
  50. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/reader_robot.py +202 -0
  51. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/test_reports/junit_xml_reader.py +33 -16
  52. strictdoc-0.9.0/strictdoc/backend/sdoc_source_code/test_reports/robot_xml_reader.py +236 -0
  53. strictdoc-0.9.0/strictdoc/cli/argument_int_range.py +25 -0
  54. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/cli/command_parser_builder.py +6 -6
  55. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/cli/main.py +11 -7
  56. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/commands/diff_command.py +3 -0
  57. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/commands/manage_autouid_command.py +6 -2
  58. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/actions/export_action.py +3 -2
  59. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/actions/import_action.py +1 -1
  60. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/analyzers/document_stats.py +10 -3
  61. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/analyzers/document_uid_analyzer.py +14 -17
  62. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/document_finder.py +29 -7
  63. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/document_iterator.py +81 -77
  64. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/document_meta.py +5 -6
  65. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/document_tree.py +1 -1
  66. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/document_tree_iterator.py +7 -26
  67. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/environment.py +29 -32
  68. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/file_dependency_manager.py +2 -2
  69. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/file_traceability_index.py +157 -19
  70. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/file_tree.py +37 -96
  71. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/finders/source_files_finder.py +6 -6
  72. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/graph/abstract_bucket.py +15 -17
  73. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/graph/many_to_many_set.py +5 -27
  74. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/graph/one_to_one_dictionary.py +11 -13
  75. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/graph_database.py +2 -11
  76. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/project_config.py +71 -18
  77. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/query_engine/query_object.py +109 -73
  78. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/query_engine/query_reader.py +0 -3
  79. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/source_tree.py +2 -9
  80. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/traceability_index.py +67 -90
  81. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/traceability_index_builder.py +71 -37
  82. strictdoc-0.9.0/strictdoc/core/transforms/delete_requirement.py +63 -0
  83. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/section.py +2 -2
  84. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/update_document_config.py +44 -5
  85. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/update_grammar_element.py +8 -8
  86. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/update_requirement.py +11 -3
  87. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/tree_cycle_detector.py +6 -4
  88. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/doxygen/doxygen_generator.py +1 -1
  89. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/base.css +27 -19
  90. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/anchor_controller.js +174 -0
  91. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/autocompletable_field_controller.js +372 -0
  92. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/copy_stable_link_button_controller.js +82 -0
  93. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +70 -0
  94. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/deletable_field_controller.js +19 -0
  95. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/draggable_list_controller.js +334 -0
  96. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +46 -0
  97. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/editable_field_controller.js +52 -0
  98. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/modal_controller.js +47 -0
  99. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/movable_field_controller.js +67 -0
  100. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +11 -0
  101. strictdoc-0.9.0/strictdoc/export/html/_static/controllers/tabs_controller.js +71 -0
  102. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/element.css +126 -31
  103. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/form.css +7 -8
  104. strictdoc-0.9.0/strictdoc/export/html/_static/html2pdf4doc.css +4 -0
  105. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/node.css +21 -15
  106. strictdoc-0.8.0/strictdoc/export/html/_static/requirement.css → strictdoc-0.9.0/strictdoc/export/html/_static/node_content.css +186 -78
  107. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/project_coverage.css +143 -8
  108. strictdoc-0.9.0/strictdoc/export/html/_static/project_coverage.js +71 -0
  109. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/requirement__temporary.css +1 -1
  110. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/source.css +2 -2
  111. strictdoc-0.9.0/strictdoc/export/html/_static/stable_uri_forwarder.js +85 -0
  112. strictdoc-0.9.0/strictdoc/export/html/_static/stimulus_umd.min.js +5 -0
  113. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/document_type.py +7 -10
  114. strictdoc-0.9.0/strictdoc/export/html/form_objects/document_config_form_object.py +190 -0
  115. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/grammar_element_form_object.py +17 -4
  116. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/grammar_form_object.py +17 -5
  117. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/included_document_form_object.py +7 -5
  118. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/requirement_form_object.py +109 -72
  119. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +6 -4
  120. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/section_form_object.py +7 -6
  121. strictdoc-0.9.0/strictdoc/export/html/generators/project_map.py +24 -0
  122. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/project_statistics.py +18 -18
  123. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/source_file_coverage.py +0 -6
  124. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/source_file_view_generator.py +6 -3
  125. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/traceability_matrix.py +17 -17
  126. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +31 -9
  127. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +1 -5
  128. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +51 -26
  129. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/helpers.py +6 -2
  130. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +5 -1
  131. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +10 -8
  132. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +13 -11
  133. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +16 -6
  134. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +6 -11
  135. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +7 -19
  136. strictdoc-0.9.0/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +55 -0
  137. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/html_generator.py +53 -13
  138. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/html_templates.py +2 -2
  139. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/renderers/link_renderer.py +14 -10
  140. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/renderers/markup_renderer.py +1 -1
  141. strictdoc-0.9.0/strictdoc/export/html/templates/_res/svg_ico16_link.jinja +4 -0
  142. strictdoc-0.9.0/strictdoc/export/html/templates/actions/document/add_document_metadata/stream_add_document_metadata.jinja.html +11 -0
  143. strictdoc-0.8.0/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja → strictdoc-0.9.0/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_node.jinja +1 -1
  144. strictdoc-0.9.0/strictdoc/export/html/templates/autocomplete/field/stream_autocomplete_field.jinja.html +2 -0
  145. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/base.jinja.html +6 -1
  146. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/anchor/index.jinja +1 -4
  147. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/field/index.jinja +1 -1
  148. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/field/autocompletable/index.jinja +8 -2
  149. strictdoc-0.9.0/strictdoc/export/html/templates/components/form/row/row_with_metadata.jinja +89 -0
  150. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +3 -1
  151. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +14 -2
  152. strictdoc-0.9.0/strictdoc/export/html/templates/components/issue/banner.jinja +26 -0
  153. strictdoc-0.9.0/strictdoc/export/html/templates/components/issue/index.jinja +12 -0
  154. strictdoc-0.9.0/strictdoc/export/html/templates/components/node/copy_stable_link_button.jinja +18 -0
  155. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node/index.jinja +13 -13
  156. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +3 -3
  157. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +32 -7
  158. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node/readonly.jinja +9 -0
  159. {strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content}/card.jinja +1 -1
  160. {strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content}/card_extends_card.jinja +1 -1
  161. strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content/index.jinja +68 -0
  162. {strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content}/index_extends_node.jinja +1 -1
  163. {strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content}/index_extends_readonly.jinja +2 -2
  164. {strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content}/tiny.jinja +3 -3
  165. {strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0/strictdoc/export/html/templates/components/node_content}/tiny_extends_card.jinja +1 -1
  166. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +3 -3
  167. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +20 -3
  168. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/files/index.jinja +4 -4
  169. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/links/index.jinja +6 -6
  170. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +3 -3
  171. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +3 -3
  172. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +3 -3
  173. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +1 -1
  174. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +1 -1
  175. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +1 -1
  176. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +5 -5
  177. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/title/index.jinja +20 -2
  178. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +2 -2
  179. strictdoc-0.9.0/strictdoc/export/html/templates/components/table_key_value/index.jinja +16 -0
  180. strictdoc-0.8.0/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja → strictdoc-0.9.0/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_node.jinja +2 -4
  181. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +3 -3
  182. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +5 -5
  183. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +48 -2
  184. strictdoc-0.9.0/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +28 -0
  185. strictdoc-0.9.0/strictdoc/export/html/templates/screens/document/document/frame_document_issues.jinja +1 -0
  186. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +17 -1
  187. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/index.jinja +25 -18
  188. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +8 -7
  189. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +8 -8
  190. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +2 -2
  191. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/table/index.jinja +5 -5
  192. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/table/main.jinja +4 -6
  193. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +11 -9
  194. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +6 -6
  195. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +12 -10
  196. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +6 -6
  197. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +77 -36
  198. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/diff_content.jinja +4 -4
  199. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +2 -2
  200. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/form.jinja +2 -0
  201. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/index.jinja +7 -5
  202. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +1 -0
  203. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/node/section.jinja +1 -1
  204. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/nestor/index.jinja +1 -1
  205. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/index.jinja +9 -6
  206. strictdoc-0.9.0/strictdoc/export/html/templates/screens/project_index/project_map.jinja.js +17 -0
  207. strictdoc-0.9.0/strictdoc/export/html/templates/screens/project_index/project_map_file.jinja +7 -0
  208. strictdoc-0.9.0/strictdoc/export/html/templates/screens/project_index/project_map_folder.jinja +15 -0
  209. strictdoc-0.9.0/strictdoc/export/html/templates/screens/project_index/project_map_node.jinja +13 -0
  210. strictdoc-0.9.0/strictdoc/export/html/templates/screens/project_index/project_map_section.jinja +16 -0
  211. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +2 -2
  212. strictdoc-0.9.0/strictdoc/export/html/templates/screens/project_statistics/main.jinja +195 -0
  213. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/search/index.jinja +6 -4
  214. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/search/main.jinja +3 -3
  215. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +20 -13
  216. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +1 -1
  217. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +1 -1
  218. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +15 -0
  219. strictdoc-0.9.0/strictdoc/export/html/templates/screens/source_file_coverage/thead.jinja +47 -0
  220. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +1 -1
  221. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +3 -3
  222. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +2 -2
  223. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/tools/html_embedded.py +3 -2
  224. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html2pdf/pdf_print_driver.py +6 -3
  225. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/json/json_generator.py +133 -103
  226. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +30 -29
  227. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/document_rst_generator.py +0 -5
  228. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/rst_to_html_fragment_writer.py +6 -5
  229. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/writer.py +8 -20
  230. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/spdx/spdx_generator.py +30 -28
  231. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +44 -35
  232. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/git/change.py +10 -4
  233. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/git/change_generator.py +4 -2
  234. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/git/git_client.py +3 -71
  235. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/git/project_diff_analyzer.py +149 -145
  236. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/auto_described.py +4 -2
  237. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/cast.py +20 -16
  238. strictdoc-0.9.0/strictdoc/helpers/coverage.py +45 -0
  239. strictdoc-0.9.0/strictdoc/helpers/deprecation_engine.py +49 -0
  240. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/diff.py +11 -5
  241. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/file_modification_time.py +1 -1
  242. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/file_system.py +1 -1
  243. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/form_data.py +20 -5
  244. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/google_test.py +4 -2
  245. strictdoc-0.9.0/strictdoc/helpers/math.py +11 -0
  246. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/ordered_set.py +3 -2
  247. strictdoc-0.9.0/strictdoc/helpers/parallelizer.py +198 -0
  248. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/paths.py +2 -2
  249. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/rst.py +0 -10
  250. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/string.py +5 -12
  251. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/app.py +13 -13
  252. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/error_object.py +0 -3
  253. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/helpers/turbo.py +1 -2
  254. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/reload_config.py +1 -0
  255. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/routers/main_router.py +282 -130
  256. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/server.py +2 -2
  257. strictdoc-0.8.0/README.md +0 -8
  258. strictdoc-0.8.0/strictdoc/backend/sdoc/models/free_text.py +0 -64
  259. strictdoc-0.8.0/strictdoc/backend/sdoc/reader.py +0 -104
  260. strictdoc-0.8.0/strictdoc/backend/sdoc_source_code/constants.py +0 -7
  261. strictdoc-0.8.0/strictdoc/backend/sdoc_source_code/marker_parser.py +0 -104
  262. strictdoc-0.8.0/strictdoc/cli/argument_int_range.py +0 -36
  263. strictdoc-0.8.0/strictdoc/core/transforms/create_requirement.py +0 -291
  264. strictdoc-0.8.0/strictdoc/core/transforms/delete_requirement.py +0 -58
  265. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -173
  266. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/autocompletable_field_controller.js +0 -297
  267. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -64
  268. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -13
  269. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -328
  270. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -52
  271. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -46
  272. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/modal_controller.js +0 -41
  273. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -60
  274. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -5
  275. strictdoc-0.8.0/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -65
  276. strictdoc-0.8.0/strictdoc/export/html/_static/project_coverage.js +0 -2
  277. strictdoc-0.8.0/strictdoc/export/html/_static/stimulus.min.js +0 -5
  278. strictdoc-0.8.0/strictdoc/export/html/form_objects/document_config_form_object.py +0 -102
  279. strictdoc-0.8.0/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -151
  280. strictdoc-0.8.0/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -18
  281. strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement/index.jinja +0 -32
  282. strictdoc-0.8.0/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -33
  283. strictdoc-0.8.0/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -22
  284. strictdoc-0.8.0/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -25
  285. strictdoc-0.8.0/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -101
  286. strictdoc-0.8.0/strictdoc/export/html/templates/screens/source_file_coverage/thead.jinja +0 -29
  287. strictdoc-0.8.0/strictdoc/helpers/math.py +0 -14
  288. strictdoc-0.8.0/strictdoc/helpers/parallelizer.py +0 -148
  289. {strictdoc-0.8.0 → strictdoc-0.9.0}/.gitignore +0 -0
  290. {strictdoc-0.8.0 → strictdoc-0.9.0}/LICENSE +0 -0
  291. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/__init__.py +0 -0
  292. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/__init__.py +0 -0
  293. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/excel_import.py +0 -0
  294. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/export/__init__.py +0 -0
  295. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/excel/import_/__init__.py +0 -0
  296. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/__init__.py +0 -0
  297. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
  298. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  299. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/__init__.py +0 -0
  300. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/constants.py +0 -0
  301. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/document_reference.py +0 -0
  302. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  303. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  304. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  305. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  306. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
  307. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
  308. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  309. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
  310. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  311. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  312. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
  313. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  314. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/models/function.py +0 -0
  315. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
  316. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/parse_context.py +0 -0
  317. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/backend/sdoc_source_code/tree_sitter_helpers.py +0 -0
  318. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/cli/__init__.py +0 -0
  319. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/cli/cli_arg_parser.py +0 -0
  320. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/commands/__init__.py +0 -0
  321. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/commands/about_command.py +0 -0
  322. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/commands/dump_grammar_command.py +0 -0
  323. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/commands/version_command.py +0 -0
  324. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/__init__.py +0 -0
  325. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/actions/__init__.py +0 -0
  326. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/asset_manager.py +0 -0
  327. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/constants.py +0 -0
  328. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/finders/__init__.py +0 -0
  329. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/graph/validations.py +0 -0
  330. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/query_engine/grammar.py +0 -0
  331. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/constants.py +0 -0
  332. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/delete_section.py +0 -0
  333. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/update_grammar.py +0 -0
  334. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/update_included_document.py +0 -0
  335. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/core/transforms/validation_error.py +0 -0
  336. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/__init__.py +0 -0
  337. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/autogen.css +0 -0
  338. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/collapsible_list.js +0 -0
  339. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
  340. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
  341. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/content.css +0 -0
  342. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/diff.css +0 -0
  343. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/diff.js +0 -0
  344. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/favicon.ico +0 -0
  345. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
  346. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
  347. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
  348. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/layout.css +0 -0
  349. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/pan_with_space.js +0 -0
  350. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/project_tree.css +0 -0
  351. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/project_tree.js +0 -0
  352. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  353. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  354. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/resizable_bar.js +0 -0
  355. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  356. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/table_vew.css +0 -0
  357. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
  358. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
  359. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
  360. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/turbo.min.js +0 -0
  361. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  362. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static/zoomable.js +0 -0
  363. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  364. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  365. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  366. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  367. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  368. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  369. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  370. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  371. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  372. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  373. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  374. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  375. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  376. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  377. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  378. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  379. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  380. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  381. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  382. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  383. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  384. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  385. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  386. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  387. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  388. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  389. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
  390. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
  391. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
  392. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/form_objects/form_object.py +0 -0
  393. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/__init__.py +0 -0
  394. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/document.py +0 -0
  395. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
  396. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/document_pdf.py +0 -0
  397. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/document_table.py +0 -0
  398. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/document_trace.py +0 -0
  399. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/generators/document_tree.py +0 -0
  400. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/renderers/__init__.py +0 -0
  401. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  402. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  403. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  404. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  405. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
  406. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
  407. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
  408. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
  409. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  410. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  411. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
  412. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  413. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
  414. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  415. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
  416. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  417. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
  418. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  419. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  420. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
  421. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
  422. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
  423. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
  424. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
  425. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
  426. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  427. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
  428. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  429. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  430. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  431. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  432. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  433. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  434. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  435. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  436. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  437. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  438. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
  439. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
  440. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_section_collapse.jinja +0 -0
  441. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  442. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_source_pointer_in.jinja +0 -0
  443. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_source_pointer_out.jinja +0 -0
  444. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
  445. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
  446. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  447. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
  448. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
  449. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
  450. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
  451. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
  452. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
  453. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
  454. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
  455. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
  456. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  457. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
  458. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
  459. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  460. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
  461. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
  462. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  463. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
  464. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  465. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
  466. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
  467. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
  468. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
  469. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
  470. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
  471. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  472. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
  473. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
  474. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
  475. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
  476. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
  477. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/autocomplete/uid/stream_autocomplete_uid.jinja.html +0 -0
  478. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
  479. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  480. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  481. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  482. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
  483. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
  484. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  485. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  486. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  487. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
  488. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  489. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  490. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
  491. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
  492. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
  493. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
  494. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
  495. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
  496. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
  497. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
  498. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
  499. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
  500. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
  501. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
  502. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
  503. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
  504. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
  505. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
  506. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
  507. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
  508. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
  509. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
  510. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  511. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  512. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
  513. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
  514. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
  515. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
  516. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
  517. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
  518. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
  519. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  520. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  521. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  522. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  523. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
  524. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  525. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  526. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
  527. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
  528. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
  529. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
  530. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
  531. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
  532. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
  533. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
  534. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
  535. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
  536. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
  537. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
  538. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
  539. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
  540. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
  541. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
  542. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
  543. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
  544. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
  545. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
  546. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
  547. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
  548. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
  549. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
  550. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
  551. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
  552. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
  553. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
  554. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
  555. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
  556. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
  557. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
  558. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
  559. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
  560. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
  561. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
  562. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
  563. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
  564. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
  565. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
  566. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
  567. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_coverage/value_bar.jinja +0 -0
  568. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
  569. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/file_stats.jinja +0 -0
  570. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/header__actions.jinja +0 -0
  571. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
  572. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
  573. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/node_title_for_banner_header.jinja +0 -0
  574. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/range_button.jinja +0 -0
  575. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
  576. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
  577. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
  578. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
  579. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
  580. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
  581. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
  582. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html/tools/__init__.py +0 -0
  583. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
  584. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/__init__.py +0 -0
  585. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
  586. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/rst_templates.py +0 -0
  587. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  588. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
  589. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/__init__.py +0 -0
  590. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/exception.py +0 -0
  591. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/file_stats.py +0 -0
  592. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/git_client.py +0 -0
  593. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/md5.py +0 -0
  594. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/mid.py +0 -0
  595. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/net.py +0 -0
  596. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/path_filter.py +0 -0
  597. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/pickle.py +0 -0
  598. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/sha256.py +0 -0
  599. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/shard.py +0 -0
  600. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/sorting.py +0 -0
  601. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/textx.py +0 -0
  602. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/helpers/timing.py +0 -0
  603. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/__init__.py +0 -0
  604. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/config.py +0 -0
  605. {strictdoc-0.8.0 → strictdoc-0.9.0}/strictdoc/server/routers/other_router.py +0 -0
  606. {strictdoc-0.8.0 → strictdoc-0.9.0}/tests/integration/scripting_examples/questionnaires/02_user_provided_example/LICENSE +0 -0
@@ -21,26 +21,27 @@ LICENSE file for more information.
21
21
  Contributors
22
22
  ------------
23
23
 
24
- Please visit: https://strictdoc.readthedocs.io/en/latest/strictdoc_30_credits.html.
24
+ Please visit: https://strictdoc.readthedocs.io/en/latest/latest/docs/strictdoc_30_credits.html.
25
25
 
26
26
  Third-party libraries and tools used in this project
27
27
  ----------------------------------------------------
28
28
 
29
29
  - textX, MIT License, https://github.com/textX/textX/blob/master/LICENSE.txt
30
- - Sphinx, The 2-clause BSD License, https://github.com/sphinx-doc/sphinx/blob/master/LICENSE
30
+ - Sphinx, The 2-clause BSD License, https://github.com/sphinx-doc/sphinx/blob/master/LICENSE.rst
31
31
  - Docutils, Public Domain Dedication with exceptions, https://docutils.sourceforge.io/COPYING.html
32
32
  - reqif, Apache 2 License, https://github.com/strictdoc-project/reqif/blob/main/LICENSE
33
33
  - lxml, The 3-Clause BSD License, https://github.com/lxml/lxml/blob/master/doc/licenses/BSD.txt
34
34
  - FastAPI, MIT License, https://github.com/tiangolo/fastapi/blob/master/LICENSE
35
35
  - Turbo.js, MIT License, https://github.com/hotwired/turbo/blob/main/MIT-LICENSE
36
36
  - Stimulus.js, MIT License, https://github.com/hotwired/stimulus/blob/main/LICENSE.md
37
- - Jinja, BSD 3-Clause "New" or "Revised" License, https://github.com/pallets/jinja/blob/main/LICENSE.rst
37
+ - Jinja, BSD 3-Clause "New" or "Revised" License, https://github.com/pallets/jinja/blob/main/LICENSE.txt
38
38
  - Pygments, BSD 2-Clause "Simplified" License, https://github.com/pygments/pygments/blob/master/LICENSE
39
39
  - XlsxWriter, BSD 2-Clause "Simplified" License, https://github.com/jmcnamara/XlsxWriter/blob/main/LICENSE.txt
40
40
  - xlrd, The 3-Clause BSD License and another license for earlier work, https://github.com/python-excel/xlrd/blob/master/LICENSE
41
41
  - python-datauri, The Unlicense, https://github.com/fcurella/python-datauri/blob/master/LICENSE
42
+ - tree-sitter, MIT License, https://github.com/tree-sitter/tree-sitter/blob/master/LICENSE
42
43
 
43
- Please also visit: https://strictdoc.readthedocs.io/en/latest/strictdoc_30_credits.html.
44
+ Please also visit: https://strictdoc.readthedocs.io/en/latest/latest/docs/strictdoc_30_credits.html.
44
45
 
45
46
  Contact
46
47
  -------
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: strictdoc
3
- Version: 0.8.0
3
+ Version: 0.9.0
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/
@@ -9,27 +9,31 @@ Author-email: Stanislav Pankevich <s.pankevich@gmail.com>, Maryna Balioura <mett
9
9
  License-Expression: Apache-2.0
10
10
  License-File: LICENSE
11
11
  License-File: NOTICE
12
- Classifier: License :: OSI Approved :: BSD License
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
13
  Classifier: Operating System :: OS Independent
14
14
  Classifier: Programming Language :: Python :: 3
15
15
  Classifier: Programming Language :: Python :: 3.8
16
16
  Classifier: Programming Language :: Python :: 3.9
17
17
  Classifier: Programming Language :: Python :: 3.10
18
18
  Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
19
21
  Classifier: Programming Language :: Python :: Implementation :: CPython
20
22
  Classifier: Programming Language :: Python :: Implementation :: PyPy
21
23
  Requires-Python: >=3.8
22
24
  Requires-Dist: beautifulsoup4==4.*,>=4.12.0
23
25
  Requires-Dist: docutils==0.*,>=0.16
24
26
  Requires-Dist: fastapi>=0.83.0
25
- Requires-Dist: html2print>=0.0.15
27
+ Requires-Dist: html2pdf4doc>=0.0.18
26
28
  Requires-Dist: html5lib>=1.1
27
29
  Requires-Dist: jinja2>=2.11.2
30
+ Requires-Dist: lark>=1.2.2
28
31
  Requires-Dist: openpyxl>=3.1.0
29
32
  Requires-Dist: pygments==2.*,>=2.10.0
30
33
  Requires-Dist: python-datauri==2.*,>=2.1.1
31
34
  Requires-Dist: python-multipart
32
35
  Requires-Dist: reqif==0.*,>=0.0.39
36
+ Requires-Dist: robotframework>=4.0.0
33
37
  Requires-Dist: spdx-tools
34
38
  Requires-Dist: textx==4.*,>=4.0.0
35
39
  Requires-Dist: toml
@@ -50,9 +54,5 @@ Description-Content-Type: text/markdown
50
54
 
51
55
  # StrictDoc
52
56
 
53
- ![](https://github.com/stanislaw/strictdoc/actions/workflows/ci-mac.yml/badge.svg)
54
- ![](https://github.com/stanislaw/strictdoc/actions/workflows/ci-linux-ubuntu-latest.yml/badge.svg)
55
- ![](https://github.com/stanislaw/strictdoc/actions/workflows/ci-windows.yml/badge.svg)
56
-
57
57
  The documentation is hosted on Read the Docs:
58
58
  [StrictDoc documentation](https://strictdoc.readthedocs.io/en/stable/).
@@ -0,0 +1,4 @@
1
+ # StrictDoc
2
+
3
+ The documentation is hosted on Read the Docs:
4
+ [StrictDoc documentation](https://strictdoc.readthedocs.io/en/stable/).
@@ -31,24 +31,24 @@ authors = [
31
31
  { name = "Maryna Balioura", email = "mettta@gmail.com" },
32
32
  ]
33
33
  classifiers = [
34
- # "Development Status :: 4 - Beta",
35
- # "Environment :: Web Environment",
36
- # "Intended Audience :: Developers",
37
- "License :: OSI Approved :: BSD License",
34
+ "License :: OSI Approved :: Apache Software License",
38
35
  "Operating System :: OS Independent",
39
36
  "Programming Language :: Python :: 3",
40
37
  "Programming Language :: Python :: 3.8",
41
38
  "Programming Language :: Python :: 3.9",
42
39
  "Programming Language :: Python :: 3.10",
43
40
  "Programming Language :: Python :: 3.11",
41
+ "Programming Language :: Python :: 3.12",
42
+ "Programming Language :: Python :: 3.13",
44
43
  "Programming Language :: Python :: Implementation :: CPython",
45
44
  "Programming Language :: Python :: Implementation :: PyPy",
46
- # "Topic :: Internet :: WWW/HTTP",
47
45
  ]
48
46
 
49
47
  # @sdoc[SDOC-SRS-89]
50
48
  dependencies = [
51
49
  "textx >= 4.0.0, == 4.*",
50
+ "lark >= 1.2.2",
51
+
52
52
  "jinja2 >= 2.11.2",
53
53
  # Reading project config from strictdoc.toml file.
54
54
  "toml",
@@ -88,7 +88,10 @@ dependencies = [
88
88
  "WebSockets",
89
89
 
90
90
  # HTML2PDF dependencies
91
- "html2print >= 0.0.15",
91
+ "html2pdf4doc >= 0.0.18",
92
+
93
+ # Robot Framework dependencies
94
+ "robotframework >= 4.0.0",
92
95
  ]
93
96
  # @sdoc[/SDOC-SRS-89]
94
97
 
@@ -110,7 +113,6 @@ strictdoc = "strictdoc.cli.main:main"
110
113
 
111
114
  [project.urls]
112
115
  Changelog = "https://github.com/strictdoc-project/strictdoc/blob/main/CHANGELOG.md"
113
- # Funding = "https://..."
114
116
  Homepage = "https://strictdoc.readthedocs.io/en/stable/"
115
117
  Source = "https://github.com/strictdoc-project/strictdoc"
116
118
 
@@ -119,3 +121,14 @@ addopts = "--import-mode=importlib"
119
121
  pythonpath = [
120
122
  "."
121
123
  ]
124
+
125
+ [tool.fixit]
126
+ enable = [
127
+ ".developer.fixit.check_comments",
128
+ ".developer.fixit.check_docstrings",
129
+ ]
130
+
131
+ # FIXME: Remove disable.
132
+ disable = [
133
+ "fixit.rules"
134
+ ]
@@ -1,6 +1,6 @@
1
1
  from strictdoc.core.environment import SDocRuntimeEnvironment
2
2
 
3
- __version__ = "0.8.0"
3
+ __version__ = "0.9.0"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -1,4 +1,4 @@
1
- # mypy: disable-error-code="arg-type,no-untyped-def,type-arg,union-attr,var-annotated"
1
+ # mypy: disable-error-code="arg-type,no-untyped-def,union-attr"
2
2
  import os
3
3
  from pathlib import Path
4
4
  from typing import Dict, List
@@ -8,6 +8,7 @@ from xlsxwriter.workbook import Workbook
8
8
  from xlsxwriter.worksheet import Worksheet
9
9
 
10
10
  from strictdoc.backend.sdoc.models.document import SDocDocument
11
+ from strictdoc.backend.sdoc.models.model import SDocElementIF
11
12
  from strictdoc.backend.sdoc.models.node import SDocNode
12
13
  from strictdoc.backend.sdoc.models.reference import (
13
14
  FileReference,
@@ -73,31 +74,41 @@ class ExcelGenerator:
73
74
  }
74
75
  )
75
76
 
76
- row = 1 # Header-Row
77
+ # Header row.
78
+ row = 1
79
+
77
80
  fields = project_config.excel_export_fields
78
- # TODO: Check if all fields are defined by the DocumentGrammar
81
+
82
+ # FIXME: Check if all fields are defined by the DocumentGrammar.
79
83
  columns = ExcelGenerator._init_columns_width(fields)
80
84
 
81
- req_uid_rows = ExcelGenerator._lookup_refs(
82
- traceability_index.get_document_iterator(document).all_content(
83
- print_fragments=False, print_fragments_from_files=False
85
+ document_iterator = traceability_index.get_document_iterator(
86
+ document
87
+ )
88
+ all_nodes = list(
89
+ map(
90
+ lambda node_with_context_: node_with_context_[0],
91
+ document_iterator.all_content(
92
+ print_fragments=False, print_fragments_from_files=False
93
+ ),
84
94
  )
85
95
  )
96
+ req_uid_rows = ExcelGenerator._lookup_refs(all_nodes)
86
97
 
87
98
  if len(req_uid_rows):
88
- for node in traceability_index.get_document_iterator(
99
+ for node, _ in traceability_index.get_document_iterator(
89
100
  document
90
101
  ).all_content(
91
102
  print_fragments=False, print_fragments_from_files=False
92
103
  ):
93
- if not node.is_requirement or not node.reserved_uid:
94
- # only export the requirements with uid
104
+ if not node.is_requirement() or not node.reserved_uid:
105
+ # Only export the requirements with UID.
95
106
  continue
96
107
 
97
108
  for idx, field in enumerate(fields, start=0):
98
109
  field_uc = field.upper()
99
110
 
100
- # Special treatment for ParentReqReference and Comments
111
+ # Special treatment for ParentReqReference and Comments.
101
112
  if field_uc in (
102
113
  "RELATIONS:PARENT",
103
114
  "PARENT",
@@ -107,7 +118,7 @@ class ExcelGenerator:
107
118
  ReferenceType.PARENT
108
119
  )
109
120
  if len(parent_refs) > 0:
110
- # TODO Allow multiple parent refs
121
+ # FIXME: Allow multiple parent refs.
111
122
  ref = parent_refs[0]
112
123
  columns[field][MAX_WIDTH_KEY] = max(
113
124
  len(ref.ref_uid),
@@ -128,7 +139,7 @@ class ExcelGenerator:
128
139
  worksheet.write(row, idx, ref.ref_uid)
129
140
  elif field_uc in ("COMMENT", "COMMENTS"):
130
141
  # Using a transition marker to separate multiple
131
- # comments
142
+ # comments.
132
143
  comment_fields = node.get_comment_fields()
133
144
  if len(comment_fields) > 0:
134
145
  comment_row_value: str = ""
@@ -151,7 +162,7 @@ class ExcelGenerator:
151
162
  if len(node.relations) > 0:
152
163
  relations_components = []
153
164
  # Using a transition marker to separate
154
- # multiple references
165
+ # multiple references.
155
166
  for ref in node.relations:
156
167
  if isinstance(ref, ParentReqReference):
157
168
  relations_components.append(
@@ -200,8 +211,8 @@ class ExcelGenerator:
200
211
 
201
212
  row += 1
202
213
 
203
- # add a table around all this data, allowing filtering and
204
- # ordering in Excel
214
+ # Add a table around all this data, allowing filtering and
215
+ # ordering in Excel.
205
216
  worksheet.add_table(
206
217
  0,
207
218
  0,
@@ -210,12 +221,12 @@ class ExcelGenerator:
210
221
  {"columns": ExcelGenerator._init_headers(fields)},
211
222
  )
212
223
 
213
- # enforce columns width
224
+ # Enforce columns width.
214
225
  ExcelGenerator._set_columns_width(
215
226
  workbook, worksheet, columns, fields
216
227
  )
217
228
  else:
218
- # no requirement with UID
229
+ # No requirement with UID.
219
230
  print( # noqa: T201
220
231
  "No requirement with UID, nothing to export into excel"
221
232
  )
@@ -224,14 +235,14 @@ class ExcelGenerator:
224
235
  os.unlink(document_out_file)
225
236
 
226
237
  @staticmethod
227
- def _lookup_refs(document_contents: List) -> Dict[str, int]:
238
+ def _lookup_refs(document_contents: List[SDocElementIF]) -> Dict[str, int]:
228
239
  refs: Dict[str, int] = {}
229
240
  row = 1
230
241
 
231
242
  for content_node in document_contents:
232
243
  if isinstance(content_node, SDocNode):
233
244
  if content_node.reserved_uid:
234
- # only export the requirements with uid, allowing tracking
245
+ # Only export the requirements with uid, allowing tracking.
235
246
  row += 1
236
247
  refs[content_node.reserved_uid] = row
237
248
 
@@ -239,7 +250,7 @@ class ExcelGenerator:
239
250
 
240
251
  @staticmethod
241
252
  def _init_columns_width(fields: List[str]):
242
- columns = {}
253
+ columns: Dict[str, Dict[str, int]] = {}
243
254
 
244
255
  for field in fields:
245
256
  columns[field] = {}
@@ -260,8 +271,8 @@ class ExcelGenerator:
260
271
  worksheet.set_column(idx, idx, columns[field][MAX_WIDTH_KEY])
261
272
 
262
273
  @staticmethod
263
- def _init_headers(fields: List[str]) -> List:
264
- headers: List = []
274
+ def _init_headers(fields: List[str]) -> List[str]:
275
+ headers: List[str] = []
265
276
 
266
277
  for field in fields:
267
278
  headers.append({"header": field.upper()})
@@ -14,7 +14,9 @@ class ExcelLibType(Enum):
14
14
 
15
15
  @auto_described
16
16
  class ExcelSheetProxy:
17
- """This proxy class allows to open either xls(xlrd) or xlsx(openpyxl) with the same interface"""
17
+ """
18
+ This proxy class allows to open either xls(xlrd) or xlsx(openpyxl) with the same interface.
19
+ """
18
20
 
19
21
  def __init__(self, file: str):
20
22
  self.file = file
@@ -35,7 +37,9 @@ class ExcelSheetProxy:
35
37
 
36
38
  @property
37
39
  def name(self) -> str:
38
- """returns the name of the first sheet"""
40
+ """
41
+ Returns the name of the first sheet.
42
+ """
39
43
  if self.lib == ExcelLibType.OPENPYXL:
40
44
  return str(self.sheet.title)
41
45
  elif self.lib == ExcelLibType.XLRD:
@@ -44,7 +48,9 @@ class ExcelSheetProxy:
44
48
 
45
49
  @property
46
50
  def ncols(self) -> int:
47
- """the number of columns"""
51
+ """
52
+ The number of columns.
53
+ """
48
54
  ncols: int = 0
49
55
  if self.lib == ExcelLibType.OPENPYXL:
50
56
  ncols = self.sheet.max_column
@@ -54,7 +60,9 @@ class ExcelSheetProxy:
54
60
 
55
61
  @property
56
62
  def nrows(self) -> int:
57
- """the number of rows"""
63
+ """
64
+ The number of rows.
65
+ """
58
66
  nrows: int = 0
59
67
  if self.lib == ExcelLibType.OPENPYXL:
60
68
  nrows = self.sheet.max_row
@@ -63,7 +71,9 @@ class ExcelSheetProxy:
63
71
  return nrows
64
72
 
65
73
  def get_cell_value(self, row: int, col: int) -> str:
66
- """returns the value at row/col as string"""
74
+ """
75
+ Returns the value at row/col as string.
76
+ """
67
77
  cell_value: str = ""
68
78
  if self.lib == ExcelLibType.OPENPYXL:
69
79
  cell_value = (
@@ -74,7 +84,9 @@ class ExcelSheetProxy:
74
84
  return cell_value
75
85
 
76
86
  def row_values(self, row: int) -> List[str]:
77
- """returns a full row as list"""
87
+ """
88
+ Returns a full row as list.
89
+ """
78
90
  row_values: List[str] = []
79
91
  if self.lib == ExcelLibType.OPENPYXL:
80
92
  row_values = [(cell.value or "") for cell in self.sheet[row + 1]]
@@ -40,10 +40,14 @@ def safe_name(dangerous_name):
40
40
 
41
41
  class ExcelToSDocConverter:
42
42
  @staticmethod
43
- # optional argument title is present for external scripts to assign a title
44
43
  def convert(
45
44
  excel_file: str, title: Union[str, None] = None
46
45
  ) -> SDocDocument:
46
+ """
47
+ Convert a provided Excel file to an SDoc document.
48
+
49
+ Optional argument title is present for external scripts to assign a title.
50
+ """
47
51
  sheet = ExcelSheetProxy(excel_file)
48
52
 
49
53
  excel_file_name = os.path.basename(excel_file)
@@ -52,12 +56,13 @@ class ExcelToSDocConverter:
52
56
 
53
57
  all_header_columns = list(range(sheet.ncols))
54
58
 
55
- for i in range(16): # the first 16 rows should do ¯\_(ツ)_
59
+ # The first 16 rows should do ¯\_(ツ)_/¯.
60
+ for i in range(16):
56
61
  if sheet.row_values(i)[0].strip() != "":
57
62
  header_row_idx = i
58
63
  break
59
64
  else:
60
- raise NotImplementedError
65
+ raise NotImplementedError # pragma: no cover
61
66
 
62
67
  header_row = sheet.row_values(header_row_idx)
63
68
  safe_header_row = [safe_name(x) for x in header_row]
@@ -149,7 +154,13 @@ class ExcelToSDocConverter:
149
154
  )
150
155
 
151
156
  requirements_element = GrammarElement(
152
- parent=None, tag="REQUIREMENT", fields=fields, relations=[]
157
+ parent=None,
158
+ tag="REQUIREMENT",
159
+ property_is_composite="",
160
+ property_prefix="",
161
+ property_view_style="",
162
+ fields=fields,
163
+ relations=[],
153
164
  )
154
165
  elements = [requirements_element]
155
166
  grammar = DocumentGrammar(parent=document, elements=elements)