strictdoc 0.0.42a5__tar.gz → 0.0.42a6__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 (362) hide show
  1. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/PKG-INFO +1 -1
  2. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/__init__.py +1 -1
  3. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/cli_arg_parser.py +17 -17
  4. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_meta.py +7 -0
  5. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/project_config.py +20 -3
  6. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/element.css +1 -0
  7. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_tree.py +1 -0
  8. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/requirements_coverage.py +1 -0
  9. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/source_file_coverage.py +1 -0
  10. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/source_file_view_generator.py +1 -0
  11. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/html_generator.py +67 -77
  12. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/base.jinja.html +2 -0
  13. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/root.jinja +1 -1
  14. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +17 -2
  15. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/actions.jinja +4 -0
  16. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/index.jinja +18 -6
  17. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/table/index.jinja +1 -1
  18. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +1 -1
  19. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +1 -1
  20. strictdoc-0.0.42a6/strictdoc/export/html/templates/screens/project_index/actions.jinja +36 -0
  21. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/index.jinja +1 -1
  22. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/tools/html_embedded.py +4 -1
  23. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/routers/main_router.py +17 -0
  24. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc.toml +9 -0
  25. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tasks.py +1 -1
  26. strictdoc-0.0.42a5/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -33
  27. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/.gitignore +0 -0
  28. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/CHANGELOG.md +0 -0
  29. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/CONTRIBUTING.md +0 -0
  30. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/Dockerfile +0 -0
  31. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/LICENSE +0 -0
  32. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/NOTICE +0 -0
  33. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/README.md +0 -0
  34. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/favicon.ico +0 -0
  35. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/mypy.ini +0 -0
  36. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/pyproject.toml +0 -0
  37. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/requirements.check.txt +0 -0
  38. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/ruff.toml +0 -0
  39. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/__init__.py +0 -0
  40. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/__init__.py +0 -0
  41. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/excel_import.py +0 -0
  42. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/export/__init__.py +0 -0
  43. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/export/excel_generator.py +0 -0
  44. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/import_/__init__.py +0 -0
  45. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
  46. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/__init__.py +0 -0
  47. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/export/__init__.py +0 -0
  48. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/export/sdoc_to_reqif_converter.py +0 -0
  49. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/import_/__init__.py +0 -0
  50. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/import_/reqif_to_sdoc_converter.py +0 -0
  51. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
  52. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +0 -0
  53. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/reqif_export.py +0 -0
  54. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/reqif_import.py +0 -0
  55. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  56. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/__init__.py +0 -0
  57. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/document_reference.py +0 -0
  58. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/error_handling.py +0 -0
  59. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  60. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  61. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  62. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  63. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
  64. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
  65. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
  66. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/include_reader.py +0 -0
  67. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  68. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/constants.py +0 -0
  69. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/document.py +0 -0
  70. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/document_config.py +0 -0
  71. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
  72. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/fragment.py +0 -0
  73. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/fragment_from_file.py +0 -0
  74. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/free_text.py +0 -0
  75. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
  76. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/node.py +0 -0
  77. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
  78. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/reference.py +0 -0
  79. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/requirement.py +0 -0
  80. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/section.py +0 -0
  81. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/type_system.py +0 -0
  82. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/processor.py +0 -0
  83. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/reader.py +0 -0
  84. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  85. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/validations/requirement.py +0 -0
  86. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/writer.py +0 -0
  87. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  88. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
  89. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  90. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/models/range_pragma.py +0 -0
  91. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
  92. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
  93. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/__init__.py +0 -0
  94. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/argument_int_range.py +0 -0
  95. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/main.py +0 -0
  96. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/__init__.py +0 -0
  97. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/about_command.py +0 -0
  98. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/dump_grammar_command.py +0 -0
  99. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/version_command.py +0 -0
  100. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/__init__.py +0 -0
  101. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/__init__.py +0 -0
  102. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/export_action.py +0 -0
  103. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/import_action.py +0 -0
  104. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/passthrough_action.py +0 -0
  105. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_finder.py +0 -0
  106. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_iterator.py +0 -0
  107. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_tree.py +0 -0
  108. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_tree_iterator.py +0 -0
  109. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/environment.py +0 -0
  110. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/error_message.py +0 -0
  111. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/file_traceability_index.py +0 -0
  112. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/file_tree.py +0 -0
  113. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/finders/__init__.py +0 -0
  114. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/finders/source_files_finder.py +0 -0
  115. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/level_counter.py +0 -0
  116. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/source_tree.py +0 -0
  117. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/traceability_index.py +0 -0
  118. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/traceability_index_builder.py +0 -0
  119. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/tree_cycle_detector.py +0 -0
  120. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/__init__.py +0 -0
  121. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/__init__.py +0 -0
  122. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/base.css +0 -0
  123. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/content.css +0 -0
  124. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +0 -0
  125. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
  126. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
  127. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
  128. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
  129. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
  130. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
  131. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
  132. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/favicon.ico +0 -0
  133. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/form.css +0 -0
  134. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/layout.css +0 -0
  135. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/node.css +0 -0
  136. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/pan_with_space.js +0 -0
  137. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  138. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirement.css +0 -0
  139. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
  140. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  141. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/resizable_bar.js +0 -0
  142. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  143. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/source.css +0 -0
  144. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/stimulus.js +0 -0
  145. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/tree.css +0 -0
  146. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/turbo.js +0 -0
  147. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  148. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  149. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  150. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  151. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  152. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  153. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  154. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  155. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  156. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  157. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  158. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  159. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  160. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  161. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  162. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  163. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  164. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  165. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  166. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  167. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  168. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  169. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  170. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  171. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  172. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  173. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  174. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/document_type.py +0 -0
  175. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
  176. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/document_grammar_form_object.py +0 -0
  177. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/requirement_form_object.py +0 -0
  178. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
  179. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/__init__.py +0 -0
  180. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document.py +0 -0
  181. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
  182. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_table.py +0 -0
  183. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_trace.py +0 -0
  184. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/html_templates.py +0 -0
  185. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/__init__.py +0 -0
  186. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  187. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/link_renderer.py +0 -0
  188. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
  189. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  190. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  191. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  192. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  193. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  194. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
  195. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  196. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  197. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  198. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  199. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  200. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
  201. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
  202. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  203. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  204. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  205. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  206. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  207. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  208. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  209. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  210. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  211. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  212. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  213. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  214. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  215. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
  216. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
  217. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
  218. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_block/uid_and_title.jinja.html +0 -0
  219. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
  220. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
  221. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
  222. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/deep_trace/show_full_requirement/stream_show_full_requirement.jinja +0 -0
  223. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
  224. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
  225. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
  226. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/add_requirement_parent_link/stream_add_requirement_parent_link.jinja.html +0 -0
  227. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  228. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
  229. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
  230. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  231. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
  232. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
  233. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  234. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
  235. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  236. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
  237. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
  238. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
  239. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
  240. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_field.jinja.html +0 -0
  241. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_edit_document_grammar.jinja.html +0 -0
  242. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_save_document_grammar.jinja.html +0 -0
  243. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
  244. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
  245. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
  246. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  247. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
  248. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
  249. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
  250. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
  251. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
  252. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
  253. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
  254. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  255. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  256. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  257. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  258. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  259. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  260. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  261. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  262. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
  263. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
  264. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
  265. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
  266. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  267. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  268. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
  269. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
  270. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
  271. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
  272. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
  273. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
  274. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
  275. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
  276. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
  277. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
  278. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
  279. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
  280. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
  281. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
  282. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
  283. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
  284. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
  285. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
  286. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
  287. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  288. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  289. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
  290. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  291. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  292. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
  293. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  294. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  295. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
  296. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
  297. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
  298. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
  299. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
  300. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
  301. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
  302. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
  303. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
  304. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_grammar_edit.jinja.html +0 -0
  305. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_grammar_edit_custom_field.jinja.html +0 -0
  306. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit.jinja +0 -0
  307. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_comment.jinja +0 -0
  308. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_parent_link.jinja +0 -0
  309. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_section_edit.jinja +0 -0
  310. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
  311. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
  312. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
  313. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability_deep/frame_show_full_requirement.jinja +0 -0
  314. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
  315. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
  316. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
  317. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
  318. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
  319. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/index.jinja +0 -0
  320. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/main.jinja +0 -0
  321. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/project_tree_flat_anchor_list.jinja +0 -0
  322. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/requirement.jinja.html +0 -0
  323. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/resizable_bar_with_project_tree.jinja +0 -0
  324. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
  325. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
  326. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
  327. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
  328. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
  329. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
  330. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
  331. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
  332. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/tools/__init__.py +0 -0
  333. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/__init__.py +0 -0
  334. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
  335. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/document_rst_generator.py +0 -0
  336. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/rst_templates.py +0 -0
  337. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
  338. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  339. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/writer.py +0 -0
  340. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/__init__.py +0 -0
  341. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/auto_described.py +0 -0
  342. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/file_modification_time.py +0 -0
  343. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/file_system.py +0 -0
  344. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/math.py +0 -0
  345. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/parallelizer.py +0 -0
  346. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/path_filter.py +0 -0
  347. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/pickle.py +0 -0
  348. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/rst.py +0 -0
  349. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/sorting.py +0 -0
  350. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/string.py +0 -0
  351. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/textx.py +0 -0
  352. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/timing.py +0 -0
  353. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/__init__.py +0 -0
  354. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/app.py +0 -0
  355. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/config.py +0 -0
  356. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/error_object.py +0 -0
  357. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/main.py +0 -0
  358. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/server.py +0 -0
  359. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tasks_wine.py +0 -0
  360. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tools/confluence_html_table_import.py +0 -0
  361. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tools/link_health.py +0 -0
  362. {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strictdoc
3
- Version: 0.0.42a5
3
+ Version: 0.0.42a6
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.42a5"
3
+ __version__ = "0.0.42a6"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -1,7 +1,6 @@
1
1
  import argparse
2
2
  import os
3
3
  import sys
4
- from enum import Enum
5
4
  from typing import List, Optional
6
5
 
7
6
  from strictdoc.backend.reqif.sdoc_reqif_fields import ReqIFProfile
@@ -10,7 +9,7 @@ from strictdoc.core.environment import SDocRuntimeEnvironment
10
9
  from strictdoc.core.project_config import ProjectConfig, ProjectFeature
11
10
  from strictdoc.helpers.auto_described import auto_described
12
11
 
13
- EXPORT_FORMATS = ["html", "html-standalone", "rst", "excel", "reqif-sdoc"]
12
+ EXPORT_FORMATS = ["html", "rst", "excel", "reqif-sdoc"]
14
13
  EXCEL_PARSERS = ["basic"]
15
14
 
16
15
 
@@ -303,12 +302,6 @@ class ServerCommandConfig:
303
302
  self.port: Optional[int] = port
304
303
 
305
304
 
306
- class ExportMode(Enum):
307
- DOCTREE = 1
308
- STANDALONE = 2
309
- DOCTREE_AND_STANDALONE = 3
310
-
311
-
312
305
  class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
313
306
  def __init__( # pylint: disable=too-many-arguments
314
307
  self,
@@ -356,15 +349,6 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
356
349
  assert self._server_port is not None
357
350
  return self._server_port
358
351
 
359
- def get_export_mode(self):
360
- if "html" in self.formats:
361
- if "html-standalone" in self.formats:
362
- return ExportMode.DOCTREE_AND_STANDALONE
363
- return ExportMode.DOCTREE
364
- if "html-standalone" in self.formats:
365
- return ExportMode.STANDALONE
366
- raise NotImplementedError
367
-
368
352
  @property
369
353
  def strictdoc_root_path(self):
370
354
  return self.environment.path_to_strictdoc
@@ -391,6 +375,22 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
391
375
  if self.project_title is None:
392
376
  self.project_title = project_config.project_title
393
377
  self.dir_for_sdoc_assets = project_config.dir_for_sdoc_assets
378
+
379
+ if self.experimental_enable_file_traceability:
380
+ deprecation_message = (
381
+ "warning: "
382
+ "'--experimental-enable-file-traceability' command-line "
383
+ "option will be deprecated. Instead, activate the option in "
384
+ "the strictdoc.toml config file as follows:\n"
385
+ "```\n"
386
+ "[project]\n\n"
387
+ "features = [\n"
388
+ ' "REQUIREMENT_TO_SOURCE_TRACEABILITY"\n'
389
+ "]\n"
390
+ "```"
391
+ )
392
+ print(deprecation_message) # noqa: T201
393
+
394
394
  self.experimental_enable_file_traceability = (
395
395
  self.experimental_enable_file_traceability
396
396
  or project_config.is_feature_activated(
@@ -87,6 +87,13 @@ class DocumentMeta:
87
87
  f"{self.document_filename_base}-DEEP-TRACE.html"
88
88
  )
89
89
 
90
+ def get_html_standalone_document_link(self):
91
+ return (
92
+ f"{self.output_document_dir_rel_path}"
93
+ f"/"
94
+ f"{self.document_filename_base}.standalone.html"
95
+ )
96
+
90
97
  def get_html_link(self, document_type: DocumentType, other_doc_level):
91
98
  assert isinstance(document_type, DocumentType)
92
99
 
@@ -23,6 +23,8 @@ class ProjectFeature(str, Enum):
23
23
  REQUIREMENTS_COVERAGE_SCREEN = "REQUIREMENTS_COVERAGE_SCREEN"
24
24
  REQUIREMENT_TO_SOURCE_TRACEABILITY = "REQUIREMENT_TO_SOURCE_TRACEABILITY"
25
25
 
26
+ ALL_FEATURES = "ALL_FEATURES"
27
+
26
28
  @staticmethod
27
29
  def all():
28
30
  return list(map(lambda c: c.value, ProjectFeature))
@@ -79,6 +81,15 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
79
81
  def is_feature_activated(self, feature: ProjectFeature):
80
82
  return feature in self.project_features
81
83
 
84
+ def is_activated_table_screen(self):
85
+ return ProjectFeature.TABLE_SCREEN in self.project_features
86
+
87
+ def is_activated_trace_screen(self):
88
+ return ProjectFeature.TRACEABILITY_SCREEN in self.project_features
89
+
90
+ def is_activated_deep_trace_screen(self):
91
+ return ProjectFeature.DEEP_TRACEABILITY_SCREEN in self.project_features
92
+
82
93
  def is_activated_requirements_to_source_traceability(self):
83
94
  return (
84
95
  ProjectFeature.REQUIREMENT_TO_SOURCE_TRACEABILITY
@@ -90,9 +101,13 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
90
101
  ProjectFeature.REQUIREMENTS_COVERAGE_SCREEN in self.project_features
91
102
  )
92
103
 
93
- @staticmethod
94
- def is_reqif_feature_activated():
95
- return ProjectFeature.REQIF
104
+ def is_activated_standalone_document(self):
105
+ return (
106
+ ProjectFeature.STANDALONE_DOCUMENT_SCREEN in self.project_features
107
+ )
108
+
109
+ def is_activated_reqif(self) -> bool:
110
+ return ProjectFeature.REQIF in self.project_features
96
111
 
97
112
 
98
113
  class ProjectConfigLoader:
@@ -163,6 +178,8 @@ class ProjectConfigLoader:
163
178
  f"'{feature}'."
164
179
  )
165
180
  sys.exit(1)
181
+ if ProjectFeature.ALL_FEATURES in project_features:
182
+ project_features = ProjectFeature.all()
166
183
 
167
184
  include_doc_paths = project_content.get(
168
185
  "include_doc_paths", include_doc_paths
@@ -527,6 +527,7 @@ a.strictdoc__version:hover {
527
527
  [data-viewtype="table"] [data-viewtype_link="table"],
528
528
  [data-viewtype="traceability"] [data-viewtype_link="traceability"],
529
529
  [data-viewtype="deep_traceability"] [data-viewtype_link="deep_traceability"],
530
+ [data-viewtype="standalone_document"] [data-viewtype_link="standalone_document"],
530
531
  .viewtype__menu_item.active {
531
532
  background-color: var(--color-bg-accent);
532
533
  color: var(--color-fg-accent);
@@ -35,6 +35,7 @@ class DocumentTreeHTMLGenerator:
35
35
  traceability_index=traceability_index,
36
36
  link_renderer=link_renderer,
37
37
  strictdoc_version=__version__,
38
+ standalone=False,
38
39
  )
39
40
 
40
41
  return output
@@ -47,6 +47,7 @@ class RequirementsCoverageHTMLGenerator:
47
47
  renderer=markup_renderer,
48
48
  document_type=DocumentType.deeptrace(),
49
49
  strictdoc_version=__version__,
50
+ standalone=False,
50
51
  )
51
52
 
52
53
  return output
@@ -30,6 +30,7 @@ class SourceFileCoverageHTMLGenerator:
30
30
  traceability_index=traceability_index,
31
31
  link_renderer=link_renderer,
32
32
  strictdoc_version=__version__,
33
+ standalone=False,
33
34
  )
34
35
 
35
36
  return output
@@ -136,5 +136,6 @@ class SourceFileViewHTMLGenerator:
136
136
  renderer=markup_renderer,
137
137
  document_type=document_type,
138
138
  strictdoc_version=__version__,
139
+ standalone=False,
139
140
  )
140
141
  return output
@@ -4,7 +4,7 @@ from pathlib import Path
4
4
  from typing import Optional, Tuple
5
5
 
6
6
  from strictdoc.backend.sdoc.models.document import Document
7
- from strictdoc.cli.cli_arg_parser import ExportCommandConfig, ExportMode
7
+ from strictdoc.cli.cli_arg_parser import ExportCommandConfig
8
8
  from strictdoc.core.document_meta import DocumentMeta
9
9
  from strictdoc.core.project_config import ProjectConfig, ProjectFeature
10
10
  from strictdoc.core.source_tree import SourceTree
@@ -174,7 +174,6 @@ class HTMLGenerator:
174
174
  if specific_documents is None:
175
175
  specific_documents = DocumentType.all()
176
176
 
177
- export_mode = config.get_export_mode()
178
177
  assert document.meta is not None
179
178
 
180
179
  document_meta: DocumentMeta = document.meta
@@ -193,87 +192,78 @@ class HTMLGenerator:
193
192
  document,
194
193
  )
195
194
 
196
- if export_mode in (
197
- ExportMode.DOCTREE,
198
- ExportMode.DOCTREE_AND_STANDALONE,
199
- ):
200
- if DocumentType.DOCUMENT in specific_documents:
201
- # Single Document pages
202
- document_content = DocumentHTMLGenerator.export(
203
- config,
204
- project_config,
205
- document,
206
- traceability_index,
207
- markup_renderer,
208
- link_renderer,
209
- standalone=False,
210
- )
211
- document_out_file = document_meta.get_html_doc_path()
212
- with open(document_out_file, "w", encoding="utf8") as file:
213
- file.write(document_content)
195
+ if DocumentType.DOCUMENT in specific_documents:
196
+ # Single Document pages
197
+ document_content = DocumentHTMLGenerator.export(
198
+ config,
199
+ project_config,
200
+ document,
201
+ traceability_index,
202
+ markup_renderer,
203
+ link_renderer,
204
+ standalone=False,
205
+ )
206
+ document_out_file = document_meta.get_html_doc_path()
207
+ with open(document_out_file, "w", encoding="utf8") as file:
208
+ file.write(document_content)
214
209
 
215
- # Single Document Table pages
216
- if (
217
- project_config.is_feature_activated(ProjectFeature.TABLE_SCREEN)
218
- and DocumentType.TABLE in specific_documents
219
- ):
220
- document_content = DocumentTableHTMLGenerator.export(
221
- config,
222
- project_config,
223
- document,
224
- traceability_index,
225
- markup_renderer,
226
- link_renderer,
227
- )
228
- document_out_file = document_meta.get_html_table_path()
229
- with open(document_out_file, "w", encoding="utf8") as file:
230
- file.write(document_content)
210
+ # Single Document Table pages
211
+ if (
212
+ project_config.is_feature_activated(ProjectFeature.TABLE_SCREEN)
213
+ and DocumentType.TABLE in specific_documents
214
+ ):
215
+ document_content = DocumentTableHTMLGenerator.export(
216
+ config,
217
+ project_config,
218
+ document,
219
+ traceability_index,
220
+ markup_renderer,
221
+ link_renderer,
222
+ )
223
+ document_out_file = document_meta.get_html_table_path()
224
+ with open(document_out_file, "w", encoding="utf8") as file:
225
+ file.write(document_content)
231
226
 
232
- # Single Document Traceability pages
233
- if (
234
- project_config.is_feature_activated(
235
- ProjectFeature.TRACEABILITY_SCREEN
236
- )
237
- and DocumentType.TRACE in specific_documents
238
- ):
239
- document_content = DocumentTraceHTMLGenerator.export(
240
- config,
241
- project_config,
242
- document,
243
- traceability_index,
244
- markup_renderer,
245
- link_renderer,
246
- )
247
- document_out_file = document_meta.get_html_traceability_path()
248
- with open(document_out_file, "w", encoding="utf8") as file:
249
- file.write(document_content)
227
+ # Single Document Traceability pages
228
+ if (
229
+ project_config.is_feature_activated(
230
+ ProjectFeature.TRACEABILITY_SCREEN
231
+ )
232
+ and DocumentType.TRACE in specific_documents
233
+ ):
234
+ document_content = DocumentTraceHTMLGenerator.export(
235
+ config,
236
+ project_config,
237
+ document,
238
+ traceability_index,
239
+ markup_renderer,
240
+ link_renderer,
241
+ )
242
+ document_out_file = document_meta.get_html_traceability_path()
243
+ with open(document_out_file, "w", encoding="utf8") as file:
244
+ file.write(document_content)
250
245
 
251
- # Single Document Deep Traceability pages
252
- if (
253
- project_config.is_feature_activated(
254
- ProjectFeature.DEEP_TRACEABILITY_SCREEN
255
- )
256
- and DocumentType.DEEPTRACE in specific_documents
257
- ):
258
- document_content = DocumentDeepTraceHTMLGenerator.export_deep(
259
- config,
260
- project_config,
261
- document,
262
- traceability_index,
263
- markup_renderer,
264
- link_renderer,
265
- )
266
- document_out_file = (
267
- document_meta.get_html_deep_traceability_path()
268
- )
269
- with open(document_out_file, "w", encoding="utf8") as file:
270
- file.write(document_content)
246
+ # Single Document Deep Traceability pages
247
+ if (
248
+ project_config.is_feature_activated(
249
+ ProjectFeature.DEEP_TRACEABILITY_SCREEN
250
+ )
251
+ and DocumentType.DEEPTRACE in specific_documents
252
+ ):
253
+ document_content = DocumentDeepTraceHTMLGenerator.export_deep(
254
+ config,
255
+ project_config,
256
+ document,
257
+ traceability_index,
258
+ markup_renderer,
259
+ link_renderer,
260
+ )
261
+ document_out_file = document_meta.get_html_deep_traceability_path()
262
+ with open(document_out_file, "w", encoding="utf8") as file:
263
+ file.write(document_content)
271
264
 
272
265
  if project_config.is_feature_activated(
273
266
  ProjectFeature.STANDALONE_DOCUMENT_SCREEN
274
- ) or export_mode in (
275
- ExportMode.STANDALONE,
276
- ExportMode.DOCTREE_AND_STANDALONE,
277
267
  ):
278
268
  # Single Document pages (standalone)
279
269
  document_content = DocumentHTMLGenerator.export(
@@ -41,9 +41,11 @@
41
41
  {% endblock layout_nav %}
42
42
  </nav>
43
43
 
44
+ {%- if not standalone -%}
44
45
  <aside class="layout_tree">
45
46
  {% block tree_content %}{% endblock tree_content %}
46
47
  </aside>
48
+ {%- endif -%}
47
49
 
48
50
  {%- with toc_position = "right" -%}
49
51
  <aside
@@ -23,7 +23,7 @@
23
23
  {% endblock %}
24
24
 
25
25
  {# node_controls #}
26
- {%- if config.is_running_on_server -%}
26
+ {%- if config.is_running_on_server and not standalone -%}
27
27
  {% include "components/node/node_controls/index.jinja" %}
28
28
  {%- endif -%}
29
29
 
@@ -1,4 +1,4 @@
1
- {%- if not standalone -%}
1
+ {%- assert not standalone -%}
2
2
  <div class="viewtype">
3
3
  <div
4
4
  id="viewtype_handler"
@@ -24,6 +24,7 @@
24
24
  href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_doc_link()}}">
25
25
  Document</a>
26
26
  </li>
27
+ {%- if project_config.is_activated_table_screen() -%}
27
28
  <li>
28
29
  <a
29
30
  data-viewtype_link="table"
@@ -32,6 +33,8 @@
32
33
  href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_table_link()}}">
33
34
  Table</a>
34
35
  </li>
36
+ {%- endif -%}
37
+ {%- if project_config.is_activated_trace_screen() -%}
35
38
  <li>
36
39
  <a
37
40
  data-viewtype_link="traceability"
@@ -40,6 +43,8 @@
40
43
  href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_traceability_link()}}">
41
44
  Traceability</a>
42
45
  </li>
46
+ {%- endif -%}
47
+ {%- if project_config.is_activated_deep_trace_screen() -%}
43
48
  <li>
44
49
  <a
45
50
  data-viewtype_link="deep_traceability"
@@ -48,6 +53,16 @@
48
53
  href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_deep_traceability_link()}}">
49
54
  Deep traceability</a>
50
55
  </li>
56
+ {%- endif -%}
57
+ {%- if project_config.is_activated_standalone_document() -%}
58
+ <li>
59
+ <a
60
+ data-viewtype_link="standalone_document"
61
+ class="viewtype__menu_item"
62
+ title="Go to Standalone Document view"
63
+ href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_standalone_document_link()}}">
64
+ Standalone</a>
65
+ </li>
66
+ {%- endif -%}
51
67
  </menu>
52
68
  </div>
53
- {%- endif -%}
@@ -5,6 +5,7 @@
5
5
  #}
6
6
  <turbo-frame>
7
7
  <div class="actions_group">
8
+ {%- if not standalone -%}
8
9
  <a
9
10
  href="/actions/document/edit_grammar?document_mid={{ document.node_id }}"
10
11
  class="action_button"
@@ -14,11 +15,14 @@
14
15
  data-testid="document-edit-grammar-action"
15
16
  >{% include "_res/svg_ico16_gear.jinja.html" %} Edit grammar</a>
16
17
 
18
+ {%- if project_config.is_activated_reqif() -%}
17
19
  <a
18
20
  class="action_button"
19
21
  href="/reqif/export_document/{{ document.node_id }}"
20
22
  data-testid="document-export-reqif-action"
21
23
  >Export to ReqIF</a>
24
+ {%- endif -%}
25
+ {%- endif -%}
22
26
  </div>
23
27
  </turbo-frame>
24
28
  {%- endif -%}
@@ -8,10 +8,12 @@
8
8
  {% endblock head_css %}
9
9
 
10
10
  {% block head_scripts %}
11
+ {%- if not standalone -%}
11
12
  <script type="text/javascript" src="{{ link_renderer.render_static_url('viewtype_menu.js') }}"></script>
13
+ {%- endif -%}
12
14
  <script type="text/javascript" src="{{ link_renderer.render_static_url('resizable_bar.js') }}"></script>
13
15
 
14
- {%- if config.is_running_on_server -%}
16
+ {%- if config.is_running_on_server and not standalone -%}
15
17
  <script type="module">
16
18
  import hotwiredTurbo from "{{ link_renderer.render_static_url('turbo.js') }}";
17
19
  import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
@@ -34,7 +36,7 @@
34
36
  {{ super() }}
35
37
  {% endblock head_scripts %}
36
38
  {% block title %}{{ document.title }} - {{ template_type }}{% endblock title %}
37
- {% block viewtype %}document{% endblock viewtype %}
39
+ {% block viewtype %}{{ "document" if not standalone else "standalone_document" }}{% endblock viewtype %}
38
40
 
39
41
  {% block layout_nav %}
40
42
  {%- if not standalone -%}
@@ -50,12 +52,22 @@
50
52
  {% include "screens/document/_shared/resizable_bar_with_toc.jinja" %}
51
53
  {% endblock toc_content %}
52
54
 
53
- {% block header_content %}
54
- {%- with
55
- header__items=[
55
+ {%- if not standalone -%}
56
+ {%- set header_items = [
56
57
  "screens/document/_shared/frame_header_document_title.jinja",
57
58
  "screens/document/_shared/viewtype_menu.jinja"
58
- ],
59
+ ]
60
+ -%}
61
+ {%- else -%}
62
+ {%- set header_items = [
63
+ "screens/document/_shared/frame_header_document_title.jinja",
64
+ ]
65
+ -%}
66
+ {%- endif -%}
67
+
68
+ {% block header_content %}
69
+ {%- with
70
+ header__items=header_items,
59
71
  header__last="screens/document/document/actions.jinja"
60
72
  -%}
61
73
  {% include "components/header/index.jinja" %}
@@ -6,7 +6,7 @@
6
6
  <script type="text/javascript" src="{{link_renderer.render_static_url('viewtype_menu.js')}}"></script>
7
7
  <script type="text/javascript" src="{{link_renderer.render_static_url('resizable_bar.js')}}"></script>
8
8
 
9
- {%- if config.is_running_on_server -%}
9
+ {%- if config.is_running_on_server and not standalone -%}
10
10
  <script type="module">
11
11
  import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
12
12
  window.Stimulus = Application.start();
@@ -11,7 +11,7 @@
11
11
  <script type="text/javascript" src="{{ link_renderer.render_static_url('viewtype_menu.js') }}"></script>
12
12
  <script type="text/javascript" src="{{ link_renderer.render_static_url('resizable_bar.js') }}"></script>
13
13
 
14
- {%- if config.is_running_on_server -%}
14
+ {%- if config.is_running_on_server and not standalone -%}
15
15
  <script type="module">
16
16
  import hotwiredTurbo from "{{ link_renderer.render_static_url('turbo.js') }}";
17
17
  import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
@@ -11,7 +11,7 @@
11
11
  <script type="text/javascript" src="{{ link_renderer.render_static_url('viewtype_menu.js') }}"></script>
12
12
  <script type="text/javascript" src="{{ link_renderer.render_static_url('resizable_bar.js') }}"></script>
13
13
 
14
- {%- if config.is_running_on_server -%}
14
+ {%- if config.is_running_on_server and not standalone -%}
15
15
  <script type="module">
16
16
  import hotwiredTurbo from "{{ link_renderer.render_static_url('turbo.js')}}";
17
17
  import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
@@ -0,0 +1,36 @@
1
+ {%- if config.is_running_on_server -%}
2
+ {#
3
+ This turbo frame is important because it enables
4
+ the child turbo links below.
5
+ #}
6
+ <turbo-frame>
7
+ <div class="actions_group">
8
+ <a
9
+ class="action_button"
10
+ href="/actions/project_index/new_document"
11
+ data-turbo="true"
12
+ title="Add new document"
13
+ data-testid="tree-add-document-action"
14
+ >{% include "_res/svg_ico16_add.jinja.html" %} Add document</a>
15
+
16
+ {%- if project_config.is_activated_reqif() -%}
17
+ <a
18
+ class="action_button"
19
+ href="/actions/project_index/import_reqif_document_form"
20
+ data-turbo="true"
21
+ title="Import document tree from ReqIF"
22
+ data-testid="tree-import-reqif-action"
23
+ >Import from ReqIF</a>
24
+
25
+ {%- if not document_tree_iterator.is_empty_tree() -%}
26
+ <a
27
+ class="action_button"
28
+ href="/reqif/export_tree"
29
+ title="Export document tree to ReqIF"
30
+ data-testid="tree-export-reqif-action"
31
+ >Export to ReqIF</a>
32
+ {%- endif -%}
33
+ {%- endif -%}
34
+ </div>
35
+ </turbo-frame>
36
+ {%- endif -%}
@@ -8,7 +8,7 @@
8
8
  {% endblock head_css %}
9
9
 
10
10
  {% block head_scripts %}
11
- {%- if config.is_running_on_server -%}
11
+ {%- if config.is_running_on_server and not standalone -%}
12
12
  <script type="module">
13
13
  import hotwiredTurbo from "{{ link_renderer.render_static_url_with_prefix('turbo.js') }}";
14
14
  import { Application, Controller } from "{{ link_renderer.render_static_url_with_prefix('stimulus.js') }}";
@@ -47,7 +47,10 @@ class EmbeddableTag:
47
47
  elif tag.name == "script":
48
48
  if "type" in tag.attrs:
49
49
  type_value = tag.attrs["type"]
50
- if type_value == "text/javascript":
50
+ if (
51
+ type_value in ("text/javascript", "module")
52
+ and "src" in tag.attrs
53
+ ):
51
54
  return EmbeddableTag(EmbeddableTag.JS, tag.attrs["src"])
52
55
  elif tag.name == "img":
53
56
  if "src" in tag.attrs: