strictdoc 0.0.57a2__tar.gz → 0.0.57a3__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.
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/PKG-INFO +1 -2
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/pyproject.toml +0 -1
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/document_config.py +7 -2
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/cli/command_parser_builder.py +0 -1
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/actions/export_action.py +0 -13
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/environment.py +0 -16
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/grammar_element_form_object.py +1 -1
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/requirement_form_object.py +11 -1
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/routers/main_router.py +34 -26
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/tasks.py +13 -71
- strictdoc-0.0.57a2/strictdoc/export/dot/document_dot_generator.py +0 -356
- strictdoc-0.0.57a2/strictdoc/export/dot/dot_templates.py +0 -16
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile1/document.dot +0 -12
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile1/folder.dot +0 -15
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile1/legend.dot +0 -69
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile1/requirement.dot +0 -18
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile1/section.dot +0 -34
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile1/top_level.dot +0 -61
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile2/document.dot +0 -4
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile2/folder.dot +0 -14
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile2/requirement.dot +0 -14
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile2/section.dot +0 -16
- strictdoc-0.0.57a2/strictdoc/export/dot/templates/profile2/top_level.dot +0 -59
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/.gitignore +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/CHANGELOG.md +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/Dockerfile +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/LICENSE +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/NOTICE +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/README.md +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/docs_extra/DO178_requirements.sdoc +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/docs_extra/Zephyr_requirements.sdoc +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/drafts/requirements/strictdoc.toml +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/drafts/rst_examples.sdoc +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/mypy.ini +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/requirements.bootstrap.txt +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/requirements.check.txt +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/ruff.toml +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/constants.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/anchor.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/document.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/document_from_file.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/document_view.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/free_text.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/node.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/section.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/processor.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/reader.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc/writer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/cli/cli_arg_parser.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/commands/diff_command.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/commands/manage_autouid_command.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/actions/passthrough_action.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/analyzers/document_stats.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/asset_manager.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/document_finder.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/document_iterator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/file_traceability_index.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/file_tree.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/graph/abstract_bucket.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/graph/many_to_many_set.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/graph_database.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/project_config.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/query_engine/query_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/query_engine/query_reader.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/traceability_index.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/traceability_index_builder.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/create_requirement.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/delete_requirement.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/delete_section.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/section.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/update_document_config.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/update_grammar_element.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/update_included_document.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/update_requirement.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/content.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/element.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/project_tree.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static/zoomable.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/form_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/included_document_form_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/project_statistics.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/source_file_view_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/renderers/link_renderer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/links/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/title/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/nestor/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html2pdf/html2pdf.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/json/json_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/spdx/spdx_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/git/change.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/git/change_generator.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/git/git_client.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/git/project_diff_analyzer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/diff.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/ordered_set.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/paths.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/app.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/helpers/turbo.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc/server/server.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/strictdoc.toml +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/tasks_wine.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/tools/confluence_html_table_import.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/tools/link_health.py +0 -0
- {strictdoc-0.0.57a2 → strictdoc-0.0.57a3}/tox.ini +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.57a3
|
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/
|
@@ -23,7 +23,6 @@ Requires-Python: >=3.7
|
|
23
23
|
Requires-Dist: beautifulsoup4==4.*,>=4.12.0
|
24
24
|
Requires-Dist: docutils==0.*,>=0.16
|
25
25
|
Requires-Dist: fastapi>=0.83.0
|
26
|
-
Requires-Dist: graphviz>=0.20.1
|
27
26
|
Requires-Dist: html5lib>=1.1
|
28
27
|
Requires-Dist: jinja2>=2.11.2
|
29
28
|
Requires-Dist: lxml==4.*,>=4.6.2
|
@@ -40,7 +40,7 @@ class DocumentConfig: # pylint: disable=too-many-instance-attributes
|
|
40
40
|
requirement_style: Optional[str],
|
41
41
|
requirement_in_toc: Optional[str],
|
42
42
|
default_view: Optional[str],
|
43
|
-
):
|
43
|
+
) -> None:
|
44
44
|
self.parent = parent
|
45
45
|
self.version: Optional[str] = version
|
46
46
|
|
@@ -61,7 +61,7 @@ class DocumentConfig: # pylint: disable=too-many-instance-attributes
|
|
61
61
|
else (False if root == "False" else None)
|
62
62
|
)
|
63
63
|
|
64
|
-
self.markup = markup
|
64
|
+
self.markup: Optional[str] = markup
|
65
65
|
self.auto_levels: bool = auto_levels is None or auto_levels == "On"
|
66
66
|
|
67
67
|
if layout is not None:
|
@@ -81,6 +81,11 @@ class DocumentConfig: # pylint: disable=too-many-instance-attributes
|
|
81
81
|
self.ng_line_start: int = 0
|
82
82
|
self.ng_col_start: int = 0
|
83
83
|
|
84
|
+
def get_markup(self) -> str:
|
85
|
+
if self.markup is None:
|
86
|
+
return "RST"
|
87
|
+
return self.markup
|
88
|
+
|
84
89
|
def get_requirement_style_mode(self) -> str:
|
85
90
|
if (
|
86
91
|
self.requirement_style is None
|
@@ -10,7 +10,6 @@ from strictdoc.backend.sdoc.errors.document_tree_error import DocumentTreeError
|
|
10
10
|
from strictdoc.core.project_config import ProjectConfig
|
11
11
|
from strictdoc.core.traceability_index import TraceabilityIndex
|
12
12
|
from strictdoc.core.traceability_index_builder import TraceabilityIndexBuilder
|
13
|
-
from strictdoc.export.dot.document_dot_generator import DocumentDotGenerator
|
14
13
|
from strictdoc.export.html.html_generator import HTMLGenerator
|
15
14
|
from strictdoc.export.html.html_templates import HTMLTemplates
|
16
15
|
from strictdoc.export.html2pdf.html2pdf_generator import HTML2PDFGenerator
|
@@ -131,18 +130,6 @@ class ExportAction:
|
|
131
130
|
self.project_config, self.traceability_index, output_dot_root
|
132
131
|
)
|
133
132
|
|
134
|
-
if "dot" in self.project_config.export_formats:
|
135
|
-
output_dot_root = os.path.join(
|
136
|
-
self.project_config.export_output_dir, "dot"
|
137
|
-
)
|
138
|
-
Path(output_dot_root).mkdir(parents=True, exist_ok=True)
|
139
|
-
DocumentDotGenerator("profile1").export_tree(
|
140
|
-
self.traceability_index, output_dot_root
|
141
|
-
)
|
142
|
-
DocumentDotGenerator("profile2").export_tree(
|
143
|
-
self.traceability_index, output_dot_root
|
144
|
-
)
|
145
|
-
|
146
133
|
if "json" in self.project_config.export_formats:
|
147
134
|
output_json_root = os.path.join(
|
148
135
|
self.project_config.export_output_dir, "json"
|
@@ -78,22 +78,6 @@ class SDocRuntimeEnvironment:
|
|
78
78
|
self.path_to_strictdoc, "strictdoc", "export", "rst", "templates"
|
79
79
|
)
|
80
80
|
|
81
|
-
def get_path_to_dot_templates(self):
|
82
|
-
if self.is_py_installer:
|
83
|
-
# If the application is run as a bundle, the PyInstaller bootloader
|
84
|
-
# extends the sys module by a flag frozen=True and sets the app
|
85
|
-
# path into variable _MEIPASS'.
|
86
|
-
bundle_dir = (
|
87
|
-
sys._MEIPASS # pylint: disable=protected-access, no-member
|
88
|
-
)
|
89
|
-
return os.path.join(bundle_dir, "templates/dot")
|
90
|
-
if self.is_nuitka:
|
91
|
-
return os.path.join(self.path_to_strictdoc, "templates/dot")
|
92
|
-
# Normal Python
|
93
|
-
return os.path.join(
|
94
|
-
self.path_to_strictdoc, "strictdoc", "export", "dot", "templates"
|
95
|
-
)
|
96
|
-
|
97
81
|
def get_path_to_html_templates(self):
|
98
82
|
if self.is_py_installer:
|
99
83
|
# If the application is run as a bundle, the PyInstaller bootloader
|
@@ -733,7 +733,10 @@ class RequirementFormObject(ErrorObject):
|
|
733
733
|
# STATEMENT/DESCRIPTION/CONTENT field has already been validated. Skip.
|
734
734
|
if grammar_element_field_.title == statement_field_name:
|
735
735
|
continue
|
736
|
-
if
|
736
|
+
if (
|
737
|
+
grammar_element_field_.gef_type == RequirementFieldType.STRING
|
738
|
+
and grammar_element_field_.required
|
739
|
+
):
|
737
740
|
for form_field_ in self.fields[grammar_element_field_.title]:
|
738
741
|
field_value = form_field_.field_unescaped_value
|
739
742
|
if field_value is None or len(field_value) == 0:
|
@@ -755,7 +758,14 @@ class RequirementFormObject(ErrorObject):
|
|
755
758
|
field_value = self.fields[grammar_element_field_.title][
|
756
759
|
0
|
757
760
|
].field_unescaped_value
|
761
|
+
|
758
762
|
if (
|
763
|
+
len(field_value) == 0
|
764
|
+
and not single_choice_grammar_element_field.required
|
765
|
+
):
|
766
|
+
# The empty single choice fields are allowed if the field is not REQUIRED.
|
767
|
+
pass
|
768
|
+
elif (
|
759
769
|
field_value
|
760
770
|
not in single_choice_grammar_element_field.options
|
761
771
|
):
|
@@ -212,7 +212,7 @@ def create_main_router(
|
|
212
212
|
static_path=project_config.dir_for_sdoc_assets,
|
213
213
|
)
|
214
214
|
markup_renderer = MarkupRenderer.create(
|
215
|
-
markup=
|
215
|
+
markup=requirement.document.config.get_markup(),
|
216
216
|
traceability_index=export_action.traceability_index,
|
217
217
|
link_renderer=link_renderer,
|
218
218
|
html_templates=html_generator.html_templates,
|
@@ -255,7 +255,7 @@ def create_main_router(
|
|
255
255
|
static_path=project_config.dir_for_sdoc_assets,
|
256
256
|
)
|
257
257
|
markup_renderer = MarkupRenderer.create(
|
258
|
-
markup=
|
258
|
+
markup=section.document.config.get_markup(),
|
259
259
|
traceability_index=export_action.traceability_index,
|
260
260
|
link_renderer=link_renderer,
|
261
261
|
html_templates=html_generator.html_templates,
|
@@ -325,7 +325,7 @@ def create_main_router(
|
|
325
325
|
static_path=project_config.dir_for_sdoc_assets,
|
326
326
|
)
|
327
327
|
markup_renderer = MarkupRenderer.create(
|
328
|
-
markup=
|
328
|
+
markup=document.config.get_markup(),
|
329
329
|
traceability_index=export_action.traceability_index,
|
330
330
|
link_renderer=link_renderer,
|
331
331
|
html_templates=html_generator.html_templates,
|
@@ -366,6 +366,14 @@ def create_main_router(
|
|
366
366
|
section_mid=section_mid,
|
367
367
|
request_form_data=request_form_data,
|
368
368
|
)
|
369
|
+
reference_node: Union[SDocDocument, SDocSection] = (
|
370
|
+
export_action.traceability_index.get_node_by_mid(MID(reference_mid))
|
371
|
+
)
|
372
|
+
document = (
|
373
|
+
reference_node
|
374
|
+
if isinstance(reference_node, SDocDocument)
|
375
|
+
else reference_node.document
|
376
|
+
)
|
369
377
|
|
370
378
|
context_document = export_action.traceability_index.get_node_by_mid(
|
371
379
|
MID(context_document_mid)
|
@@ -392,7 +400,7 @@ def create_main_router(
|
|
392
400
|
static_path=project_config.dir_for_sdoc_assets,
|
393
401
|
)
|
394
402
|
markup_renderer = MarkupRenderer.create(
|
395
|
-
markup=
|
403
|
+
markup=document.config.get_markup(),
|
396
404
|
traceability_index=export_action.traceability_index,
|
397
405
|
link_renderer=link_renderer,
|
398
406
|
html_templates=html_generator.html_templates,
|
@@ -432,7 +440,7 @@ def create_main_router(
|
|
432
440
|
static_path=project_config.dir_for_sdoc_assets,
|
433
441
|
)
|
434
442
|
markup_renderer = MarkupRenderer.create(
|
435
|
-
markup=
|
443
|
+
markup=document.config.get_markup(),
|
436
444
|
traceability_index=export_action.traceability_index,
|
437
445
|
link_renderer=link_renderer,
|
438
446
|
html_templates=html_generator.html_templates,
|
@@ -487,7 +495,7 @@ def create_main_router(
|
|
487
495
|
static_path=project_config.dir_for_sdoc_assets,
|
488
496
|
)
|
489
497
|
markup_renderer = MarkupRenderer.create(
|
490
|
-
markup=
|
498
|
+
markup=section.document.config.get_markup(),
|
491
499
|
traceability_index=export_action.traceability_index,
|
492
500
|
link_renderer=link_renderer,
|
493
501
|
html_templates=html_generator.html_templates,
|
@@ -548,7 +556,7 @@ def create_main_router(
|
|
548
556
|
static_path=project_config.dir_for_sdoc_assets,
|
549
557
|
)
|
550
558
|
markup_renderer = MarkupRenderer.create(
|
551
|
-
markup=
|
559
|
+
markup=section.document.config.get_markup(),
|
552
560
|
traceability_index=export_action.traceability_index,
|
553
561
|
link_renderer=link_renderer,
|
554
562
|
html_templates=html_generator.html_templates,
|
@@ -598,7 +606,7 @@ def create_main_router(
|
|
598
606
|
static_path=project_config.dir_for_sdoc_assets,
|
599
607
|
)
|
600
608
|
markup_renderer = MarkupRenderer.create(
|
601
|
-
markup=
|
609
|
+
markup=section.document.config.get_markup(),
|
602
610
|
traceability_index=export_action.traceability_index,
|
603
611
|
link_renderer=link_renderer,
|
604
612
|
html_templates=html_generator.html_templates,
|
@@ -657,7 +665,7 @@ def create_main_router(
|
|
657
665
|
static_path=project_config.dir_for_sdoc_assets,
|
658
666
|
)
|
659
667
|
markup_renderer = MarkupRenderer.create(
|
660
|
-
markup=
|
668
|
+
markup=section.document.config.get_markup(),
|
661
669
|
traceability_index=export_action.traceability_index,
|
662
670
|
link_renderer=link_renderer,
|
663
671
|
html_templates=html_generator.html_templates,
|
@@ -752,7 +760,7 @@ def create_main_router(
|
|
752
760
|
static_path=project_config.dir_for_sdoc_assets,
|
753
761
|
)
|
754
762
|
markup_renderer = MarkupRenderer.create(
|
755
|
-
markup=
|
763
|
+
markup=document.config.get_markup(),
|
756
764
|
traceability_index=export_action.traceability_index,
|
757
765
|
link_renderer=link_renderer,
|
758
766
|
html_templates=html_generator.html_templates,
|
@@ -823,7 +831,7 @@ def create_main_router(
|
|
823
831
|
static_path=project_config.dir_for_sdoc_assets,
|
824
832
|
)
|
825
833
|
markup_renderer = MarkupRenderer.create(
|
826
|
-
markup=
|
834
|
+
markup=document.config.get_markup(),
|
827
835
|
traceability_index=export_action.traceability_index,
|
828
836
|
link_renderer=link_renderer,
|
829
837
|
html_templates=html_generator.html_templates,
|
@@ -912,7 +920,7 @@ def create_main_router(
|
|
912
920
|
static_path=project_config.dir_for_sdoc_assets,
|
913
921
|
)
|
914
922
|
markup_renderer = MarkupRenderer.create(
|
915
|
-
markup=
|
923
|
+
markup=document.config.get_markup(),
|
916
924
|
traceability_index=export_action.traceability_index,
|
917
925
|
link_renderer=link_renderer,
|
918
926
|
html_templates=html_generator.html_templates,
|
@@ -958,7 +966,7 @@ def create_main_router(
|
|
958
966
|
static_path=project_config.dir_for_sdoc_assets,
|
959
967
|
)
|
960
968
|
markup_renderer = MarkupRenderer.create(
|
961
|
-
markup=
|
969
|
+
markup=document.config.get_markup(),
|
962
970
|
traceability_index=export_action.traceability_index,
|
963
971
|
link_renderer=link_renderer,
|
964
972
|
html_templates=html_generator.html_templates,
|
@@ -1009,7 +1017,7 @@ def create_main_router(
|
|
1009
1017
|
static_path=project_config.dir_for_sdoc_assets,
|
1010
1018
|
)
|
1011
1019
|
markup_renderer = MarkupRenderer.create(
|
1012
|
-
markup=
|
1020
|
+
markup=document.config.get_markup(),
|
1013
1021
|
traceability_index=export_action.traceability_index,
|
1014
1022
|
link_renderer=link_renderer,
|
1015
1023
|
html_templates=html_generator.html_templates,
|
@@ -1146,7 +1154,7 @@ def create_main_router(
|
|
1146
1154
|
static_path=project_config.dir_for_sdoc_assets,
|
1147
1155
|
)
|
1148
1156
|
markup_renderer = MarkupRenderer.create(
|
1149
|
-
markup=
|
1157
|
+
markup=document.config.get_markup(),
|
1150
1158
|
traceability_index=export_action.traceability_index,
|
1151
1159
|
link_renderer=link_renderer,
|
1152
1160
|
html_templates=html_generator.html_templates,
|
@@ -1193,7 +1201,7 @@ def create_main_router(
|
|
1193
1201
|
static_path=project_config.dir_for_sdoc_assets,
|
1194
1202
|
)
|
1195
1203
|
markup_renderer: MarkupRenderer = MarkupRenderer.create(
|
1196
|
-
markup=
|
1204
|
+
markup=document.config.get_markup(),
|
1197
1205
|
traceability_index=export_action.traceability_index,
|
1198
1206
|
link_renderer=link_renderer,
|
1199
1207
|
html_templates=html_generator.html_templates,
|
@@ -1258,7 +1266,7 @@ def create_main_router(
|
|
1258
1266
|
static_path=project_config.dir_for_sdoc_assets,
|
1259
1267
|
)
|
1260
1268
|
markup_renderer = MarkupRenderer.create(
|
1261
|
-
markup=
|
1269
|
+
markup=document.config.get_markup(),
|
1262
1270
|
traceability_index=export_action.traceability_index,
|
1263
1271
|
link_renderer=link_renderer,
|
1264
1272
|
html_templates=html_generator.html_templates,
|
@@ -1369,7 +1377,7 @@ def create_main_router(
|
|
1369
1377
|
static_path=project_config.dir_for_sdoc_assets,
|
1370
1378
|
)
|
1371
1379
|
markup_renderer = MarkupRenderer.create(
|
1372
|
-
markup=
|
1380
|
+
markup=section.document.config.get_markup(),
|
1373
1381
|
traceability_index=export_action.traceability_index,
|
1374
1382
|
link_renderer=link_renderer,
|
1375
1383
|
html_templates=html_generator.html_templates,
|
@@ -1472,7 +1480,7 @@ def create_main_router(
|
|
1472
1480
|
static_path=project_config.dir_for_sdoc_assets,
|
1473
1481
|
)
|
1474
1482
|
markup_renderer = MarkupRenderer.create(
|
1475
|
-
markup=
|
1483
|
+
markup=requirement.document.config.get_markup(),
|
1476
1484
|
traceability_index=export_action.traceability_index,
|
1477
1485
|
link_renderer=link_renderer,
|
1478
1486
|
html_templates=html_generator.html_templates,
|
@@ -1572,7 +1580,7 @@ def create_main_router(
|
|
1572
1580
|
static_path=project_config.dir_for_sdoc_assets,
|
1573
1581
|
)
|
1574
1582
|
markup_renderer = MarkupRenderer.create(
|
1575
|
-
markup=
|
1583
|
+
markup=moved_node.document.config.get_markup(),
|
1576
1584
|
traceability_index=export_action.traceability_index,
|
1577
1585
|
link_renderer=link_renderer,
|
1578
1586
|
html_templates=html_generator.html_templates,
|
@@ -1977,7 +1985,7 @@ def create_main_router(
|
|
1977
1985
|
static_path=project_config.dir_for_sdoc_assets,
|
1978
1986
|
)
|
1979
1987
|
markup_renderer = MarkupRenderer.create(
|
1980
|
-
markup=
|
1988
|
+
markup=document.config.get_markup(),
|
1981
1989
|
traceability_index=export_action.traceability_index,
|
1982
1990
|
link_renderer=link_renderer,
|
1983
1991
|
html_templates=html_generator.html_templates,
|
@@ -2061,7 +2069,7 @@ def create_main_router(
|
|
2061
2069
|
static_path=project_config.dir_for_sdoc_assets,
|
2062
2070
|
)
|
2063
2071
|
markup_renderer = MarkupRenderer.create(
|
2064
|
-
markup=
|
2072
|
+
markup=document.config.get_markup(),
|
2065
2073
|
traceability_index=export_action.traceability_index,
|
2066
2074
|
link_renderer=link_renderer,
|
2067
2075
|
html_templates=html_generator.html_templates,
|
@@ -2097,7 +2105,7 @@ def create_main_router(
|
|
2097
2105
|
static_path=project_config.dir_for_sdoc_assets,
|
2098
2106
|
)
|
2099
2107
|
markup_renderer = MarkupRenderer.create(
|
2100
|
-
markup=
|
2108
|
+
markup=document.config.get_markup(),
|
2101
2109
|
traceability_index=export_action.traceability_index,
|
2102
2110
|
link_renderer=link_renderer,
|
2103
2111
|
html_templates=html_generator.html_templates,
|
@@ -2141,7 +2149,7 @@ def create_main_router(
|
|
2141
2149
|
static_path=project_config.dir_for_sdoc_assets,
|
2142
2150
|
)
|
2143
2151
|
markup_renderer = MarkupRenderer.create(
|
2144
|
-
markup=
|
2152
|
+
markup=document.config.get_markup(),
|
2145
2153
|
traceability_index=export_action.traceability_index,
|
2146
2154
|
link_renderer=link_renderer,
|
2147
2155
|
html_templates=html_generator.html_templates,
|
@@ -2249,7 +2257,7 @@ def create_main_router(
|
|
2249
2257
|
static_path=project_config.dir_for_sdoc_assets,
|
2250
2258
|
)
|
2251
2259
|
markup_renderer = MarkupRenderer.create(
|
2252
|
-
markup=
|
2260
|
+
markup=document.config.get_markup(),
|
2253
2261
|
traceability_index=export_action.traceability_index,
|
2254
2262
|
link_renderer=link_renderer,
|
2255
2263
|
html_templates=html_generator.html_templates,
|
@@ -2390,7 +2398,7 @@ def create_main_router(
|
|
2390
2398
|
static_path=project_config.dir_for_sdoc_assets,
|
2391
2399
|
)
|
2392
2400
|
markup_renderer = MarkupRenderer.create(
|
2393
|
-
markup=
|
2401
|
+
markup=document.config.get_markup(),
|
2394
2402
|
traceability_index=export_action.traceability_index,
|
2395
2403
|
link_renderer=link_renderer,
|
2396
2404
|
html_templates=html_generator.html_templates,
|
@@ -11,8 +11,8 @@ from typing import Optional
|
|
11
11
|
if not hasattr(inspect, "getargspec"):
|
12
12
|
inspect.getargspec = inspect.getfullargspec
|
13
13
|
|
14
|
-
import invoke
|
15
|
-
from invoke import task
|
14
|
+
import invoke
|
15
|
+
from invoke import task
|
16
16
|
|
17
17
|
# Specifying encoding because Windows crashes otherwise when running Invoke
|
18
18
|
# tasks below:
|
@@ -22,9 +22,7 @@ from invoke import task # pylint: disable=wrong-import-position
|
|
22
22
|
# seems to work.
|
23
23
|
# FIXME: If you are a Windows user and expert, please advise on how to do this
|
24
24
|
# properly.
|
25
|
-
sys.stdout = open(
|
26
|
-
1, "w", encoding="utf-8", closefd=False, buffering=1
|
27
|
-
)
|
25
|
+
sys.stdout = open(1, "w", encoding="utf-8", closefd=False, buffering=1)
|
28
26
|
|
29
27
|
|
30
28
|
# To prevent all tasks from building to the same virtual environment.
|
@@ -95,7 +93,7 @@ def clean_itest_artifacts(context):
|
|
95
93
|
run_invoke(context, find_command, warn=True)
|
96
94
|
|
97
95
|
|
98
|
-
@task
|
96
|
+
@task(aliases=["s"])
|
99
97
|
def server(context, input_path=".", config=None):
|
100
98
|
assert os.path.isdir(input_path), input_path
|
101
99
|
if config is not None:
|
@@ -111,7 +109,7 @@ def server(context, input_path=".", config=None):
|
|
111
109
|
)
|
112
110
|
|
113
111
|
|
114
|
-
@task
|
112
|
+
@task(aliases=["d"])
|
115
113
|
def docs(context):
|
116
114
|
run_invoke_with_tox(
|
117
115
|
context,
|
@@ -180,7 +178,7 @@ def docs(context):
|
|
180
178
|
)
|
181
179
|
|
182
180
|
|
183
|
-
@task
|
181
|
+
@task(aliases=["tu"])
|
184
182
|
def test_unit(context, focus=None):
|
185
183
|
focus_argument = f"-k {focus}" if focus is not None else ""
|
186
184
|
run_invoke_with_tox(
|
@@ -204,7 +202,7 @@ def test_unit_server(context, focus=None):
|
|
204
202
|
)
|
205
203
|
|
206
204
|
|
207
|
-
@task()
|
205
|
+
@task(aliases=["te"])
|
208
206
|
def test_end2end(
|
209
207
|
context,
|
210
208
|
focus=None,
|
@@ -303,7 +301,7 @@ def test_coverage_report(context):
|
|
303
301
|
)
|
304
302
|
|
305
303
|
|
306
|
-
@task
|
304
|
+
@task(aliases=["ti"])
|
307
305
|
def test_integration(
|
308
306
|
context,
|
309
307
|
focus=None,
|
@@ -416,46 +414,7 @@ def lint_ruff_format(context):
|
|
416
414
|
raise invoke.exceptions.UnexpectedExit(result)
|
417
415
|
|
418
416
|
|
419
|
-
@task
|
420
|
-
def lint_pylint(context):
|
421
|
-
# TODO: Fix --disable=import-error
|
422
|
-
try:
|
423
|
-
run_invoke_with_tox(
|
424
|
-
context,
|
425
|
-
ToxEnvironment.CHECK,
|
426
|
-
"""
|
427
|
-
pylint
|
428
|
-
--rcfile=.pylint.ini
|
429
|
-
--disable=c-extension-no-member
|
430
|
-
--disable=import-error
|
431
|
-
strictdoc/ tests/ tasks.py
|
432
|
-
""",
|
433
|
-
)
|
434
|
-
except invoke.exceptions.UnexpectedExit as exc:
|
435
|
-
# pylink doesn't show an error message when exit code != 0, so we do.
|
436
|
-
print( # noqa: T201
|
437
|
-
f"invoke: pylint exited with error code {exc.result.exited}"
|
438
|
-
)
|
439
|
-
raise exc
|
440
|
-
|
441
|
-
|
442
|
-
@task
|
443
|
-
def lint_flake8(context):
|
444
|
-
run_invoke_with_tox(
|
445
|
-
context,
|
446
|
-
ToxEnvironment.CHECK,
|
447
|
-
"""
|
448
|
-
flake8
|
449
|
-
strictdoc/ tests/unit tests/unit_server
|
450
|
-
--ignore=E501,W503
|
451
|
-
--statistics
|
452
|
-
--max-line-length 80
|
453
|
-
--show-source
|
454
|
-
""",
|
455
|
-
)
|
456
|
-
|
457
|
-
|
458
|
-
@task
|
417
|
+
@task(aliases=["lr"])
|
459
418
|
def lint_ruff(context):
|
460
419
|
run_invoke_with_tox(
|
461
420
|
context,
|
@@ -467,7 +426,7 @@ def lint_ruff(context):
|
|
467
426
|
|
468
427
|
|
469
428
|
# @sdoc[SDOC-SRS-43]
|
470
|
-
@task
|
429
|
+
@task(aliases=["lm"])
|
471
430
|
def lint_mypy(context):
|
472
431
|
# FIXME
|
473
432
|
if sys.version_info >= (3, 8):
|
@@ -494,17 +453,14 @@ def lint_mypy(context):
|
|
494
453
|
# # @sdoc[/SDOC-SRS-43]
|
495
454
|
|
496
455
|
|
497
|
-
@task
|
456
|
+
@task(aliases=["l"])
|
498
457
|
def lint(context):
|
499
458
|
lint_ruff_format(context)
|
500
459
|
lint_ruff(context)
|
501
|
-
# It looks like Ruff does the job, but keeping this for a while.
|
502
|
-
# lint_pylint(context) # noqa: ERA001
|
503
|
-
# lint_flake8(context) # noqa: ERA001
|
504
460
|
lint_mypy(context)
|
505
461
|
|
506
462
|
|
507
|
-
@task
|
463
|
+
@task(aliases=["t"])
|
508
464
|
def test(context):
|
509
465
|
test_unit_coverage(context)
|
510
466
|
test_unit_server(context)
|
@@ -512,7 +468,7 @@ def test(context):
|
|
512
468
|
test_integration(context, html2pdf=True)
|
513
469
|
|
514
470
|
|
515
|
-
@task
|
471
|
+
@task(aliases=["c"])
|
516
472
|
def check(context):
|
517
473
|
lint(context)
|
518
474
|
test(context)
|
@@ -713,7 +669,6 @@ def release_pyinstaller(context):
|
|
713
669
|
--add-data strictdoc/export/html2pdf/html2pdf.py:.
|
714
670
|
--add-data strictdoc/export/html/templates:templates/html
|
715
671
|
--add-data strictdoc/export/rst/templates:templates/rst
|
716
|
-
--add-data strictdoc/export/dot/templates:templates/dot
|
717
672
|
--add-data strictdoc/export/html/_static:_static
|
718
673
|
--add-data strictdoc/export/html/_static_extra:_static_extra
|
719
674
|
strictdoc/cli/main.py
|
@@ -819,19 +774,6 @@ def performance_snakeviz(context):
|
|
819
774
|
run_invoke(context, command)
|
820
775
|
|
821
776
|
|
822
|
-
@task()
|
823
|
-
def dot(context):
|
824
|
-
run_invoke(
|
825
|
-
context,
|
826
|
-
"""
|
827
|
-
python strictdoc/cli/main.py
|
828
|
-
export
|
829
|
-
--formats dot
|
830
|
-
.
|
831
|
-
""",
|
832
|
-
)
|
833
|
-
|
834
|
-
|
835
777
|
@task()
|
836
778
|
def autouid(context):
|
837
779
|
run_invoke(
|