strictdoc 0.0.59a2__tar.gz → 0.0.60__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.59a2 → strictdoc-0.0.60}/PKG-INFO +3 -5
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/pyproject.toml +11 -14
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +2 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +2 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +2 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/error_handling.py +12 -14
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/grammar/grammar.py +2 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/document.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/document_grammar.py +2 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/document_view.py +3 -3
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/node.py +15 -17
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/object_factory.py +3 -3
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/processor.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/validations/sdoc_validator.py +4 -7
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/writer.py +6 -8
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/models/range_marker.py +8 -8
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +4 -5
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/reader.py +66 -68
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/analyzers/document_uid_analyzer.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/document_iterator.py +4 -4
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/file_traceability_index.py +8 -8
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/query_engine/query_object.py +3 -8
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/create_requirement.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/update_grammar_element.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/update_requirement.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/requirement_form_object.py +3 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/source_file_view_generator.py +14 -14
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +9 -7
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/table_key_value/index.jinja +5 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +6 -6
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/json/json_generator.py +2 -2
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/writer.py +1 -1
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +4 -4
- strictdoc-0.0.59a2/CHANGELOG.md +0 -2060
- strictdoc-0.0.59a2/CONTRIBUTING.md +0 -3
- strictdoc-0.0.59a2/Dockerfile +0 -18
- strictdoc-0.0.59a2/docs_extra/DO178_requirements.sdoc +0 -373
- strictdoc-0.0.59a2/docs_extra/Zephyr_requirements.sdoc +0 -244
- strictdoc-0.0.59a2/drafts/requirements/strictdoc.toml +0 -23
- strictdoc-0.0.59a2/drafts/rst_examples.sdoc +0 -266
- strictdoc-0.0.59a2/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -14
- strictdoc-0.0.59a2/mypy.ini +0 -35
- strictdoc-0.0.59a2/requirements.bootstrap.txt +0 -6
- strictdoc-0.0.59a2/requirements.check.txt +0 -33
- strictdoc-0.0.59a2/ruff.toml +0 -95
- strictdoc-0.0.59a2/strictdoc.toml +0 -47
- strictdoc-0.0.59a2/tasks.py +0 -793
- strictdoc-0.0.59a2/tasks_wine.py +0 -143
- strictdoc-0.0.59a2/tools/confluence_html_table_import.py +0 -204
- strictdoc-0.0.59a2/tools/link_health.py +0 -384
- strictdoc-0.0.59a2/tox.ini +0 -87
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/.gitignore +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/LICENSE +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/NOTICE +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/README.md +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/constants.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/anchor.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/any_node.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/document_config.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/document_from_file.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/free_text.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/section.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/reader.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/cli/cli_arg_parser.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/cli/command_parser_builder.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/commands/diff_command.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/commands/manage_autouid_command.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/analyzers/document_stats.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/asset_manager.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/document_finder.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/file_tree.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/graph/abstract_bucket.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/graph/many_to_many_set.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/graph_database.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/project_config.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/query_engine/query_reader.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/traceability_index.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/traceability_index_builder.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/delete_requirement.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/delete_section.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/section.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/update_document_config.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/update_included_document.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/content.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/element.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/project_tree.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static/zoomable.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/grammar_element_form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/included_document_form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/project_statistics.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/renderers/link_renderer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/links/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/title/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/nestor/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html2pdf/html2pdf.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/spdx/spdx_generator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/git/change.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/git/change_generator.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/git/git_client.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/git/project_diff_analyzer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/diff.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/ordered_set.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/paths.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/app.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/helpers/turbo.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/routers/main_router.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/server/server.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.60
|
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/
|
@@ -12,20 +12,18 @@ License-File: NOTICE
|
|
12
12
|
Classifier: License :: OSI Approved :: BSD License
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
15
|
-
Classifier: Programming Language :: Python :: 3.7
|
16
15
|
Classifier: Programming Language :: Python :: 3.8
|
17
16
|
Classifier: Programming Language :: Python :: 3.9
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
20
19
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
21
20
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
22
|
-
Requires-Python: >=3.
|
21
|
+
Requires-Python: >=3.8
|
23
22
|
Requires-Dist: beautifulsoup4==4.*,>=4.12.0
|
24
23
|
Requires-Dist: docutils==0.*,>=0.16
|
25
24
|
Requires-Dist: fastapi>=0.83.0
|
26
25
|
Requires-Dist: html5lib>=1.1
|
27
26
|
Requires-Dist: jinja2>=2.11.2
|
28
|
-
Requires-Dist: lxml==4.*,>=4.6.2
|
29
27
|
Requires-Dist: pygments==2.*,>=2.10.0
|
30
28
|
Requires-Dist: python-datauri==2.*,>=2.1.1
|
31
29
|
Requires-Dist: python-multipart
|
@@ -6,17 +6,18 @@ build-backend = "hatchling.build"
|
|
6
6
|
path = "strictdoc/__init__.py"
|
7
7
|
|
8
8
|
[tool.hatch.build]
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
include = [
|
10
|
+
"/strictdoc/",
|
11
|
+
"LICENSE",
|
12
|
+
"NOTICE",
|
13
|
+
"README.md",
|
14
|
+
"pyproject.toml"
|
14
15
|
]
|
15
16
|
|
16
|
-
|
17
|
-
#
|
18
|
-
|
19
|
-
|
17
|
+
exclude = [
|
18
|
+
# Without this, the folder is still included to the output tar.gz because it has a Markdown file.
|
19
|
+
"/developer",
|
20
|
+
]
|
20
21
|
|
21
22
|
[project]
|
22
23
|
name = "strictdoc"
|
@@ -24,7 +25,7 @@ dynamic = ["version"]
|
|
24
25
|
description = "StrictDoc is open-source software for technical documentation and requirements management."
|
25
26
|
readme = "README.md"
|
26
27
|
license = "Apache-2.0"
|
27
|
-
requires-python = ">=3.
|
28
|
+
requires-python = ">=3.8"
|
28
29
|
authors = [
|
29
30
|
{ name = "Stanislav Pankevich", email = "s.pankevich@gmail.com" },
|
30
31
|
{ name = "Maryna Balioura", email = "mettta@gmail.com" },
|
@@ -36,7 +37,6 @@ classifiers = [
|
|
36
37
|
"License :: OSI Approved :: BSD License",
|
37
38
|
"Operating System :: OS Independent",
|
38
39
|
"Programming Language :: Python :: 3",
|
39
|
-
"Programming Language :: Python :: 3.7",
|
40
40
|
"Programming Language :: Python :: 3.8",
|
41
41
|
"Programming Language :: Python :: 3.9",
|
42
42
|
"Programming Language :: Python :: 3.10",
|
@@ -59,9 +59,6 @@ dependencies = [
|
|
59
59
|
# Requirements-to-source traceability. Colored syntax for source files.
|
60
60
|
"pygments >= 2.10.0, == 2.*",
|
61
61
|
|
62
|
-
# TODO: Only used by reqif. Remove.
|
63
|
-
"lxml >= 4.6.2, == 4.*",
|
64
|
-
|
65
62
|
# Static HTML export with embedded assets.
|
66
63
|
"beautifulsoup4 >= 4.12.0, == 4.*",
|
67
64
|
"html5lib>=1.1", # Used by beautifulsoup4 as an optional plugin.
|
{strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py
RENAMED
@@ -185,7 +185,7 @@ class ExcelToSDocConverter:
|
|
185
185
|
|
186
186
|
template_requirement = SDocObjectFactory.create_requirement(
|
187
187
|
document,
|
188
|
-
|
188
|
+
node_type="REQUIREMENT",
|
189
189
|
title=title,
|
190
190
|
uid=uid,
|
191
191
|
level=None,
|
@@ -214,7 +214,7 @@ class ExcelToSDocConverter:
|
|
214
214
|
template_requirement.relations = [reference]
|
215
215
|
requirement = SDocNode(
|
216
216
|
parent=template_requirement.parent,
|
217
|
-
|
217
|
+
node_type=template_requirement.node_type,
|
218
218
|
fields=list(template_requirement.enumerate_fields()),
|
219
219
|
relations=template_requirement.relations,
|
220
220
|
)
|
{strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py
RENAMED
@@ -404,7 +404,7 @@ class P01_ReqIFToSDocConverter:
|
|
404
404
|
)
|
405
405
|
node: SDocNode = SDocNode(
|
406
406
|
parent=section,
|
407
|
-
|
407
|
+
node_type="TEXT",
|
408
408
|
fields=[node_field],
|
409
409
|
relations=[],
|
410
410
|
)
|
@@ -533,7 +533,7 @@ class P01_ReqIFToSDocConverter:
|
|
533
533
|
)
|
534
534
|
requirement = SDocNode(
|
535
535
|
parent=parent_section,
|
536
|
-
|
536
|
+
node_type=grammar_element.tag,
|
537
537
|
fields=fields,
|
538
538
|
relations=[],
|
539
539
|
)
|
{strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py
RENAMED
@@ -485,7 +485,7 @@ class P01_SDocToReqIFObjectConverter:
|
|
485
485
|
else:
|
486
486
|
requirement_identifier = generate_unique_identifier("REQUIREMENT")
|
487
487
|
|
488
|
-
grammar_element = grammar.elements_by_type[requirement.
|
488
|
+
grammar_element = grammar.elements_by_type[requirement.node_type]
|
489
489
|
|
490
490
|
attributes: List[SpecObjectAttribute] = []
|
491
491
|
for field in requirement.fields_as_parsed:
|
@@ -574,7 +574,7 @@ class P01_SDocToReqIFObjectConverter:
|
|
574
574
|
spec_object_type: ReqIFSpecObjectType = (
|
575
575
|
context.map_grammar_node_tags_to_spec_object_type[
|
576
576
|
requirement.document
|
577
|
-
][requirement.
|
577
|
+
][requirement.node_type]
|
578
578
|
)
|
579
579
|
spec_object = ReqIFSpecObject.create(
|
580
580
|
identifier=requirement_identifier,
|
@@ -36,9 +36,9 @@ class StrictDocSemanticError(Exception):
|
|
36
36
|
self.file_path = filename
|
37
37
|
|
38
38
|
@staticmethod
|
39
|
-
def
|
39
|
+
def unknown_node_type(node: SDocNode, path_to_sdoc_file: str):
|
40
40
|
return StrictDocSemanticError(
|
41
|
-
title=f"Invalid
|
41
|
+
title=f"Invalid node type: {node.node_type}.",
|
42
42
|
hint=None,
|
43
43
|
example=None,
|
44
44
|
line=node.ng_line_start,
|
@@ -54,14 +54,12 @@ class StrictDocSemanticError(Exception):
|
|
54
54
|
document_grammar: DocumentGrammar,
|
55
55
|
path_to_sdoc_file: str,
|
56
56
|
):
|
57
|
-
grammar_dump = document_grammar.dump_fields(
|
58
|
-
requirement.requirement_type
|
59
|
-
)
|
57
|
+
grammar_dump = document_grammar.dump_fields(requirement.node_type)
|
60
58
|
return StrictDocSemanticError(
|
61
59
|
title=f"Invalid requirement field: {field_name}",
|
62
60
|
hint=(
|
63
61
|
f"Compare with the document grammar: [{grammar_dump}] "
|
64
|
-
f"for type: {requirement.
|
62
|
+
f"for type: {requirement.node_type}."
|
65
63
|
),
|
66
64
|
example=None,
|
67
65
|
line=requirement.ng_line_start,
|
@@ -76,7 +74,7 @@ class StrictDocSemanticError(Exception):
|
|
76
74
|
document_grammar: DocumentGrammar,
|
77
75
|
path_to_sdoc_file: str,
|
78
76
|
):
|
79
|
-
grammar_fields = document_grammar.dump_fields(node.
|
77
|
+
grammar_fields = document_grammar.dump_fields(node.node_type)
|
80
78
|
return StrictDocSemanticError(
|
81
79
|
title=(
|
82
80
|
f"Requirement is missing a field that is required by "
|
@@ -99,7 +97,7 @@ class StrictDocSemanticError(Exception):
|
|
99
97
|
document_grammar: DocumentGrammar,
|
100
98
|
path_to_sdoc_file: str,
|
101
99
|
):
|
102
|
-
grammar_fields = document_grammar.dump_fields(node.
|
100
|
+
grammar_fields = document_grammar.dump_fields(node.node_type)
|
103
101
|
return StrictDocSemanticError(
|
104
102
|
title=(
|
105
103
|
f"Unexpected field outside grammar: "
|
@@ -126,13 +124,13 @@ class StrictDocSemanticError(Exception):
|
|
126
124
|
problematic_field, SDocNodeField
|
127
125
|
), f"{problematic_field}"
|
128
126
|
requirement_dump = node.dump_fields_as_parsed()
|
129
|
-
grammar_dump = document_grammar.dump_fields(node.
|
127
|
+
grammar_dump = document_grammar.dump_fields(node.node_type)
|
130
128
|
return StrictDocSemanticError(
|
131
129
|
title=f"Wrong field order for requirement: [{requirement_dump}].",
|
132
130
|
hint=(
|
133
131
|
f"Problematic field: {problematic_field.field_name}. "
|
134
132
|
f"Compare with the document grammar: [{grammar_dump}] "
|
135
|
-
f"for type: {node.
|
133
|
+
f"for type: {node.node_type}."
|
136
134
|
),
|
137
135
|
example=None,
|
138
136
|
line=node.ng_line_start,
|
@@ -156,9 +154,9 @@ class StrictDocSemanticError(Exception):
|
|
156
154
|
f"Problematic field: {requirement_field.field_name}. "
|
157
155
|
f"Compare with the document grammar: "
|
158
156
|
f"["
|
159
|
-
f"{document_grammar.dump_fields(node.
|
157
|
+
f"{document_grammar.dump_fields(node.node_type)}"
|
160
158
|
f"] "
|
161
|
-
f"for type: {node.
|
159
|
+
f"for type: {node.node_type}."
|
162
160
|
),
|
163
161
|
example=None,
|
164
162
|
line=node.ng_line_start,
|
@@ -182,9 +180,9 @@ class StrictDocSemanticError(Exception):
|
|
182
180
|
f"Problematic field: {requirement_field.field_name}. "
|
183
181
|
f"Compare with the document grammar: "
|
184
182
|
f"["
|
185
|
-
f"{document_grammar.dump_fields(node.
|
183
|
+
f"{document_grammar.dump_fields(node.node_type)}"
|
186
184
|
f"] "
|
187
|
-
f"for type: {node.
|
185
|
+
f"for type: {node.node_type}."
|
188
186
|
),
|
189
187
|
example=None,
|
190
188
|
line=node.ng_line_start,
|
@@ -174,7 +174,7 @@ ReservedKeyword[noskipws]:
|
|
174
174
|
;
|
175
175
|
|
176
176
|
SDocNode[noskipws]:
|
177
|
-
'[' !'SECTION' !SDocCompositeNodeTagName
|
177
|
+
'[' !'SECTION' !SDocCompositeNodeTagName node_type = RequirementType ']' '\n'
|
178
178
|
fields *= SDocNodeField
|
179
179
|
(
|
180
180
|
'RELATIONS:' '\n'
|
@@ -210,7 +210,7 @@ SDocNodeField[noskipws]:
|
|
210
210
|
;
|
211
211
|
|
212
212
|
SDocCompositeNode[noskipws]:
|
213
|
-
'[COMPOSITE_'
|
213
|
+
'[COMPOSITE_' node_type = RequirementType ']' '\n'
|
214
214
|
|
215
215
|
fields *= SDocNodeField
|
216
216
|
(
|
@@ -151,7 +151,7 @@ class SDocDocument:
|
|
151
151
|
return True
|
152
152
|
continue
|
153
153
|
if section_or_requirement.is_requirement:
|
154
|
-
if section_or_requirement.
|
154
|
+
if section_or_requirement.node_type == "TEXT":
|
155
155
|
continue
|
156
156
|
return True
|
157
157
|
assert section_or_requirement.is_section, section_or_requirement
|
@@ -294,12 +294,12 @@ class DocumentGrammar:
|
|
294
294
|
f"Could not find a grammar element with MID: {element_mid}"
|
295
295
|
)
|
296
296
|
|
297
|
-
def dump_fields(self,
|
297
|
+
def dump_fields(self, node_type) -> str:
|
298
298
|
return ", ".join(
|
299
299
|
list(
|
300
300
|
map(
|
301
301
|
lambda g: g.title,
|
302
|
-
self.elements_by_type[
|
302
|
+
self.elements_by_type[node_type].fields,
|
303
303
|
)
|
304
304
|
)
|
305
305
|
)
|
@@ -25,9 +25,9 @@ class ViewElement:
|
|
25
25
|
self.hidden_tags: Optional[List[ViewElementHiddenTag]] = hidden_tags
|
26
26
|
self.name: Optional[str] = name
|
27
27
|
|
28
|
-
def includes_field(self,
|
28
|
+
def includes_field(self, node_type: str, field_name: str) -> bool:
|
29
29
|
for tag_ in self.tags:
|
30
|
-
if tag_.object_type ==
|
30
|
+
if tag_.object_type == node_type:
|
31
31
|
field_: ViewElementField
|
32
32
|
for field_ in tag_.visible_fields:
|
33
33
|
if field_.name == field_name:
|
@@ -43,7 +43,7 @@ class DefaultViewElement(ViewElement):
|
|
43
43
|
works fine for now.
|
44
44
|
"""
|
45
45
|
|
46
|
-
def includes_field(self,
|
46
|
+
def includes_field(self, node_type: str, field_name: str) -> bool: # noqa: ARG002
|
47
47
|
return True
|
48
48
|
|
49
49
|
|
@@ -97,21 +97,21 @@ class SDocNode(SDocObject):
|
|
97
97
|
def __init__(
|
98
98
|
self,
|
99
99
|
parent: Union[SDocDocument, SDocSection, "SDocCompositeNode"],
|
100
|
-
|
100
|
+
node_type: str,
|
101
101
|
fields: List[SDocNodeField],
|
102
102
|
relations: List[Reference],
|
103
103
|
requirements: Optional[List["SDocNode"]] = None,
|
104
104
|
basic_free_text: bool = False,
|
105
105
|
) -> None:
|
106
106
|
assert parent
|
107
|
-
assert isinstance(
|
107
|
+
assert isinstance(node_type, str)
|
108
108
|
assert isinstance(relations, list), relations
|
109
109
|
|
110
110
|
self.parent: Union[SDocDocument, SDocSection, SDocCompositeNode] = (
|
111
111
|
parent
|
112
112
|
)
|
113
113
|
|
114
|
-
self.
|
114
|
+
self.node_type: str = node_type
|
115
115
|
|
116
116
|
ordered_fields_lookup: OrderedDict[str, List[SDocNodeField]] = (
|
117
117
|
OrderedDict()
|
@@ -178,17 +178,17 @@ class SDocNode(SDocObject):
|
|
178
178
|
return "requirement"
|
179
179
|
|
180
180
|
def get_node_type_string(self) -> Optional[str]:
|
181
|
-
return self.
|
181
|
+
return self.node_type
|
182
182
|
|
183
183
|
def get_node_type_string_lower(self) -> Optional[str]:
|
184
|
-
return self.
|
184
|
+
return self.node_type.lower()
|
185
185
|
|
186
186
|
def get_display_title(self) -> str:
|
187
187
|
if self.reserved_title is not None:
|
188
188
|
return self.reserved_title
|
189
189
|
if self.reserved_uid is not None:
|
190
190
|
return self.reserved_uid
|
191
|
-
return f"{self.
|
191
|
+
return f"{self.node_type} with no title/UID"
|
192
192
|
|
193
193
|
@property
|
194
194
|
def is_root_included_document(self) -> bool:
|
@@ -233,14 +233,14 @@ class SDocNode(SDocObject):
|
|
233
233
|
|
234
234
|
def has_reserved_statement(self) -> bool:
|
235
235
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
236
|
-
self.
|
236
|
+
self.node_type
|
237
237
|
]
|
238
238
|
return element.content_field[0] in self.ordered_fields_lookup
|
239
239
|
|
240
240
|
@property
|
241
241
|
def reserved_statement(self) -> Optional[str]:
|
242
242
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
243
|
-
self.
|
243
|
+
self.node_type
|
244
244
|
]
|
245
245
|
return self._get_cached_field(
|
246
246
|
element.content_field[0], singleline_only=False
|
@@ -259,7 +259,7 @@ class SDocNode(SDocObject):
|
|
259
259
|
return True
|
260
260
|
|
261
261
|
def is_text_node(self) -> bool:
|
262
|
-
return self.
|
262
|
+
return self.node_type == "TEXT"
|
263
263
|
|
264
264
|
# FIXME: Remove @property.
|
265
265
|
@property
|
@@ -335,13 +335,13 @@ class SDocNode(SDocObject):
|
|
335
335
|
|
336
336
|
def get_content_field_name(self) -> str:
|
337
337
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
338
|
-
self.
|
338
|
+
self.node_type
|
339
339
|
]
|
340
340
|
return element.content_field[0]
|
341
341
|
|
342
342
|
def get_content_field(self) -> SDocNodeField:
|
343
343
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
344
|
-
self.
|
344
|
+
self.node_type
|
345
345
|
]
|
346
346
|
return self.ordered_fields_lookup[element.content_field[0]][0]
|
347
347
|
|
@@ -456,7 +456,7 @@ class SDocNode(SDocObject):
|
|
456
456
|
self, skip_single_lines: bool = False, skip_multi_lines: bool = False
|
457
457
|
) -> Generator[Tuple[str, SDocNodeField], None, None]:
|
458
458
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
459
|
-
self.
|
459
|
+
self.node_type
|
460
460
|
]
|
461
461
|
grammar_field_titles = list(map(lambda f: f.title, element.fields))
|
462
462
|
statement_field_index: int = element.content_field[1]
|
@@ -489,14 +489,14 @@ class SDocNode(SDocObject):
|
|
489
489
|
|
490
490
|
def get_field_human_title(self, field_name: str) -> str:
|
491
491
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
492
|
-
self.
|
492
|
+
self.node_type
|
493
493
|
]
|
494
494
|
field_human_title = element.fields_map[field_name]
|
495
495
|
return field_human_title.get_field_human_name()
|
496
496
|
|
497
497
|
def get_field_human_title_for_statement(self) -> str:
|
498
498
|
element: GrammarElement = self.document.grammar.elements_by_type[
|
499
|
-
self.
|
499
|
+
self.node_type
|
500
500
|
]
|
501
501
|
field_human_title = element.fields_map[element.content_field[0]]
|
502
502
|
return field_human_title.get_field_human_name()
|
@@ -567,9 +567,7 @@ class SDocNode(SDocObject):
|
|
567
567
|
assert grammar_or_none is not None
|
568
568
|
grammar: DocumentGrammar = grammar_or_none
|
569
569
|
|
570
|
-
element: GrammarElement = grammar.elements_by_type[
|
571
|
-
self.requirement_type
|
572
|
-
]
|
570
|
+
element: GrammarElement = grammar.elements_by_type[self.node_type]
|
573
571
|
grammar_field_titles = list(map(lambda f: f.title, element.fields))
|
574
572
|
field_index = grammar_field_titles.index(field_name)
|
575
573
|
|
@@ -23,7 +23,7 @@ class SDocObjectFactory:
|
|
23
23
|
@staticmethod
|
24
24
|
def create_requirement(
|
25
25
|
parent,
|
26
|
-
|
26
|
+
node_type: Optional[str] = "REQUIREMENT",
|
27
27
|
uid: Optional[str] = None,
|
28
28
|
level: Optional[str] = None,
|
29
29
|
title: Optional[str] = None,
|
@@ -127,7 +127,7 @@ class SDocObjectFactory:
|
|
127
127
|
)
|
128
128
|
requirement = SDocNode(
|
129
129
|
parent=parent,
|
130
|
-
|
130
|
+
node_type=node_type,
|
131
131
|
fields=fields,
|
132
132
|
relations=[],
|
133
133
|
)
|
@@ -175,7 +175,7 @@ class SDocObjectFactory:
|
|
175
175
|
|
176
176
|
requirement = SDocObjectFactory.create_requirement(
|
177
177
|
parent=parent,
|
178
|
-
|
178
|
+
node_type="REQUIREMENT",
|
179
179
|
uid=uid,
|
180
180
|
level=None,
|
181
181
|
title=title,
|
{strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc/validations/sdoc_validator.py
RENAMED
@@ -158,16 +158,13 @@ class SDocValidator:
|
|
158
158
|
path_to_sdoc_file: str,
|
159
159
|
auto_uid_mode: bool = True,
|
160
160
|
):
|
161
|
-
if
|
162
|
-
|
163
|
-
not in document_grammar.registered_elements
|
164
|
-
):
|
165
|
-
raise StrictDocSemanticError.unknown_requirement_type(
|
161
|
+
if requirement.node_type not in document_grammar.registered_elements:
|
162
|
+
raise StrictDocSemanticError.unknown_node_type(
|
166
163
|
requirement, path_to_sdoc_file
|
167
164
|
)
|
168
165
|
|
169
166
|
grammar_element = document_grammar.elements_by_type[
|
170
|
-
requirement.
|
167
|
+
requirement.node_type
|
171
168
|
]
|
172
169
|
registered_fields: Set[str] = set(grammar_element.get_field_titles())
|
173
170
|
|
@@ -181,7 +178,7 @@ class SDocValidator:
|
|
181
178
|
)
|
182
179
|
|
183
180
|
grammar_element: GrammarElement = document_grammar.elements_by_type[
|
184
|
-
requirement.
|
181
|
+
requirement.node_type
|
185
182
|
]
|
186
183
|
grammar_fields_iterator: Iterator[GrammarElementField] = iter(
|
187
184
|
grammar_element.fields
|
@@ -294,7 +294,7 @@ class SDWriter:
|
|
294
294
|
# Special case for backward compatibility.
|
295
295
|
if (
|
296
296
|
not convert_free_text_to_text
|
297
|
-
and root_node.
|
297
|
+
and root_node.node_type == "TEXT"
|
298
298
|
and root_node.basic_free_text
|
299
299
|
):
|
300
300
|
output += self._print_free_text(root_node)
|
@@ -302,11 +302,11 @@ class SDWriter:
|
|
302
302
|
return output
|
303
303
|
if isinstance(root_node, SDocCompositeNode):
|
304
304
|
output += "[COMPOSITE_"
|
305
|
-
output += root_node.
|
305
|
+
output += root_node.node_type
|
306
306
|
output += "]\n"
|
307
307
|
else:
|
308
308
|
output += "["
|
309
|
-
output += root_node.
|
309
|
+
output += root_node.node_type
|
310
310
|
output += "]\n"
|
311
311
|
|
312
312
|
output += self._print_requirement_fields(
|
@@ -323,7 +323,7 @@ class SDWriter:
|
|
323
323
|
)
|
324
324
|
|
325
325
|
output += "[/COMPOSITE_"
|
326
|
-
output += root_node.
|
326
|
+
output += root_node.node_type
|
327
327
|
output += "]\n"
|
328
328
|
output += "\n"
|
329
329
|
|
@@ -401,9 +401,7 @@ class SDWriter:
|
|
401
401
|
current_view: ViewElement = document.view.get_current_view(
|
402
402
|
self.project_config.view
|
403
403
|
)
|
404
|
-
element = document.grammar.elements_by_type[
|
405
|
-
section_content.requirement_type
|
406
|
-
]
|
404
|
+
element = document.grammar.elements_by_type[section_content.node_type]
|
407
405
|
|
408
406
|
for element_field in element.fields:
|
409
407
|
field_name = element_field.title
|
@@ -414,7 +412,7 @@ class SDWriter:
|
|
414
412
|
output += "\n"
|
415
413
|
continue
|
416
414
|
if not current_view.includes_field(
|
417
|
-
section_content.
|
415
|
+
section_content.node_type, field_name
|
418
416
|
):
|
419
417
|
continue
|
420
418
|
fields = section_content.ordered_fields_lookup[field_name]
|
{strictdoc-0.0.59a2 → strictdoc-0.0.60}/strictdoc/backend/sdoc_source_code/models/range_marker.py
RENAMED
@@ -14,16 +14,16 @@ class RangeMarker:
|
|
14
14
|
self.reqs_objs: List[Req] = reqs_objs
|
15
15
|
self.reqs: List[str] = list(map(lambda req: req.uid, reqs_objs))
|
16
16
|
|
17
|
-
# Line number of the
|
17
|
+
# Line number of the marker in the source code.
|
18
18
|
self.ng_source_line_begin = None
|
19
19
|
|
20
|
-
# Line number of the
|
20
|
+
# Line number of the marker range in the source code:
|
21
21
|
# TODO: Improve description.
|
22
|
-
# For Begin
|
22
|
+
# For Begin ranges:
|
23
23
|
# ng_range_line_begin == ng_source_line_begin # noqa: ERA001
|
24
|
-
# ng_range_line_end == ng_source_line_begin of the End
|
25
|
-
# For End
|
26
|
-
# ng_range_line_begin == ng_range_line_begin of the Begin
|
24
|
+
# ng_range_line_end == ng_source_line_begin of the End marker # noqa: ERA001, E501
|
25
|
+
# For End ranges:
|
26
|
+
# ng_range_line_begin == ng_range_line_begin of the Begin marker # noqa: ERA001, E501
|
27
27
|
# ng_range_line_end == ng_source_line_begin # noqa: ERA001
|
28
28
|
self.ng_range_line_begin = None
|
29
29
|
self.ng_range_line_end = None
|
@@ -51,7 +51,7 @@ class LineMarker:
|
|
51
51
|
self.reqs_objs = reqs_objs
|
52
52
|
self.reqs = list(map(lambda req: req.uid, reqs_objs))
|
53
53
|
|
54
|
-
# Line number of the
|
54
|
+
# Line number of the marker in the source code.
|
55
55
|
self.ng_source_line_begin = None
|
56
56
|
|
57
57
|
self.ng_range_line_begin = None
|
@@ -80,7 +80,7 @@ class ForwardRangeMarker:
|
|
80
80
|
|
81
81
|
self.reqs_objs = reqs_objs
|
82
82
|
|
83
|
-
# Line number of the
|
83
|
+
# Line number of the marker in the source code.
|
84
84
|
self.ng_source_line_begin = None
|
85
85
|
|
86
86
|
self.ng_range_line_begin = None
|
@@ -15,9 +15,8 @@ class SourceFileTraceabilityInfo:
|
|
15
15
|
"""
|
16
16
|
At the init time, only the backward RangeMarkers are available from
|
17
17
|
a source file. At runtime, the ForwardRangeMarkers are mixed in
|
18
|
-
from the Requirement/FileReference links. This is why the .
|
18
|
+
from the Requirement/FileReference links. This is why the .markers
|
19
19
|
is a union.
|
20
|
-
FIXME: Rename pragmas to markers.
|
21
20
|
"""
|
22
21
|
|
23
22
|
self.parts: List = parts
|
@@ -28,7 +27,7 @@ class SourceFileTraceabilityInfo:
|
|
28
27
|
4: RangeMarker(...),
|
29
28
|
}
|
30
29
|
"""
|
31
|
-
self.
|
30
|
+
self.ng_map_lines_to_markers = {}
|
32
31
|
|
33
32
|
"""
|
34
33
|
{
|
@@ -36,12 +35,12 @@ class SourceFileTraceabilityInfo:
|
|
36
35
|
"REQ-002": RangeMarker(...),
|
37
36
|
}
|
38
37
|
"""
|
39
|
-
self.
|
38
|
+
self.ng_map_reqs_to_markers = {}
|
40
39
|
|
41
40
|
self.ng_lines_total = 0
|
42
41
|
self.ng_lines_covered = 0
|
43
42
|
self._coverage = 0
|
44
|
-
self.
|
43
|
+
self.markers: List[
|
45
44
|
Union[LineMarker, RangeMarker, ForwardRangeMarker]
|
46
45
|
] = []
|
47
46
|
|