strictdoc 0.0.40__tar.gz → 0.0.41a0__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 (1191) hide show
  1. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/PKG-INFO +1 -1
  2. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/pyproject.toml +8 -0
  3. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/__init__.py +1 -1
  4. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/base.css +1 -4
  5. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/content.css +23 -0
  6. strictdoc-0.0.41a0/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +225 -0
  7. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +5 -3
  8. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/editable_field_controller.js +1 -1
  9. strictdoc-0.0.41a0/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +9 -0
  10. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/element.css +51 -147
  11. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/layout.css +18 -40
  12. strictdoc-0.0.41a0/strictdoc/export/html/_static/pan_with_space.js +151 -0
  13. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirement.css +1 -1
  14. strictdoc-0.0.41a0/strictdoc/export/html/_static/resizable_bar.js +602 -0
  15. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/document_config_form_object.py +5 -4
  16. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/requirement_form_object.py +11 -4
  17. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document.py +8 -1
  18. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_deep_trace.py +8 -1
  19. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_table.py +8 -1
  20. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_trace.py +8 -1
  21. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_tree.py +1 -1
  22. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/requirements_coverage.py +1 -1
  23. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/source_file_coverage.py +1 -1
  24. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/source_file_view_generator.py +1 -1
  25. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/link_renderer.py +1 -1
  26. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/markup_renderer.py +15 -2
  27. strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +5 -0
  28. strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +3 -0
  29. strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +3 -0
  30. strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +7 -0
  31. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/deep_trace/show_full_requirement/stream_show_full_requirement.jinja +1 -1
  32. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +1 -1
  33. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +1 -1
  34. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +1 -1
  35. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/add_requirement_parent_link/stream_add_requirement_parent_link.jinja.html +1 -1
  36. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +1 -1
  37. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +1 -1
  38. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +1 -1
  39. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +1 -1
  40. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +1 -1
  41. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +1 -1
  42. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +1 -1
  43. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +1 -1
  44. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +3 -3
  45. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_field.jinja.html +1 -1
  46. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_edit_document_grammar.jinja.html +1 -1
  47. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +1 -1
  48. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +1 -1
  49. {strictdoc-0.0.40/strictdoc/export/html/templates/actions/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index}/import_reqif_document/stream_form_import_reqif_document.jinja.html +1 -1
  50. strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +9 -0
  51. strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +9 -0
  52. {strictdoc-0.0.40/strictdoc/export/html/templates/actions/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index}/stream_new_document.jinja.html +1 -1
  53. strictdoc-0.0.41a0/strictdoc/export/html/templates/base.jinja.html +96 -0
  54. strictdoc-0.0.41a0/strictdoc/export/html/templates/components/header/_usage_example.jinja +15 -0
  55. strictdoc-0.0.41a0/strictdoc/export/html/templates/components/header/header_pagetype.jinja +1 -0
  56. strictdoc-0.0.41a0/strictdoc/export/html/templates/components/header/index.jinja +30 -0
  57. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +1 -1
  58. strictdoc-0.0.41a0/strictdoc/export/html/templates/components/resizable_bar/index.jinja +24 -0
  59. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +9 -0
  60. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/toc.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +2 -32
  61. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +40 -0
  62. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +6 -0
  63. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +8 -0
  64. strictdoc-0.0.40/strictdoc/export/html/templates/single_document/document_actions.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/actions.jinja +4 -10
  65. {strictdoc-0.0.40/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_content.jinja.html +1 -1
  66. {strictdoc-0.0.40/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_grammar_edit.jinja.html +1 -1
  67. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/requirement_edit.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit.jinja +5 -3
  68. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/section_edit.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_section_edit.jinja +3 -1
  69. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/index.jinja +65 -0
  70. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/main.jinja +3 -0
  71. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/table/index.jinja +52 -0
  72. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/table/main.jinja +241 -0
  73. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability/index.jinja +59 -0
  74. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability/main.jinja +44 -0
  75. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +62 -0
  76. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +42 -0
  77. strictdoc-0.0.40/strictdoc/export/html/templates/document_tree/document_tree_actions.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/actions.jinja +6 -4
  78. {strictdoc-0.0.40/strictdoc/export/html/templates/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index}/frame_form_import_reqif.jinja.html +1 -1
  79. {strictdoc-0.0.40/strictdoc/export/html/templates/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index}/frame_form_new_document.jinja.html +1 -1
  80. strictdoc-0.0.40/strictdoc/export/html/templates/document_tree/frame_document_tree.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +1 -1
  81. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/index.jinja +46 -0
  82. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/main.jinja +3 -0
  83. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/index.jinja +38 -0
  84. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/main.jinja +29 -0
  85. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/project_tree_flat_anchor_list.jinja +16 -0
  86. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/resizable_bar_with_project_tree.jinja +6 -0
  87. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +29 -0
  88. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +99 -0
  89. {strictdoc-0.0.40/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/source_file_view/aside.jinja +2 -2
  90. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +5 -0
  91. strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_view/index.jinja +45 -0
  92. {strictdoc-0.0.40/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/source_file_view/main.jinja +5 -2
  93. strictdoc-0.0.41a0/strictdoc/export/rst/directives/wildcard_enhanced_image.py +67 -0
  94. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/rst/rst_to_html_fragment_writer.py +17 -4
  95. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/routers/main_router.py +34 -24
  96. strictdoc-0.0.40/.coveragerc +0 -11
  97. strictdoc-0.0.40/.github/workflows/ci-linux-ubuntu-latest.yml +0 -39
  98. strictdoc-0.0.40/.github/workflows/ci-mac.yml +0 -39
  99. strictdoc-0.0.40/.github/workflows/ci-windows-powershell.yml +0 -49
  100. strictdoc-0.0.40/.github/workflows/ci-windows.yml +0 -54
  101. strictdoc-0.0.40/.github/workflows/codeql-analysis.yml +0 -71
  102. strictdoc-0.0.40/.github/workflows/end2end-tests.yml +0 -105
  103. strictdoc-0.0.40/.github/workflows/periodic-integration-test.yml +0 -121
  104. strictdoc-0.0.40/.github/workflows/periodic-release-test.yml +0 -36
  105. strictdoc-0.0.40/.github/workflows/release.yml +0 -34
  106. strictdoc-0.0.40/.link_health.yml +0 -3
  107. strictdoc-0.0.40/.pylint.ini +0 -525
  108. strictdoc-0.0.40/.python-version +0 -2
  109. strictdoc-0.0.40/.readthedocs.yaml +0 -26
  110. strictdoc-0.0.40/.ruby-version +0 -2
  111. strictdoc-0.0.40/developer/design/2022-05-strictdoc.afdesign +0 -0
  112. strictdoc-0.0.40/developer/pip_install_strictdoc_deps.py +0 -74
  113. strictdoc-0.0.40/developer/pyinstaller_hooks/hook-latexcodec.py +0 -4
  114. strictdoc-0.0.40/developer/pyinstaller_hooks/hook-six.py +0 -4
  115. strictdoc-0.0.40/developer/pyinstaller_hooks/hook-yaml.py +0 -4
  116. strictdoc-0.0.40/developer/snap/README.md +0 -30
  117. strictdoc-0.0.40/developer/snap/snapcraft.yaml +0 -21
  118. strictdoc-0.0.40/docs/sphinx/Makefile +0 -20
  119. strictdoc-0.0.40/docs/sphinx/make.bat +0 -35
  120. strictdoc-0.0.40/docs/sphinx/requirements.txt +0 -4
  121. strictdoc-0.0.40/docs/sphinx/source/_static/logo.jpg +0 -0
  122. strictdoc-0.0.40/docs/sphinx/source/_static/theme_overrides.css +0 -13
  123. strictdoc-0.0.40/docs/sphinx/source/conf.py +0 -298
  124. strictdoc-0.0.40/docs/sphinx/source/index.rst +0 -15
  125. strictdoc-0.0.40/docs/sphinx/source/strictdoc_01_user_guide.rst +0 -1546
  126. strictdoc-0.0.40/docs/sphinx/source/strictdoc_02_faq.rst +0 -319
  127. strictdoc-0.0.40/docs/sphinx/source/strictdoc_03_development_plan.rst +0 -148
  128. strictdoc-0.0.40/docs/sphinx/source/strictdoc_04_backlog.rst +0 -220
  129. strictdoc-0.0.40/docs/sphinx/source/strictdoc_10_contributing.rst +0 -43
  130. strictdoc-0.0.40/docs/sphinx/source/strictdoc_11_developer_guide.rst +0 -162
  131. strictdoc-0.0.40/docs/sphinx/source/strictdoc_20_requirements.rst +0 -563
  132. strictdoc-0.0.40/docs/sphinx/source/strictdoc_21_design.rst +0 -118
  133. strictdoc-0.0.40/docs/sphinx/source/strictdoc_30_credits.rst +0 -76
  134. strictdoc-0.0.40/docs/strictdoc.toml +0 -9
  135. strictdoc-0.0.40/docs/strictdoc_01_user_guide.sdoc +0 -1803
  136. strictdoc-0.0.40/docs/strictdoc_02_faq.sdoc +0 -365
  137. strictdoc-0.0.40/docs/strictdoc_03_development_plan.sdoc +0 -130
  138. strictdoc-0.0.40/docs/strictdoc_04_backlog.sdoc +0 -246
  139. strictdoc-0.0.40/docs/strictdoc_10_contributing.sdoc +0 -59
  140. strictdoc-0.0.40/docs/strictdoc_11_developer_guide.sdoc +0 -195
  141. strictdoc-0.0.40/docs/strictdoc_20_requirements.sdoc +0 -494
  142. strictdoc-0.0.40/docs/strictdoc_21_design.sdoc +0 -146
  143. strictdoc-0.0.40/docs/strictdoc_30_credits.sdoc +0 -94
  144. strictdoc-0.0.40/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +0 -209
  145. strictdoc-0.0.40/strictdoc/export/html/_static/pan_with_space.js +0 -145
  146. strictdoc-0.0.40/strictdoc/export/html/_static/toc.js +0 -27
  147. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/document_header.jinja.html +0 -6
  148. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/document_title.jinja +0 -8
  149. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/project_header.jinja.html +0 -6
  150. strictdoc-0.0.40/strictdoc/export/html/templates/_shared/source_file_header.jinja.html +0 -11
  151. strictdoc-0.0.40/strictdoc/export/html/templates/actions/document_tree/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -9
  152. strictdoc-0.0.40/strictdoc/export/html/templates/actions/document_tree/stream_create_document.jinja.html +0 -9
  153. strictdoc-0.0.40/strictdoc/export/html/templates/base.jinja.html +0 -90
  154. strictdoc-0.0.40/strictdoc/export/html/templates/document_tree/document_tree.jinja.html +0 -50
  155. strictdoc-0.0.40/strictdoc/export/html/templates/requirements_coverage/document_list.jinja.html +0 -14
  156. strictdoc-0.0.40/strictdoc/export/html/templates/requirements_coverage/requirements_coverage.jinja.html +0 -65
  157. strictdoc-0.0.40/strictdoc/export/html/templates/single_document/document.jinja.html +0 -57
  158. strictdoc-0.0.40/strictdoc/export/html/templates/single_document_table/document.jinja.html +0 -295
  159. strictdoc-0.0.40/strictdoc/export/html/templates/single_document_traceability/document.jinja.html +0 -100
  160. strictdoc-0.0.40/strictdoc/export/html/templates/single_document_traceability_deep/document.jinja.html +0 -96
  161. strictdoc-0.0.40/strictdoc/export/html/templates/source_file_coverage/source_file_coverage.jinja.html +0 -130
  162. strictdoc-0.0.40/strictdoc/export/html/templates/source_file_view/index.jinja +0 -41
  163. strictdoc-0.0.40/tests/__init__.py +0 -0
  164. strictdoc-0.0.40/tests/end2end/__init__.py +0 -0
  165. strictdoc-0.0.40/tests/end2end/conftest.py +0 -68
  166. strictdoc-0.0.40/tests/end2end/end2end_test_setup.py +0 -125
  167. strictdoc-0.0.40/tests/end2end/helpers/__init__.py +0 -0
  168. strictdoc-0.0.40/tests/end2end/helpers/components/__init__.py +0 -0
  169. strictdoc-0.0.40/tests/end2end/helpers/components/confirm.py +0 -38
  170. strictdoc-0.0.40/tests/end2end/helpers/components/modal.py +0 -42
  171. strictdoc-0.0.40/tests/end2end/helpers/components/node/__init__.py +0 -0
  172. strictdoc-0.0.40/tests/end2end/helpers/components/node/add_node_menu.py +0 -153
  173. strictdoc-0.0.40/tests/end2end/helpers/components/node/document_root.py +0 -111
  174. strictdoc-0.0.40/tests/end2end/helpers/components/node/node.py +0 -174
  175. strictdoc-0.0.40/tests/end2end/helpers/components/node/requirement.py +0 -183
  176. strictdoc-0.0.40/tests/end2end/helpers/components/node/section.py +0 -36
  177. strictdoc-0.0.40/tests/end2end/helpers/components/toc.py +0 -69
  178. strictdoc-0.0.40/tests/end2end/helpers/components/viewtype_selector.py +0 -83
  179. strictdoc-0.0.40/tests/end2end/helpers/constants.py +0 -29
  180. strictdoc-0.0.40/tests/end2end/helpers/form/__init__.py +0 -0
  181. strictdoc-0.0.40/tests/end2end/helpers/form/form.py +0 -129
  182. strictdoc-0.0.40/tests/end2end/helpers/screens/__init__.py +0 -0
  183. strictdoc-0.0.40/tests/end2end/helpers/screens/deep_traceability/__init__.py +0 -0
  184. strictdoc-0.0.40/tests/end2end/helpers/screens/deep_traceability/screen_deep_traceability.py +0 -16
  185. strictdoc-0.0.40/tests/end2end/helpers/screens/document/__init__.py +0 -0
  186. strictdoc-0.0.40/tests/end2end/helpers/screens/document/form_edit_config.py +0 -89
  187. strictdoc-0.0.40/tests/end2end/helpers/screens/document/form_edit_grammar.py +0 -44
  188. strictdoc-0.0.40/tests/end2end/helpers/screens/document/form_edit_requirement.py +0 -68
  189. strictdoc-0.0.40/tests/end2end/helpers/screens/document/form_edit_section.py +0 -18
  190. strictdoc-0.0.40/tests/end2end/helpers/screens/document/screen_document.py +0 -44
  191. strictdoc-0.0.40/tests/end2end/helpers/screens/document_tree/__init__.py +0 -0
  192. strictdoc-0.0.40/tests/end2end/helpers/screens/document_tree/form_add_document.py +0 -17
  193. strictdoc-0.0.40/tests/end2end/helpers/screens/document_tree/form_import_reqif.py +0 -15
  194. strictdoc-0.0.40/tests/end2end/helpers/screens/document_tree/screen_document_tree.py +0 -80
  195. strictdoc-0.0.40/tests/end2end/helpers/screens/screen.py +0 -113
  196. strictdoc-0.0.40/tests/end2end/helpers/screens/table/__init__.py +0 -0
  197. strictdoc-0.0.40/tests/end2end/helpers/screens/table/screen_table.py +0 -16
  198. strictdoc-0.0.40/tests/end2end/helpers/screens/traceability/__init__.py +0 -0
  199. strictdoc-0.0.40/tests/end2end/helpers/screens/traceability/screen_traceability.py +0 -16
  200. strictdoc-0.0.40/tests/end2end/navigation/toc/__init__.py +0 -0
  201. strictdoc-0.0.40/tests/end2end/navigation/toc/expected_output/document.sdoc +0 -27
  202. strictdoc-0.0.40/tests/end2end/navigation/toc/input/document.sdoc +0 -27
  203. strictdoc-0.0.40/tests/end2end/navigation/toc/test_UC112_T01_UI_toc.py +0 -50
  204. strictdoc-0.0.40/tests/end2end/navigation/toc/test_UC112_T02_UI_toc_saves_state.py +0 -65
  205. strictdoc-0.0.40/tests/end2end/navigation/viewtype_selector/__init__.py +0 -0
  206. strictdoc-0.0.40/tests/end2end/navigation/viewtype_selector/expected_output/document.sdoc +0 -20
  207. strictdoc-0.0.40/tests/end2end/navigation/viewtype_selector/input/document.sdoc +0 -20
  208. strictdoc-0.0.40/tests/end2end/navigation/viewtype_selector/test_UC113_UI_viewtype_selector.py +0 -66
  209. strictdoc-0.0.40/tests/end2end/project_index/UC50_viewing_document_tree/UC50_T01_empty_document_tree/test_UC50_T01_empty_document_tree.py +0 -22
  210. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T01_empty_document_title/test_UC51_G1_T01_empty_document_title.py +0 -34
  211. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T02_empty_document_path/test_UC51_G1_T02_empty_document_path.py +0 -34
  212. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T03_document_path_with_no_sdoc_extension/test_UC51_G1_T03_document_path_with_no_sdoc_extension.py +0 -35
  213. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T04_document_path_bad_chars/test_UC51_G1_T04_document_path_bad_chars.py +0 -35
  214. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/expected_output/docs/document1.sdoc +0 -2
  215. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/expected_output/dummy.txt +0 -0
  216. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/input/dummy.txt +0 -0
  217. strictdoc-0.0.40/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/test_UC51_T01_creating_document.py +0 -35
  218. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_G1_validations/UC55_G1_T01_not_a_reqif_format/sample.reqif +0 -1
  219. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_G1_validations/UC55_G1_T01_not_a_reqif_format/test_UC55_G1_T01_not_a_reqif_file.py +0 -38
  220. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/expected_output/Document_1.sdoc +0 -8
  221. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/expected_output/dummy.txt +0 -0
  222. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/input/dummy.txt +0 -0
  223. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/sample.reqif +0 -112
  224. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/test_UC55_T01_default_import.py +0 -40
  225. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T02_cancel_import/test_UC55_T02_cancel_import.py +0 -34
  226. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/expected_output/Document_1.sdoc +0 -15
  227. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/expected_output/Document_2.sdoc +0 -15
  228. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/expected_output/dummy.txt +0 -0
  229. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/input/dummy.txt +0 -0
  230. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/sample.reqif +0 -249
  231. strictdoc-0.0.40/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/test_UC55_T03_import_tree_of_two_documents.py +0 -43
  232. strictdoc-0.0.40/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/expected_output/Document_1.sdoc +0 -15
  233. strictdoc-0.0.40/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/expected_output/Document_2.sdoc +0 -15
  234. strictdoc-0.0.40/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/input/Document_1.sdoc +0 -15
  235. strictdoc-0.0.40/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/input/Document_2.sdoc +0 -15
  236. strictdoc-0.0.40/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/test_UC56_T01_export_tree_to_reqif.py +0 -43
  237. strictdoc-0.0.40/tests/end2end/project_options/project_title/01_option_not_specified/document.sdoc +0 -6
  238. strictdoc-0.0.40/tests/end2end/project_options/project_title/01_option_not_specified/test_01_option_not_specified.py +0 -22
  239. strictdoc-0.0.40/tests/end2end/project_options/project_title/02_option_specified/document.sdoc +0 -6
  240. strictdoc-0.0.40/tests/end2end/project_options/project_title/02_option_specified/strictdoc.toml +0 -2
  241. strictdoc-0.0.40/tests/end2end/project_options/project_title/02_option_specified/test_02_option_specified.py +0 -24
  242. strictdoc-0.0.40/tests/end2end/project_options/server_host/01_option_not_specified/document.sdoc +0 -6
  243. strictdoc-0.0.40/tests/end2end/project_options/server_host/01_option_not_specified/test_01_server_host_not_specified.py +0 -32
  244. strictdoc-0.0.40/tests/end2end/project_options/server_host/02_option_specified/document.sdoc +0 -6
  245. strictdoc-0.0.40/tests/end2end/project_options/server_host/02_option_specified/strictdoc.toml +0 -6
  246. strictdoc-0.0.40/tests/end2end/project_options/server_host/02_option_specified/test_02_server_host_specified.py +0 -31
  247. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_T03_requirement_show_more_in_modal/expected_output/document.sdoc +0 -28
  248. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_T03_requirement_show_more_in_modal/input/document.sdoc +0 -28
  249. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_T03_requirement_show_more_in_modal/test_UC40_T03_requirement_show_more_in_modal.py +0 -73
  250. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T01_document_has_no_requirement/expected_output/document.sdoc +0 -6
  251. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T01_document_has_no_requirement/input/document.sdoc +0 -6
  252. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T01_document_has_no_requirement/test_UC40_T01_document_has_no_requirement.py +0 -38
  253. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T02_document_has_requirement/expected_output/document.sdoc +0 -11
  254. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T02_document_has_requirement/input/document.sdoc +0 -11
  255. strictdoc-0.0.40/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T02_document_has_requirement/test_UC40_T02_document_has_requirement.py +0 -38
  256. strictdoc-0.0.40/tests/end2end/screens/document/UC01_view_document/UC01_T01_document_is_empty/document.sdoc +0 -2
  257. strictdoc-0.0.40/tests/end2end/screens/document/UC01_view_document/UC01_T01_document_is_empty/test_UC01_T01_empty_document.py +0 -29
  258. strictdoc-0.0.40/tests/end2end/screens/document/UC01_view_document/UC01_T02_document_has_freetext/document.sdoc +0 -6
  259. strictdoc-0.0.40/tests/end2end/screens/document/UC01_view_document/UC01_T02_document_has_freetext/test_UC01_T02_document_has_freetext.py +0 -29
  260. strictdoc-0.0.40/tests/end2end/screens/document/UC01_view_document/UC01_T03_document_has_node/document.sdoc +0 -8
  261. strictdoc-0.0.40/tests/end2end/screens/document/UC01_view_document/UC01_T03_document_has_node/test_UC01_T03_document_has_node.py +0 -29
  262. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T01_section_with_empty_name/expected_output/document.sdoc +0 -6
  263. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T01_section_with_empty_name/input/document.sdoc +0 -6
  264. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T01_section_with_empty_name/test_UC03_G1_T01_section_with_empty_name.py +0 -49
  265. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T02_malformed_rst_statement/expected_output/document.sdoc +0 -6
  266. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T02_malformed_rst_statement/input/document.sdoc +0 -6
  267. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T02_malformed_rst_statement/test_UC03_G1_T02_malformed_rst_statement.py +0 -49
  268. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T01_cancel_new_section/expected_output/document.sdoc +0 -15
  269. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T01_cancel_new_section/input/document.sdoc +0 -15
  270. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T01_cancel_new_section/test_UC03_T01_cancel_new_section.py +0 -42
  271. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T02_create_before_section/expected_output/document.sdoc +0 -24
  272. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T02_create_before_section/input/document.sdoc +0 -15
  273. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T02_create_before_section/test_UC03_T02_create_before_section.py +0 -61
  274. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T03_create_first_section/expected_output/document.sdoc +0 -15
  275. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T03_create_first_section/input/document.sdoc +0 -6
  276. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T03_create_first_section/test_UC03_T03_create_first_section.py +0 -51
  277. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T04_create_two_sibling_sections/expected_output/document.sdoc +0 -24
  278. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T04_create_two_sibling_sections/input/document.sdoc +0 -6
  279. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T04_create_two_sibling_sections/test_UC03_T04_create_two_sibling_sections.py +0 -72
  280. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T05_create_three_nested_sections/expected_output/document.sdoc +0 -33
  281. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T05_create_three_nested_sections/input/document.sdoc +0 -6
  282. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T05_create_three_nested_sections/test_UC03_T05_create_three_nested_sections.py +0 -85
  283. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T06_create_section_after_requirement/expected_output/document.sdoc +0 -21
  284. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T06_create_section_after_requirement/input/document.sdoc +0 -12
  285. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T06_create_section_after_requirement/test_UC03_T06_create_section_after_requirement.py +0 -55
  286. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T07_create_section_sanitizing_trailing_symbols/expected_output/document.sdoc +0 -19
  287. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T07_create_section_sanitizing_trailing_symbols/input/document.sdoc +0 -6
  288. strictdoc-0.0.40/tests/end2end/screens/document/UC03_create_section/UC03_T07_create_section_sanitizing_trailing_symbols/test_UC03_T07_create_section_sanitizing_trailing_symbols.py +0 -50
  289. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T01_requirement_with_no_statement/expected_output/document.sdoc +0 -6
  290. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T01_requirement_with_no_statement/input/document.sdoc +0 -6
  291. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T01_requirement_with_no_statement/test_UC06_G1_T01_requirement_with_no_statement.py +0 -48
  292. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T02_malformed_rst_statement/expected_output/document.sdoc +0 -6
  293. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T02_malformed_rst_statement/input/document.sdoc +0 -6
  294. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T02_malformed_rst_statement/test_UC06_G1_T02_malformed_rst_statement.py +0 -50
  295. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T01_cancel_new_requirement/expected_output/document.sdoc +0 -6
  296. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T01_cancel_new_requirement/input/document.sdoc +0 -6
  297. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T01_cancel_new_requirement/test_UC06_T01_cancel_new_requirement.py +0 -43
  298. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T03_create_requirement_after_section/expected_output/document.sdoc +0 -21
  299. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T03_create_requirement_after_section/input/document.sdoc +0 -15
  300. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T03_create_requirement_after_section/test_UC06_T03_creating_requirement_after_section.py +0 -56
  301. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T04_create_requirement_in_section/expected_output/document.sdoc +0 -21
  302. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T04_create_requirement_in_section/input/document.sdoc +0 -15
  303. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T04_create_requirement_in_section/test_UC06_T04_create_requirement_in_section.py +0 -57
  304. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T06_create_requirements_in_document/expected_output/document.sdoc +0 -36
  305. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T06_create_requirements_in_document/input/document.sdoc +0 -6
  306. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T06_create_requirements_in_document/test_UC06_T06_create_requirements_in_document.py +0 -105
  307. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T08_sanitize_trailing_symbols/expected_output/document.sdoc +0 -16
  308. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T08_sanitize_trailing_symbols/input/document.sdoc +0 -6
  309. strictdoc-0.0.40/tests/end2end/screens/document/UC06_create_requirement/UC06_T08_sanitize_trailing_symbols/test_UC06_T08_sanitize_trailing_symbols.py +0 -53
  310. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T01_add_one_link/expected_output/document.sdoc +0 -23
  311. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T01_add_one_link/input/document.sdoc +0 -20
  312. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T01_add_one_link/test_UC07_G1_T01_add_one_link.py +0 -70
  313. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T02_add_three_links/expected_output/document.sdoc +0 -41
  314. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T02_add_three_links/input/document.sdoc +0 -34
  315. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T02_add_three_links/test_UC07_G1_T02_add_three_links.py +0 -48
  316. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T03_remove_existing_link/expected_output/document.sdoc +0 -20
  317. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T03_remove_existing_link/input/document.sdoc +0 -23
  318. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T03_remove_existing_link/test_UC07_G1_T03_remove_existing_link.py +0 -61
  319. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T10_editing_requirement_refs_validate_empty/expected_output/document.sdoc +0 -15
  320. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T10_editing_requirement_refs_validate_empty/input/document.sdoc +0 -15
  321. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T10_editing_requirement_refs_validate_empty/test_UC07_G1_T10_editing_requirement_refs.py +0 -45
  322. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T11_added_link_not_exists/expected_output/document.sdoc +0 -16
  323. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T11_added_link_not_exists/input/document.sdoc +0 -16
  324. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T11_added_link_not_exists/test_UC07_G1_T11_added_link_not_exists.py +0 -46
  325. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T12_added_link_when_no_uid/expected_output/document.sdoc +0 -25
  326. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T12_added_link_when_no_uid/input/document.sdoc +0 -25
  327. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T12_added_link_when_no_uid/test_UC07_G1_T12_added_link_when_no_uid.py +0 -48
  328. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T13_renaming_uid_when_parent_links_exist/expected_output/document.sdoc +0 -23
  329. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T13_renaming_uid_when_parent_links_exist/input/document.sdoc +0 -23
  330. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T13_renaming_uid_when_parent_links_exist/test_UC07_G1_T13_renaming_uid_when_parent_links_exist.py +0 -48
  331. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T14_renaming_uid_when_child_links_exist/expected_output/document.sdoc +0 -23
  332. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T14_renaming_uid_when_child_links_exist/input/document.sdoc +0 -23
  333. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T14_renaming_uid_when_child_links_exist/test_UC07_G1_T14_renaming_uid_when_child_links_exist.py +0 -47
  334. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/expected_output/document1.sdoc +0 -13
  335. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/expected_output/document2.sdoc +0 -13
  336. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/input/document1.sdoc +0 -13
  337. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/input/document2.sdoc +0 -16
  338. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/test_UC07_G1_T20_two_documents_removing_link.py +0 -65
  339. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T01_empty_statement/expected_output/document.sdoc +0 -12
  340. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T01_empty_statement/input/document.sdoc +0 -12
  341. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T01_empty_statement/test_UC07_G2_T01_empty_statement.py +0 -44
  342. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T02_statement_malformed_rst/expected_output/document.sdoc +0 -12
  343. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T02_statement_malformed_rst/input/document.sdoc +0 -12
  344. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T02_statement_malformed_rst/test_UC07_G2_T02_statement_malformed_rst.py +0 -45
  345. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T01_editing_requirement/expected_output/document.sdoc +0 -16
  346. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T01_editing_requirement/input/document.sdoc +0 -16
  347. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T01_editing_requirement/test_UC07_T01_editing_requirement.py +0 -73
  348. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T02_editing_statement_only/expected_output/document.sdoc +0 -11
  349. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T02_editing_statement_only/input/document.sdoc +0 -11
  350. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T02_editing_statement_only/test_UC07_T02_editing_statement_only.py +0 -47
  351. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T10_editing_table_requirement/expected_output/document.sdoc +0 -18
  352. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T10_editing_table_requirement/input/document.sdoc +0 -17
  353. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T10_editing_table_requirement/test_UC07_T10_editing_table_requirement.py +0 -59
  354. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T20_add_comment/expected_output/document.sdoc +0 -24
  355. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T20_add_comment/input/document.sdoc +0 -15
  356. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T20_add_comment/test_UC07_T20_add_comment.py +0 -57
  357. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T21_remove_comment/expected_output/document.sdoc +0 -11
  358. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T21_remove_comment/input/document.sdoc +0 -14
  359. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T21_remove_comment/test_UC07_T21_remove_comment.py +0 -45
  360. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T22_remove_one_of_three_comments/expected_output/document.sdoc +0 -17
  361. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T22_remove_one_of_three_comments/input/document.sdoc +0 -20
  362. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T22_remove_one_of_three_comments/test_UC07_T22_remove_one_of_three_comments.py +0 -45
  363. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T23_add_empty_to_two_existing_comments/expected_output/document.sdoc +0 -17
  364. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T23_add_empty_to_two_existing_comments/input/document.sdoc +0 -17
  365. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T23_add_empty_to_two_existing_comments/test_UC07_T23_add_empty_to_two_existing_comments.py +0 -45
  366. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T50_cancel_edit_requirement/expected_output/document.sdoc +0 -12
  367. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T50_cancel_edit_requirement/input/document.sdoc +0 -12
  368. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T50_cancel_edit_requirement/test_UC07_T50_cancel_edit_requirement.py +0 -40
  369. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T60_sanitizing_trailing_symbols/expected_output/document.sdoc +0 -16
  370. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T60_sanitizing_trailing_symbols/input/document.sdoc +0 -12
  371. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T60_sanitizing_trailing_symbols/test_UC07_T60_sanitizing_trailing_symbols.py +0 -52
  372. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T61_escape_html/expected_output/document.sdoc +0 -16
  373. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T61_escape_html/input/document.sdoc +0 -16
  374. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T61_escape_html/test_UC07_T61_escape_html.py +0 -51
  375. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T62_reescape_html_by_validations/expected_output/document.sdoc +0 -16
  376. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T62_reescape_html_by_validations/input/document.sdoc +0 -16
  377. strictdoc-0.0.40/tests/end2end/screens/document/UC07_edit_requirement/UC07_T62_reescape_html_by_validations/test_UC07_T62_reescape_html_by_validations.py +0 -49
  378. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T01_edit_section_with_empty_title/expected_output/document.sdoc +0 -15
  379. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T01_edit_section_with_empty_title/input/document.sdoc +0 -15
  380. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T01_edit_section_with_empty_title/test_UC08_G1_T01_edit_section_with_empty_title.py +0 -46
  381. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T02_section_statement_malformed_rst/expected_output/document.sdoc +0 -15
  382. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T02_section_statement_malformed_rst/input/document.sdoc +0 -15
  383. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T02_section_statement_malformed_rst/test_UC08_G1_T02_section_statement_malformed_rst.py +0 -45
  384. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T01_cancel_edit_section/expected_output/document.sdoc +0 -15
  385. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T01_cancel_edit_section/input/document.sdoc +0 -15
  386. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T01_cancel_edit_section/test_UC08_T01_cancel_edit_section.py +0 -39
  387. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T02_edit_section/expected_output/document.sdoc +0 -15
  388. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T02_edit_section/input/document.sdoc +0 -15
  389. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T02_edit_section/test_UC08_T02_edit_section.py +0 -46
  390. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T03_edit_section_sanitize_trailing_symbols/expected_output/document.sdoc +0 -19
  391. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T03_edit_section_sanitize_trailing_symbols/input/document.sdoc +0 -15
  392. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T03_edit_section_sanitize_trailing_symbols/test_UC08_T03_edit_section_sanitize_trailing_symbols.py +0 -52
  393. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T04_edit_section_escape_html/expected_output/document.sdoc +0 -19
  394. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T04_edit_section_escape_html/input/document.sdoc +0 -19
  395. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T04_edit_section_escape_html/test_UC08_T04_edit_section_escape_html.py +0 -53
  396. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T05_edit_section_reescape_html_by_validation/expected_output/document.sdoc +0 -19
  397. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T05_edit_section_reescape_html_by_validation/input/document.sdoc +0 -19
  398. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T05_edit_section_reescape_html_by_validation/test_UC08_T05_edit_section_reescape_html_by_validation.py +0 -50
  399. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T06_cancel_edit_nested_section/expected_output/document.sdoc +0 -24
  400. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T06_cancel_edit_nested_section/input/document.sdoc +0 -24
  401. strictdoc-0.0.40/tests/end2end/screens/document/UC08_edit_section/UC08_T06_cancel_edit_nested_section/test_UC08_T06_cancel_edit_nested_section.py +0 -40
  402. strictdoc-0.0.40/tests/end2end/screens/document/UC09_delete_section/UC09_T01_delete_section/expected_output/document.sdoc +0 -6
  403. strictdoc-0.0.40/tests/end2end/screens/document/UC09_delete_section/UC09_T01_delete_section/input/document.sdoc +0 -15
  404. strictdoc-0.0.40/tests/end2end/screens/document/UC09_delete_section/UC09_T01_delete_section/test_UC09_T01_delete_section.py +0 -38
  405. strictdoc-0.0.40/tests/end2end/screens/document/UC10_delete_requirement/UC10_T01_delete_requirement/expected_output/document.sdoc +0 -6
  406. strictdoc-0.0.40/tests/end2end/screens/document/UC10_delete_requirement/UC10_T01_delete_requirement/input/document.sdoc +0 -12
  407. strictdoc-0.0.40/tests/end2end/screens/document/UC10_delete_requirement/UC10_T01_delete_requirement/test_UC10_T01_delete_requirement.py +0 -38
  408. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T01_empty_title/expected_output/document.sdoc +0 -12
  409. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T01_empty_title/input/document.sdoc +0 -12
  410. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T01_empty_title/test_UC11_G1_T01_empty_title.py +0 -43
  411. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T02_abstract_with_invalid_rst/expected_output/document.sdoc +0 -6
  412. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T02_abstract_with_invalid_rst/input/document.sdoc +0 -6
  413. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T02_abstract_with_invalid_rst/test_UC11_G1_T02_abstract_with_invalid_rst.py +0 -42
  414. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T01_edit_document_title/expected_output/document.sdoc +0 -12
  415. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T01_edit_document_title/input/document.sdoc +0 -12
  416. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T01_edit_document_title/test_UC11_T01_edit_document_title.py +0 -47
  417. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T03_edit_document_cancel/expected_output/document.sdoc +0 -12
  418. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T03_edit_document_cancel/input/document.sdoc +0 -12
  419. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T03_edit_document_cancel/test_UC11_T03_edit_document_cancel.py +0 -38
  420. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T11_edit_document_version/expected_output/document.sdoc +0 -13
  421. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T11_edit_document_version/input/document.sdoc +0 -12
  422. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T11_edit_document_version/test_UC11_T11_edit_document_version.py +0 -41
  423. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T20_edit_document_uid/expected_output/document.sdoc +0 -13
  424. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T20_edit_document_uid/input/document.sdoc +0 -12
  425. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T20_edit_document_uid/test_UC11_T20_edit_document_uid.py +0 -41
  426. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T31_edit_document_classification/expected_output/document.sdoc +0 -13
  427. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T31_edit_document_classification/input/document.sdoc +0 -12
  428. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T31_edit_document_classification/test_UC11_T31_edit_document_classification.py +0 -41
  429. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T40_edit_document_abstract/expected_output/document.sdoc +0 -6
  430. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T40_edit_document_abstract/input/document.sdoc +0 -6
  431. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T40_edit_document_abstract/test_UC11_T40_edit_document_abstract.py +0 -41
  432. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T41_remove_document_abstract/expected_output/document.sdoc +0 -2
  433. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T41_remove_document_abstract/input/document.sdoc +0 -6
  434. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T41_remove_document_abstract/test_UC11_T41_remove_document_abstract.py +0 -41
  435. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T43_sanitize_abstract/expected_output/document.sdoc +0 -10
  436. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T43_sanitize_abstract/input/document.sdoc +0 -6
  437. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T43_sanitize_abstract/test_UC11_T43_sanitize_abstract.py +0 -48
  438. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T44_freetext_LINK_to_a_section/expected_output/document.sdoc +0 -12
  439. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T44_freetext_LINK_to_a_section/input/document.sdoc +0 -12
  440. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T44_freetext_LINK_to_a_section/test_UC11_T44_freetext_LINK_to_a_section.py +0 -47
  441. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T50_escape_html/expected_output/document.sdoc +0 -10
  442. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T50_escape_html/input/document.sdoc +0 -10
  443. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T50_escape_html/test_UC11_T50_escape_html.py +0 -49
  444. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T51_reescape_html_by_validation/expected_output/document.sdoc +0 -10
  445. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T51_reescape_html_by_validation/input/document.sdoc +0 -10
  446. strictdoc-0.0.40/tests/end2end/screens/document/UC11_edit_document_config/UC11_T51_reescape_html_by_validation/test_UC11_T51_reescape_html_by_validation.py +0 -46
  447. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T02_move_field_up/expected_output/document.sdoc +0 -47
  448. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T02_move_field_up/input/document.sdoc +0 -47
  449. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T02_move_field_up/test_UC12_T02_move_field_up.py +0 -44
  450. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T03_move_field_down/expected_output/document.sdoc +0 -47
  451. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T03_move_field_down/input/document.sdoc +0 -47
  452. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T03_move_field_down/test_UC12_T03_move_field_down.py +0 -44
  453. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T04_delete_existing_field/expected_output/document.sdoc +0 -41
  454. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T04_delete_existing_field/input/document.sdoc +0 -44
  455. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T04_delete_existing_field/test_UC12_T04_delete_existing_field.py +0 -44
  456. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T10_add_field/expected_output/document.sdoc +0 -47
  457. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T10_add_field/input/document.sdoc +0 -12
  458. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T10_add_field/test_UC12_T10_add_field.py +0 -45
  459. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T11_add_field_move_up_save/expected_output/document.sdoc +0 -47
  460. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T11_add_field_move_up_save/input/document.sdoc +0 -12
  461. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T11_add_field_move_up_save/test_UC12_T11_add_field_move_up_save.py +0 -50
  462. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T12_add_field_move_up_and_down_save/expected_output/document.sdoc +0 -47
  463. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T12_add_field_move_up_and_down_save/input/document.sdoc +0 -12
  464. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T12_add_field_move_up_and_down_save/test_UC12_T12_add_field_move_up_and_down_save.py +0 -52
  465. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T13_add_three_fields/expected_output/document.sdoc +0 -53
  466. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T13_add_three_fields/input/document.sdoc +0 -12
  467. strictdoc-0.0.40/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T13_add_three_fields/test_UC12_T13_add_three_fields.py +0 -52
  468. strictdoc-0.0.40/tests/end2end/screens/document/UC20_export_to_reqif/UC20_T1_green_case/document.sdoc +0 -6
  469. strictdoc-0.0.40/tests/end2end/screens/document/UC20_export_to_reqif/UC20_T1_green_case/export.reqif +0 -114
  470. strictdoc-0.0.40/tests/end2end/screens/document/UC20_export_to_reqif/UC20_T1_green_case/test_UC20_T1_green_case.py +0 -49
  471. strictdoc-0.0.40/tests/end2end/screens/table/UC60_view_document/UC60_T01_document_has_no_content/expected_output/document.sdoc +0 -6
  472. strictdoc-0.0.40/tests/end2end/screens/table/UC60_view_document/UC60_T01_document_has_no_content/input/document.sdoc +0 -6
  473. strictdoc-0.0.40/tests/end2end/screens/table/UC60_view_document/UC60_T01_document_has_no_content/test_UC60_T01_document_has_no_content.py +0 -36
  474. strictdoc-0.0.40/tests/end2end/screens/table/UC60_view_document/UC60_T02_document_has_content/expected_output/document.sdoc +0 -11
  475. strictdoc-0.0.40/tests/end2end/screens/table/UC60_view_document/UC60_T02_document_has_content/input/document.sdoc +0 -11
  476. strictdoc-0.0.40/tests/end2end/screens/table/UC60_view_document/UC60_T02_document_has_content/test_UC60_T02_document_has_content.py +0 -36
  477. strictdoc-0.0.40/tests/end2end/screens/traceability/UC30_view_document/UC30_T01_document_has_no_content/expected_output/document.sdoc +0 -6
  478. strictdoc-0.0.40/tests/end2end/screens/traceability/UC30_view_document/UC30_T01_document_has_no_content/input/document.sdoc +0 -6
  479. strictdoc-0.0.40/tests/end2end/screens/traceability/UC30_view_document/UC30_T01_document_has_no_content/test_UC30_T01_document_has_no_content.py +0 -36
  480. strictdoc-0.0.40/tests/end2end/screens/traceability/UC30_view_document/UC30_T02_document_has_content/expected_output/document.sdoc +0 -11
  481. strictdoc-0.0.40/tests/end2end/screens/traceability/UC30_view_document/UC30_T02_document_has_content/input/document.sdoc +0 -11
  482. strictdoc-0.0.40/tests/end2end/screens/traceability/UC30_view_document/UC30_T02_document_has_content/test_UC30_T02_document_has_content.py +0 -36
  483. strictdoc-0.0.40/tests/end2end/sdoc_test_environment.py +0 -53
  484. strictdoc-0.0.40/tests/end2end/server.py +0 -334
  485. strictdoc-0.0.40/tests/integration/backend/excel/export/01_basic_excel_export/expected/input.xlsx +0 -0
  486. strictdoc-0.0.40/tests/integration/backend/excel/export/01_basic_excel_export/input.sdoc +0 -23
  487. strictdoc-0.0.40/tests/integration/backend/excel/export/01_basic_excel_export/test.itest +0 -5
  488. strictdoc-0.0.40/tests/integration/backend/excel/export/02_no_reqs_to_export/input.sdoc +0 -2
  489. strictdoc-0.0.40/tests/integration/backend/excel/export/02_no_reqs_to_export/test.itest +0 -3
  490. strictdoc-0.0.40/tests/integration/backend/excel/export/03_custom_fields_to_export/expected/input.xlsx +0 -0
  491. strictdoc-0.0.40/tests/integration/backend/excel/export/03_custom_fields_to_export/input.sdoc +0 -31
  492. strictdoc-0.0.40/tests/integration/backend/excel/export/03_custom_fields_to_export/test.itest +0 -11
  493. strictdoc-0.0.40/tests/integration/backend/excel/export/04_custom_grammar_fields_to_export_fields_subset/expected/input.xlsx +0 -0
  494. strictdoc-0.0.40/tests/integration/backend/excel/export/04_custom_grammar_fields_to_export_fields_subset/input.sdoc +0 -51
  495. strictdoc-0.0.40/tests/integration/backend/excel/export/04_custom_grammar_fields_to_export_fields_subset/test.itest +0 -6
  496. strictdoc-0.0.40/tests/integration/backend/excel/export/05_custom_grammar_fields_to_export_fields_default/expected/input.xlsx +0 -0
  497. strictdoc-0.0.40/tests/integration/backend/excel/export/05_custom_grammar_fields_to_export_fields_default/input.sdoc +0 -51
  498. strictdoc-0.0.40/tests/integration/backend/excel/export/05_custom_grammar_fields_to_export_fields_default/test.itest +0 -6
  499. strictdoc-0.0.40/tests/integration/backend/excel/export/06_custom_grammar_fields_to_export_fields_all/expected/input.xlsx +0 -0
  500. strictdoc-0.0.40/tests/integration/backend/excel/export/06_custom_grammar_fields_to_export_fields_all/input.sdoc +0 -51
  501. strictdoc-0.0.40/tests/integration/backend/excel/export/06_custom_grammar_fields_to_export_fields_all/test.itest +0 -6
  502. strictdoc-0.0.40/tests/integration/backend/excel/export/07_custom_grammar_fields_to_export_fields_all_special/expected/input.xlsx +0 -0
  503. strictdoc-0.0.40/tests/integration/backend/excel/export/07_custom_grammar_fields_to_export_fields_all_special/input.sdoc +0 -92
  504. strictdoc-0.0.40/tests/integration/backend/excel/export/07_custom_grammar_fields_to_export_fields_all_special/test.itest +0 -6
  505. strictdoc-0.0.40/tests/integration/backend/excel/import/01_import_basic_e2e/expected/expected.sdoc +0 -73
  506. strictdoc-0.0.40/tests/integration/backend/excel/import/01_import_basic_e2e/input.xls +0 -0
  507. strictdoc-0.0.40/tests/integration/backend/excel/import/01_import_basic_e2e/test.itest +0 -3
  508. strictdoc-0.0.40/tests/integration/backend/reqif/ProR/sample.reqif +0 -3966
  509. strictdoc-0.0.40/tests/integration/backend/reqif/ProR/test.itest +0 -4
  510. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/01_minimal_reqif/sample.sdoc +0 -2
  511. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/01_minimal_reqif/test.itest +0 -3
  512. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/02_one_requirement/sample.sdoc +0 -8
  513. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/02_one_requirement/test.itest +0 -3
  514. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/03_one_section_one_requirement/sample.sdoc +0 -13
  515. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/03_one_section_one_requirement/test.itest +0 -3
  516. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/04_one_section_one_subsection_one_requirement/sample.sdoc +0 -18
  517. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/04_one_section_one_subsection_one_requirement/test.itest +0 -3
  518. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/05_two_sections/sample.sdoc +0 -24
  519. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/05_two_sections/test.itest +0 -3
  520. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/06_three_sections/sample.sdoc +0 -35
  521. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/06_three_sections/test.itest +0 -3
  522. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/07_one_nested_section/sample.sdoc +0 -41
  523. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/07_one_nested_section/test.itest +0 -3
  524. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/08_two_nested_sections/sample.sdoc +0 -80
  525. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/08_two_nested_sections/test.itest +0 -3
  526. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/09_next_requirement_drop_in_level/sample.sdoc +0 -24
  527. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/09_next_requirement_drop_in_level/test.itest +0 -3
  528. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/100_export_reqif_header/sample.sdoc +0 -2
  529. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/100_export_reqif_header/test.itest +0 -14
  530. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/10_composite_requirements_not_supported_yet/sample.sdoc +0 -8
  531. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/10_composite_requirements_not_supported_yet/test.itest +0 -2
  532. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/11_exporting_sections_free_text/sample.sdoc +0 -15
  533. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/11_exporting_sections_free_text/test.itest +0 -3
  534. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/12_multiline_statements/sample.sdoc +0 -11
  535. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/12_multiline_statements/test.itest +0 -3
  536. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/13_refs/sample.sdoc +0 -13
  537. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/13_refs/test.itest +0 -3
  538. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/14_document_freetext/sample.sdoc +0 -6
  539. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/14_document_freetext/test.itest +0 -3
  540. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/20_comment_multiple/sample.sdoc +0 -10
  541. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/20_comment_multiple/test.itest +0 -3
  542. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/30_custom_grammar/sample.sdoc +0 -33
  543. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/30_custom_grammar/test.itest +0 -3
  544. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/31_custom_grammar_single_choice_type/sample.sdoc +0 -13
  545. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/31_custom_grammar_single_choice_type/test.itest +0 -3
  546. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/32_custom_grammar_multi_choice_type/sample.sdoc +0 -13
  547. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/32_custom_grammar_multi_choice_type/test.itest +0 -3
  548. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/40_specification_type/sample.sdoc +0 -8
  549. strictdoc-0.0.40/tests/integration/backend/reqif/native/end_to_end/40_specification_type/test.itest +0 -11
  550. strictdoc-0.0.40/tests/integration/backend/reqif/native/examples/01_sample/sample.reqif +0 -4073
  551. strictdoc-0.0.40/tests/integration/backend/reqif/native/examples/01_sample/test.itest +0 -16
  552. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/01_stripping_xhtml_namespaces/sample.reqif +0 -203
  553. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/01_stripping_xhtml_namespaces/test.itest +0 -13
  554. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/02_escaping_symbols/sample.reqif +0 -203
  555. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/02_escaping_symbols/test.itest +0 -13
  556. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/03_xhtml_object_edge_case/sample.reqif +0 -206
  557. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/03_xhtml_object_edge_case/test.itest +0 -16
  558. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/01_user_provided_example/sample.reqif +0 -3804
  559. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/01_user_provided_example/test.itest +0 -13
  560. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/02_user_provided_example_with_changed_requirement_type/sample.reqif +0 -3804
  561. strictdoc-0.0.40/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/02_user_provided_example_with_changed_requirement_type/test.itest +0 -13
  562. strictdoc-0.0.40/tests/integration/cat.py +0 -19
  563. strictdoc-0.0.40/tests/integration/check_exists.py +0 -81
  564. strictdoc-0.0.40/tests/integration/commands/about/01_print_about/test.itest +0 -5
  565. strictdoc-0.0.40/tests/integration/commands/bypass/01-basic-requirement-test/input.sdoc +0 -5
  566. strictdoc-0.0.40/tests/integration/commands/bypass/01-basic-requirement-test/test.itest +0 -3
  567. strictdoc-0.0.40/tests/integration/commands/bypass/01_minimal_document_with_freetext/input.sdoc +0 -6
  568. strictdoc-0.0.40/tests/integration/commands/bypass/01_minimal_document_with_freetext/test.itest +0 -3
  569. strictdoc-0.0.40/tests/integration/commands/bypass/02-basic-composite-requirement-test/input.sdoc +0 -9
  570. strictdoc-0.0.40/tests/integration/commands/bypass/02-basic-composite-requirement-test/test.itest +0 -3
  571. strictdoc-0.0.40/tests/integration/commands/dump-grammar/01_dump_grammar/test.itest +0 -8
  572. strictdoc-0.0.40/tests/integration/commands/export/01_minimal_document/input.sdoc +0 -2
  573. strictdoc-0.0.40/tests/integration/commands/export/01_minimal_document/test.itest +0 -6
  574. strictdoc-0.0.40/tests/integration/commands/export/02_minimal_document_with_freetext/input.sdoc +0 -6
  575. strictdoc-0.0.40/tests/integration/commands/export/02_minimal_document_with_freetext/test.itest +0 -9
  576. strictdoc-0.0.40/tests/integration/commands/export/03_input_dir_has_slash/input.sdoc +0 -6
  577. strictdoc-0.0.40/tests/integration/commands/export/03_input_dir_has_slash/test.itest +0 -9
  578. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input1.sdoc +0 -2
  579. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input10.sdoc +0 -2
  580. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input2.sdoc +0 -2
  581. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input3.sdoc +0 -2
  582. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input4.sdoc +0 -2
  583. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input5.sdoc +0 -2
  584. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input6.sdoc +0 -2
  585. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input7.sdoc +0 -2
  586. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input8.sdoc +0 -2
  587. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/input9.sdoc +0 -2
  588. strictdoc-0.0.40/tests/integration/commands/export/04_parallelization/test.itest +0 -44
  589. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input1.sdoc +0 -2
  590. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input10.sdoc +0 -2
  591. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input2.sdoc +0 -2
  592. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input3.sdoc +0 -2
  593. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input4.sdoc +0 -2
  594. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input5.sdoc +0 -2
  595. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input6.sdoc +0 -2
  596. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input7.sdoc +0 -2
  597. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input8.sdoc +0 -2
  598. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input9.sdoc +0 -2
  599. strictdoc-0.0.40/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/test.itest +0 -37
  600. strictdoc-0.0.40/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input1.sdoc +0 -4
  601. strictdoc-0.0.40/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input2.sdoc +0 -2
  602. strictdoc-0.0.40/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input3.sdoc +0 -2
  603. strictdoc-0.0.40/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input4.sdoc +0 -2
  604. strictdoc-0.0.40/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/test.itest +0 -5
  605. strictdoc-0.0.40/tests/integration/commands/export/07_input_is_single_file/input.sdoc +0 -6
  606. strictdoc-0.0.40/tests/integration/commands/export/07_input_is_single_file/test.itest +0 -9
  607. strictdoc-0.0.40/tests/integration/commands/export/08_finds_document_through_empty_intermediate_folders/input/intermediate/requirements/input.sdoc +0 -2
  608. strictdoc-0.0.40/tests/integration/commands/export/08_finds_document_through_empty_intermediate_folders/test.itest +0 -9
  609. strictdoc-0.0.40/tests/integration/commands/export/09_does_not_find_documents_in_output_folder/input/input.sdoc +0 -2
  610. strictdoc-0.0.40/tests/integration/commands/export/09_does_not_find_documents_in_output_folder/input2.sdoc_ +0 -2
  611. strictdoc-0.0.40/tests/integration/commands/export/09_does_not_find_documents_in_output_folder/test.itest +0 -12
  612. strictdoc-0.0.40/tests/integration/commands/export/html/assets/01_asset_export/_assets/sandbox1.svg +0 -27
  613. strictdoc-0.0.40/tests/integration/commands/export/html/assets/01_asset_export/input.sdoc +0 -13
  614. strictdoc-0.0.40/tests/integration/commands/export/html/assets/01_asset_export/test.itest +0 -10
  615. strictdoc-0.0.40/tests/integration/commands/export/html/assets/02_asset_export_single_sdoc_rel_path/_assets/sandbox1.svg +0 -27
  616. strictdoc-0.0.40/tests/integration/commands/export/html/assets/02_asset_export_single_sdoc_rel_path/input.sdoc +0 -13
  617. strictdoc-0.0.40/tests/integration/commands/export/html/assets/02_asset_export_single_sdoc_rel_path/test.itest +0 -10
  618. strictdoc-0.0.40/tests/integration/commands/export/html/assets/03_asset_export_single_sdoc_full_path/_assets/sandbox1.svg +0 -27
  619. strictdoc-0.0.40/tests/integration/commands/export/html/assets/03_asset_export_single_sdoc_full_path/input.sdoc +0 -13
  620. strictdoc-0.0.40/tests/integration/commands/export/html/assets/03_asset_export_single_sdoc_full_path/test.itest +0 -10
  621. strictdoc-0.0.40/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/_assets/sandbox1.svg +0 -27
  622. strictdoc-0.0.40/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/input.sdoc +0 -6
  623. strictdoc-0.0.40/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/input.ssec +0 -12
  624. strictdoc-0.0.40/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/test.itest +0 -10
  625. strictdoc-0.0.40/tests/integration/commands/export/html/assets/05_asset_export_does_only_when_newer/test.itest +0 -12
  626. strictdoc-0.0.40/tests/integration/commands/export/html/assets/05_asset_export_does_only_when_newer/test_document/_assets/sandbox1.svg +0 -27
  627. strictdoc-0.0.40/tests/integration/commands/export/html/assets/05_asset_export_does_only_when_newer/test_document/input.sdoc +0 -13
  628. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/01_basic_req_to_file_link_full_path/file.py +0 -2
  629. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/01_basic_req_to_file_link_full_path/input.sdoc +0 -10
  630. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/01_basic_req_to_file_link_full_path/test.itest +0 -10
  631. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/02_basic_req_to_file_link_cwd_dot/file.py +0 -2
  632. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/02_basic_req_to_file_link_cwd_dot/input.sdoc +0 -10
  633. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/02_basic_req_to_file_link_cwd_dot/test.itest +0 -11
  634. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/03_basic_req_to_file_link_range/file.py +0 -4
  635. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/03_basic_req_to_file_link_range/input.sdoc +0 -10
  636. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/03_basic_req_to_file_link_range/test.itest +0 -17
  637. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/04_input_is_single_file/file.py +0 -2
  638. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/04_input_is_single_file/input.sdoc +0 -10
  639. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/04_input_is_single_file/test.itest +0 -10
  640. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/file.py +0 -2
  641. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/file2.py +0 -2
  642. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/input.sdoc +0 -12
  643. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/test.itest +0 -15
  644. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/06_prints_file_export_lines/file.py +0 -2
  645. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/06_prints_file_export_lines/input.sdoc +0 -10
  646. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/06_prints_file_export_lines/test.itest +0 -4
  647. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/07_utf8_symbols_in_source_files/file.py +0 -7
  648. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/07_utf8_symbols_in_source_files/input.sdoc +0 -10
  649. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/07_utf8_symbols_in_source_files/test.itest +0 -14
  650. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/08_nosdoc_pragma/file.py +0 -9
  651. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/08_nosdoc_pragma/input.sdoc +0 -10
  652. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/08_nosdoc_pragma/test.itest +0 -8
  653. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/09_files_not_referenced_are_not_generated/file.py +0 -4
  654. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/09_files_not_referenced_are_not_generated/input.sdoc +0 -7
  655. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/09_files_not_referenced_are_not_generated/test.itest +0 -4
  656. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/11_paths_with_windows_backward_slashes/input.sdoc +0 -10
  657. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/11_paths_with_windows_backward_slashes/subdir/file.py +0 -2
  658. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/11_paths_with_windows_backward_slashes/test.itest +0 -18
  659. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/12_basic_req_to_file_link_full_path/file.py +0 -2
  660. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/12_basic_req_to_file_link_full_path/input.sdoc +0 -12
  661. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/12_basic_req_to_file_link_full_path/test.itest +0 -10
  662. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/13_file_link_to_a_file_with_empty_first_string/file.py +0 -3
  663. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/13_file_link_to_a_file_with_empty_first_string/input.sdoc +0 -10
  664. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/13_file_link_to_a_file_with_empty_first_string/test.itest +0 -14
  665. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/file1.py +0 -14
  666. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/file2.py +0 -9
  667. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/input.sdoc +0 -14
  668. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/test.itest +0 -29
  669. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/docs/input.sdoc +0 -14
  670. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/src/file1.py +0 -14
  671. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/src/file2.py +0 -9
  672. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/test.itest +0 -30
  673. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/file1.py +0 -12
  674. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/file2.py +0 -7
  675. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/input.sdoc +0 -14
  676. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/test.itest +0 -19
  677. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/error_handling/01_req_references_non_existing_file/input.sdoc +0 -10
  678. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/error_handling/01_req_references_non_existing_file/test.itest +0 -3
  679. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/error_handling/02_source_file_references_non_existing_req/file.py +0 -4
  680. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/error_handling/02_source_file_references_non_existing_req/input.sdoc +0 -10
  681. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/error_handling/02_source_file_references_non_existing_req/test.itest +0 -4
  682. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/g1_file_types/10_tex/example.sdoc +0 -26
  683. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/g1_file_types/10_tex/file.tex +0 -48
  684. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/g1_file_types/10_tex/test.itest +0 -10
  685. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/g1_file_types/20_jinja/example.sdoc +0 -26
  686. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/g1_file_types/20_jinja/file.jinja2 +0 -5
  687. strictdoc-0.0.40/tests/integration/commands/export/html/file_traceability/g1_file_types/20_jinja/test.itest +0 -14
  688. strictdoc-0.0.40/tests/integration/commands/export/html/grammar/01_custom_field/input.sdoc +0 -49
  689. strictdoc-0.0.40/tests/integration/commands/export/html/grammar/01_custom_field/test.itest +0 -7
  690. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/child.sdoc +0 -10
  691. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/grandchild.sdoc +0 -10
  692. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/parent.sdoc +0 -7
  693. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/test.itest +0 -9
  694. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/child.sdoc +0 -10
  695. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/grandchild.sdoc +0 -10
  696. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/parent.sdoc +0 -7
  697. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/test.itest +0 -9
  698. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/03_when_new_child_generate_parents/child.sdoc +0 -10
  699. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/03_when_new_child_generate_parents/parent.sdoc +0 -7
  700. strictdoc-0.0.40/tests/integration/commands/export/html/incremental_generation/03_when_new_child_generate_parents/test.itest +0 -15
  701. strictdoc-0.0.40/tests/integration/commands/export/html/markup/01_referencing_a_section_with_LINK/input.sdoc +0 -11
  702. strictdoc-0.0.40/tests/integration/commands/export/html/markup/01_referencing_a_section_with_LINK/section.sdoc +0 -8
  703. strictdoc-0.0.40/tests/integration/commands/export/html/markup/01_referencing_a_section_with_LINK/test.itest +0 -11
  704. strictdoc-0.0.40/tests/integration/commands/export/html/mathjax/01_mathjax_enabled/input.sdoc +0 -2
  705. strictdoc-0.0.40/tests/integration/commands/export/html/mathjax/01_mathjax_enabled/test.itest +0 -5
  706. strictdoc-0.0.40/tests/integration/commands/export/html/mathjax/02_mathjax_disabled/input.sdoc +0 -2
  707. strictdoc-0.0.40/tests/integration/commands/export/html/mathjax/02_mathjax_disabled/test.itest +0 -5
  708. strictdoc-0.0.40/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/file.py +0 -2
  709. strictdoc-0.0.40/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/input.sdoc +0 -10
  710. strictdoc-0.0.40/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/strictdoc.toml +0 -5
  711. strictdoc-0.0.40/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/test.itest +0 -7
  712. strictdoc-0.0.40/tests/integration/commands/export/html/rst_markup_to_html/01_table_to_html/input.sdoc +0 -19
  713. strictdoc-0.0.40/tests/integration/commands/export/html/rst_markup_to_html/01_table_to_html/test.itest +0 -11
  714. strictdoc-0.0.40/tests/integration/commands/export/html/source_coverage/01_links_to_files/file.py +0 -2
  715. strictdoc-0.0.40/tests/integration/commands/export/html/source_coverage/01_links_to_files/input.sdoc +0 -10
  716. strictdoc-0.0.40/tests/integration/commands/export/html/source_coverage/01_links_to_files/test.itest +0 -7
  717. strictdoc-0.0.40/tests/integration/commands/export/html/utf8/01_utf8_in_sdoc/input.sdoc +0 -6
  718. strictdoc-0.0.40/tests/integration/commands/export/html/utf8/01_utf8_in_sdoc/test.itest +0 -11
  719. strictdoc-0.0.40/tests/integration/commands/export/html-standalone/01_standalone_without_html/input.sdoc +0 -2
  720. strictdoc-0.0.40/tests/integration/commands/export/html-standalone/01_standalone_without_html/test.itest +0 -14
  721. strictdoc-0.0.40/tests/integration/commands/export/html-standalone/02_standalone_and_html/input.sdoc +0 -2
  722. strictdoc-0.0.40/tests/integration/commands/export/html-standalone/02_standalone_and_html/test.itest +0 -14
  723. strictdoc-0.0.40/tests/integration/commands/export/html-standalone/03_embeds_default_assets/input.sdoc +0 -2
  724. strictdoc-0.0.40/tests/integration/commands/export/html-standalone/03_embeds_default_assets/test.itest +0 -11
  725. strictdoc-0.0.40/tests/integration/commands/export/options/--formats/01_incorrect_format/input.sdoc +0 -2
  726. strictdoc-0.0.40/tests/integration/commands/export/options/--formats/01_incorrect_format/test.itest +0 -3
  727. strictdoc-0.0.40/tests/integration/commands/export/options/--no-parallelization/input1.sdoc +0 -2
  728. strictdoc-0.0.40/tests/integration/commands/export/options/--no-parallelization/input2.sdoc +0 -2
  729. strictdoc-0.0.40/tests/integration/commands/export/options/--no-parallelization/test.itest +0 -29
  730. strictdoc-0.0.40/tests/integration/commands/export/options/--output-dir/01_output_dir_full_path/input.sdoc +0 -6
  731. strictdoc-0.0.40/tests/integration/commands/export/options/--output-dir/01_output_dir_full_path/test.itest +0 -14
  732. strictdoc-0.0.40/tests/integration/commands/export/options/--output-dir/02_output_dir_relative_path/input.sdoc +0 -6
  733. strictdoc-0.0.40/tests/integration/commands/export/options/--output-dir/02_output_dir_relative_path/test.itest +0 -12
  734. strictdoc-0.0.40/tests/integration/commands/export/options/--project-title/01_project_title_not_specified/input.sdoc +0 -6
  735. strictdoc-0.0.40/tests/integration/commands/export/options/--project-title/01_project_title_not_specified/test.itest +0 -5
  736. strictdoc-0.0.40/tests/integration/commands/export/options/--project-title/02_project_title_is_specified/input.sdoc +0 -6
  737. strictdoc-0.0.40/tests/integration/commands/export/options/--project-title/02_project_title_is_specified/test.itest +0 -5
  738. strictdoc-0.0.40/tests/integration/commands/export/rst/01_basic_rst_export/expected/input.rst +0 -1
  739. strictdoc-0.0.40/tests/integration/commands/export/rst/01_basic_rst_export/input.sdoc +0 -6
  740. strictdoc-0.0.40/tests/integration/commands/export/rst/01_basic_rst_export/test.itest +0 -5
  741. strictdoc-0.0.40/tests/integration/commands/export/rst/02_folder_structure_is_preserved_for_nested/expected/input.rst +0 -1
  742. strictdoc-0.0.40/tests/integration/commands/export/rst/02_folder_structure_is_preserved_for_nested/input_folder/input.sdoc +0 -6
  743. strictdoc-0.0.40/tests/integration/commands/export/rst/02_folder_structure_is_preserved_for_nested/test.itest +0 -5
  744. strictdoc-0.0.40/tests/integration/commands/export/rst/04_one_requirement_without_title/expected/input.rst +0 -10
  745. strictdoc-0.0.40/tests/integration/commands/export/rst/04_one_requirement_without_title/input.sdoc +0 -8
  746. strictdoc-0.0.40/tests/integration/commands/export/rst/04_one_requirement_without_title/test.itest +0 -5
  747. strictdoc-0.0.40/tests/integration/commands/export/rst/05_requirement_without_title/expected/input.rst +0 -21
  748. strictdoc-0.0.40/tests/integration/commands/export/rst/05_requirement_without_title/input.sdoc +0 -14
  749. strictdoc-0.0.40/tests/integration/commands/export/rst/05_requirement_without_title/test.itest +0 -5
  750. strictdoc-0.0.40/tests/integration/commands/export/rst/06_requirement_with_title/expected/input.rst +0 -27
  751. strictdoc-0.0.40/tests/integration/commands/export/rst/06_requirement_with_title/input.sdoc +0 -16
  752. strictdoc-0.0.40/tests/integration/commands/export/rst/06_requirement_with_title/test.itest +0 -5
  753. strictdoc-0.0.40/tests/integration/commands/export/rst/07_requirement_comments/expected/input.rst +0 -31
  754. strictdoc-0.0.40/tests/integration/commands/export/rst/07_requirement_comments/input.sdoc +0 -22
  755. strictdoc-0.0.40/tests/integration/commands/export/rst/07_requirement_comments/test.itest +0 -5
  756. strictdoc-0.0.40/tests/integration/commands/export/rst/08_requirement_comments_then_section/expected/input.rst +0 -22
  757. strictdoc-0.0.40/tests/integration/commands/export/rst/08_requirement_comments_then_section/input.sdoc +0 -24
  758. strictdoc-0.0.40/tests/integration/commands/export/rst/08_requirement_comments_then_section/test.itest +0 -5
  759. strictdoc-0.0.40/tests/integration/commands/export/rst/09_requirement_rationale/expected/input.rst +0 -33
  760. strictdoc-0.0.40/tests/integration/commands/export/rst/09_requirement_rationale/input.sdoc +0 -25
  761. strictdoc-0.0.40/tests/integration/commands/export/rst/09_requirement_rationale/test.itest +0 -5
  762. strictdoc-0.0.40/tests/integration/commands/export/rst/10_empty_freetext/expected/input.rst +0 -0
  763. strictdoc-0.0.40/tests/integration/commands/export/rst/10_empty_freetext/input.sdoc +0 -5
  764. strictdoc-0.0.40/tests/integration/commands/export/rst/10_empty_freetext/test.itest +0 -5
  765. strictdoc-0.0.40/tests/integration/commands/export/rst/11_several_freetexts/expected/input.rst +0 -5
  766. strictdoc-0.0.40/tests/integration/commands/export/rst/11_several_freetexts/input.sdoc +0 -14
  767. strictdoc-0.0.40/tests/integration/commands/export/rst/11_several_freetexts/test.itest +0 -5
  768. strictdoc-0.0.40/tests/integration/commands/export/rst/20_custom_field/expected/input.rst +0 -30
  769. strictdoc-0.0.40/tests/integration/commands/export/rst/20_custom_field/input.sdoc +0 -71
  770. strictdoc-0.0.40/tests/integration/commands/export/rst/20_custom_field/test.itest +0 -5
  771. strictdoc-0.0.40/tests/integration/commands/export/rst/30_requirement_references/expected/input.rst +0 -65
  772. strictdoc-0.0.40/tests/integration/commands/export/rst/30_requirement_references/input.sdoc +0 -40
  773. strictdoc-0.0.40/tests/integration/commands/export/rst/30_requirement_references/test.itest +0 -5
  774. strictdoc-0.0.40/tests/integration/commands/export/rst/40_link_to_another_section/expected/input.rst +0 -11
  775. strictdoc-0.0.40/tests/integration/commands/export/rst/40_link_to_another_section/input.sdoc +0 -21
  776. strictdoc-0.0.40/tests/integration/commands/export/rst/40_link_to_another_section/test.itest +0 -5
  777. strictdoc-0.0.40/tests/integration/commands/no_command/01_no_command_no_args/test.itest +0 -3
  778. strictdoc-0.0.40/tests/integration/commands/version/01_print_version/test.itest +0 -4
  779. strictdoc-0.0.40/tests/integration/cp.py +0 -18
  780. strictdoc-0.0.40/tests/integration/diff.py +0 -31
  781. strictdoc-0.0.40/tests/integration/error_handling/03_rst_to_html_conversion_warnings/input.sdoc +0 -15
  782. strictdoc-0.0.40/tests/integration/error_handling/03_rst_to_html_conversion_warnings/test.itest +0 -14
  783. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/01_requirement_exists_in_two_different_docs/input.sdoc +0 -6
  784. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/01_requirement_exists_in_two_different_docs/input2.sdoc +0 -6
  785. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/01_requirement_exists_in_two_different_docs/test.itest +0 -2
  786. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/02_requirement_exists_two_times_in_the_same_doc/input.sdoc +0 -10
  787. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/02_requirement_exists_two_times_in_the_same_doc/test.itest +0 -2
  788. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/03_section_uid_exists_in_two_different_docs/input.sdoc +0 -8
  789. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/03_section_uid_exists_in_two_different_docs/input2.sdoc +0 -8
  790. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/03_section_uid_exists_in_two_different_docs/test.itest +0 -2
  791. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/04_requirement_link_cycles_two_reqs/input.sdoc +0 -16
  792. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/04_requirement_link_cycles_two_reqs/test.itest +0 -4
  793. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/05_requirement_link_cycles_4_reqs/input.sdoc +0 -30
  794. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/05_requirement_link_cycles_4_reqs/test.itest +0 -4
  795. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/06_inline_link_does_not_exist/input.sdoc +0 -11
  796. strictdoc-0.0.40/tests/integration/error_handling/graph_consistency/06_inline_link_does_not_exist/test.itest +0 -2
  797. strictdoc-0.0.40/tests/integration/excel_diff.py +0 -53
  798. strictdoc-0.0.40/tests/integration/expect_exit.py +0 -70
  799. strictdoc-0.0.40/tests/integration/html_markup_validator.py +0 -101
  800. strictdoc-0.0.40/tests/integration/lit.cfg +0 -33
  801. strictdoc-0.0.40/tests/integration/mkdir.py +0 -9
  802. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/01_option_is_on/input.sdoc +0 -17
  803. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/01_option_is_on/test.itest +0 -8
  804. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/02_option_is_off/input.sdoc +0 -20
  805. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/02_option_is_off/test.itest +0 -8
  806. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/03_section_level_is_not_provided_when_automatic_levels_is_off/input.sdoc +0 -13
  807. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/03_section_level_is_not_provided_when_automatic_levels_is_off/test.itest +0 -2
  808. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/04_req_level_not_provided_when_auto_levels_off/input.sdoc +0 -13
  809. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/04_req_level_not_provided_when_auto_levels_off/test.itest +0 -2
  810. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/05_composite_req_level_not_provided_when_auto_levels_off/input.sdoc +0 -19
  811. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/05_composite_req_level_not_provided_when_auto_levels_off/test.itest +0 -2
  812. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/06_option_is_on_but_level_are_provided/input.sdoc +0 -20
  813. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/06_option_is_on_but_level_are_provided/test.itest +0 -4
  814. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/07_includes_w_option_on/input.sdoc +0 -8
  815. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/07_includes_w_option_on/input.ssec +0 -14
  816. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/07_includes_w_option_on/test.itest +0 -8
  817. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/08_includes_w_option_off/input.sdoc +0 -8
  818. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/08_includes_w_option_off/input.ssec +0 -17
  819. strictdoc-0.0.40/tests/integration/options/options_per_document/AUTO_LEVELS/08_includes_w_option_off/test.itest +0 -8
  820. strictdoc-0.0.40/tests/integration/options/options_per_document/MARKUP/01_options_markup_is_default/input.sdoc +0 -6
  821. strictdoc-0.0.40/tests/integration/options/options_per_document/MARKUP/01_options_markup_is_default/test.itest +0 -7
  822. strictdoc-0.0.40/tests/integration/options/options_per_document/MARKUP/02_options_markup_is_text/input.sdoc +0 -9
  823. strictdoc-0.0.40/tests/integration/options/options_per_document/MARKUP/02_options_markup_is_text/test.itest +0 -6
  824. strictdoc-0.0.40/tests/integration/options/options_per_document/MARKUP/03_options_markup_is_html/input.sdoc +0 -8
  825. strictdoc-0.0.40/tests/integration/options/options_per_document/MARKUP/03_options_markup_is_html/test.itest +0 -5
  826. strictdoc-0.0.40/tests/integration/options/options_per_project/features/MATHJAX/01_enabled/input.sdoc +0 -2
  827. strictdoc-0.0.40/tests/integration/options/options_per_project/features/MATHJAX/01_enabled/strictdoc.toml +0 -5
  828. strictdoc-0.0.40/tests/integration/options/options_per_project/features/MATHJAX/01_enabled/test.itest +0 -5
  829. strictdoc-0.0.40/tests/integration/options/options_per_project/features/MATHJAX/02_disabled/input.sdoc +0 -2
  830. strictdoc-0.0.40/tests/integration/options/options_per_project/features/MATHJAX/02_disabled/test.itest +0 -5
  831. strictdoc-0.0.40/tests/integration/options/options_per_project/features/no_options/01_enabled/input.sdoc +0 -2
  832. strictdoc-0.0.40/tests/integration/options/options_per_project/features/no_options/01_enabled/strictdoc.toml +0 -4
  833. strictdoc-0.0.40/tests/integration/options/options_per_project/features/no_options/01_enabled/test.itest +0 -9
  834. strictdoc-0.0.40/tests/integration/options/options_per_project/features/no_options/02_disabled/input.sdoc +0 -2
  835. strictdoc-0.0.40/tests/integration/options/options_per_project/features/no_options/02_disabled/test.itest +0 -10
  836. strictdoc-0.0.40/tests/integration/options/options_per_project/html_assets_strictdoc_dir/01_option_specified/input.sdoc +0 -6
  837. strictdoc-0.0.40/tests/integration/options/options_per_project/html_assets_strictdoc_dir/01_option_specified/strictdoc.toml +0 -2
  838. strictdoc-0.0.40/tests/integration/options/options_per_project/html_assets_strictdoc_dir/01_option_specified/test.itest +0 -12
  839. strictdoc-0.0.40/tests/integration/options/options_per_project/html_assets_strictdoc_dir/02_option_not_specified/input.sdoc +0 -6
  840. strictdoc-0.0.40/tests/integration/options/options_per_project/html_assets_strictdoc_dir/02_option_not_specified/test.itest +0 -12
  841. strictdoc-0.0.40/tests/integration/options/options_per_project/project_title/01_option_specified/input.sdoc +0 -6
  842. strictdoc-0.0.40/tests/integration/options/options_per_project/project_title/01_option_specified/strictdoc.toml +0 -2
  843. strictdoc-0.0.40/tests/integration/options/options_per_project/project_title/01_option_specified/test.itest +0 -6
  844. strictdoc-0.0.40/tests/integration/options/options_per_project/project_title/02_option_not_specified/input.sdoc +0 -6
  845. strictdoc-0.0.40/tests/integration/options/options_per_project/project_title/02_option_not_specified/test.itest +0 -6
  846. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/01_malformed_toml/input.sdoc +0 -6
  847. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/01_malformed_toml/strictdoc.toml +0 -2
  848. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/01_malformed_toml/test.itest +0 -9
  849. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/02_unknown_feature/input.sdoc +0 -6
  850. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/02_unknown_feature/strictdoc.toml +0 -5
  851. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/02_unknown_feature/test.itest +0 -2
  852. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/03_features_not_array/input.sdoc +0 -6
  853. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/03_features_not_array/strictdoc.toml +0 -3
  854. strictdoc-0.0.40/tests/integration/options/options_per_project/validations/03_features_not_array/test.itest +0 -2
  855. strictdoc-0.0.40/tests/integration/options/options_per_section/LEVEL/01_level_is_None/input.sdoc +0 -44
  856. strictdoc-0.0.40/tests/integration/options/options_per_section/LEVEL/01_level_is_None/test.itest +0 -17
  857. strictdoc-0.0.40/tests/integration/options/options_per_section/LEVEL/02_level_is_None_for_requirements/input.sdoc +0 -39
  858. strictdoc-0.0.40/tests/integration/options/options_per_section/LEVEL/02_level_is_None_for_requirements/test.itest +0 -19
  859. strictdoc-0.0.40/tests/integration/per_document_grammar/01_basic_grammar_declaration_and_valid_fields/input.sdoc +0 -29
  860. strictdoc-0.0.40/tests/integration/per_document_grammar/01_basic_grammar_declaration_and_valid_fields/test.itest +0 -11
  861. strictdoc-0.0.40/tests/integration/per_document_grammar/02_several_comments/input.sdoc +0 -23
  862. strictdoc-0.0.40/tests/integration/per_document_grammar/02_several_comments/test.itest +0 -11
  863. strictdoc-0.0.40/tests/integration/per_document_grammar/03_non_required_grammar_fields_are_skipped/input.sdoc +0 -22
  864. strictdoc-0.0.40/tests/integration/per_document_grammar/03_non_required_grammar_fields_are_skipped/test.itest +0 -3
  865. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/multiple_single_choice/01_choice_declaration/input.sdoc +0 -13
  866. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/multiple_single_choice/01_choice_declaration/test.itest +0 -6
  867. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/01_invalid_value/input.sdoc +0 -13
  868. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/01_invalid_value/test.itest +0 -7
  869. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/02_valid_value_but_no_whitespace/input.sdoc +0 -13
  870. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/02_valid_value_but_no_whitespace/test.itest +0 -7
  871. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/single_choice/01_choice_declaration/input.sdoc +0 -13
  872. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/single_choice/01_choice_declaration/test.itest +0 -6
  873. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/single_choice/validation/01_invalid_value/input.sdoc +0 -13
  874. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/single_choice/validation/01_invalid_value/test.itest +0 -7
  875. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/tag/01_tag_declaration/input.sdoc +0 -13
  876. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/tag/01_tag_declaration/test.itest +0 -6
  877. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/tag/validation/01_invalid_value/input.sdoc +0 -13
  878. strictdoc-0.0.40/tests/integration/per_document_grammar/type_system/tag/validation/01_invalid_value/test.itest +0 -7
  879. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/01_unknown_requirement_type/input.sdoc +0 -13
  880. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/01_unknown_requirement_type/test.itest +0 -6
  881. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/02_invalid_field/input.sdoc +0 -13
  882. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/02_invalid_field/test.itest +0 -6
  883. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/03_valid_field_but_incorrect_order/input.sdoc +0 -17
  884. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/03_valid_field_but_incorrect_order/test.itest +0 -7
  885. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/04_missing_required_grammar_field/input.sdoc +0 -16
  886. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/04_missing_required_grammar_field/test.itest +0 -7
  887. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/05_unexpected_field_outside_grammar/input.sdoc +0 -18
  888. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/05_unexpected_field_outside_grammar/test.itest +0 -7
  889. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/06_gef_reference_type_not_allowed/input.sdoc +0 -24
  890. strictdoc-0.0.40/tests/integration/per_document_grammar/validation/06_gef_reference_type_not_allowed/test.itest +0 -7
  891. strictdoc-0.0.40/tests/integration/rm.py +0 -31
  892. strictdoc-0.0.40/tests/integration/self_testing/commands/export/01_strictdoc_smoke_test/test.itest +0 -53
  893. strictdoc-0.0.40/tests/integration/self_testing/commands/export/02_strictdoc_html_markup/test.itest +0 -33
  894. strictdoc-0.0.40/tests/integration/self_testing/commands/export/03_strictdoc_smoke_test_source_files/test.itest +0 -40
  895. strictdoc-0.0.40/tests/integration/self_testing/commands/passthrough/01_hello_world/test.itest +0 -17
  896. strictdoc-0.0.40/tests/integration/touch.py +0 -9
  897. strictdoc-0.0.40/tests/unit/__init__.py +0 -0
  898. strictdoc-0.0.40/tests/unit/conftest.py +0 -8
  899. strictdoc-0.0.40/tests/unit/helpers/test_document_builder.py +0 -72
  900. strictdoc-0.0.40/tests/unit/strictdoc/__init__.py +0 -0
  901. strictdoc-0.0.40/tests/unit/strictdoc/backend/__init__.py +0 -0
  902. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/models/test_requirement.py +0 -53
  903. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/test_dsl_grammars.py +0 -66
  904. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/test_dsl_includes.py +0 -161
  905. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/test_dsl_parent_document_assignment.py +0 -44
  906. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/test_dsl_passthrough.py +0 -1779
  907. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/test_free_text_reader.py +0 -17
  908. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/test_requirement_from_dict.py +0 -46
  909. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc/validations/test_requirement_validations.py +0 -86
  910. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  911. strictdoc-0.0.40/tests/unit/strictdoc/backend/sdoc_source_code/test_dsl_source_file_syntax.py +0 -393
  912. strictdoc-0.0.40/tests/unit/strictdoc/cli/test_cli_arg_parser.py +0 -234
  913. strictdoc-0.0.40/tests/unit/strictdoc/core/test_file_tree.py +0 -40
  914. strictdoc-0.0.40/tests/unit/strictdoc/core/test_level_counter.py +0 -24
  915. strictdoc-0.0.40/tests/unit/strictdoc/core/test_project_config.py +0 -38
  916. strictdoc-0.0.40/tests/unit/strictdoc/core/test_traceability_index.py +0 -322
  917. strictdoc-0.0.40/tests/unit/strictdoc/export/html/renderers/test_text_to_html_fragment_writer.py +0 -20
  918. strictdoc-0.0.40/tests/unit/strictdoc/export/test_rst_to_html_fragment_writer.py +0 -90
  919. strictdoc-0.0.40/tests/unit/strictdoc/helpers/test_rst.py +0 -40
  920. strictdoc-0.0.40/tests/unit/strictdoc/helpers/test_string.py +0 -81
  921. strictdoc-0.0.40/tests/unit/tools/fixtures/001-confluence-html-file-two-sections/001-confluence-html-table-two-sections.html +0 -125
  922. strictdoc-0.0.40/tests/unit/tools/fixtures/002-confluence-html-file-parsing-paragraphs/002-confluence-html-table-parsing-paragraphs.html +0 -64
  923. strictdoc-0.0.40/tests/unit/tools/test_confluence_html_table_import.py +0 -109
  924. strictdoc-0.0.40/tests/unit_server/__init__.py +0 -0
  925. strictdoc-0.0.40/tests/unit_server/conftest.py +0 -8
  926. strictdoc-0.0.40/tests/unit_server/strictdoc/server/01_hello_world/sample.sdoc +0 -10
  927. strictdoc-0.0.40/tests/unit_server/strictdoc/server/01_hello_world/test_01_hello_world.py +0 -27
  928. strictdoc-0.0.40/tests/unit_server/strictdoc/server/02_export_document_to_reqif/sample.sdoc +0 -10
  929. strictdoc-0.0.40/tests/unit_server/strictdoc/server/02_export_document_to_reqif/test_02_export_document_to_reqif.py +0 -44
  930. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/.gitignore +0 -0
  931. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/CHANGELOG.md +0 -0
  932. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/CONTRIBUTING.md +0 -0
  933. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/Dockerfile +0 -0
  934. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/LICENSE +0 -0
  935. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/NOTICE +0 -0
  936. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/README.md +0 -0
  937. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/favicon.ico +0 -0
  938. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/mypy.ini +0 -0
  939. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/requirements.check.txt +0 -0
  940. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/ruff.toml +0 -0
  941. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/__init__.py +0 -0
  942. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/excel/__init__.py +0 -0
  943. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/excel/excel_import.py +0 -0
  944. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/excel/export/__init__.py +0 -0
  945. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/excel/export/excel_generator.py +0 -0
  946. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/excel/import_/__init__.py +0 -0
  947. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
  948. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/__init__.py +0 -0
  949. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/export/__init__.py +0 -0
  950. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/export/sdoc_to_reqif_converter.py +0 -0
  951. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/import_/__init__.py +0 -0
  952. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/import_/reqif_to_sdoc_converter.py +0 -0
  953. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
  954. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +0 -0
  955. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/reqif_export.py +0 -0
  956. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/reqif_import.py +0 -0
  957. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  958. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/__init__.py +0 -0
  959. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/document_reference.py +0 -0
  960. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/error_handling.py +0 -0
  961. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  962. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  963. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  964. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  965. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
  966. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
  967. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
  968. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/include_reader.py +0 -0
  969. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  970. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/constants.py +0 -0
  971. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/document.py +0 -0
  972. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/document_config.py +0 -0
  973. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
  974. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/fragment.py +0 -0
  975. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/fragment_from_file.py +0 -0
  976. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/free_text.py +0 -0
  977. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
  978. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/node.py +0 -0
  979. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
  980. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/reference.py +0 -0
  981. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/requirement.py +0 -0
  982. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/section.py +0 -0
  983. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/type_system.py +0 -0
  984. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/processor.py +0 -0
  985. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/reader.py +0 -0
  986. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  987. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/validations/requirement.py +0 -0
  988. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/writer.py +0 -0
  989. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  990. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
  991. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  992. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/models/range_pragma.py +0 -0
  993. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
  994. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
  995. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/cli/__init__.py +0 -0
  996. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/cli/argument_int_range.py +0 -0
  997. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/cli/cli_arg_parser.py +0 -0
  998. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/cli/main.py +0 -0
  999. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/commands/__init__.py +0 -0
  1000. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/commands/about_command.py +0 -0
  1001. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/commands/dump_grammar_command.py +0 -0
  1002. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/commands/version_command.py +0 -0
  1003. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/__init__.py +0 -0
  1004. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/actions/__init__.py +0 -0
  1005. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/actions/export_action.py +0 -0
  1006. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/actions/import_action.py +0 -0
  1007. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/actions/passthrough_action.py +0 -0
  1008. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/document_finder.py +0 -0
  1009. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/document_iterator.py +0 -0
  1010. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/document_meta.py +0 -0
  1011. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/document_tree.py +0 -0
  1012. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/document_tree_iterator.py +0 -0
  1013. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/environment.py +0 -0
  1014. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/error_message.py +0 -0
  1015. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/file_traceability_index.py +0 -0
  1016. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/file_tree.py +0 -0
  1017. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/finders/__init__.py +0 -0
  1018. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/finders/source_files_finder.py +0 -0
  1019. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/level_counter.py +0 -0
  1020. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/project_config.py +0 -0
  1021. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/source_tree.py +0 -0
  1022. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/traceability_index.py +0 -0
  1023. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/traceability_index_builder.py +0 -0
  1024. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/core/tree_cycle_detector.py +0 -0
  1025. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/__init__.py +0 -0
  1026. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/__init__.py +0 -0
  1027. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
  1028. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
  1029. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
  1030. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/favicon.ico +0 -0
  1031. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/form.css +0 -0
  1032. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/node.css +0 -0
  1033. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  1034. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
  1035. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  1036. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  1037. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/source.css +0 -0
  1038. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/stimulus.js +0 -0
  1039. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/tree.css +0 -0
  1040. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/turbo.js +0 -0
  1041. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  1042. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  1043. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  1044. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  1045. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  1046. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  1047. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  1048. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  1049. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  1050. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  1051. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  1052. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  1053. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  1054. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  1055. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  1056. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  1057. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  1058. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  1059. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  1060. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  1061. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  1062. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  1063. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  1064. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  1065. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  1066. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  1067. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  1068. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/document_type.py +0 -0
  1069. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/document_grammar_form_object.py +0 -0
  1070. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
  1071. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/__init__.py +0 -0
  1072. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/html_generator.py +0 -0
  1073. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/html_templates.py +0 -0
  1074. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/__init__.py +0 -0
  1075. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  1076. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  1077. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  1078. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  1079. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  1080. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  1081. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  1082. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  1083. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  1084. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  1085. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  1086. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  1087. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  1088. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  1089. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  1090. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  1091. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  1092. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  1093. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  1094. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  1095. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  1096. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  1097. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  1098. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  1099. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
  1100. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
  1101. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_block/uid_and_title.jinja.html +0 -0
  1102. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
  1103. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
  1104. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
  1105. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  1106. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  1107. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  1108. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  1109. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_save_document_grammar.jinja.html +0 -0
  1110. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
  1111. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  1112. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
  1113. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
  1114. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  1115. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  1116. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  1117. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  1118. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  1119. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  1120. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  1121. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  1122. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  1123. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  1124. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
  1125. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
  1126. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
  1127. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
  1128. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
  1129. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
  1130. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
  1131. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
  1132. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
  1133. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
  1134. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
  1135. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
  1136. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
  1137. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
  1138. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
  1139. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
  1140. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
  1141. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
  1142. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
  1143. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  1144. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  1145. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
  1146. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  1147. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  1148. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
  1149. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  1150. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  1151. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
  1152. /strictdoc-0.0.40/strictdoc/export/html/templates/_shared/viewtype_menu.jinja.html → /strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
  1153. {strictdoc-0.0.40/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_config.jinja.html +0 -0
  1154. {strictdoc-0.0.40/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_config_edit.jinja.html +0 -0
  1155. {strictdoc-0.0.40/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_grammar_edit_custom_field.jinja.html +0 -0
  1156. /strictdoc-0.0.40/strictdoc/export/html/templates/_shared/requirement_edit_field_comment.jinja → /strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_comment.jinja +0 -0
  1157. /strictdoc-0.0.40/strictdoc/export/html/templates/_shared/requirement_edit_field_parent_link.jinja.html → /strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_parent_link.jinja +0 -0
  1158. {strictdoc-0.0.40/strictdoc/export/html/templates/single_document_traceability_deep → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability_deep}/frame_show_full_requirement.jinja +0 -0
  1159. {strictdoc-0.0.40/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/requirements_coverage/requirement.jinja.html +0 -0
  1160. {strictdoc-0.0.40/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/source_file_view/requirement.jinja +0 -0
  1161. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
  1162. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/tools/__init__.py +0 -0
  1163. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/html/tools/html_embedded.py +0 -0
  1164. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/rst/__init__.py +0 -0
  1165. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/rst/document_rst_generator.py +0 -0
  1166. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/rst/rst_templates.py +0 -0
  1167. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  1168. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/export/rst/writer.py +0 -0
  1169. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/__init__.py +0 -0
  1170. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/auto_described.py +0 -0
  1171. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/file_modification_time.py +0 -0
  1172. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/file_system.py +0 -0
  1173. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/math.py +0 -0
  1174. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/parallelizer.py +0 -0
  1175. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/pickle.py +0 -0
  1176. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/rst.py +0 -0
  1177. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/sorting.py +0 -0
  1178. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/string.py +0 -0
  1179. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/textx.py +0 -0
  1180. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/helpers/timing.py +0 -0
  1181. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/__init__.py +0 -0
  1182. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/app.py +0 -0
  1183. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/config.py +0 -0
  1184. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/error_object.py +0 -0
  1185. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/main.py +0 -0
  1186. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/strictdoc/server/server.py +0 -0
  1187. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/tasks.py +0 -0
  1188. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/tasks_wine.py +0 -0
  1189. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/tools/confluence_html_table_import.py +0 -0
  1190. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/tools/link_health.py +0 -0
  1191. {strictdoc-0.0.40 → strictdoc-0.0.41a0}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strictdoc
3
- Version: 0.0.40
3
+ Version: 0.0.41a0
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/
@@ -5,6 +5,14 @@ build-backend = "hatchling.build"
5
5
  [tool.hatch.version]
6
6
  path = "strictdoc/__init__.py"
7
7
 
8
+ [tool.hatch.build]
9
+ exclude = [
10
+ "/.*",
11
+ "/developer",
12
+ "/docs",
13
+ "/tests",
14
+ ]
15
+
8
16
  #[tool.hatch.build.targets.sdist]
9
17
  #include = [
10
18
  # "/uvicorn",
@@ -1,6 +1,6 @@
1
1
  from strictdoc.core.environment import SDocRuntimeEnvironment
2
2
 
3
- __version__ = "0.0.40"
3
+ __version__ = "0.0.41-alpha"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -49,9 +49,6 @@
49
49
  --base-padding: var(--base-font-size);
50
50
  --base-margin: calc(var(--base-font-size)*1.5);
51
51
 
52
- --toc-width: 300px;
53
- --toc-layout-transition: 0.1s;
54
-
55
52
  --base-elevation-0: 0 0 0 rgba(0,0,0,0);
56
53
  --base-elevation-node: 0 0 16px rgba(0,0,0,.1);
57
54
  --base-elevation-modal: 0 0 32px rgba(0,0,0,.32);
@@ -68,7 +65,7 @@
68
65
 
69
66
  --card-width: 300px;
70
67
 
71
- --base-border: 1px solid rgba(0,0,0,0.1);
68
+ --base-border: 1px solid var(--color-border);
72
69
 
73
70
  --color-red: rgb(200, 0, 0);
74
71
  --color-blue: rgb(50, 100, 200);
@@ -1,3 +1,23 @@
1
+ /* .main */
2
+
3
+ .main {
4
+ padding: var(--base-gap);
5
+ position: relative;
6
+ overflow: auto;
7
+ scroll-behavior: smooth;
8
+ height: 100%;
9
+ background-color: var(--color-bg-main);
10
+ }
11
+
12
+ /* redefine main layout grid */
13
+
14
+ [data-viewtype="source-file"] .main {
15
+ padding: 0;
16
+ background: white;
17
+ }
18
+
19
+ /* .content */
20
+
1
21
  .content {
2
22
  min-width: calc(var(--card-width) + calc(var(--base-padding)*4));
3
23
  }
@@ -5,6 +25,9 @@
5
25
  [data-viewtype="document"] .content {
6
26
  display: block;
7
27
  max-width: 900px;
28
+ margin-bottom: 300px;
29
+ margin-left: auto;
30
+ margin-right: auto;
8
31
  }
9
32
 
10
33
  [data-viewtype="traceability"] .content {
@@ -0,0 +1,225 @@
1
+ // To collapse and expand TOC branches
2
+
3
+ import { Controller } from "/_static/stimulus.js";
4
+
5
+ const ROOT_SELECTOR = 'js-collapsible_list';
6
+ const LIST_SELECTOR = `[${ROOT_SELECTOR}="list"]`;
7
+ const BRANCH_SELECTOR = `collapsible_list__branch`;
8
+ const LIST_DEFAULT = 'open';
9
+ const SYMBOL_MINUS = '-';
10
+ const SYMBOL_PLUS = '+';
11
+
12
+ const STYLE = `
13
+ [data-${BRANCH_SELECTOR}] {
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+ -webkit-box-align: center;
18
+ -webkit-box-pack: center;
19
+ background-clip: padding-box;
20
+ cursor: pointer;
21
+ user-select: none;
22
+ transition: .3s;
23
+ width: 16px;
24
+ height: 16px;
25
+ font-size: 14px;
26
+ font-weight: bold;
27
+ line-height: 0;
28
+ border-radius: 50%;
29
+ color: rgba(0,0,0,0.5);
30
+ box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
31
+ position: absolute;
32
+ top: 0;
33
+ left: -8px;
34
+ }
35
+
36
+ [data-${BRANCH_SELECTOR}]:hover {
37
+ border: 1px solid rgba(0, 0, 0, 0.15);
38
+ box-shadow: rgb(0 0 0 / 15%) 0px 2px 8px 0px;
39
+ color: rgba(0,0,0,1);
40
+ }
41
+
42
+ [data-${BRANCH_SELECTOR}='closed']::before {
43
+ content: '${SYMBOL_PLUS}';
44
+ }
45
+
46
+ [data-${BRANCH_SELECTOR}='open']::before {
47
+ content: '${SYMBOL_MINUS}';
48
+ }
49
+
50
+ [data-${BRANCH_SELECTOR}='closed'] + ul {
51
+ height: 0;
52
+ overflow: hidden;
53
+ }
54
+
55
+ [data-${BRANCH_SELECTOR}='open'] + ul {
56
+ height: auto;
57
+ }
58
+
59
+ [${ROOT_SELECTOR}-bulk] {
60
+ display: flex;
61
+ gap: 8px;
62
+ z-index: 2;
63
+ position: fixed;
64
+ margin-top: -16px;
65
+ margin-left: -8px;
66
+ pointer-events: none;
67
+ padding: 8px;
68
+ background: #F2F5F9;
69
+ box-shadow: #F2F5F9 0px 8px 8px 0px;
70
+ }
71
+ [${ROOT_SELECTOR}-bulk] + ${LIST_SELECTOR} {
72
+ margin-top: 32px;
73
+ }
74
+ [${ROOT_SELECTOR}-bulk] > div {
75
+ cursor: pointer;
76
+ user-select: none;
77
+ transition: .3s;
78
+ width: 16px;
79
+ height: 16px;
80
+ position: relative;
81
+ pointer-events: auto;
82
+ }
83
+
84
+ [${ROOT_SELECTOR}-bulk] > div::before {
85
+ content: attr(data-action);
86
+ display: flex;
87
+ align-items: center;
88
+ justify-content: center;
89
+ -webkit-box-align: center;
90
+ -webkit-box-pack: center;
91
+ background-clip: padding-box;
92
+ width: 16px;
93
+ height: 16px;
94
+ font-size: 14px;
95
+ font-weight: bold;
96
+ line-height: 0;
97
+ border-radius: 50%;
98
+ background: #F2F5F9;
99
+ box-shadow: rgb(0 0 0 / 10%) 0 0px 0px 1px, rgb(0 0 0 / 10%) 2px 1px 1px 0px;
100
+ position: absolute;
101
+ top: 0;
102
+ left: 0;
103
+ z-index: 2;
104
+ }
105
+ [${ROOT_SELECTOR}-bulk] > div:hover::before {
106
+ background: #FFF;
107
+ }
108
+ [${ROOT_SELECTOR}-bulk] > div::after {
109
+ content: '';
110
+ width: 16px;
111
+ height: 16px;
112
+ border-radius: 50%;
113
+ position: absolute;
114
+ box-shadow: rgb(0 0 0 / 15%) 0px 0px 0px 1px;
115
+ top: -2px;
116
+ left: 2px;
117
+ z-index: 1;
118
+ }
119
+ `;
120
+
121
+ Stimulus.register("collapsible_list", class extends Controller {
122
+ static targets = ["name"];
123
+
124
+ initialize() {
125
+ const listElement = document.querySelector(LIST_SELECTOR);
126
+ this.render(listElement)
127
+ }
128
+
129
+ render(listElement) {
130
+ // Processes the list and makes it collapse, if that makes sense
131
+ // (if the expanded list was long and would cause scrolling).
132
+ // Returns the processed list.
133
+ const branchList = prepareList(listElement);
134
+
135
+ // Do it if that makes sense (if there are branches
136
+ // in the list that could in principle be collapsible):
137
+ if (branchList.length > 0) {
138
+ processList(branchList);
139
+ addStyleElement(this.element, STYLE);
140
+
141
+ // Uncomment to add buttons for bulk operations:
142
+ // listElement.before(createBulkHandler(branchList));
143
+ }
144
+ }
145
+
146
+ });
147
+
148
+ function addStyleElement(target, styleTextContent) {
149
+ const style = document.createElement('style');
150
+ style.setAttribute("collapsible-list-style", '');
151
+ style.textContent = styleTextContent;
152
+ target.prepend(style);
153
+ }
154
+
155
+ function prepareList(target) {
156
+ const ulList = [...target.querySelectorAll('ul')];
157
+ const ulHandlerList = ulList.map(
158
+ ul => {
159
+ const parent = ul.parentNode;
160
+ const ulHandler = document.createElement('div');
161
+
162
+ parent.insertBefore(ulHandler, ul);
163
+ // Required:
164
+ parent.style = "position:relative";
165
+ return ulHandler;
166
+ }
167
+ )
168
+ return ulHandlerList;
169
+ }
170
+
171
+ function createBulkHandler(list) {
172
+ const bulk = document.createElement('div');
173
+ bulk.setAttribute(`${ROOT_SELECTOR}-bulk`, '');
174
+
175
+ const bulkPlus = document.createElement('div');
176
+ bulkPlus.dataset.action = SYMBOL_PLUS;
177
+ const bulkMinus = document.createElement('div');
178
+ bulkMinus.dataset.action = SYMBOL_MINUS;
179
+
180
+ // add event listeners
181
+ bulkPlus.addEventListener('click', () => {
182
+ bulkToggle(list, 'closed');
183
+ });
184
+ bulkMinus.addEventListener('click', () => {
185
+ bulkToggle(list, 'open');
186
+ });
187
+
188
+ bulk.append(bulkPlus, bulkMinus);
189
+ return bulk;
190
+ }
191
+
192
+ function processList(list) {
193
+ // This defines how a document is opened:
194
+ // with a collapsed or expanded TOC.
195
+ const storage = sessionStorage.getItem('collapsibleToc');
196
+
197
+ // If there is no information in the storage, we set the default list state.
198
+ const initState = storage || LIST_DEFAULT;
199
+
200
+ list.forEach(item => {
201
+ item.dataset[BRANCH_SELECTOR] = initState;
202
+
203
+ // add event listeners
204
+ item.addEventListener('click', () => {
205
+ toggle(item);
206
+ });
207
+ item.addEventListener('dblclick', () => {
208
+ bulkToggle(list, item.dataset[BRANCH_SELECTOR]);
209
+ });
210
+ })
211
+ }
212
+
213
+ function toggle(item) {
214
+ const oldState = item.dataset[BRANCH_SELECTOR];
215
+ const nextState = (oldState === 'closed') ? 'open' : 'closed';
216
+ item.dataset[BRANCH_SELECTOR] = nextState;
217
+ }
218
+
219
+ function bulkToggle(list, oldState) {
220
+ const nextState = (oldState === 'closed') ? 'open' : 'closed';
221
+ // Add last bulk to local storage:
222
+ sessionStorage.setItem('collapsibleToc', nextState);
223
+ // Update list:
224
+ list.forEach(el => el.dataset[BRANCH_SELECTOR] = nextState);
225
+ }
@@ -24,7 +24,6 @@ Stimulus.register("dropdown_menu", class extends Controller {
24
24
  }
25
25
 
26
26
  registerListEvents(params) {
27
-
28
27
  const toggle = this.element.querySelector(HANDLER_SELECTOR);
29
28
  const content = this.element.querySelector(LIST_SELECTOR);
30
29
 
@@ -43,11 +42,14 @@ Stimulus.register("dropdown_menu", class extends Controller {
43
42
  JSON.parse(toggle.getAttribute('aria-expanded')) ? hide() : show();
44
43
  })
45
44
 
45
+ const buttonList = [...content.querySelectorAll('a')];
46
+ buttonList.forEach(button => {
47
+ button.addEventListener('click', event => hide());
48
+ })
49
+
46
50
  const handleClosure = event => !content.contains(event.target) && hide();
47
51
 
48
52
  window.addEventListener('click', handleClosure);
49
53
  window.addEventListener('focusin', handleClosure);
50
-
51
-
52
54
  }
53
55
  });
@@ -33,7 +33,7 @@ Stimulus.register("editablefield", class extends Controller {
33
33
  hidden.value = text;
34
34
  });
35
35
 
36
- if(isSingle) {
36
+ if (isSingle) {
37
37
  editable.addEventListener('keydown', (event) => {
38
38
  if (event.key === 'Enter') {
39
39
  event.preventDefault();
@@ -0,0 +1,9 @@
1
+ import { Controller } from "/_static/stimulus.js";
2
+
3
+ Stimulus.register("scroll_into_view", class extends Controller {
4
+ connect() {
5
+ // console.log(this.element)
6
+ // this.element.scrollIntoViewIfNeeded()
7
+ this.element.scrollIntoView()
8
+ }
9
+ });
@@ -4,6 +4,11 @@
4
4
  text-decoration: none;
5
5
  }
6
6
 
7
+ svg {
8
+ /* Disable shrinking of icons in flex strings */
9
+ flex-shrink: 0;
10
+ }
11
+
7
12
  /* a */
8
13
 
9
14
  a {
@@ -45,7 +50,9 @@ a[aria-disabled="true"] {
45
50
 
46
51
  .actions_group {
47
52
  display: flex;
48
- column-gap: var(--base-rhythm);
53
+ /* header context: */
54
+ column-gap: calc(var(--base-rhythm)/2);
55
+ margin-left: auto;
49
56
  }
50
57
 
51
58
  .action_button,
@@ -363,24 +370,13 @@ svg.svg_icon {
363
370
  height: calc(var(--base-rhythm)*6);
364
371
  display: flex;
365
372
  align-items: center;
366
- column-gap: var(--base-rhythm);
373
+ justify-content: flex-start;
374
+ /* column-gap: var(--base-rhythm); */
375
+ column-gap: calc(var(--base-rhythm)/2);
376
+ padding-left: calc(var(--base-rhythm)*2);
367
377
  padding-right: var(--base-rhythm);
368
378
  border-bottom: var(--base-border);
369
- }
370
-
371
- .header__r {
372
- margin-left: auto;
373
- }
374
-
375
- .header__document {
376
- display: inline-flex;
377
- align-items: center;
378
- justify-content: center;
379
- padding: 0 var(--base-rhythm);
380
- padding-left: calc(var(--base-rhythm)*2);
381
- column-gap: calc(var(--base-rhythm)/2);
382
379
  min-width: 0;
383
- line-height: 1.5;
384
380
  }
385
381
 
386
382
  .header__document_title {
@@ -388,17 +384,9 @@ svg.svg_icon {
388
384
  white-space: nowrap;
389
385
  text-overflow: ellipsis;
390
386
  font-size: var(--font-size-sm);
391
- font-weight: 700;
392
- }
387
+ font-weight: 900;
393
388
 
394
- .header__project {
395
- display: inline-flex;
396
- align-items: center;
397
- justify-content: center;
398
- padding: 0 var(--base-rhythm);
399
- padding-left: calc(var(--base-rhythm)*2);
400
- column-gap: calc(var(--base-rhythm)/2);
401
- min-width: 0;
389
+ flex-shrink: 0.1;
402
390
  }
403
391
 
404
392
  .header__project_name {
@@ -406,7 +394,10 @@ svg.svg_icon {
406
394
  white-space: nowrap;
407
395
  text-overflow: ellipsis;
408
396
  font-size: var(--font-size-sm);
409
- font-weight: 700;
397
+ font-weight: 500;
398
+ min-width: calc(var(--base-rhythm)*2.5);
399
+
400
+ flex-shrink: 100;
410
401
  }
411
402
 
412
403
  /* .footer */
@@ -646,139 +637,52 @@ sdoc-menu-handler[aria-expanded="true"] svg {
646
637
  margin-bottom: calc(var(--base-rhythm)*2);
647
638
  }
648
639
 
649
- /* toc */
650
-
651
- .toc_panel {
652
- --toc_panel__controls-height: calc(var(--base-rhythm)*6);
653
-
654
- position: relative;
655
- height: 100%;
656
- }
657
-
658
- .toc_handler {
659
- cursor: pointer;
660
- user-select: none;
661
- margin-right: auto;
640
+ /* tree */
662
641
 
663
- position: absolute;
664
- z-index: 10;
665
- }
666
-
667
- .toc_panel__header {
668
- font-size: var(--font-size-xsm);
669
- white-space: nowrap;
670
- margin-right: auto;
671
- margin-left: calc(var(--base-rhythm)*6);
642
+ .tree {
643
+ display: flex;
644
+ flex-direction: column;
645
+ justify-content: flex-start;
646
+ align-items: flex-start;
647
+ gap: var(--base-rhythm);
648
+ padding-top: var(--base-rhythm);
672
649
  }
673
650
 
674
- .toc_panel__content {
675
- height: 100%;
676
- overflow-y: scroll;
677
-
678
- min-width: 250px;
679
-
680
- border-right: var(--base-border);
681
- padding: calc(var(--base-rhythm)*8) calc(var(--base-rhythm)*2);
682
-
651
+ a.tree_item,
652
+ .tree_item {
653
+ display: flex;
654
+ align-items: flex-start;
655
+ justify-content: flex-start;
656
+ column-gap: var(--base-rhythm);
683
657
  font-size: var(--font-size-sm);
684
-
685
- transition: margin-left .5s;
686
- scrollbar-color: transparent var(--scrollbarBG);
687
- }
688
-
689
- .toc_panel__content:hover {
690
- scrollbar-color: var(--thumbBG) var(--scrollbarBG);
691
- }
692
-
693
- .toc_panel__content::-webkit-scrollbar-thumb {
694
- background-color: transparent;
695
- }
696
-
697
- .toc_panel__content:hover::-webkit-scrollbar-thumb {
698
- background-color: var(--thumbBG)
699
- }
700
-
701
- [data-toc_state="close"] .toc_panel__content {
702
- width: 250px;
703
- margin-left: -333px;
704
- }
705
-
706
- [data-toc_state="open"] .toc_panel__content {
707
- width: auto;
708
- margin-left: 0;
709
- }
710
-
711
- [data-toc_state="close"] .toc_panel__overlay {
712
- display: none;
713
- }
714
-
715
- [data-toc_state="open"] .toc_panel__overlay {
716
- display: block;
717
- }
718
-
719
- [data-toc_state="open"] .toc_handler {
720
- color: rgba(0,0,0,0.3);
658
+ min-width: 0;
659
+ line-height: 1.5;
660
+ width: 99%; /* To calculate cite overflow */
721
661
  }
722
662
 
723
- [data-toc_state="close"] .toc_handler line.arrw,
724
- [data-toc_state="open"] .toc_handler line.horz {
725
- display: none;
663
+ a.tree_item:hover {
664
+ /* color: var(--color-bg-main);
665
+ fill: var(--color-bg-main); */
726
666
  }
727
667
 
728
- .toc_handler:hover {
668
+ .tree_item[active] {
729
669
  color: var(--color-fg-contrast);
730
670
  }
731
671
 
732
- .toc_panel__overlay {
733
- position: absolute;
734
- z-index: 2;
735
- top: 0;
736
-
737
- left: 0;
738
- width: 100%;
739
- height: 100%;
740
- /* overflow: hidden; */
741
- /* scrollbar-gutter: stable; */
742
- overflow-y: scroll;
743
- overflow-x: hidden;
744
-
745
- pointer-events: none;
746
- }
747
-
748
- .toc_panel__overlay::after,
749
- .toc_panel__overlay::before {
750
- content: '';
751
- position: absolute;
752
- left: 0;
753
- right: 0;
754
-
755
- pointer-events: none;
756
- }
757
-
758
- .toc_panel__overlay::before {
759
- top: 0;
760
- height: calc(var(--toc_panel__controls-height)*2);
761
- background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-main) 50%, transparent 70%, transparent 100%);
762
- }
763
-
764
- .toc_panel__overlay::after {
765
- bottom: 0;
766
- height: var(--toc_panel__controls-height);
767
- background: linear-gradient(0deg, var(--color-bg-main) 0%, transparent 100%);
672
+ .document_title {
673
+ font-size: var(--font-size-sm);
674
+ font-weight: 700;
675
+ width: 99%; /* To calculate cite overflow */
768
676
  }
769
677
 
770
- .toc_panel__control {
771
- position: absolute;
772
- pointer-events: all;
773
-
774
- display: flex;
775
- justify-content: flex-end;
776
- align-items: center;
777
- column-gap: var(--base-rhythm);
778
- padding-right: var(--base-rhythm);
779
- width: 100%;
780
- height: var(--toc_panel__controls-height);
781
- background-color: var(--color-bg-main);
678
+ .document_title[data-file_name]::after {
679
+ content: attr(data-file_name);
680
+ display: block;
681
+ text-overflow: ellipsis;
682
+ overflow: hidden;
683
+ width: 99%; /* To calculate cite overflow */
684
+ font-weight:400;
685
+ opacity:0.6;
782
686
  }
783
687
 
784
688
  /* toc */