strictdoc 0.0.59a1__tar.gz → 0.0.59a2__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 (540) hide show
  1. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/PKG-INFO +1 -1
  2. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/__init__.py +1 -1
  3. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/excel/export/excel_generator.py +10 -11
  4. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/cli/cli_arg_parser.py +6 -28
  5. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/cli/command_parser_builder.py +81 -2
  6. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/cli/main.py +7 -23
  7. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/commands/diff_command.py +2 -2
  8. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/actions/export_action.py +64 -7
  9. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/document_finder.py +8 -8
  10. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/finders/source_files_finder.py +2 -2
  11. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/project_config.py +22 -20
  12. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/create_requirement.py +1 -1
  13. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/update_requirement.py +1 -1
  14. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/requirement_form_object.py +10 -17
  15. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/html_templates.py +1 -1
  16. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/renderers/markup_renderer.py +1 -1
  17. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +2 -2
  18. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +1 -1
  19. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +1 -1
  20. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/node/section.jinja +1 -1
  21. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/main.jinja +2 -2
  22. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html2pdf/html2pdf.py +18 -11
  23. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html2pdf/html2pdf_generator.py +4 -1
  24. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html2pdf/pdf_print_driver.py +16 -9
  25. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/routers/main_router.py +10 -11
  26. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/routers/other_router.py +6 -6
  27. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/tasks.py +8 -1
  28. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/tox.ini +2 -0
  29. strictdoc-0.0.59a1/strictdoc/core/actions/passthrough_action.py +0 -63
  30. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/.gitignore +0 -0
  31. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/CHANGELOG.md +0 -0
  32. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/CONTRIBUTING.md +0 -0
  33. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/Dockerfile +0 -0
  34. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/LICENSE +0 -0
  35. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/NOTICE +0 -0
  36. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/README.md +0 -0
  37. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/docs_extra/DO178_requirements.sdoc +0 -0
  38. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/docs_extra/Zephyr_requirements.sdoc +0 -0
  39. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/drafts/requirements/strictdoc.toml +0 -0
  40. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/drafts/rst_examples.sdoc +0 -0
  41. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
  42. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/mypy.ini +0 -0
  43. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/pyproject.toml +0 -0
  44. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/requirements.bootstrap.txt +0 -0
  45. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/requirements.check.txt +0 -0
  46. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/ruff.toml +0 -0
  47. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/__init__.py +0 -0
  48. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/excel/__init__.py +0 -0
  49. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/excel/excel_import.py +0 -0
  50. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/excel/export/__init__.py +0 -0
  51. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/excel/import_/__init__.py +0 -0
  52. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
  53. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/__init__.py +0 -0
  54. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
  55. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +0 -0
  56. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
  57. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/reqif_export.py +0 -0
  58. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/reqif_import.py +0 -0
  59. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  60. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/__init__.py +0 -0
  61. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/constants.py +0 -0
  62. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/document_reference.py +0 -0
  63. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/error_handling.py +0 -0
  64. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  65. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  66. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  67. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  68. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
  69. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
  70. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +0 -0
  71. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
  72. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
  73. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  74. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/anchor.py +0 -0
  75. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/any_node.py +0 -0
  76. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/constants.py +0 -0
  77. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/document.py +0 -0
  78. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/document_config.py +0 -0
  79. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/document_from_file.py +0 -0
  80. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
  81. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/document_view.py +0 -0
  82. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/free_text.py +0 -0
  83. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
  84. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/node.py +0 -0
  85. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/object.py +0 -0
  86. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
  87. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/reference.py +0 -0
  88. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/section.py +0 -0
  89. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/models/type_system.py +0 -0
  90. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
  91. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/processor.py +0 -0
  92. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/reader.py +0 -0
  93. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  94. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -0
  95. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc/writer.py +0 -0
  96. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  97. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
  98. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  99. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
  100. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
  101. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
  102. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
  103. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/cli/__init__.py +0 -0
  104. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/cli/argument_int_range.py +0 -0
  105. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/commands/__init__.py +0 -0
  106. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/commands/about_command.py +0 -0
  107. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/commands/dump_grammar_command.py +0 -0
  108. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/commands/manage_autouid_command.py +0 -0
  109. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/commands/version_command.py +0 -0
  110. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/__init__.py +0 -0
  111. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/actions/__init__.py +0 -0
  112. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/actions/import_action.py +0 -0
  113. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/analyzers/document_stats.py +0 -0
  114. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
  115. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/asset_manager.py +0 -0
  116. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/document_iterator.py +0 -0
  117. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/document_meta.py +0 -0
  118. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/document_tree.py +0 -0
  119. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/document_tree_iterator.py +0 -0
  120. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/environment.py +0 -0
  121. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/file_traceability_index.py +0 -0
  122. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/file_tree.py +0 -0
  123. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/finders/__init__.py +0 -0
  124. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/graph/abstract_bucket.py +0 -0
  125. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/graph/many_to_many_set.py +0 -0
  126. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
  127. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/graph/validations.py +0 -0
  128. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/graph_database.py +0 -0
  129. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/query_engine/grammar.py +0 -0
  130. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/query_engine/query_object.py +0 -0
  131. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/query_engine/query_reader.py +0 -0
  132. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/source_tree.py +0 -0
  133. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/traceability_index.py +0 -0
  134. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/traceability_index_builder.py +0 -0
  135. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/constants.py +0 -0
  136. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/delete_requirement.py +0 -0
  137. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/delete_section.py +0 -0
  138. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/section.py +0 -0
  139. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/update_document_config.py +0 -0
  140. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/update_grammar.py +0 -0
  141. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/update_grammar_element.py +0 -0
  142. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/update_included_document.py +0 -0
  143. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/transforms/validation_error.py +0 -0
  144. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/core/tree_cycle_detector.py +0 -0
  145. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/__init__.py +0 -0
  146. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/__init__.py +0 -0
  147. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/autogen.css +0 -0
  148. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/base.css +0 -0
  149. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/collapsible_list.js +0 -0
  150. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
  151. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
  152. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/content.css +0 -0
  153. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
  154. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
  155. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
  156. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
  157. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
  158. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
  159. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
  160. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
  161. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
  162. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
  163. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/diff.css +0 -0
  164. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/diff.js +0 -0
  165. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/element.css +0 -0
  166. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/favicon.ico +0 -0
  167. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
  168. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
  169. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
  170. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/form.css +0 -0
  171. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
  172. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/layout.css +0 -0
  173. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/node.css +0 -0
  174. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/pan_with_space.js +0 -0
  175. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/project_tree.css +0 -0
  176. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/project_tree.js +0 -0
  177. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  178. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/requirement.css +0 -0
  179. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
  180. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  181. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/resizable_bar.js +0 -0
  182. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  183. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/source.css +0 -0
  184. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/stimulus.min.js +0 -0
  185. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/table_vew.css +0 -0
  186. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
  187. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
  188. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
  189. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/turbo.min.js +0 -0
  190. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  191. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static/zoomable.js +0 -0
  192. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  193. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  194. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  195. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  196. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  197. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  198. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  199. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  200. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  201. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  202. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  203. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  204. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  205. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  206. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  207. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  208. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  209. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  210. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  211. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  212. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  213. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  214. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  215. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  216. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  217. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  218. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
  219. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
  220. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
  221. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/document_type.py +0 -0
  222. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
  223. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/form_object.py +0 -0
  224. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/grammar_element_form_object.py +0 -0
  225. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
  226. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/included_document_form_object.py +0 -0
  227. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
  228. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
  229. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/__init__.py +0 -0
  230. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/document.py +0 -0
  231. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
  232. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/document_pdf.py +0 -0
  233. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/document_table.py +0 -0
  234. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/document_trace.py +0 -0
  235. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/document_tree.py +0 -0
  236. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/project_statistics.py +0 -0
  237. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
  238. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/source_file_view_generator.py +0 -0
  239. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
  240. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
  241. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
  242. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +0 -0
  243. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +0 -0
  244. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
  245. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
  246. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
  247. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
  248. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
  249. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -0
  250. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/html_generator.py +0 -0
  251. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/renderers/__init__.py +0 -0
  252. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  253. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/renderers/link_renderer.py +0 -0
  254. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  255. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  256. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  257. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
  258. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
  259. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
  260. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
  261. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  262. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  263. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
  264. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  265. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
  266. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  267. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
  268. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  269. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
  270. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  271. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  272. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
  273. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
  274. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
  275. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
  276. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
  277. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
  278. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  279. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
  280. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  281. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  282. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  283. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  284. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  285. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  286. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  287. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  288. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  289. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  290. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
  291. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
  292. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  293. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
  294. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
  295. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  296. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
  297. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
  298. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
  299. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
  300. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
  301. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
  302. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
  303. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
  304. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
  305. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
  306. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  307. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
  308. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
  309. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  310. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
  311. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
  312. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  313. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
  314. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  315. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
  316. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
  317. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
  318. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
  319. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
  320. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
  321. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  322. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
  323. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
  324. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
  325. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
  326. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
  327. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
  328. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/base.jinja.html +0 -0
  329. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
  330. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
  331. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  332. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  333. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  334. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
  335. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
  336. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  337. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  338. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  339. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
  340. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
  341. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  342. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  343. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
  344. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
  345. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
  346. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
  347. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
  348. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
  349. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
  350. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
  351. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
  352. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
  353. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
  354. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
  355. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
  356. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
  357. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
  358. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
  359. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
  360. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
  361. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
  362. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
  363. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
  364. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
  365. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  366. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  367. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
  368. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
  369. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
  370. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
  371. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
  372. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
  373. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +0 -0
  374. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +0 -0
  375. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
  376. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -0
  377. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/links/index.jinja +0 -0
  378. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +0 -0
  379. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +0 -0
  380. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +0 -0
  381. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +0 -0
  382. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +0 -0
  383. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +0 -0
  384. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +0 -0
  385. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
  386. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/title/index.jinja +0 -0
  387. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -0
  388. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +0 -0
  389. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
  390. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
  391. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
  392. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
  393. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
  394. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
  395. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
  396. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
  397. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
  398. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  399. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  400. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  401. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  402. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
  403. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  404. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  405. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
  406. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
  407. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
  408. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
  409. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
  410. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
  411. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
  412. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
  413. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
  414. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
  415. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
  416. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
  417. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
  418. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
  419. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
  420. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
  421. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
  422. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
  423. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
  424. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
  425. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
  426. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
  427. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
  428. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
  429. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -0
  430. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
  431. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
  432. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
  433. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
  434. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
  435. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
  436. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
  437. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
  438. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
  439. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
  440. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
  441. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
  442. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
  443. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
  444. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
  445. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
  446. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
  447. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
  448. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
  449. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
  450. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
  451. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
  452. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
  453. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
  454. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
  455. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
  456. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
  457. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/nestor/index.jinja +0 -0
  458. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
  459. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
  460. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
  461. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
  462. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
  463. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
  464. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
  465. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
  466. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
  467. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
  468. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
  469. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
  470. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
  471. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
  472. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
  473. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
  474. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
  475. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
  476. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
  477. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
  478. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
  479. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
  480. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
  481. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
  482. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
  483. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
  484. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
  485. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
  486. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
  487. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
  488. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/tools/__init__.py +0 -0
  489. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/html/tools/html_embedded.py +0 -0
  490. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/json/json_generator.py +0 -0
  491. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/__init__.py +0 -0
  492. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
  493. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
  494. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/document_rst_generator.py +0 -0
  495. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/rst_templates.py +0 -0
  496. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
  497. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  498. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/rst/writer.py +0 -0
  499. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/spdx/spdx_generator.py +0 -0
  500. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
  501. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
  502. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/git/change.py +0 -0
  503. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/git/change_generator.py +0 -0
  504. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/git/git_client.py +0 -0
  505. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/git/project_diff_analyzer.py +0 -0
  506. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/__init__.py +0 -0
  507. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/auto_described.py +0 -0
  508. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/cast.py +0 -0
  509. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/diff.py +0 -0
  510. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/exception.py +0 -0
  511. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/file_modification_time.py +0 -0
  512. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/file_system.py +0 -0
  513. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/form_data.py +0 -0
  514. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/git_client.py +0 -0
  515. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/math.py +0 -0
  516. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/md5.py +0 -0
  517. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/mid.py +0 -0
  518. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/ordered_set.py +0 -0
  519. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/parallelizer.py +0 -0
  520. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/path_filter.py +0 -0
  521. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/paths.py +0 -0
  522. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/pickle.py +0 -0
  523. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/rst.py +0 -0
  524. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/sha256.py +0 -0
  525. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/shard.py +0 -0
  526. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/sorting.py +0 -0
  527. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/string.py +0 -0
  528. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/textx.py +0 -0
  529. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/helpers/timing.py +0 -0
  530. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/__init__.py +0 -0
  531. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/app.py +0 -0
  532. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/config.py +0 -0
  533. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/error_object.py +0 -0
  534. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/helpers/turbo.py +0 -0
  535. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/main.py +0 -0
  536. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc/server/server.py +0 -0
  537. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/strictdoc.toml +0 -0
  538. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/tasks_wine.py +0 -0
  539. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/tools/confluence_html_table_import.py +0 -0
  540. {strictdoc-0.0.59a1 → strictdoc-0.0.59a2}/tools/link_health.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strictdoc
3
- Version: 0.0.59a1
3
+ Version: 0.0.59a2
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,6 @@
1
1
  from strictdoc.core.environment import SDocRuntimeEnvironment
2
2
 
3
- __version__ = "0.0.59a1"
3
+ __version__ = "0.0.59a2"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -109,13 +109,10 @@ class ExcelGenerator:
109
109
  if len(parent_refs) > 0:
110
110
  # TODO Allow multiple parent refs
111
111
  ref = parent_refs[0]
112
- if (
113
- len(ref.ref_uid)
114
- > columns[field][MAX_WIDTH_KEY]
115
- ):
116
- columns[field][MAX_WIDTH_KEY] = len(
117
- ref.ref_uid
118
- )
112
+ columns[field][MAX_WIDTH_KEY] = max(
113
+ len(ref.ref_uid),
114
+ columns[field][MAX_WIDTH_KEY],
115
+ )
119
116
  if ref.ref_uid in req_uid_rows:
120
117
  worksheet.write_url(
121
118
  row,
@@ -171,15 +168,17 @@ class ExcelGenerator:
171
168
  )
172
169
  worksheet.write(row, idx, relations_row_value)
173
170
  value_len = len(relations_row_value)
174
- if value_len > columns[field][MAX_WIDTH_KEY]:
175
- columns[field][MAX_WIDTH_KEY] = value_len
171
+ columns[field][MAX_WIDTH_KEY] = max(
172
+ value_len, columns[field][MAX_WIDTH_KEY]
173
+ )
176
174
  elif field_uc in node.ordered_fields_lookup.keys():
177
175
  req_field = node.ordered_fields_lookup[field_uc][0]
178
176
  value: str = req_field.get_text_value()
179
177
  worksheet.write(row, idx, value)
180
178
  value_len = len(value)
181
- if value_len > columns[field][MAX_WIDTH_KEY]:
182
- columns[field][MAX_WIDTH_KEY] = value_len
179
+ columns[field][MAX_WIDTH_KEY] = max(
180
+ value_len, columns[field][MAX_WIDTH_KEY]
181
+ )
183
182
  elif hasattr(node, "special_fields"):
184
183
  if len(node.special_fields):
185
184
  for special_field in node.special_fields:
@@ -66,24 +66,6 @@ class ImportExcelCommandConfig:
66
66
  self.parser = parser
67
67
 
68
68
 
69
- class PassthroughCommandConfig:
70
- def __init__(
71
- self,
72
- input_file,
73
- output_dir: Optional[str],
74
- filter_requirements: Optional[str],
75
- filter_sections: Optional[str],
76
- free_text_to_text: bool,
77
- view: Optional[str],
78
- ):
79
- self.input_file = input_file
80
- self.output_dir: Optional[str] = output_dir
81
- self.filter_requirements: Optional[str] = filter_requirements
82
- self.filter_sections: Optional[str] = filter_sections
83
- self.free_text_to_text: bool = free_text_to_text
84
- self.view: Optional[str] = view
85
-
86
-
87
69
  @auto_described
88
70
  class ServerCommandConfig:
89
71
  def __init__(
@@ -146,6 +128,8 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
146
128
  reqif_multiline_is_xhtml: bool,
147
129
  reqif_enable_mid: bool,
148
130
  view: Optional[str],
131
+ chromedriver: Optional[str],
132
+ free_text_to_text: bool,
149
133
  ):
150
134
  assert isinstance(input_paths, list), f"{input_paths}"
151
135
  self.input_paths: List[str] = input_paths
@@ -165,6 +149,8 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
165
149
  self.reqif_enable_mid: bool = reqif_enable_mid
166
150
  self.view: Optional[str] = view
167
151
  self.output_html_root: str = os.path.join(output_dir, "html")
152
+ self.chromedriver: Optional[str] = chromedriver
153
+ self.free_text_to_text: bool = free_text_to_text
168
154
 
169
155
  def get_path_to_config(self) -> str:
170
156
  # FIXME: The control flow can be improved.
@@ -263,16 +249,6 @@ class SDocArgsParser:
263
249
  self.args.command == "manage" and self.args.subcommand == "auto-uid"
264
250
  )
265
251
 
266
- def get_passthrough_config(self) -> PassthroughCommandConfig:
267
- return PassthroughCommandConfig(
268
- self.args.input_file,
269
- self.args.output_dir,
270
- filter_requirements=self.args.filter_requirements,
271
- filter_sections=self.args.filter_sections,
272
- free_text_to_text=self.args.free_text_to_text,
273
- view=self.args.view,
274
- )
275
-
276
252
  def get_export_config(self) -> ExportCommandConfig:
277
253
  project_title: Optional[str] = self.args.project_title
278
254
 
@@ -298,6 +274,8 @@ class SDocArgsParser:
298
274
  self.args.reqif_multiline_is_xhtml,
299
275
  self.args.reqif_enable_mid,
300
276
  self.args.view,
277
+ self.args.chromedriver,
278
+ self.args.free_text_to_text,
301
279
  )
302
280
 
303
281
  def get_import_config_reqif(self, _) -> ImportReqIFCommandConfig:
@@ -15,6 +15,7 @@ EXPORT_FORMATS = [
15
15
  "excel",
16
16
  "reqif-sdoc",
17
17
  "reqifz-sdoc",
18
+ "sdoc",
18
19
  "spdx",
19
20
  ]
20
21
  EXCEL_PARSERS = ["basic"]
@@ -243,6 +244,21 @@ class CommandParserBuilder:
243
244
  type=str,
244
245
  help="Choose which view will be exported.",
245
246
  )
247
+ command_parser_export.add_argument(
248
+ "--chromedriver",
249
+ type=str,
250
+ help="Path to pre installed chromedriver for html2pdf. "
251
+ "If not given, chromedriver is downloaded and saved to "
252
+ "strictdoc cache.",
253
+ )
254
+ command_parser_export.add_argument(
255
+ "--free-text-to-text",
256
+ action="store_true",
257
+ help=(
258
+ "This option makes all FREETEXT nodes to be converted to the new "
259
+ "TEXT nodes."
260
+ ),
261
+ )
246
262
  add_config_argument(command_parser_export)
247
263
 
248
264
  @staticmethod
@@ -373,13 +389,19 @@ class CommandParserBuilder:
373
389
 
374
390
  @staticmethod
375
391
  def add_passthrough_command(parent_command_parser):
392
+ # passthrough command is kept for backwards compatibility. It will
393
+ # internally be handled as export --formats sdoc.
376
394
  command_parser_passthrough = parent_command_parser.add_parser(
377
395
  "passthrough",
378
- help="Read an SDoc file, then output it again. (used for testing)",
396
+ help="Read an SDoc file, then output it again. Deprecated, use "
397
+ "strictdoc export --formats sdoc instead.",
379
398
  formatter_class=formatter,
380
399
  )
381
400
  command_parser_passthrough.add_argument(
382
- "input_file", type=str, help="Path to the input SDoc file."
401
+ "input_paths",
402
+ type=str,
403
+ nargs="+",
404
+ help="One or more folders with *.sdoc files",
383
405
  )
384
406
  command_parser_passthrough.add_argument(
385
407
  "--output-dir",
@@ -410,6 +432,63 @@ class CommandParserBuilder:
410
432
  help="Choose which view will be exported.",
411
433
  )
412
434
 
435
+ # Hidden default values to make deprecated passthrough parser compatible
436
+ # with SDocArgsParser.get_export_config.
437
+ command_parser_passthrough.add_argument(
438
+ "--project-title", const=None, help=argparse.SUPPRESS
439
+ )
440
+ command_parser_passthrough.add_argument(
441
+ "--formats",
442
+ default=["sdoc"],
443
+ help=argparse.SUPPRESS,
444
+ )
445
+ command_parser_passthrough.add_argument(
446
+ "--fields",
447
+ default=None,
448
+ help=argparse.SUPPRESS,
449
+ )
450
+ command_parser_passthrough.add_argument(
451
+ "--generate-bundle-document",
452
+ default=False,
453
+ help=argparse.SUPPRESS,
454
+ )
455
+ command_parser_passthrough.add_argument(
456
+ "--no-parallelization",
457
+ default=False,
458
+ help=argparse.SUPPRESS,
459
+ )
460
+ command_parser_passthrough.add_argument(
461
+ "--enable-mathjax",
462
+ default=False,
463
+ help=argparse.SUPPRESS,
464
+ )
465
+ command_parser_passthrough.add_argument(
466
+ "--included-documents",
467
+ default=False,
468
+ help=argparse.SUPPRESS,
469
+ )
470
+ command_parser_passthrough.add_argument(
471
+ "--reqif-profile",
472
+ default=None,
473
+ help=argparse.SUPPRESS,
474
+ )
475
+ command_parser_passthrough.add_argument(
476
+ "--reqif-multiline-is-xhtml",
477
+ default=False,
478
+ help=argparse.SUPPRESS,
479
+ )
480
+ command_parser_passthrough.add_argument(
481
+ "--reqif-enable-mid",
482
+ default=False,
483
+ help=argparse.SUPPRESS,
484
+ )
485
+ command_parser_passthrough.add_argument(
486
+ "--chromedriver",
487
+ default=None,
488
+ help=argparse.SUPPRESS,
489
+ )
490
+ add_config_argument(command_parser_passthrough)
491
+
413
492
  @staticmethod
414
493
  def add_dump_command(parent_command_parser):
415
494
  command_parser_dump_grammar = parent_command_parser.add_parser(
@@ -23,7 +23,6 @@ from strictdoc.cli.cli_arg_parser import (
23
23
  ImportExcelCommandConfig,
24
24
  ImportReqIFCommandConfig,
25
25
  ManageAutoUIDCommandConfig,
26
- PassthroughCommandConfig,
27
26
  create_sdoc_args_parser,
28
27
  )
29
28
  from strictdoc.commands.about_command import AboutCommand
@@ -33,7 +32,6 @@ from strictdoc.commands.manage_autouid_command import ManageAutoUIDCommand
33
32
  from strictdoc.commands.version_command import VersionCommand
34
33
  from strictdoc.core.actions.export_action import ExportAction
35
34
  from strictdoc.core.actions.import_action import ImportAction
36
- from strictdoc.core.actions.passthrough_action import PassthroughAction
37
35
  from strictdoc.core.project_config import ProjectConfig, ProjectConfigLoader
38
36
  from strictdoc.helpers.exception import StrictDocException
39
37
  from strictdoc.helpers.parallelizer import Parallelizer
@@ -44,27 +42,13 @@ def _main(parallelizer: Parallelizer) -> None:
44
42
  parser = create_sdoc_args_parser()
45
43
 
46
44
  project_config: ProjectConfig
47
- if parser.is_passthrough_command:
48
- passthrough_config: PassthroughCommandConfig = (
49
- parser.get_passthrough_config()
50
- )
51
- input_file = passthrough_config.input_file
52
- if not os.path.exists(input_file):
53
- sys.stdout.flush()
54
- message = "error: passthrough command's input path is neither a folder or a file."
55
- print(f"{message}: {input_file}") # noqa: T201
56
- sys.exit(1)
57
-
58
- project_config = ProjectConfigLoader.load_from_path_or_get_default(
59
- path_to_config=os.getcwd(),
60
- environment=environment,
61
- )
62
- project_config.integrate_passthrough_config(passthrough_config)
63
-
64
- passthrough_action = PassthroughAction()
65
- passthrough_action.passthrough(project_config)
66
45
 
67
- elif parser.is_export_command:
46
+ if parser.is_passthrough_command or parser.is_export_command:
47
+ if parser.is_passthrough_command:
48
+ print( # noqa: T201
49
+ "warning: passthrough is deprecated, use strictdoc "
50
+ "export --formats sdoc instead."
51
+ )
68
52
  export_config: ExportCommandConfig = parser.get_export_config()
69
53
  try:
70
54
  export_config.validate()
@@ -141,7 +125,7 @@ def _main(parallelizer: Parallelizer) -> None:
141
125
  environment=environment,
142
126
  )
143
127
  # FIXME: This must be improved.
144
- project_config.export_input_paths = [manage_config.input_path]
128
+ project_config.input_paths = [manage_config.input_path]
145
129
  # FIXME: This must be improved.
146
130
  project_config.autouuid_include_sections = (
147
131
  manage_config.include_sections
@@ -52,8 +52,8 @@ class DiffCommand:
52
52
  project_config_copy_lhs: ProjectConfig = deepcopy(project_config)
53
53
  project_config_copy_rhs: ProjectConfig = deepcopy(project_config)
54
54
 
55
- project_config_copy_lhs.export_input_paths = [lhs_export_input_abs_path]
56
- project_config_copy_rhs.export_input_paths = [rhs_export_input_abs_path]
55
+ project_config_copy_lhs.input_paths = [lhs_export_input_abs_path]
56
+ project_config_copy_rhs.input_paths = [rhs_export_input_abs_path]
57
57
 
58
58
  change_container: ChangeContainer = ChangeGenerator.generate(
59
59
  lhs_project_config=project_config_copy_lhs,
@@ -8,6 +8,7 @@ from strictdoc.backend.excel.export.excel_generator import ExcelGenerator
8
8
  from strictdoc.backend.reqif.reqif_export import ReqIFExport
9
9
  from strictdoc.backend.sdoc.errors.document_tree_error import DocumentTreeError
10
10
  from strictdoc.backend.sdoc.models.document import SDocDocument
11
+ from strictdoc.backend.sdoc.writer import SDWriter
11
12
  from strictdoc.core.project_config import ProjectConfig
12
13
  from strictdoc.core.traceability_index import TraceabilityIndex
13
14
  from strictdoc.core.traceability_index_builder import TraceabilityIndexBuilder
@@ -18,6 +19,7 @@ from strictdoc.export.html2pdf.html2pdf_generator import HTML2PDFGenerator
18
19
  from strictdoc.export.json.json_generator import JSONGenerator
19
20
  from strictdoc.export.rst.document_rst_generator import DocumentRSTGenerator
20
21
  from strictdoc.export.spdx.spdx_generator import SPDXGenerator
22
+ from strictdoc.helpers.parallelizer import NullParallelizer
21
23
  from strictdoc.helpers.timing import timing_decorator
22
24
 
23
25
 
@@ -94,7 +96,7 @@ class ExportAction:
94
96
 
95
97
  if "html2pdf" in self.project_config.export_formats:
96
98
  output_html2pdf_root = os.path.join(
97
- self.project_config.export_output_dir, "html2pdf"
99
+ self.project_config.output_dir, "html2pdf"
98
100
  )
99
101
  Path(output_html2pdf_root).mkdir(parents=True, exist_ok=True)
100
102
  HTML2PDFGenerator.export_tree(
@@ -115,7 +117,7 @@ class ExportAction:
115
117
 
116
118
  if "rst" in self.project_config.export_formats:
117
119
  output_rst_root = os.path.join(
118
- self.project_config.export_output_dir, "rst"
120
+ self.project_config.output_dir, "rst"
119
121
  )
120
122
  Path(output_rst_root).mkdir(parents=True, exist_ok=True)
121
123
  DocumentRSTGenerator.export_tree(
@@ -123,7 +125,7 @@ class ExportAction:
123
125
  )
124
126
 
125
127
  if "excel" in self.project_config.export_formats:
126
- output_excel_root = f"{self.project_config.export_output_dir}/excel"
128
+ output_excel_root = f"{self.project_config.output_dir}/excel"
127
129
  ExcelGenerator.export_tree(
128
130
  self.traceability_index,
129
131
  output_excel_root,
@@ -131,7 +133,7 @@ class ExportAction:
131
133
  )
132
134
 
133
135
  if "reqif-sdoc" in self.project_config.export_formats:
134
- output_reqif_root = f"{self.project_config.export_output_dir}/reqif"
136
+ output_reqif_root = f"{self.project_config.output_dir}/reqif"
135
137
  ReqIFExport.export(
136
138
  project_config=self.project_config,
137
139
  traceability_index=self.traceability_index,
@@ -140,7 +142,7 @@ class ExportAction:
140
142
  )
141
143
 
142
144
  if "reqifz-sdoc" in self.project_config.export_formats:
143
- output_reqif_root = f"{self.project_config.export_output_dir}/reqif"
145
+ output_reqif_root = f"{self.project_config.output_dir}/reqif"
144
146
  ReqIFExport.export(
145
147
  project_config=self.project_config,
146
148
  traceability_index=self.traceability_index,
@@ -148,9 +150,12 @@ class ExportAction:
148
150
  reqifz=True,
149
151
  )
150
152
 
153
+ if "sdoc" in self.project_config.export_formats:
154
+ self.export_sdoc()
155
+
151
156
  if "spdx" in self.project_config.export_formats:
152
157
  output_dot_root = os.path.join(
153
- self.project_config.export_output_dir, "spdx"
158
+ self.project_config.output_dir, "spdx"
154
159
  )
155
160
  Path(output_dot_root).mkdir(parents=True, exist_ok=True)
156
161
  SPDXGenerator().export_tree(
@@ -159,9 +164,61 @@ class ExportAction:
159
164
 
160
165
  if "json" in self.project_config.export_formats:
161
166
  output_json_root = os.path.join(
162
- self.project_config.export_output_dir, "json"
167
+ self.project_config.output_dir, "json"
163
168
  )
164
169
  Path(output_json_root).mkdir(parents=True, exist_ok=True)
165
170
  JSONGenerator().export_tree(
166
171
  self.traceability_index, self.project_config, output_json_root
167
172
  )
173
+
174
+ def export_sdoc(self):
175
+ assert self.project_config.input_paths
176
+ try:
177
+ traceability_index: TraceabilityIndex = (
178
+ TraceabilityIndexBuilder.create(
179
+ project_config=self.project_config,
180
+ parallelizer=NullParallelizer(),
181
+ )
182
+ )
183
+ except DocumentTreeError as exc:
184
+ print(exc.to_print_message()) # noqa: T201
185
+ sys.exit(1)
186
+ else:
187
+ assert traceability_index.document_tree
188
+
189
+ writer = SDWriter(self.project_config)
190
+
191
+ output_base_dir = (
192
+ self.project_config.output_dir
193
+ if self.project_config.output_dir is not None
194
+ else os.path.join(os.getcwd(), "output")
195
+ )
196
+ output_dir = os.path.join(output_base_dir, "sdoc")
197
+ for document in traceability_index.document_tree.document_list:
198
+ assert document.meta
199
+ assert document.meta.document_filename_base
200
+ assert document.meta.input_doc_dir_rel_path
201
+ output, fragments_dict = writer.write_with_fragments(
202
+ document,
203
+ convert_free_text_to_text=self.project_config.free_text_to_text,
204
+ )
205
+
206
+ path_to_output_file_dir: str = os.path.join(
207
+ output_dir, document.meta.input_doc_dir_rel_path.relative_path
208
+ )
209
+ Path(path_to_output_file_dir).mkdir(parents=True, exist_ok=True)
210
+ path_to_output_file = os.path.join(
211
+ path_to_output_file_dir, document.meta.document_filename_base
212
+ )
213
+ path_to_output_file += ".sdoc"
214
+ with open(path_to_output_file, "w", encoding="utf8") as file:
215
+ file.write(output)
216
+
217
+ for fragment_path_, fragment_content_ in fragments_dict.items():
218
+ path_to_output_fragment = os.path.join(
219
+ path_to_output_file_dir, fragment_path_
220
+ )
221
+ with open(
222
+ path_to_output_fragment, "w", encoding="utf8"
223
+ ) as file_:
224
+ file_.write(fragment_content_)
@@ -30,8 +30,8 @@ class DocumentFinder:
30
30
  def find_sdoc_content(
31
31
  project_config: ProjectConfig, parallelizer: Parallelizer
32
32
  ) -> Tuple[DocumentTree, AssetManager]:
33
- assert project_config.export_input_paths is not None
34
- for paths_to_files_or_doc in project_config.export_input_paths:
33
+ assert project_config.input_paths is not None
34
+ for paths_to_files_or_doc in project_config.input_paths:
35
35
  if not os.path.exists(paths_to_files_or_doc):
36
36
  sys.stdout.flush()
37
37
  err = (
@@ -99,7 +99,7 @@ class DocumentFinder:
99
99
 
100
100
  process_document_binding = partial(
101
101
  DocumentFinder._process_worker_parse_document,
102
- path_to_output_root=project_config.export_output_dir,
102
+ path_to_output_root=project_config.output_dir,
103
103
  )
104
104
 
105
105
  found_documents = parallelizer.run_parallel(
@@ -187,13 +187,13 @@ class DocumentFinder:
187
187
  def _build_file_tree(
188
188
  project_config: ProjectConfig,
189
189
  ) -> Tuple[List[FileTree], AssetManager]:
190
- assert isinstance(project_config.export_input_paths, list)
191
- assert len(project_config.export_input_paths) > 0
190
+ assert isinstance(project_config.input_paths, list)
191
+ assert len(project_config.input_paths) > 0
192
192
 
193
193
  root_trees: List[FileTree] = []
194
194
  asset_manager = AssetManager()
195
195
 
196
- for path_to_doc_root_raw in project_config.export_input_paths:
196
+ for path_to_doc_root_raw in project_config.input_paths:
197
197
  if os.path.isfile(path_to_doc_root_raw):
198
198
  path_to_doc_root = path_to_doc_root_raw
199
199
  if not os.path.isabs(path_to_doc_root):
@@ -238,10 +238,10 @@ class DocumentFinder:
238
238
  )
239
239
 
240
240
  # Finding SDoc files.
241
- assert isinstance(project_config.export_output_dir, str)
241
+ assert isinstance(project_config.output_dir, str)
242
242
  file_tree_structure = FileFinder.find_files_with_extensions(
243
243
  root_path=path_to_doc_root,
244
- ignored_dirs=[project_config.export_output_dir],
244
+ ignored_dirs=[project_config.output_dir],
245
245
  extensions=[".sdoc", ".sgra"],
246
246
  include_paths=project_config.include_doc_paths,
247
247
  exclude_paths=project_config.exclude_doc_paths,
@@ -145,11 +145,11 @@ class SourceFilesFinder:
145
145
  else doctree_root_abs_path
146
146
  )
147
147
 
148
- assert isinstance(project_config.export_output_dir, str)
148
+ assert isinstance(project_config.output_dir, str)
149
149
 
150
150
  file_tree = FileFinder.find_files_with_extensions(
151
151
  root_path=doctree_root_abs_path,
152
- ignored_dirs=[project_config.export_output_dir],
152
+ ignored_dirs=[project_config.output_dir],
153
153
  extensions=None,
154
154
  include_paths=project_config.include_source_paths,
155
155
  exclude_paths=project_config.exclude_source_paths,
@@ -13,7 +13,6 @@ from strictdoc.backend.reqif.sdoc_reqif_fields import ReqIFProfile
13
13
  from strictdoc.backend.sdoc.constants import SDocMarkup
14
14
  from strictdoc.cli.cli_arg_parser import (
15
15
  ExportCommandConfig,
16
- PassthroughCommandConfig,
17
16
  ServerCommandConfig,
18
17
  )
19
18
  from strictdoc.helpers.auto_described import auto_described
@@ -95,6 +94,7 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
95
94
  reqif_enable_mid: bool,
96
95
  reqif_import_markup: Optional[str],
97
96
  config_last_update: Optional[datetime.datetime],
97
+ chromedriver: Optional[str],
98
98
  ):
99
99
  assert isinstance(environment, SDocRuntimeEnvironment)
100
100
  if source_root_path is not None:
@@ -116,19 +116,19 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
116
116
  self.exclude_source_paths: List[str] = exclude_source_paths
117
117
 
118
118
  # Settings derived from the command-line parameters.
119
+
120
+ # Common settings
121
+ self.input_paths: Optional[List[str]] = None
122
+ self.output_dir: str = "output"
123
+
119
124
  # Export action.
120
- self.export_input_paths: Optional[List[str]] = None
121
- self.export_output_dir: str = "output"
122
125
  self.export_output_html_root: Optional[str] = None
123
126
  self.export_formats: Optional[List[str]] = None
124
127
  self.export_included_documents: bool = False
125
128
  self.generate_bundle_document: bool = False
126
129
  self.filter_requirements: Optional[str] = None
127
130
  self.filter_sections: Optional[str] = None
128
-
129
- self.passthrough_input_path: Optional[str] = None
130
- self.passthrough_output_dir: Optional[str] = None
131
- self.passthrough_free_text_to_text: bool = False
131
+ self.free_text_to_text: bool = False
132
132
 
133
133
  self.excel_export_fields: Optional[List[str]] = None
134
134
 
@@ -149,6 +149,7 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
149
149
  )
150
150
  self.is_running_on_server: bool = False
151
151
  self.view: Optional[str] = None
152
+ self.chromedriver: Optional[str] = chromedriver
152
153
 
153
154
  @staticmethod
154
155
  def default_config(environment: SDocRuntimeEnvironment):
@@ -172,6 +173,7 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
172
173
  reqif_enable_mid=False,
173
174
  reqif_import_markup=None,
174
175
  config_last_update=None,
176
+ chromedriver=None,
175
177
  )
176
178
 
177
179
  # Some server command settings can override the project config settings.
@@ -184,16 +186,18 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
184
186
  def integrate_export_config(self, export_config: ExportCommandConfig):
185
187
  if export_config.project_title is not None:
186
188
  self.project_title = export_config.project_title
187
- self.export_input_paths = export_config.input_paths
188
- self.export_output_dir = export_config.output_dir
189
+ self.input_paths = export_config.input_paths
190
+ self.output_dir = export_config.output_dir
189
191
  self.export_output_html_root = export_config.output_html_root
190
192
  self.export_formats = export_config.formats
191
193
  self.export_included_documents = export_config.included_documents
192
194
  self.generate_bundle_document = export_config.generate_bundle_document
195
+ self.free_text_to_text = export_config.free_text_to_text
193
196
  self.filter_requirements = export_config.filter_requirements
194
197
  self.filter_sections = export_config.filter_sections
195
198
  self.excel_export_fields = export_config.fields
196
199
  self.view = export_config.view
200
+ self.chromedriver = export_config.chromedriver
197
201
  if self.source_root_path is None:
198
202
  source_root_path = export_config.input_paths[0]
199
203
  if not os.path.abspath(source_root_path):
@@ -218,17 +222,6 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
218
222
  if not self.reqif_enable_mid:
219
223
  self.reqif_enable_mid = export_config.reqif_enable_mid
220
224
 
221
- def integrate_passthrough_config(self, config: PassthroughCommandConfig):
222
- self.passthrough_input_path = config.input_file
223
- self.passthrough_output_dir = config.output_dir
224
- self.passthrough_free_text_to_text = config.free_text_to_text
225
- self.filter_requirements = config.filter_requirements
226
- self.filter_sections = config.filter_sections
227
- self.view = config.view
228
-
229
- # FIXME: Traceability Index is coupled with HTML output.
230
- self.export_output_html_root = "NOT_RELEVANT"
231
-
232
225
  def is_feature_activated(self, feature: ProjectFeature):
233
226
  return feature in self.project_features
234
227
 
@@ -368,6 +361,7 @@ class ProjectConfigLoader:
368
361
  reqif_multiline_is_xhtml = False
369
362
  reqif_enable_mid = False
370
363
  reqif_import_markup: Optional[str] = None
364
+ chromedriver: Optional[str] = None
371
365
 
372
366
  if "project" in config_dict:
373
367
  project_content = config_dict["project"]
@@ -507,6 +501,13 @@ class ProjectConfigLoader:
507
501
  assert relation_tuple is not None
508
502
  traceability_matrix_relation_columns.append(relation_tuple)
509
503
 
504
+ chromedriver = project_content.get("chromedriver", chromedriver)
505
+ if chromedriver is not None and not os.path.isfile(chromedriver):
506
+ print( # noqa: T201
507
+ f"warning: strictdoc.toml: chromedriver {chromedriver} "
508
+ "not found."
509
+ )
510
+
510
511
  if "server" in config_dict:
511
512
  # FIXME: Introduce at least a basic validation for the host/port.
512
513
  server_content = config_dict["server"]
@@ -554,4 +555,5 @@ class ProjectConfigLoader:
554
555
  reqif_enable_mid=reqif_enable_mid,
555
556
  reqif_import_markup=reqif_import_markup,
556
557
  config_last_update=config_last_update,
558
+ chromedriver=chromedriver,
557
559
  )
@@ -106,7 +106,7 @@ class CreateRequirementTransform:
106
106
  parsed_html,
107
107
  rst_error,
108
108
  ) = RstToHtmlFragmentWriter(
109
- path_to_output_dir=self.project_config.export_output_dir,
109
+ path_to_output_dir=self.project_config.output_dir,
110
110
  context_document=document,
111
111
  ).write_with_validation(field_.field_value)
112
112
  if parsed_html is None:
@@ -112,7 +112,7 @@ class CreateOrUpdateNodeCommand:
112
112
  parsed_html,
113
113
  rst_error,
114
114
  ) = RstToHtmlFragmentWriter(
115
- path_to_output_dir=self.project_config.export_output_dir,
115
+ path_to_output_dir=self.project_config.output_dir,
116
116
  context_document=self.context_document,
117
117
  ).write_with_validation(field_.field_value)
118
118
  if parsed_html is None: