strictdoc 0.2.1__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (537) hide show
  1. {strictdoc-0.2.1 → strictdoc-0.4.0}/.gitignore +0 -2
  2. {strictdoc-0.2.1 → strictdoc-0.4.0}/PKG-INFO +6 -3
  3. {strictdoc-0.2.1 → strictdoc-0.4.0}/pyproject.toml +1 -1
  4. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/__init__.py +1 -1
  5. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/grammar/grammar.py +1 -0
  6. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/document_config.py +4 -1
  7. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/section.py +1 -1
  8. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/caching_reader.py +25 -9
  9. strictdoc-0.4.0/strictdoc/backend/sdoc_source_code/constants.py +7 -0
  10. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/grammar.py +2 -2
  11. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/marker_parser.py +8 -4
  12. strictdoc-0.4.0/strictdoc/backend/sdoc_source_code/models/function.py +45 -0
  13. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/models/function_range_marker.py +6 -3
  14. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/models/range_marker.py +1 -1
  15. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +8 -3
  16. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/reader.py +3 -1
  17. strictdoc-0.4.0/strictdoc/backend/sdoc_source_code/reader_c.py +407 -0
  18. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/reader_python.py +15 -8
  19. strictdoc-0.4.0/strictdoc/backend/sdoc_source_code/tree_sitter_helpers.py +38 -0
  20. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/cli/cli_arg_parser.py +1 -1
  21. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/cli/command_parser_builder.py +1 -0
  22. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/actions/export_action.py +13 -0
  23. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/document_tree.py +3 -2
  24. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/file_traceability_index.py +136 -15
  25. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/file_tree.py +1 -1
  26. strictdoc-0.4.0/strictdoc/core/finders/source_files_finder.py +79 -0
  27. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/project_config.py +29 -1
  28. strictdoc-0.2.1/strictdoc/core/finders/source_files_finder.py → strictdoc-0.4.0/strictdoc/core/source_tree.py +19 -76
  29. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/traceability_index.py +20 -4
  30. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/traceability_index_builder.py +19 -12
  31. strictdoc-0.4.0/strictdoc/export/doxygen/doxygen_generator.py +63 -0
  32. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/document.py +3 -0
  33. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/document_deep_trace.py +3 -0
  34. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/document_pdf.py +3 -0
  35. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/document_table.py +3 -0
  36. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/document_trace.py +3 -0
  37. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/project_statistics.py +8 -2
  38. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/source_file_view_generator.py +1 -1
  39. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +32 -0
  40. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +1 -1
  41. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +1 -1
  42. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/html_generator.py +11 -3
  43. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/renderers/link_renderer.py +18 -1
  44. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +16 -2
  45. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +1 -1
  46. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html2pdf/html2pdf_generator.py +4 -0
  47. strictdoc-0.4.0/strictdoc/helpers/git_client.py +102 -0
  48. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/string.py +10 -0
  49. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/app.py +8 -1
  50. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/routers/main_router.py +17 -0
  51. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/server.py +13 -10
  52. strictdoc-0.4.0/tests/integration/scripting_examples/questionnaires/02_user_provided_example/LICENSE +21 -0
  53. strictdoc-0.2.1/strictdoc/backend/sdoc_source_code/models/function.py +0 -20
  54. strictdoc-0.2.1/strictdoc/backend/sdoc_source_code/reader_c.py +0 -209
  55. strictdoc-0.2.1/strictdoc/backend/sdoc_source_code/tree_sitter_helpers.py +0 -18
  56. strictdoc-0.2.1/strictdoc/core/source_tree.py +0 -13
  57. strictdoc-0.2.1/strictdoc/helpers/git_client.py +0 -29
  58. {strictdoc-0.2.1 → strictdoc-0.4.0}/LICENSE +0 -0
  59. {strictdoc-0.2.1 → strictdoc-0.4.0}/NOTICE +0 -0
  60. {strictdoc-0.2.1 → strictdoc-0.4.0}/README.md +0 -0
  61. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/__init__.py +0 -0
  62. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/excel/__init__.py +0 -0
  63. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/excel/excel_import.py +0 -0
  64. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/excel/export/__init__.py +0 -0
  65. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/excel/export/excel_generator.py +0 -0
  66. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/excel/import_/__init__.py +0 -0
  67. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
  68. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/__init__.py +0 -0
  69. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
  70. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +0 -0
  71. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
  72. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/reqif_export.py +0 -0
  73. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/reqif_import.py +0 -0
  74. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
  75. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/__init__.py +0 -0
  76. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/constants.py +0 -0
  77. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/document_reference.py +0 -0
  78. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/error_handling.py +0 -0
  79. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
  80. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
  81. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
  82. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
  83. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
  84. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +0 -0
  85. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
  86. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
  87. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/__init__.py +0 -0
  88. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/anchor.py +0 -0
  89. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/any_node.py +0 -0
  90. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/constants.py +0 -0
  91. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/document.py +0 -0
  92. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/document_from_file.py +0 -0
  93. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
  94. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/document_view.py +0 -0
  95. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/free_text.py +0 -0
  96. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
  97. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/node.py +0 -0
  98. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/object.py +0 -0
  99. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
  100. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/reference.py +0 -0
  101. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/models/type_system.py +0 -0
  102. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
  103. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/processor.py +0 -0
  104. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/reader.py +0 -0
  105. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
  106. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -0
  107. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc/writer.py +0 -0
  108. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
  109. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
  110. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
  111. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/parse_context.py +0 -0
  112. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/backend/sdoc_source_code/processors/general_language_marker_processors.py +0 -0
  113. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/cli/__init__.py +0 -0
  114. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/cli/argument_int_range.py +0 -0
  115. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/cli/main.py +0 -0
  116. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/commands/__init__.py +0 -0
  117. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/commands/about_command.py +0 -0
  118. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/commands/diff_command.py +0 -0
  119. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/commands/dump_grammar_command.py +0 -0
  120. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/commands/manage_autouid_command.py +0 -0
  121. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/commands/version_command.py +0 -0
  122. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/__init__.py +0 -0
  123. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/actions/__init__.py +0 -0
  124. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/actions/import_action.py +0 -0
  125. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/analyzers/document_stats.py +0 -0
  126. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
  127. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/asset_manager.py +0 -0
  128. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/document_finder.py +0 -0
  129. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/document_iterator.py +0 -0
  130. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/document_meta.py +0 -0
  131. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/document_tree_iterator.py +0 -0
  132. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/environment.py +0 -0
  133. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/finders/__init__.py +0 -0
  134. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/graph/abstract_bucket.py +0 -0
  135. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/graph/many_to_many_set.py +0 -0
  136. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
  137. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/graph/validations.py +0 -0
  138. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/graph_database.py +0 -0
  139. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/query_engine/grammar.py +0 -0
  140. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/query_engine/query_object.py +0 -0
  141. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/query_engine/query_reader.py +0 -0
  142. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/constants.py +0 -0
  143. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/create_requirement.py +0 -0
  144. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/delete_requirement.py +0 -0
  145. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/delete_section.py +0 -0
  146. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/section.py +0 -0
  147. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/update_document_config.py +0 -0
  148. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/update_grammar.py +0 -0
  149. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/update_grammar_element.py +0 -0
  150. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/update_included_document.py +0 -0
  151. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/update_requirement.py +0 -0
  152. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/transforms/validation_error.py +0 -0
  153. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/core/tree_cycle_detector.py +0 -0
  154. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/__init__.py +0 -0
  155. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/__init__.py +0 -0
  156. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/autogen.css +0 -0
  157. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/base.css +0 -0
  158. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/collapsible_list.js +0 -0
  159. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
  160. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
  161. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/content.css +0 -0
  162. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
  163. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
  164. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
  165. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
  166. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
  167. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
  168. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
  169. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
  170. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
  171. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
  172. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/diff.css +0 -0
  173. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/diff.js +0 -0
  174. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/element.css +0 -0
  175. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/favicon.ico +0 -0
  176. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
  177. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
  178. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
  179. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/form.css +0 -0
  180. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
  181. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/layout.css +0 -0
  182. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/node.css +0 -0
  183. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/pan_with_space.js +0 -0
  184. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/project_tree.css +0 -0
  185. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/project_tree.js +0 -0
  186. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/requirement-tree.css +0 -0
  187. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/requirement.css +0 -0
  188. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
  189. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
  190. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/resizable_bar.js +0 -0
  191. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
  192. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/source.css +0 -0
  193. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/stimulus.min.js +0 -0
  194. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/table_vew.css +0 -0
  195. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
  196. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
  197. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
  198. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/turbo.min.js +0 -0
  199. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
  200. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static/zoomable.js +0 -0
  201. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
  202. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
  203. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  204. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  205. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  206. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  207. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  208. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  209. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  210. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  211. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  212. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  213. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  214. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  215. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  216. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  217. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  218. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  219. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  220. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  221. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  222. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  223. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  224. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  225. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  226. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
  227. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
  228. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
  229. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
  230. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/document_type.py +0 -0
  231. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
  232. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/form_object.py +0 -0
  233. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/grammar_element_form_object.py +0 -0
  234. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
  235. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/included_document_form_object.py +0 -0
  236. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/requirement_form_object.py +0 -0
  237. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
  238. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
  239. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/__init__.py +0 -0
  240. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/document_tree.py +0 -0
  241. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
  242. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
  243. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
  244. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
  245. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +0 -0
  246. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
  247. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
  248. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
  249. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -0
  250. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/html_templates.py +0 -0
  251. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/renderers/__init__.py +0 -0
  252. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
  253. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
  254. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
  255. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
  256. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
  257. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
  258. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
  259. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
  260. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
  261. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
  262. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
  263. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
  264. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
  265. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
  266. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
  267. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
  268. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
  269. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
  270. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
  271. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
  272. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
  273. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
  274. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
  275. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
  276. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
  277. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
  278. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
  279. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
  280. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
  281. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
  282. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
  283. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
  284. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
  285. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
  286. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
  287. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
  288. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
  289. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
  290. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
  291. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
  292. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
  293. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
  294. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
  295. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
  296. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
  297. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
  298. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
  299. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
  300. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
  301. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
  302. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
  303. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
  304. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
  305. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
  306. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
  307. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
  308. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
  309. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
  310. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
  311. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
  312. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
  313. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
  314. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
  315. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
  316. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
  317. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
  318. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
  319. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
  320. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
  321. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
  322. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
  323. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
  324. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
  325. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
  326. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
  327. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/base.jinja.html +0 -0
  328. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
  329. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
  330. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
  331. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
  332. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
  333. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
  334. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
  335. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
  336. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
  337. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
  338. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
  339. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
  340. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
  341. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
  342. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
  343. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
  344. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
  345. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
  346. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
  347. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
  348. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
  349. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
  350. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
  351. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
  352. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
  353. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
  354. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
  355. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
  356. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
  357. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
  358. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
  359. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
  360. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
  361. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
  362. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
  363. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
  364. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
  365. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
  366. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
  367. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
  368. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
  369. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
  370. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
  371. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
  372. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +0 -0
  373. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
  374. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -0
  375. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/links/index.jinja +0 -0
  376. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +0 -0
  377. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +0 -0
  378. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +0 -0
  379. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +0 -0
  380. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +0 -0
  381. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +0 -0
  382. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +0 -0
  383. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
  384. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/title/index.jinja +0 -0
  385. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -0
  386. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +0 -0
  387. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
  388. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
  389. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
  390. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
  391. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
  392. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
  393. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
  394. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
  395. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
  396. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
  397. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
  398. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
  399. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
  400. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
  401. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
  402. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
  403. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
  404. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
  405. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
  406. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
  407. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
  408. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
  409. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
  410. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
  411. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
  412. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
  413. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
  414. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
  415. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
  416. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
  417. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
  418. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
  419. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
  420. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
  421. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
  422. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
  423. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
  424. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
  425. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
  426. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
  427. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
  428. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -0
  429. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
  430. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
  431. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
  432. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
  433. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
  434. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
  435. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
  436. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
  437. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
  438. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
  439. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
  440. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
  441. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
  442. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
  443. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
  444. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
  445. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
  446. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
  447. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
  448. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
  449. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
  450. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
  451. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
  452. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
  453. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
  454. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
  455. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
  456. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
  457. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
  458. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/nestor/index.jinja +0 -0
  459. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
  460. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
  461. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
  462. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
  463. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
  464. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
  465. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
  466. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
  467. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
  468. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
  469. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
  470. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
  471. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
  472. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
  473. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
  474. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
  475. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
  476. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
  477. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
  478. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
  479. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
  480. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
  481. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
  482. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
  483. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
  484. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
  485. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
  486. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
  487. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
  488. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
  489. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
  490. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/tools/__init__.py +0 -0
  491. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html/tools/html_embedded.py +0 -0
  492. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html2pdf/html2pdf.py +0 -0
  493. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
  494. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/json/json_generator.py +0 -0
  495. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/__init__.py +0 -0
  496. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
  497. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
  498. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/document_rst_generator.py +0 -0
  499. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/rst_templates.py +0 -0
  500. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
  501. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
  502. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/rst/writer.py +0 -0
  503. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/spdx/spdx_generator.py +0 -0
  504. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
  505. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
  506. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/git/change.py +0 -0
  507. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/git/change_generator.py +0 -0
  508. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/git/git_client.py +0 -0
  509. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/git/project_diff_analyzer.py +0 -0
  510. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/__init__.py +0 -0
  511. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/auto_described.py +0 -0
  512. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/cast.py +0 -0
  513. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/diff.py +0 -0
  514. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/exception.py +0 -0
  515. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/file_modification_time.py +0 -0
  516. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/file_system.py +0 -0
  517. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/form_data.py +0 -0
  518. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/math.py +0 -0
  519. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/md5.py +0 -0
  520. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/mid.py +0 -0
  521. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/ordered_set.py +0 -0
  522. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/parallelizer.py +0 -0
  523. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/path_filter.py +0 -0
  524. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/paths.py +0 -0
  525. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/pickle.py +0 -0
  526. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/rst.py +0 -0
  527. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/sha256.py +0 -0
  528. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/shard.py +0 -0
  529. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/sorting.py +0 -0
  530. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/textx.py +0 -0
  531. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/helpers/timing.py +0 -0
  532. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/__init__.py +0 -0
  533. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/config.py +0 -0
  534. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/error_object.py +0 -0
  535. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/helpers/turbo.py +0 -0
  536. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/main.py +0 -0
  537. {strictdoc-0.2.1 → strictdoc-0.4.0}/strictdoc/server/routers/other_router.py +0 -0
@@ -43,8 +43,6 @@ latest_logs/
43
43
  # Files downloaded during tests are stored here.
44
44
  downloaded_files/
45
45
 
46
- ### StrictDoc's documentation ###
47
- strictdoc-project.github.io/
48
46
 
49
47
  ### StrictDoc's developer test ###
50
48
  __*.sdoc
@@ -1,11 +1,14 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: strictdoc
3
- Version: 0.2.1
3
+ Version: 0.4.0
4
4
  Summary: StrictDoc is open-source software for technical documentation and requirements management.
5
5
  Project-URL: Changelog, https://github.com/strictdoc-project/strictdoc/blob/main/CHANGELOG.md
6
6
  Project-URL: Homepage, https://strictdoc.readthedocs.io/en/stable/
7
7
  Project-URL: Source, https://github.com/strictdoc-project/strictdoc
8
8
  Author-email: Stanislav Pankevich <s.pankevich@gmail.com>, Maryna Balioura <mettta@gmail.com>
9
+ License-Expression: Apache-2.0
10
+ License-File: LICENSE
11
+ License-File: NOTICE
9
12
  Classifier: License :: OSI Approved :: BSD License
10
13
  Classifier: Operating System :: OS Independent
11
14
  Classifier: Programming Language :: Python :: 3
@@ -31,7 +34,7 @@ Requires-Dist: spdx-tools
31
34
  Requires-Dist: textx==3.*,>=3.0.0
32
35
  Requires-Dist: toml
33
36
  Requires-Dist: tree-sitter
34
- Requires-Dist: tree-sitter-c
37
+ Requires-Dist: tree-sitter-cpp
35
38
  Requires-Dist: tree-sitter-python
36
39
  Requires-Dist: uvicorn[standard]>=0.14.0
37
40
  Requires-Dist: webdriver-manager
@@ -58,7 +58,7 @@ dependencies = [
58
58
 
59
59
  # Tree Sitter is used for language/AST-aware parsing of Python, C and other files.
60
60
  "tree-sitter",
61
- "tree-sitter-c",
61
+ "tree_sitter_cpp",
62
62
  "tree-sitter-python",
63
63
 
64
64
  # Requirements-to-source traceability. Colored syntax for source files.
@@ -1,6 +1,6 @@
1
1
  from strictdoc.core.environment import SDocRuntimeEnvironment
2
2
 
3
- __version__ = "0.2.1"
3
+ __version__ = "0.4.0"
4
4
 
5
5
 
6
6
  environment = SDocRuntimeEnvironment(__file__)
@@ -70,6 +70,7 @@ SDocDocument[noskipws]:
70
70
  DocumentConfig[noskipws]:
71
71
  ('UID: ' uid = /{REGEX_UID}/ '\n')?
72
72
  ('VERSION: ' version = SingleLineString '\n')?
73
+ ('DATE: ' date = SingleLineString '\n')?
73
74
  ('CLASSIFICATION: ' classification = SingleLineString '\n')?
74
75
  ('REQ_PREFIX: ' requirement_prefix = SingleLineString '\n')?
75
76
  ('ROOT: ' (root = BooleanChoice) '\n')?
@@ -5,12 +5,13 @@ from strictdoc.helpers.auto_described import auto_described
5
5
 
6
6
 
7
7
  @auto_described
8
- class DocumentConfig: # pylint: disable=too-many-instance-attributes
8
+ class DocumentConfig:
9
9
  @staticmethod
10
10
  def default_config(document) -> "DocumentConfig":
11
11
  return DocumentConfig(
12
12
  parent=document,
13
13
  version=None,
14
+ date=None,
14
15
  uid=None,
15
16
  classification=None,
16
17
  requirement_prefix=None,
@@ -29,6 +30,7 @@ class DocumentConfig: # pylint: disable=too-many-instance-attributes
29
30
  *,
30
31
  parent,
31
32
  version: Optional[str],
33
+ date: Optional[str],
32
34
  uid: Optional[str],
33
35
  classification: Optional[str],
34
36
  requirement_prefix: Optional[str],
@@ -43,6 +45,7 @@ class DocumentConfig: # pylint: disable=too-many-instance-attributes
43
45
  ) -> None:
44
46
  self.parent = parent
45
47
  self.version: Optional[str] = version
48
+ self.date: Optional[str] = date
46
49
 
47
50
  meaningful_uid: Optional[str] = None
48
51
  if uid is not None and len(uid) > 0:
@@ -20,7 +20,7 @@ class SectionContext:
20
20
 
21
21
 
22
22
  @auto_described
23
- class SDocSection(SDocObject): # pylint: disable=too-many-instance-attributes
23
+ class SDocSection(SDocObject):
24
24
  def __init__(
25
25
  self,
26
26
  parent,
@@ -1,4 +1,4 @@
1
- from typing import Union
1
+ from typing import Optional, Union
2
2
 
3
3
  from strictdoc.backend.sdoc.pickle_cache import PickleCache
4
4
  from strictdoc.backend.sdoc_source_code.models.source_file_info import (
@@ -20,7 +20,7 @@ class SourceFileTraceabilityCachingReader:
20
20
  @staticmethod
21
21
  def read_from_file(
22
22
  path_to_file: str, project_config: ProjectConfig
23
- ) -> SourceFileTraceabilityInfo:
23
+ ) -> Optional[SourceFileTraceabilityInfo]:
24
24
  unpickled_content = PickleCache.read_from_cache(
25
25
  path_to_file, project_config, "source_file"
26
26
  )
@@ -34,12 +34,21 @@ class SourceFileTraceabilityCachingReader:
34
34
  reader = SourceFileTraceabilityCachingReader._get_reader(
35
35
  path_to_file, project_config
36
36
  )
37
- traceability_info: SourceFileTraceabilityInfo = reader.read_from_file(
38
- path_to_file
39
- )
40
- PickleCache.save_to_cache(
41
- traceability_info, path_to_file, project_config, "source_file"
42
- )
37
+ try:
38
+ if (
39
+ traceability_info := reader.read_from_file(path_to_file)
40
+ ) is not None:
41
+ PickleCache.save_to_cache(
42
+ traceability_info,
43
+ path_to_file,
44
+ project_config,
45
+ "source_file",
46
+ )
47
+ except UnicodeDecodeError:
48
+ print( # noqa: T201
49
+ f"warning: Skip tracing binary file {path_to_file}."
50
+ )
51
+ return None
43
52
 
44
53
  return traceability_info
45
54
 
@@ -54,6 +63,13 @@ class SourceFileTraceabilityCachingReader:
54
63
  if project_config.is_activated_source_file_language_parsers():
55
64
  if path_to_file.endswith(".py"):
56
65
  return SourceFileTraceabilityReader_Python()
57
- if path_to_file.endswith(".c"):
66
+ if (
67
+ path_to_file.endswith(".c")
68
+ or path_to_file.endswith(".cc")
69
+ or path_to_file.endswith(".h")
70
+ or path_to_file.endswith(".hh")
71
+ or path_to_file.endswith(".hpp")
72
+ or path_to_file.endswith(".cpp")
73
+ ):
58
74
  return SourceFileTraceabilityReader_C()
59
75
  return SourceFileTraceabilityReader()
@@ -0,0 +1,7 @@
1
+ from enum import Enum
2
+
3
+
4
+ class FunctionAttribute(Enum):
5
+ STATIC = "static"
6
+ DECLARATION = "declaration"
7
+ DEFINITION = "definition"
@@ -1,6 +1,6 @@
1
1
  SOURCE_FILE_GRAMMAR = """
2
2
  SourceFileTraceabilityInfo[noskipws]:
3
- parts += Part
3
+ g_parts += Part
4
4
  ;
5
5
 
6
6
  Part[noskipws]:
@@ -33,7 +33,7 @@ RangeMarker[noskipws]:
33
33
 
34
34
  FunctionRangeMarker[noskipws]:
35
35
  /^.*?@relation/
36
- "(" (reqs_objs += Req[', ']) ', scope=file)' '\n'?
36
+ "(" (reqs_objs += Req[', ']) ', scope=' scope="file" ')' '\n'?
37
37
  ;
38
38
 
39
39
  LineMarker[noskipws]:
@@ -11,8 +11,10 @@ from strictdoc.backend.sdoc_source_code.models.range_marker import (
11
11
  from strictdoc.backend.sdoc_source_code.models.requirement_marker import Req
12
12
 
13
13
  REGEX_REQ = r"[A-Za-z][A-Za-z0-9\\-]+"
14
- # @relation(REQ-1, scope=function)
15
- REGEX_MARKER = rf"@relation\(({REGEX_REQ}(?:, {REGEX_REQ})*)\, scope=(file|class|function|line|range_start|range_end)\)"
14
+ # @relation(REQ-1, scope=function) or @relation{REQ-1, scope=function}
15
+ REGEX_MARKER = re.compile(
16
+ rf"@relation[({{]({REGEX_REQ}(?:, {REGEX_REQ})*), scope=(file|class|function|line|range_start|range_end)[)}}]"
17
+ )
16
18
 
17
19
 
18
20
  class MarkerParser:
@@ -29,7 +31,7 @@ class MarkerParser:
29
31
  for input_line_idx_, input_line_ in enumerate(
30
32
  input_string.splitlines()
31
33
  ):
32
- match = re.search(REGEX_MARKER, input_line_)
34
+ match = REGEX_MARKER.search(input_line_)
33
35
  if match is None:
34
36
  continue
35
37
 
@@ -58,7 +60,9 @@ class MarkerParser:
58
60
  requirements.append(requirement)
59
61
 
60
62
  if marker_type in ("file", "class", "function"):
61
- function_marker = FunctionRangeMarker(None, requirements)
63
+ function_marker = FunctionRangeMarker(
64
+ None, requirements, scope=marker_type
65
+ )
62
66
  function_marker.ng_source_line_begin = line_start
63
67
  function_marker.ng_range_line_begin = line_start
64
68
  function_marker.ng_range_line_end = line_end
@@ -0,0 +1,45 @@
1
+ from typing import Any, List, Set
2
+
3
+ from strictdoc.backend.sdoc_source_code.constants import FunctionAttribute
4
+ from strictdoc.backend.sdoc_source_code.models.function_range_marker import (
5
+ FunctionRangeMarker,
6
+ )
7
+ from strictdoc.helpers.auto_described import auto_described
8
+
9
+
10
+ @auto_described
11
+ class Function:
12
+ def __init__(
13
+ self,
14
+ parent: Any,
15
+ name: str,
16
+ display_name: str,
17
+ line_begin: int,
18
+ line_end: int,
19
+ child_functions: List[Any],
20
+ markers: List[FunctionRangeMarker],
21
+ attributes: Set[FunctionAttribute],
22
+ ):
23
+ assert parent is not None
24
+ self.parent = parent
25
+ self.name = name
26
+ self.display_name = display_name
27
+
28
+ # Child functions are supported in programming languages that can nest
29
+ # functions, for example, Python.
30
+ self.child_functions: List[Function] = child_functions
31
+ self.markers: List[FunctionRangeMarker] = markers
32
+ self.line_begin = line_begin
33
+ self.line_end = line_end
34
+ self.attributes: Set[FunctionAttribute] = attributes
35
+
36
+ def is_declaration(self) -> bool:
37
+ return FunctionAttribute.DECLARATION in self.attributes
38
+
39
+ def is_definition(self) -> bool:
40
+ return FunctionAttribute.DEFINITION in self.attributes
41
+
42
+ def is_public(self) -> bool:
43
+ if FunctionAttribute.STATIC in self.attributes:
44
+ return False
45
+ return True
@@ -14,12 +14,15 @@ class RangeMarkerType(Enum):
14
14
 
15
15
  @auto_described
16
16
  class FunctionRangeMarker:
17
- def __init__(self, parent, reqs_objs: List[Req]):
17
+ def __init__(self, parent, reqs_objs: List[Req], scope: str):
18
18
  assert isinstance(reqs_objs, list)
19
+ assert isinstance(scope, str), scope
19
20
  self.parent = parent
20
21
  self.reqs_objs: List[Req] = reqs_objs
21
22
  self.reqs: List[str] = list(map(lambda req: req.uid, reqs_objs))
22
23
 
24
+ self.scope: RangeMarkerType = RangeMarkerType(scope)
25
+
23
26
  # Line number of the marker in the source code.
24
27
  self.ng_source_line_begin: Optional[int] = None
25
28
  self.ng_source_column_begin: Optional[int] = None
@@ -64,5 +67,5 @@ class FunctionRangeMarker:
64
67
 
65
68
  @auto_described
66
69
  class ForwardFunctionRangeMarker(FunctionRangeMarker):
67
- def __init__(self, parent, reqs_objs: List[Req]):
68
- super().__init__(parent, reqs_objs)
70
+ def __init__(self, parent, reqs_objs: List[Req], scope: str):
71
+ super().__init__(parent, reqs_objs, scope)
@@ -45,7 +45,7 @@ class RangeMarker:
45
45
  self.ng_range_line_end: Optional[int] = None
46
46
 
47
47
  self.ng_is_nodoc = "nosdoc" in self.reqs
48
- self.ng_new_relation_keyword = False
48
+ self.ng_new_relation_keyword = scope is not None and len(scope) > 0
49
49
 
50
50
  def is_begin(self) -> bool:
51
51
  return self.begin_or_end == "["
@@ -1,5 +1,5 @@
1
1
  # mypy: disable-error-code="no-untyped-def,type-arg,var-annotated"
2
- from typing import List, Union
2
+ from typing import Dict, List, Optional, Union
3
3
 
4
4
  from strictdoc.backend.sdoc_source_code.models.function import Function
5
5
  from strictdoc.backend.sdoc_source_code.models.function_range_marker import (
@@ -10,12 +10,13 @@ from strictdoc.backend.sdoc_source_code.models.range_marker import (
10
10
  LineMarker,
11
11
  RangeMarker,
12
12
  )
13
+ from strictdoc.core.source_tree import SourceFile
13
14
  from strictdoc.helpers.auto_described import auto_described
14
15
 
15
16
 
16
17
  @auto_described
17
18
  class SourceFileTraceabilityInfo:
18
- def __init__(self, parts: List):
19
+ def __init__(self, g_parts: List):
19
20
  """
20
21
  At the init time, only the backward RangeMarkers are available from
21
22
  a source file. At runtime, the ForwardRangeMarkers are mixed in
@@ -23,7 +24,8 @@ class SourceFileTraceabilityInfo:
23
24
  is a union.
24
25
  """
25
26
 
26
- self.parts: List = parts
27
+ self.g_parts: List = g_parts
28
+ self.source_file: Optional[SourceFile] = None
27
29
  self.functions: List[Function] = []
28
30
 
29
31
  """
@@ -34,6 +36,9 @@ class SourceFileTraceabilityInfo:
34
36
  """
35
37
  self.ng_map_reqs_to_markers = {}
36
38
 
39
+ self.ng_map_names_to_markers: Dict[str, List] = {}
40
+ self.ng_map_names_to_definition_functions: Dict[str, Function] = {}
41
+
37
42
  self.ng_lines_total = 0
38
43
  self.ng_lines_covered = 0
39
44
  self._coverage: float = 0
@@ -305,12 +305,14 @@ class SourceFileTraceabilityReader:
305
305
  drop_textx_meta(source_file_traceability_info)
306
306
  return source_file_traceability_info
307
307
 
308
- def read_from_file(self, file_path) -> SourceFileTraceabilityInfo:
308
+ def read_from_file(self, file_path: str) -> SourceFileTraceabilityInfo:
309
309
  try:
310
310
  with open(file_path, encoding="utf-8") as file:
311
311
  sdoc_content = file.read()
312
312
  sdoc = self.read(sdoc_content, file_path=file_path)
313
313
  return sdoc
314
+ except UnicodeDecodeError:
315
+ raise
314
316
  except NotImplementedError:
315
317
  traceback.print_exc()
316
318
  sys.exit(1)