strictdoc 0.2.0__tar.gz → 0.2.1__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.2.0 → strictdoc-0.2.1}/PKG-INFO +1 -4
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/__init__.py +1 -1
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/document.py +4 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/document_from_file.py +4 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/document_grammar.py +2 -2
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/free_text.py +4 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/node.py +4 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/section.py +4 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/marker_parser.py +1 -1
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/range_marker.py +2 -1
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/file_traceability_index.py +4 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/traceability_index.py +39 -7
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/traceability_index_builder.py +15 -8
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/update_document_config.py +34 -6
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/requirement_form_object.py +12 -12
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/source_file_view_generator.py +2 -2
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +11 -21
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +8 -14
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -12
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/git/change.py +17 -15
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/git/project_diff_analyzer.py +15 -13
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/diff.py +7 -5
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/ordered_set.py +5 -2
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/routers/main_router.py +4 -4
- {strictdoc-0.2.0 → strictdoc-0.2.1}/.gitignore +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/LICENSE +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/NOTICE +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/README.md +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/pyproject.toml +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/constants.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/anchor.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/any_node.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/document_config.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/document_view.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/processor.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/reader.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc/writer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/caching_reader.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/function.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/function_range_marker.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/parse_context.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/processors/general_language_marker_processors.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/reader_c.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/reader_python.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/tree_sitter_helpers.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/cli/cli_arg_parser.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/cli/command_parser_builder.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/commands/diff_command.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/commands/manage_autouid_command.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/analyzers/document_stats.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/asset_manager.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/document_finder.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/document_iterator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/file_tree.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/graph/abstract_bucket.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/graph/many_to_many_set.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/graph_database.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/project_config.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/query_engine/query_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/query_engine/query_reader.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/create_requirement.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/delete_requirement.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/delete_section.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/section.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/update_grammar_element.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/update_included_document.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/update_requirement.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/content.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/element.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/project_tree.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static/zoomable.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/grammar_element_form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/included_document_form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/project_statistics.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/renderers/link_renderer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/links/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/title/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/nestor/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html2pdf/html2pdf.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/json/json_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/spdx/spdx_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/git/change_generator.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/git/git_client.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/paths.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/app.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/config.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/helpers/turbo.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/main.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/server/server.py +0 -0
@@ -1,14 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: StrictDoc is open-source software for technical documentation and requirements management.
|
5
5
|
Project-URL: Changelog, https://github.com/strictdoc-project/strictdoc/blob/main/CHANGELOG.md
|
6
6
|
Project-URL: Homepage, https://strictdoc.readthedocs.io/en/stable/
|
7
7
|
Project-URL: Source, https://github.com/strictdoc-project/strictdoc
|
8
8
|
Author-email: Stanislav Pankevich <s.pankevich@gmail.com>, Maryna Balioura <mettta@gmail.com>
|
9
|
-
License-Expression: Apache-2.0
|
10
|
-
License-File: LICENSE
|
11
|
-
License-File: NOTICE
|
12
9
|
Classifier: License :: OSI Approved :: BSD License
|
13
10
|
Classifier: Operating System :: OS Independent
|
14
11
|
Classifier: Programming Language :: Python :: 3
|
@@ -210,7 +210,7 @@ class DocumentGrammar:
|
|
210
210
|
DocumentGrammar.create_default_text_element()
|
211
211
|
)
|
212
212
|
|
213
|
-
# @
|
213
|
+
# @relation(SDOC-SRS-132, scope=range_start)
|
214
214
|
fields: List[
|
215
215
|
Union[
|
216
216
|
GrammarElementFieldString,
|
@@ -270,7 +270,7 @@ class DocumentGrammar:
|
|
270
270
|
requirement_element = GrammarElement(
|
271
271
|
parent=None, tag="REQUIREMENT", fields=fields, relations=[]
|
272
272
|
)
|
273
|
-
# @
|
273
|
+
# @relation(SDOC-SRS-132, scope=range_end)
|
274
274
|
|
275
275
|
requirement_element.relations = create_default_relations(
|
276
276
|
requirement_element
|
@@ -80,7 +80,7 @@ class MarkerParser:
|
|
80
80
|
range_marker.ng_source_column_begin = first_requirement_column
|
81
81
|
range_marker.ng_range_line_begin = line_start
|
82
82
|
range_marker.ng_range_line_end = line_end
|
83
|
-
range_marker.
|
83
|
+
range_marker.ng_new_relation_keyword = True
|
84
84
|
markers.append(range_marker)
|
85
85
|
elif marker_type == "line":
|
86
86
|
line_marker = LineMarker(None, requirements)
|
{strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/backend/sdoc_source_code/models/range_marker.py
RENAMED
@@ -24,6 +24,7 @@ class RangeMarker:
|
|
24
24
|
else:
|
25
25
|
assert scope in ("range_start", "range_end")
|
26
26
|
self.begin_or_end = "[" if scope == "range_start" else "[/"
|
27
|
+
self.ng_new_relation_keyword = True
|
27
28
|
|
28
29
|
self.reqs_objs: List[Req] = reqs_objs
|
29
30
|
self.reqs: List[str] = list(map(lambda req: req.uid, reqs_objs))
|
@@ -44,7 +45,7 @@ class RangeMarker:
|
|
44
45
|
self.ng_range_line_end: Optional[int] = None
|
45
46
|
|
46
47
|
self.ng_is_nodoc = "nosdoc" in self.reqs
|
47
|
-
self.
|
48
|
+
self.ng_new_relation_keyword = False
|
48
49
|
|
49
50
|
def is_begin(self) -> bool:
|
50
51
|
return self.begin_or_end == "["
|
@@ -258,6 +258,10 @@ class FileTraceabilityIndex:
|
|
258
258
|
|
259
259
|
markers_.sort(key=marker_comparator)
|
260
260
|
|
261
|
+
# Sort by keys alphabetically.
|
262
|
+
for paths_ in self.map_reqs_uids_to_paths.values():
|
263
|
+
paths_.sort()
|
264
|
+
|
261
265
|
def create_requirement(self, requirement: SDocNode) -> None:
|
262
266
|
assert requirement.reserved_uid is not None
|
263
267
|
|
@@ -354,9 +354,10 @@ class TraceabilityIndex: # pylint: disable=too-many-public-methods, too-many-in
|
|
354
354
|
|
355
355
|
def get_linkable_node_by_uid(
|
356
356
|
self, uid
|
357
|
-
) -> Union[SDocNode, SDocSection, Anchor]:
|
357
|
+
) -> Union[SDocDocument, SDocNode, SDocSection, Anchor]:
|
358
358
|
return assert_cast(
|
359
|
-
self.get_node_by_uid(uid),
|
359
|
+
self.get_node_by_uid(uid),
|
360
|
+
(SDocDocument, SDocNode, SDocSection, Anchor),
|
360
361
|
)
|
361
362
|
|
362
363
|
def get_node_by_uid_weak(
|
@@ -383,16 +384,16 @@ class TraceabilityIndex: # pylint: disable=too-many-public-methods, too-many-in
|
|
383
384
|
|
384
385
|
def get_linkable_node_by_uid_weak(
|
385
386
|
self, uid
|
386
|
-
) -> Union[SDocNode, SDocSection, Anchor, None]:
|
387
|
+
) -> Union[SDocDocument, SDocNode, SDocSection, Anchor, None]:
|
387
388
|
return assert_optional_cast(
|
388
389
|
self.graph_database.get_link_value_weak(
|
389
390
|
link_type=GraphLinkType.UID_TO_NODE, lhs_node=uid
|
390
391
|
),
|
391
|
-
(SDocNode, SDocSection, Anchor),
|
392
|
+
(SDocDocument, SDocNode, SDocSection, Anchor),
|
392
393
|
)
|
393
394
|
|
394
395
|
def get_incoming_links(
|
395
|
-
self, node: Union[SDocNode, SDocSection, Anchor]
|
396
|
+
self, node: Union[SDocDocument, SDocNode, SDocSection, Anchor]
|
396
397
|
) -> Optional[List[InlineLink]]:
|
397
398
|
incoming_links = self.graph_database.get_link_values_weak(
|
398
399
|
link_type=GraphLinkType.NODE_TO_INCOMING_LINKS,
|
@@ -448,6 +449,20 @@ class TraceabilityIndex: # pylint: disable=too-many-public-methods, too-many-in
|
|
448
449
|
source_file_rel_path, traceability_info, traceability_index
|
449
450
|
)
|
450
451
|
|
452
|
+
def create_document(self, document: SDocDocument) -> None:
|
453
|
+
assert isinstance(document, SDocDocument)
|
454
|
+
if document.reserved_uid is not None:
|
455
|
+
self.graph_database.create_link(
|
456
|
+
link_type=GraphLinkType.UID_TO_NODE,
|
457
|
+
lhs_node=document.reserved_uid,
|
458
|
+
rhs_node=document,
|
459
|
+
)
|
460
|
+
self.graph_database.create_link(
|
461
|
+
link_type=GraphLinkType.MID_TO_NODE,
|
462
|
+
lhs_node=document.reserved_mid,
|
463
|
+
rhs_node=document,
|
464
|
+
)
|
465
|
+
|
451
466
|
def create_section(self, section: SDocSection) -> None:
|
452
467
|
assert isinstance(section, SDocSection)
|
453
468
|
if section.reserved_uid is not None:
|
@@ -469,12 +484,14 @@ class TraceabilityIndex: # pylint: disable=too-many-public-methods, too-many-in
|
|
469
484
|
if self.graph_database.has_link(
|
470
485
|
link_type=GraphLinkType.UID_TO_NODE, lhs_node=new_link.link
|
471
486
|
):
|
472
|
-
node_or_anchor: Union[
|
487
|
+
node_or_anchor: Union[
|
488
|
+
SDocDocument, SDocNode, SDocSection, Anchor
|
489
|
+
] = assert_cast(
|
473
490
|
self.graph_database.get_link_value(
|
474
491
|
link_type=GraphLinkType.UID_TO_NODE,
|
475
492
|
lhs_node=new_link.link,
|
476
493
|
),
|
477
|
-
(SDocNode, SDocSection, Anchor),
|
494
|
+
(SDocDocument, SDocNode, SDocSection, Anchor),
|
478
495
|
)
|
479
496
|
self.graph_database.create_link(
|
480
497
|
link_type=GraphLinkType.NODE_TO_INCOMING_LINKS,
|
@@ -767,6 +784,21 @@ class TraceabilityIndex: # pylint: disable=too-many-public-methods, too-many-in
|
|
767
784
|
rhs_node=document.reserved_mid,
|
768
785
|
)
|
769
786
|
|
787
|
+
def delete_document(self, document: SDocDocument) -> None:
|
788
|
+
assert isinstance(document, SDocDocument), document
|
789
|
+
|
790
|
+
self.graph_database.delete_link(
|
791
|
+
link_type=GraphLinkType.MID_TO_NODE,
|
792
|
+
lhs_node=document.reserved_mid,
|
793
|
+
rhs_node=document,
|
794
|
+
)
|
795
|
+
if document.reserved_uid is not None:
|
796
|
+
self.graph_database.delete_link(
|
797
|
+
link_type=GraphLinkType.UID_TO_NODE,
|
798
|
+
lhs_node=document.reserved_uid,
|
799
|
+
rhs_node=document,
|
800
|
+
)
|
801
|
+
|
770
802
|
def delete_section(self, section: SDocSection) -> None:
|
771
803
|
assert isinstance(section, SDocSection), section
|
772
804
|
|
@@ -232,7 +232,9 @@ class TraceabilityIndexBuilder:
|
|
232
232
|
),
|
233
233
|
(
|
234
234
|
GraphLinkType.UID_TO_NODE,
|
235
|
-
OneToOneDictionary(
|
235
|
+
OneToOneDictionary(
|
236
|
+
str, (SDocDocument, SDocNode, SDocSection, Anchor)
|
237
|
+
),
|
236
238
|
),
|
237
239
|
(
|
238
240
|
GraphLinkType.UID_TO_REQUIREMENT_CONNECTIONS,
|
@@ -352,7 +354,12 @@ class TraceabilityIndexBuilder:
|
|
352
354
|
lhs_node=document.reserved_mid,
|
353
355
|
rhs_node=document,
|
354
356
|
)
|
355
|
-
|
357
|
+
if document.uid:
|
358
|
+
graph_database.create_link(
|
359
|
+
link_type=GraphLinkType.UID_TO_NODE,
|
360
|
+
lhs_node=document.uid,
|
361
|
+
rhs_node=document,
|
362
|
+
)
|
356
363
|
|
357
364
|
document_tags: Dict[str, int] = {}
|
358
365
|
graph_database.create_link(
|
@@ -427,7 +434,7 @@ class TraceabilityIndexBuilder:
|
|
427
434
|
)
|
428
435
|
|
429
436
|
if node.reserved_uid is not None:
|
430
|
-
# @
|
437
|
+
# @relation(SDOC-SRS-29, scope=range_start)
|
431
438
|
if traceability_index.graph_database.has_link(
|
432
439
|
link_type=GraphLinkType.UID_TO_NODE,
|
433
440
|
lhs_node=node.reserved_uid,
|
@@ -455,7 +462,7 @@ class TraceabilityIndexBuilder:
|
|
455
462
|
f'and "{document.title}".'
|
456
463
|
)
|
457
464
|
sys.exit(1)
|
458
|
-
|
465
|
+
# @relation(SDOC-SRS-29, scope=range_end)
|
459
466
|
|
460
467
|
traceability_index.graph_database.create_link(
|
461
468
|
link_type=GraphLinkType.UID_TO_NODE,
|
@@ -687,7 +694,7 @@ class TraceabilityIndexBuilder:
|
|
687
694
|
if requirement.reserved_uid is None:
|
688
695
|
continue
|
689
696
|
|
690
|
-
# @
|
697
|
+
# @relation(SDOC-SRS-30, scope=range_start)
|
691
698
|
# Detect cycles
|
692
699
|
parents_cycle_detector.check_node(
|
693
700
|
requirement.reserved_uid,
|
@@ -703,7 +710,7 @@ class TraceabilityIndexBuilder:
|
|
703
710
|
lhs_node=requirement_id_,
|
704
711
|
).get_child_uids(),
|
705
712
|
)
|
706
|
-
# @
|
713
|
+
# @relation(SDOC-SRS-30, scope=range_end)
|
707
714
|
|
708
715
|
map_documents_by_input_rel_path: Dict[str, SDocDocument] = {}
|
709
716
|
for document_ in document_tree.document_list:
|
@@ -711,7 +718,7 @@ class TraceabilityIndexBuilder:
|
|
711
718
|
document_.meta.input_doc_full_path
|
712
719
|
] = document_
|
713
720
|
|
714
|
-
# @
|
721
|
+
# @relation(SDOC-SRS-109, scope=range_start)
|
715
722
|
unique_document_from_file_occurences: Set[str] = set()
|
716
723
|
for document_ in document_tree.document_list:
|
717
724
|
document_from_file_: DocumentFromFile
|
@@ -764,7 +771,7 @@ class TraceabilityIndexBuilder:
|
|
764
771
|
resolved_document
|
765
772
|
)
|
766
773
|
|
767
|
-
# @
|
774
|
+
# @relation(SDOC-SRS-109, scope=range_end)
|
768
775
|
|
769
776
|
return traceability_index
|
770
777
|
|
@@ -1,8 +1,9 @@
|
|
1
1
|
# mypy: disable-error-code="arg-type,no-untyped-call,no-untyped-def"
|
2
2
|
from collections import defaultdict
|
3
|
-
from typing import Dict, List
|
3
|
+
from typing import Dict, List, Optional
|
4
4
|
|
5
5
|
from strictdoc.backend.sdoc.models.document import SDocDocument
|
6
|
+
from strictdoc.backend.sdoc.models.inline_link import InlineLink
|
6
7
|
from strictdoc.core.traceability_index import (
|
7
8
|
TraceabilityIndex,
|
8
9
|
)
|
@@ -36,11 +37,6 @@ class UpdateDocumentConfigTransform:
|
|
36
37
|
|
37
38
|
# Update the document.
|
38
39
|
document.title = form_object.document_title
|
39
|
-
document.config.uid = (
|
40
|
-
form_object.document_uid
|
41
|
-
if len(form_object.document_uid) > 0
|
42
|
-
else None
|
43
|
-
)
|
44
40
|
document.config.version = (
|
45
41
|
form_object.document_version
|
46
42
|
if len(form_object.document_version) > 0
|
@@ -52,6 +48,16 @@ class UpdateDocumentConfigTransform:
|
|
52
48
|
else None
|
53
49
|
)
|
54
50
|
|
51
|
+
self.traceability_index.delete_document(document)
|
52
|
+
|
53
|
+
document.config.uid = (
|
54
|
+
form_object.document_uid
|
55
|
+
if len(form_object.document_uid) > 0
|
56
|
+
else None
|
57
|
+
)
|
58
|
+
|
59
|
+
self.traceability_index.create_document(document)
|
60
|
+
|
55
61
|
def validate(
|
56
62
|
self,
|
57
63
|
form_object: DocumentConfigFormObject,
|
@@ -59,9 +65,31 @@ class UpdateDocumentConfigTransform:
|
|
59
65
|
):
|
60
66
|
errors: Dict[str, List[str]] = defaultdict(list)
|
61
67
|
assert isinstance(document, SDocDocument)
|
68
|
+
|
62
69
|
if len(form_object.document_title) == 0:
|
63
70
|
errors["TITLE"].append("Document title must not be empty.")
|
64
71
|
|
72
|
+
# Ensure that UID doesn't have any incoming links if it is going to be
|
73
|
+
# renamed or removed
|
74
|
+
existing_uid = document.reserved_uid
|
75
|
+
new_uid = form_object.document_uid
|
76
|
+
if existing_uid is not None:
|
77
|
+
if new_uid is None or existing_uid != new_uid:
|
78
|
+
existing_incoming_links: Optional[List[InlineLink]] = (
|
79
|
+
self.traceability_index.get_incoming_links(document)
|
80
|
+
)
|
81
|
+
if (
|
82
|
+
existing_incoming_links is not None
|
83
|
+
and len(existing_incoming_links) > 0
|
84
|
+
):
|
85
|
+
errors["UID"].append(
|
86
|
+
(
|
87
|
+
"Renaming a node UID when the node has "
|
88
|
+
"incoming links is not supported yet. "
|
89
|
+
"Please delete all incoming links first."
|
90
|
+
),
|
91
|
+
)
|
92
|
+
|
65
93
|
if len(errors):
|
66
94
|
raise MultipleValidationError(
|
67
95
|
"Document form has not passed validation.", errors=errors
|
{strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/form_objects/requirement_form_object.py
RENAMED
@@ -193,7 +193,7 @@ class RequirementFormObject(ErrorObject):
|
|
193
193
|
context_document_mid: str,
|
194
194
|
fields: List[RequirementFormField],
|
195
195
|
reference_fields: List[RequirementReferenceFormField],
|
196
|
-
|
196
|
+
existing_requirement_uid: Optional[str],
|
197
197
|
grammar: DocumentGrammar,
|
198
198
|
# FIXME: Better name
|
199
199
|
relation_types: List[str],
|
@@ -213,7 +213,7 @@ class RequirementFormObject(ErrorObject):
|
|
213
213
|
self.reference_fields: List[RequirementReferenceFormField] = (
|
214
214
|
reference_fields
|
215
215
|
)
|
216
|
-
self.
|
216
|
+
self.existing_requirement_uid: Optional[str] = existing_requirement_uid
|
217
217
|
self.grammar: DocumentGrammar = grammar
|
218
218
|
self.relation_types: List[str] = relation_types
|
219
219
|
self.basic_free_text: bool = basic_free_text
|
@@ -225,7 +225,7 @@ class RequirementFormObject(ErrorObject):
|
|
225
225
|
requirement_mid: str,
|
226
226
|
request_form_data: FormData,
|
227
227
|
document: SDocDocument,
|
228
|
-
|
228
|
+
existing_requirement_uid: Optional[str],
|
229
229
|
basic_free_text: bool,
|
230
230
|
) -> "RequirementFormObject":
|
231
231
|
request_form_data_as_list = [
|
@@ -326,7 +326,7 @@ class RequirementFormObject(ErrorObject):
|
|
326
326
|
context_document_mid=context_document_mid,
|
327
327
|
fields=form_fields,
|
328
328
|
reference_fields=form_ref_fields,
|
329
|
-
|
329
|
+
existing_requirement_uid=existing_requirement_uid,
|
330
330
|
grammar=grammar,
|
331
331
|
relation_types=element.get_relation_types(),
|
332
332
|
basic_free_text=basic_free_text,
|
@@ -384,7 +384,7 @@ class RequirementFormObject(ErrorObject):
|
|
384
384
|
context_document_mid=context_document_mid,
|
385
385
|
fields=form_fields,
|
386
386
|
reference_fields=[],
|
387
|
-
|
387
|
+
existing_requirement_uid=None,
|
388
388
|
grammar=grammar,
|
389
389
|
relation_types=element.get_relation_types(),
|
390
390
|
basic_free_text=False,
|
@@ -474,7 +474,7 @@ class RequirementFormObject(ErrorObject):
|
|
474
474
|
context_document_mid=context_document_mid,
|
475
475
|
fields=form_fields,
|
476
476
|
reference_fields=form_refs_fields,
|
477
|
-
|
477
|
+
existing_requirement_uid=requirement.reserved_uid,
|
478
478
|
grammar=grammar,
|
479
479
|
relation_types=grammar_element_relations,
|
480
480
|
basic_free_text=requirement.basic_free_text,
|
@@ -617,7 +617,7 @@ class RequirementFormObject(ErrorObject):
|
|
617
617
|
new_node_uid_or_none = new_node_uid
|
618
618
|
|
619
619
|
if new_node_uid_or_none is not None and (
|
620
|
-
self.is_new or self.
|
620
|
+
self.is_new or self.existing_requirement_uid != new_node_uid_or_none
|
621
621
|
):
|
622
622
|
existing_node_with_this_uid = (
|
623
623
|
traceability_index.get_node_by_uid_weak(new_node_uid_or_none)
|
@@ -636,10 +636,10 @@ class RequirementFormObject(ErrorObject):
|
|
636
636
|
Ensure that UID doesn't have any incoming links if it is going to be
|
637
637
|
renamed or removed.
|
638
638
|
"""
|
639
|
-
if self.
|
639
|
+
if self.existing_requirement_uid is not None:
|
640
640
|
if (
|
641
641
|
new_node_uid_or_none is None
|
642
|
-
or self.
|
642
|
+
or self.existing_requirement_uid != new_node_uid_or_none
|
643
643
|
):
|
644
644
|
existing_node: SDocNode = traceability_index.get_node_by_mid(
|
645
645
|
MID(self.requirement_mid)
|
@@ -725,8 +725,8 @@ class RequirementFormObject(ErrorObject):
|
|
725
725
|
)
|
726
726
|
|
727
727
|
if (
|
728
|
-
self.
|
729
|
-
and self.
|
728
|
+
self.existing_requirement_uid is not None
|
729
|
+
and self.existing_requirement_uid != requirement_uid
|
730
730
|
):
|
731
731
|
if len(self.reference_fields) > 0:
|
732
732
|
self.add_error(
|
@@ -738,7 +738,7 @@ class RequirementFormObject(ErrorObject):
|
|
738
738
|
)
|
739
739
|
requirement_connections: SDocNodeConnections = (
|
740
740
|
traceability_index.get_node_connections(
|
741
|
-
self.
|
741
|
+
self.existing_requirement_uid
|
742
742
|
)
|
743
743
|
)
|
744
744
|
if len(requirement_connections.children):
|
{strictdoc-0.2.0 → strictdoc-0.2.1}/strictdoc/export/html/generators/source_file_view_generator.py
RENAMED
@@ -219,12 +219,12 @@ class SourceFileViewHTMLGenerator:
|
|
219
219
|
closing_bracket_index = (
|
220
220
|
source_line.index("]")
|
221
221
|
if isinstance(marker, RangeMarker)
|
222
|
-
and not marker.
|
222
|
+
and not marker.ng_new_relation_keyword
|
223
223
|
else source_line.index(", scope")
|
224
224
|
if isinstance(marker, FunctionRangeMarker)
|
225
225
|
or (
|
226
226
|
isinstance(marker, RangeMarker)
|
227
|
-
and marker.
|
227
|
+
and marker.ng_new_relation_keyword
|
228
228
|
)
|
229
229
|
else source_line.index(")")
|
230
230
|
if isinstance(marker, LineMarker)
|
@@ -3,6 +3,8 @@ from dataclasses import dataclass
|
|
3
3
|
from datetime import datetime
|
4
4
|
from typing import Optional
|
5
5
|
|
6
|
+
from markupsafe import Markup
|
7
|
+
|
6
8
|
from strictdoc import __version__
|
7
9
|
from strictdoc.core.project_config import ProjectConfig
|
8
10
|
from strictdoc.export.html.html_templates import JinjaEnvironment
|
@@ -58,31 +60,19 @@ class DiffScreenResultsViewObject:
|
|
58
60
|
self.strictdoc_version = __version__
|
59
61
|
self.error_message: Optional[str] = None
|
60
62
|
|
61
|
-
def render_screen(self, jinja_environment: JinjaEnvironment):
|
62
|
-
|
63
|
-
|
64
|
-
).get_template("screens/git/index.jinja")
|
65
|
-
return template.render(view_object=self)
|
66
|
-
|
67
|
-
def render_url(self, url: str):
|
68
|
-
return self.link_renderer.render_url(url)
|
69
|
-
|
70
|
-
def render_node_link(self, incoming_link, document, document_type):
|
71
|
-
return self.link_renderer.render_node_link(
|
72
|
-
incoming_link, document, document_type
|
63
|
+
def render_screen(self, jinja_environment: JinjaEnvironment) -> Markup:
|
64
|
+
return jinja_environment.render_template_as_markup(
|
65
|
+
"screens/git/index.jinja", view_object=self
|
73
66
|
)
|
74
67
|
|
75
|
-
def
|
76
|
-
return self.link_renderer.
|
68
|
+
def render_url(self, url: str) -> Markup:
|
69
|
+
return Markup(self.link_renderer.render_url(url))
|
70
|
+
|
71
|
+
def render_static_url(self, url: str) -> Markup:
|
72
|
+
return Markup(self.link_renderer.render_static_url(url))
|
77
73
|
|
78
74
|
def render_static_url_with_prefix(self, url: str) -> str:
|
79
75
|
return self.link_renderer.render_static_url_with_prefix(url)
|
80
76
|
|
81
|
-
def
|
82
|
-
return self.link_renderer.render_local_anchor(node)
|
83
|
-
|
84
|
-
def is_empty_tree(self) -> bool:
|
85
|
-
return self.document_tree_iterator.is_empty_tree()
|
86
|
-
|
87
|
-
def date_today(self):
|
77
|
+
def date_today(self) -> str:
|
88
78
|
return datetime.today().strftime("%Y-%m-%d")
|
@@ -2,6 +2,8 @@
|
|
2
2
|
from dataclasses import dataclass
|
3
3
|
from datetime import datetime
|
4
4
|
|
5
|
+
from markupsafe import Markup
|
6
|
+
|
5
7
|
from strictdoc import __version__
|
6
8
|
from strictdoc.core.project_config import ProjectConfig
|
7
9
|
from strictdoc.export.html.html_templates import JinjaEnvironment
|
@@ -39,27 +41,19 @@ class DiffScreenViewObject:
|
|
39
41
|
self.is_running_on_server: bool = project_config.is_running_on_server
|
40
42
|
self.strictdoc_version = __version__
|
41
43
|
|
42
|
-
def render_screen(self, jinja_environment: JinjaEnvironment):
|
44
|
+
def render_screen(self, jinja_environment: JinjaEnvironment) -> Markup:
|
43
45
|
return jinja_environment.render_template_as_markup(
|
44
46
|
"screens/git/index.jinja", view_object=self
|
45
47
|
)
|
46
48
|
|
47
|
-
def render_url(self, url: str):
|
48
|
-
return self.link_renderer.render_url(url)
|
49
|
-
|
50
|
-
def render_node_link(self, incoming_link, document, document_type):
|
51
|
-
return self.link_renderer.render_node_link(
|
52
|
-
incoming_link, document, document_type
|
53
|
-
)
|
49
|
+
def render_url(self, url: str) -> Markup:
|
50
|
+
return Markup(self.link_renderer.render_url(url))
|
54
51
|
|
55
|
-
def render_static_url(self, url: str):
|
56
|
-
return self.link_renderer.render_static_url(url)
|
52
|
+
def render_static_url(self, url: str) -> Markup:
|
53
|
+
return Markup(self.link_renderer.render_static_url(url))
|
57
54
|
|
58
55
|
def render_static_url_with_prefix(self, url: str) -> str:
|
59
56
|
return self.link_renderer.render_static_url_with_prefix(url)
|
60
57
|
|
61
|
-
def
|
62
|
-
return self.link_renderer.render_local_anchor(node)
|
63
|
-
|
64
|
-
def date_today(self):
|
58
|
+
def date_today(self) -> str:
|
65
59
|
return datetime.today().strftime("%Y-%m-%d")
|
@@ -1,17 +1,5 @@
|
|
1
1
|
{% assert requirement_change is defined %}
|
2
2
|
|
3
|
-
{# MID field, if permanent, is always printed as-is. It is never marked as modified. #}
|
4
|
-
{% if requirement.mid_permanent %}
|
5
|
-
<div
|
6
|
-
class="diff_node_field"
|
7
|
-
>
|
8
|
-
{%- with badge_text = "MID" -%}
|
9
|
-
{%- include "components/badge/index.jinja" -%}
|
10
|
-
{%- endwith -%}
|
11
|
-
<span class="sdoc_pre_content">{{ requirement.reserved_mid }}</span>
|
12
|
-
</div>
|
13
|
-
{% endif %}
|
14
|
-
|
15
3
|
<div class="diff_node_fields">
|
16
4
|
{%- for requirement_field_triple_ in requirement.enumerate_all_fields() -%}
|
17
5
|
{%- set is_multiline = requirement_field_triple_[0].is_multiline() -%}
|