strictdoc 0.7.0__tar.gz → 0.9.0a1__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.7.0 → strictdoc-0.9.0a1}/.gitignore +3 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/NOTICE +5 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/PKG-INFO +7 -7
- strictdoc-0.9.0a1/README.md +4 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/pyproject.toml +20 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/__init__.py +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/export/excel_generator.py +18 -10
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/import_/excel_sheet_proxy.py +18 -6
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +8 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +24 -23
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +31 -25
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/reqif_export.py +4 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/reqif_import.py +4 -3
- strictdoc-0.9.0a1/strictdoc/backend/sdoc/document_reference.py +14 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/error_handling.py +98 -63
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/grammar/grammar.py +36 -31
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +7 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/grammar/type_system.py +1 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/anchor.py +4 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/constants.py +7 -1
- strictdoc-0.9.0a1/strictdoc/backend/sdoc/models/document.py +267 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/document_config.py +67 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/document_from_file.py +26 -13
- strictdoc-0.9.0a1/strictdoc/backend/sdoc/models/document_grammar.py +661 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/document_view.py +11 -2
- strictdoc-0.9.0a1/strictdoc/backend/sdoc/models/free_text.py +14 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/inline_link.py +0 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/model.py +43 -29
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/node.py +147 -113
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/object_factory.py +3 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/reference.py +6 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/section.py +45 -25
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/type_system.py +12 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/processor.py +22 -58
- strictdoc-0.9.0a1/strictdoc/backend/sdoc/reader.py +236 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/validations/sdoc_validator.py +47 -51
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/writer.py +98 -74
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/caching_reader.py +13 -9
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/comment_parser/marker_lexer.py +59 -0
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/constants.py +11 -0
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/coverage_reports/gcov.py +262 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/grammar.py +6 -4
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/helpers/comment_preprocessor.py +30 -0
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/marker_parser.py +212 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/models/function_range_marker.py +33 -6
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/models/range_marker.py +52 -10
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/models/source_file_info.py +85 -0
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/models/source_node.py +19 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/parse_context.py +3 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/processors/general_language_marker_processors.py +2 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/reader.py +19 -25
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/reader_c.py +56 -39
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/reader_python.py +90 -83
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/reader_robot.py +202 -0
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/test_reports/junit_xml_reader.py +416 -0
- strictdoc-0.9.0a1/strictdoc/backend/sdoc_source_code/test_reports/robot_xml_reader.py +236 -0
- strictdoc-0.9.0a1/strictdoc/cli/argument_int_range.py +25 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/cli/cli_arg_parser.py +10 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/cli/command_parser_builder.py +19 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/cli/main.py +11 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/commands/diff_command.py +3 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/commands/manage_autouid_command.py +6 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/actions/export_action.py +3 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/actions/import_action.py +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/analyzers/document_stats.py +15 -8
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/analyzers/document_uid_analyzer.py +27 -21
- strictdoc-0.9.0a1/strictdoc/core/constants.py +10 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/document_finder.py +38 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/document_iterator.py +82 -73
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/document_meta.py +5 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/document_tree.py +4 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/document_tree_iterator.py +7 -26
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/environment.py +14 -23
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/file_dependency_manager.py +2 -2
- strictdoc-0.9.0a1/strictdoc/core/file_traceability_index.py +904 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/file_tree.py +41 -100
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/finders/source_files_finder.py +6 -6
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/graph/abstract_bucket.py +14 -16
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/graph/many_to_many_set.py +4 -26
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/graph/one_to_one_dictionary.py +9 -10
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/graph/validations.py +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/graph_database.py +2 -11
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/project_config.py +132 -29
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/query_engine/query_object.py +109 -73
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/query_engine/query_reader.py +0 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/source_tree.py +2 -9
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/traceability_index.py +86 -102
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/traceability_index_builder.py +74 -39
- strictdoc-0.9.0a1/strictdoc/core/transforms/delete_requirement.py +63 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/delete_section.py +0 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/section.py +27 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/update_document_config.py +43 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/update_grammar_element.py +8 -8
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/update_requirement.py +19 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/tree_cycle_detector.py +6 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/doxygen/doxygen_generator.py +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/base.css +29 -20
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/content.css +2 -2
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/anchor_controller.js +174 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/autocompletable_field_controller.js +372 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/copy_stable_link_button_controller.js +82 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +70 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/deletable_field_controller.js +19 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/draggable_list_controller.js +334 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +46 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/editable_field_controller.js +52 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/modal_controller.js +47 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/movable_field_controller.js +67 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +11 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/controllers/tabs_controller.js +71 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/element.css +254 -68
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/form.css +7 -97
- strictdoc-0.9.0a1/strictdoc/export/html/_static/html2pdf4doc.css +4 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/layout.css +1 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/node.css +27 -13
- strictdoc-0.7.0/strictdoc/export/html/_static/requirement.css → strictdoc-0.9.0a1/strictdoc/export/html/_static/node_content.css +186 -78
- strictdoc-0.9.0a1/strictdoc/export/html/_static/project_coverage.css +283 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/project_coverage.js +71 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/project_tree.js +25 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/requirement-tree.css +3 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/requirement__temporary.css +1 -1
- strictdoc-0.9.0a1/strictdoc/export/html/_static/source-code-coverage.js +667 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/source.css +410 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/stable_uri_forwarder.js +85 -0
- strictdoc-0.9.0a1/strictdoc/export/html/_static/stimulus_umd.min.js +5 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/document_type.py +7 -10
- strictdoc-0.9.0a1/strictdoc/export/html/form_objects/document_config_form_object.py +190 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/form_object.py +14 -13
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/grammar_element_form_object.py +18 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/grammar_form_object.py +17 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/included_document_form_object.py +7 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/requirement_form_object.py +107 -76
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +6 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/form_objects/section_form_object.py +7 -6
- strictdoc-0.9.0a1/strictdoc/export/html/generators/project_map.py +24 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/project_statistics.py +51 -48
- strictdoc-0.9.0a1/strictdoc/export/html/generators/source_file_coverage.py +141 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/source_file_view_generator.py +49 -51
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/traceability_matrix.py +17 -17
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +31 -9
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +1 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +83 -40
- strictdoc-0.9.0a1/strictdoc/export/html/generators/view_objects/helpers.py +80 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +5 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +10 -8
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +13 -11
- strictdoc-0.9.0a1/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +87 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +8 -13
- strictdoc-0.9.0a1/strictdoc/export/html/generators/view_objects/source_file_view_object.py +196 -0
- strictdoc-0.7.0/strictdoc/export/html/generators/view_objects/project_tree_view_object.py → strictdoc-0.9.0a1/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +20 -18
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/html_generator.py +42 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/html_templates.py +2 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/renderers/link_renderer.py +35 -16
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/renderers/markup_renderer.py +1 -1
- strictdoc-0.9.0a1/strictdoc/export/html/templates/_res/svg_ico16_link.jinja +4 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/_res/svg_ico16_section_collapse.jinja +23 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/_res/svg_ico16_source_pointer_in.jinja +10 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/_res/svg_ico16_source_pointer_out.jinja +11 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/actions/document/add_document_metadata/stream_add_document_metadata.jinja.html +11 -0
- strictdoc-0.7.0/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja → strictdoc-0.9.0a1/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_node.jinja +1 -1
- strictdoc-0.9.0a1/strictdoc/export/html/templates/autocomplete/field/stream_autocomplete_field.jinja.html +2 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/base.jinja.html +6 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/anchor/index.jinja +2 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/field/index.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/field/autocompletable/index.jinja +8 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/form/row/row_with_metadata.jinja +89 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +3 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +14 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/issue/banner.jinja +26 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/issue/index.jinja +12 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node/copy_stable_link_button.jinja +18 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node/index.jinja +13 -13
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +3 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +32 -7
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node/readonly.jinja +23 -0
- {strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content}/card.jinja +1 -1
- {strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content}/card_extends_card.jinja +1 -1
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content/index.jinja +68 -0
- {strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content}/index_extends_node.jinja +1 -1
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content/index_extends_readonly.jinja +6 -0
- {strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content}/tiny.jinja +3 -3
- {strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement → strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_content}/tiny_extends_card.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +3 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +20 -3
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/node_field/files/index.jinja +27 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/links/index.jinja +8 -8
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +3 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +3 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +3 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +5 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/title/index.jinja +20 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +2 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/components/table_key_value/index.jinja +16 -0
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja → strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_node.jinja +2 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +16 -18
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +5 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +48 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +28 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/document/document/frame_document_issues.jinja +1 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +17 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/index.jinja +25 -18
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +8 -7
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +8 -8
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +2 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/table/index.jinja +5 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/table/main.jinja +11 -22
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +11 -9
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +6 -6
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +12 -10
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +6 -6
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +77 -36
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/diff_content.jinja +4 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +2 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/form.jinja +2 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/index.jinja +7 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +1 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/node/section.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/nestor/index.jinja +1 -1
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/index.jinja +9 -6
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/main.jinja +3 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/project_index/project_map.jinja.js +17 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/project_index/project_map_file.jinja +7 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/project_index/project_map_folder.jinja +15 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/project_index/project_map_node.jinja +13 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/project_index/project_map_section.jinja +16 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +6 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +2 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +2 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/project_statistics/main.jinja +195 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/search/index.jinja +6 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/search/main.jinja +3 -3
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +75 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +26 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +2 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +42 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_coverage/thead.jinja +47 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_coverage/value_bar.jinja +15 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +51 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_view/file_stats.jinja +15 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_view/header__actions.jinja +3 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +3 -2
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_view/main.jinja +98 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_view/node_title_for_banner_header.jinja +17 -0
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/source_file_view/range_button.jinja +18 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +63 -29
- strictdoc-0.9.0a1/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +19 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +3 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +2 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/tools/html_embedded.py +3 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html2pdf/pdf_print_driver.py +6 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/json/json_generator.py +133 -103
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +30 -29
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/document_rst_generator.py +0 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/rst_to_html_fragment_writer.py +6 -5
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/writer.py +9 -24
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/spdx/spdx_generator.py +31 -29
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +46 -35
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/git/change.py +10 -4
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/git/change_generator.py +4 -2
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/git/git_client.py +3 -71
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/git/project_diff_analyzer.py +149 -145
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/auto_described.py +3 -1
- strictdoc-0.9.0a1/strictdoc/helpers/cast.py +112 -0
- strictdoc-0.9.0a1/strictdoc/helpers/coverage.py +45 -0
- strictdoc-0.9.0a1/strictdoc/helpers/deprecation_engine.py +40 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/diff.py +11 -5
- strictdoc-0.9.0a1/strictdoc/helpers/file_stats.py +37 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/form_data.py +20 -5
- strictdoc-0.9.0a1/strictdoc/helpers/google_test.py +37 -0
- strictdoc-0.9.0a1/strictdoc/helpers/math.py +11 -0
- strictdoc-0.9.0a1/strictdoc/helpers/net.py +20 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/ordered_set.py +12 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/parallelizer.py +69 -38
- strictdoc-0.9.0a1/strictdoc/helpers/paths.py +30 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/rst.py +0 -10
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/string.py +13 -26
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/app.py +16 -30
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/error_object.py +0 -3
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/helpers/turbo.py +1 -2
- strictdoc-0.9.0a1/strictdoc/server/reload_config.py +119 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/routers/main_router.py +285 -165
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/server.py +32 -53
- strictdoc-0.7.0/README.md +0 -8
- strictdoc-0.7.0/strictdoc/backend/sdoc/document_reference.py +0 -15
- strictdoc-0.7.0/strictdoc/backend/sdoc/models/document.py +0 -187
- strictdoc-0.7.0/strictdoc/backend/sdoc/models/document_grammar.py +0 -376
- strictdoc-0.7.0/strictdoc/backend/sdoc/models/free_text.py +0 -64
- strictdoc-0.7.0/strictdoc/backend/sdoc/reader.py +0 -104
- strictdoc-0.7.0/strictdoc/backend/sdoc_source_code/constants.py +0 -7
- strictdoc-0.7.0/strictdoc/backend/sdoc_source_code/marker_parser.py +0 -98
- strictdoc-0.7.0/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -61
- strictdoc-0.7.0/strictdoc/cli/argument_int_range.py +0 -36
- strictdoc-0.7.0/strictdoc/core/file_traceability_index.py +0 -542
- strictdoc-0.7.0/strictdoc/core/transforms/create_requirement.py +0 -289
- strictdoc-0.7.0/strictdoc/core/transforms/delete_requirement.py +0 -58
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -173
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/autocompletable_field_controller.js +0 -297
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -64
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -13
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -328
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -52
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -46
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/modal_controller.js +0 -41
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -60
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -5
- strictdoc-0.7.0/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -65
- strictdoc-0.7.0/strictdoc/export/html/_static/source-code-coverage.js +0 -415
- strictdoc-0.7.0/strictdoc/export/html/_static/source.css +0 -197
- strictdoc-0.7.0/strictdoc/export/html/_static/stimulus.min.js +0 -5
- strictdoc-0.7.0/strictdoc/export/html/form_objects/document_config_form_object.py +0 -102
- strictdoc-0.7.0/strictdoc/export/html/generators/source_file_coverage.py +0 -56
- strictdoc-0.7.0/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -98
- strictdoc-0.7.0/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -151
- strictdoc-0.7.0/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -34
- strictdoc-0.7.0/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -18
- strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement/index.jinja +0 -32
- strictdoc-0.7.0/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -33
- strictdoc-0.7.0/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -22
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -25
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -101
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -55
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -27
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -25
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -39
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -37
- strictdoc-0.7.0/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -27
- strictdoc-0.7.0/strictdoc/helpers/cast.py +0 -14
- strictdoc-0.7.0/strictdoc/helpers/math.py +0 -14
- strictdoc-0.7.0/strictdoc/helpers/paths.py +0 -27
- strictdoc-0.7.0/strictdoc/server/main.py +0 -49
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/LICENSE +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/constants.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/models/function.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/sdoc_source_code/tree_sitter_helpers.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/asset_manager.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/update_included_document.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static/zoomable.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/autocomplete/uid/stream_autocomplete_uid.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/config.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.7.0 → strictdoc-0.9.0a1}/tests/integration/scripting_examples/questionnaires/02_user_provided_example/LICENSE +0 -0
@@ -21,26 +21,27 @@ LICENSE file for more information.
|
|
21
21
|
Contributors
|
22
22
|
------------
|
23
23
|
|
24
|
-
Please visit: https://strictdoc.readthedocs.io/en/latest/strictdoc_30_credits.html.
|
24
|
+
Please visit: https://strictdoc.readthedocs.io/en/latest/latest/docs/strictdoc_30_credits.html.
|
25
25
|
|
26
26
|
Third-party libraries and tools used in this project
|
27
27
|
----------------------------------------------------
|
28
28
|
|
29
29
|
- textX, MIT License, https://github.com/textX/textX/blob/master/LICENSE.txt
|
30
|
-
- Sphinx, The 2-clause BSD License, https://github.com/sphinx-doc/sphinx/blob/master/LICENSE
|
30
|
+
- Sphinx, The 2-clause BSD License, https://github.com/sphinx-doc/sphinx/blob/master/LICENSE.rst
|
31
31
|
- Docutils, Public Domain Dedication with exceptions, https://docutils.sourceforge.io/COPYING.html
|
32
32
|
- reqif, Apache 2 License, https://github.com/strictdoc-project/reqif/blob/main/LICENSE
|
33
33
|
- lxml, The 3-Clause BSD License, https://github.com/lxml/lxml/blob/master/doc/licenses/BSD.txt
|
34
34
|
- FastAPI, MIT License, https://github.com/tiangolo/fastapi/blob/master/LICENSE
|
35
35
|
- Turbo.js, MIT License, https://github.com/hotwired/turbo/blob/main/MIT-LICENSE
|
36
36
|
- Stimulus.js, MIT License, https://github.com/hotwired/stimulus/blob/main/LICENSE.md
|
37
|
-
- Jinja, BSD 3-Clause "New" or "Revised" License, https://github.com/pallets/jinja/blob/main/LICENSE.
|
37
|
+
- Jinja, BSD 3-Clause "New" or "Revised" License, https://github.com/pallets/jinja/blob/main/LICENSE.txt
|
38
38
|
- Pygments, BSD 2-Clause "Simplified" License, https://github.com/pygments/pygments/blob/master/LICENSE
|
39
39
|
- XlsxWriter, BSD 2-Clause "Simplified" License, https://github.com/jmcnamara/XlsxWriter/blob/main/LICENSE.txt
|
40
40
|
- xlrd, The 3-Clause BSD License and another license for earlier work, https://github.com/python-excel/xlrd/blob/master/LICENSE
|
41
41
|
- python-datauri, The Unlicense, https://github.com/fcurella/python-datauri/blob/master/LICENSE
|
42
|
+
- tree-sitter, MIT License, https://github.com/tree-sitter/tree-sitter/blob/master/LICENSE
|
42
43
|
|
43
|
-
Please also visit: https://strictdoc.readthedocs.io/en/latest/strictdoc_30_credits.html.
|
44
|
+
Please also visit: https://strictdoc.readthedocs.io/en/latest/latest/docs/strictdoc_30_credits.html.
|
44
45
|
|
45
46
|
Contact
|
46
47
|
-------
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.9.0a1
|
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/
|
@@ -9,27 +9,31 @@ Author-email: Stanislav Pankevich <s.pankevich@gmail.com>, Maryna Balioura <mett
|
|
9
9
|
License-Expression: Apache-2.0
|
10
10
|
License-File: LICENSE
|
11
11
|
License-File: NOTICE
|
12
|
-
Classifier: License :: OSI Approved ::
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
13
13
|
Classifier: Operating System :: OS Independent
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
15
15
|
Classifier: Programming Language :: Python :: 3.8
|
16
16
|
Classifier: Programming Language :: Python :: 3.9
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
19
21
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
20
22
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
21
23
|
Requires-Python: >=3.8
|
22
24
|
Requires-Dist: beautifulsoup4==4.*,>=4.12.0
|
23
25
|
Requires-Dist: docutils==0.*,>=0.16
|
24
26
|
Requires-Dist: fastapi>=0.83.0
|
25
|
-
Requires-Dist:
|
27
|
+
Requires-Dist: html2pdf4doc>=0.0.18
|
26
28
|
Requires-Dist: html5lib>=1.1
|
27
29
|
Requires-Dist: jinja2>=2.11.2
|
30
|
+
Requires-Dist: lark>=1.2.2
|
28
31
|
Requires-Dist: openpyxl>=3.1.0
|
29
32
|
Requires-Dist: pygments==2.*,>=2.10.0
|
30
33
|
Requires-Dist: python-datauri==2.*,>=2.1.1
|
31
34
|
Requires-Dist: python-multipart
|
32
35
|
Requires-Dist: reqif==0.*,>=0.0.39
|
36
|
+
Requires-Dist: robotframework>=4.0.0
|
33
37
|
Requires-Dist: spdx-tools
|
34
38
|
Requires-Dist: textx==4.*,>=4.0.0
|
35
39
|
Requires-Dist: toml
|
@@ -50,9 +54,5 @@ Description-Content-Type: text/markdown
|
|
50
54
|
|
51
55
|
# StrictDoc
|
52
56
|
|
53
|
-

|
54
|
-

|
55
|
-

|
56
|
-
|
57
57
|
The documentation is hosted on Read the Docs:
|
58
58
|
[StrictDoc documentation](https://strictdoc.readthedocs.io/en/stable/).
|
@@ -31,24 +31,24 @@ authors = [
|
|
31
31
|
{ name = "Maryna Balioura", email = "mettta@gmail.com" },
|
32
32
|
]
|
33
33
|
classifiers = [
|
34
|
-
|
35
|
-
# "Environment :: Web Environment",
|
36
|
-
# "Intended Audience :: Developers",
|
37
|
-
"License :: OSI Approved :: BSD License",
|
34
|
+
"License :: OSI Approved :: Apache Software License",
|
38
35
|
"Operating System :: OS Independent",
|
39
36
|
"Programming Language :: Python :: 3",
|
40
37
|
"Programming Language :: Python :: 3.8",
|
41
38
|
"Programming Language :: Python :: 3.9",
|
42
39
|
"Programming Language :: Python :: 3.10",
|
43
40
|
"Programming Language :: Python :: 3.11",
|
41
|
+
"Programming Language :: Python :: 3.12",
|
42
|
+
"Programming Language :: Python :: 3.13",
|
44
43
|
"Programming Language :: Python :: Implementation :: CPython",
|
45
44
|
"Programming Language :: Python :: Implementation :: PyPy",
|
46
|
-
# "Topic :: Internet :: WWW/HTTP",
|
47
45
|
]
|
48
46
|
|
49
47
|
# @sdoc[SDOC-SRS-89]
|
50
48
|
dependencies = [
|
51
49
|
"textx >= 4.0.0, == 4.*",
|
50
|
+
"lark >= 1.2.2",
|
51
|
+
|
52
52
|
"jinja2 >= 2.11.2",
|
53
53
|
# Reading project config from strictdoc.toml file.
|
54
54
|
"toml",
|
@@ -88,7 +88,10 @@ dependencies = [
|
|
88
88
|
"WebSockets",
|
89
89
|
|
90
90
|
# HTML2PDF dependencies
|
91
|
-
"
|
91
|
+
"html2pdf4doc >= 0.0.18",
|
92
|
+
|
93
|
+
# Robot Framework dependencies
|
94
|
+
"robotframework >= 4.0.0",
|
92
95
|
]
|
93
96
|
# @sdoc[/SDOC-SRS-89]
|
94
97
|
|
@@ -110,7 +113,6 @@ strictdoc = "strictdoc.cli.main:main"
|
|
110
113
|
|
111
114
|
[project.urls]
|
112
115
|
Changelog = "https://github.com/strictdoc-project/strictdoc/blob/main/CHANGELOG.md"
|
113
|
-
# Funding = "https://..."
|
114
116
|
Homepage = "https://strictdoc.readthedocs.io/en/stable/"
|
115
117
|
Source = "https://github.com/strictdoc-project/strictdoc"
|
116
118
|
|
@@ -119,3 +121,14 @@ addopts = "--import-mode=importlib"
|
|
119
121
|
pythonpath = [
|
120
122
|
"."
|
121
123
|
]
|
124
|
+
|
125
|
+
[tool.fixit]
|
126
|
+
enable = [
|
127
|
+
".developer.fixit.check_comments",
|
128
|
+
".developer.fixit.check_docstrings",
|
129
|
+
]
|
130
|
+
|
131
|
+
# FIXME: Remove disable.
|
132
|
+
disable = [
|
133
|
+
"fixit.rules"
|
134
|
+
]
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# mypy: disable-error-code="arg-type,no-untyped-def,
|
1
|
+
# mypy: disable-error-code="arg-type,no-untyped-def,union-attr"
|
2
2
|
import os
|
3
3
|
from pathlib import Path
|
4
4
|
from typing import Dict, List
|
@@ -8,6 +8,7 @@ from xlsxwriter.workbook import Workbook
|
|
8
8
|
from xlsxwriter.worksheet import Worksheet
|
9
9
|
|
10
10
|
from strictdoc.backend.sdoc.models.document import SDocDocument
|
11
|
+
from strictdoc.backend.sdoc.models.model import SDocElementIF
|
11
12
|
from strictdoc.backend.sdoc.models.node import SDocNode
|
12
13
|
from strictdoc.backend.sdoc.models.reference import (
|
13
14
|
FileReference,
|
@@ -78,19 +79,26 @@ class ExcelGenerator:
|
|
78
79
|
# TODO: Check if all fields are defined by the DocumentGrammar
|
79
80
|
columns = ExcelGenerator._init_columns_width(fields)
|
80
81
|
|
81
|
-
|
82
|
-
|
83
|
-
|
82
|
+
document_iterator = traceability_index.get_document_iterator(
|
83
|
+
document
|
84
|
+
)
|
85
|
+
all_nodes = list(
|
86
|
+
map(
|
87
|
+
lambda node_with_context_: node_with_context_[0],
|
88
|
+
document_iterator.all_content(
|
89
|
+
print_fragments=False, print_fragments_from_files=False
|
90
|
+
),
|
84
91
|
)
|
85
92
|
)
|
93
|
+
req_uid_rows = ExcelGenerator._lookup_refs(all_nodes)
|
86
94
|
|
87
95
|
if len(req_uid_rows):
|
88
|
-
for node in traceability_index.get_document_iterator(
|
96
|
+
for node, _ in traceability_index.get_document_iterator(
|
89
97
|
document
|
90
98
|
).all_content(
|
91
99
|
print_fragments=False, print_fragments_from_files=False
|
92
100
|
):
|
93
|
-
if not node.is_requirement or not node.reserved_uid:
|
101
|
+
if not node.is_requirement() or not node.reserved_uid:
|
94
102
|
# only export the requirements with uid
|
95
103
|
continue
|
96
104
|
|
@@ -224,7 +232,7 @@ class ExcelGenerator:
|
|
224
232
|
os.unlink(document_out_file)
|
225
233
|
|
226
234
|
@staticmethod
|
227
|
-
def _lookup_refs(document_contents: List) -> Dict[str, int]:
|
235
|
+
def _lookup_refs(document_contents: List[SDocElementIF]) -> Dict[str, int]:
|
228
236
|
refs: Dict[str, int] = {}
|
229
237
|
row = 1
|
230
238
|
|
@@ -239,7 +247,7 @@ class ExcelGenerator:
|
|
239
247
|
|
240
248
|
@staticmethod
|
241
249
|
def _init_columns_width(fields: List[str]):
|
242
|
-
columns = {}
|
250
|
+
columns: Dict[str, Dict[str, int]] = {}
|
243
251
|
|
244
252
|
for field in fields:
|
245
253
|
columns[field] = {}
|
@@ -260,8 +268,8 @@ class ExcelGenerator:
|
|
260
268
|
worksheet.set_column(idx, idx, columns[field][MAX_WIDTH_KEY])
|
261
269
|
|
262
270
|
@staticmethod
|
263
|
-
def _init_headers(fields: List[str]) -> List:
|
264
|
-
headers: List = []
|
271
|
+
def _init_headers(fields: List[str]) -> List[str]:
|
272
|
+
headers: List[str] = []
|
265
273
|
|
266
274
|
for field in fields:
|
267
275
|
headers.append({"header": field.upper()})
|
@@ -14,7 +14,9 @@ class ExcelLibType(Enum):
|
|
14
14
|
|
15
15
|
@auto_described
|
16
16
|
class ExcelSheetProxy:
|
17
|
-
"""
|
17
|
+
"""
|
18
|
+
This proxy class allows to open either xls(xlrd) or xlsx(openpyxl) with the same interface.
|
19
|
+
"""
|
18
20
|
|
19
21
|
def __init__(self, file: str):
|
20
22
|
self.file = file
|
@@ -35,7 +37,9 @@ class ExcelSheetProxy:
|
|
35
37
|
|
36
38
|
@property
|
37
39
|
def name(self) -> str:
|
38
|
-
"""
|
40
|
+
"""
|
41
|
+
Returns the name of the first sheet.
|
42
|
+
"""
|
39
43
|
if self.lib == ExcelLibType.OPENPYXL:
|
40
44
|
return str(self.sheet.title)
|
41
45
|
elif self.lib == ExcelLibType.XLRD:
|
@@ -44,7 +48,9 @@ class ExcelSheetProxy:
|
|
44
48
|
|
45
49
|
@property
|
46
50
|
def ncols(self) -> int:
|
47
|
-
"""
|
51
|
+
"""
|
52
|
+
The number of columns.
|
53
|
+
"""
|
48
54
|
ncols: int = 0
|
49
55
|
if self.lib == ExcelLibType.OPENPYXL:
|
50
56
|
ncols = self.sheet.max_column
|
@@ -54,7 +60,9 @@ class ExcelSheetProxy:
|
|
54
60
|
|
55
61
|
@property
|
56
62
|
def nrows(self) -> int:
|
57
|
-
"""
|
63
|
+
"""
|
64
|
+
The number of rows.
|
65
|
+
"""
|
58
66
|
nrows: int = 0
|
59
67
|
if self.lib == ExcelLibType.OPENPYXL:
|
60
68
|
nrows = self.sheet.max_row
|
@@ -63,7 +71,9 @@ class ExcelSheetProxy:
|
|
63
71
|
return nrows
|
64
72
|
|
65
73
|
def get_cell_value(self, row: int, col: int) -> str:
|
66
|
-
"""
|
74
|
+
"""
|
75
|
+
Returns the value at row/col as string.
|
76
|
+
"""
|
67
77
|
cell_value: str = ""
|
68
78
|
if self.lib == ExcelLibType.OPENPYXL:
|
69
79
|
cell_value = (
|
@@ -74,7 +84,9 @@ class ExcelSheetProxy:
|
|
74
84
|
return cell_value
|
75
85
|
|
76
86
|
def row_values(self, row: int) -> List[str]:
|
77
|
-
"""
|
87
|
+
"""
|
88
|
+
Returns a full row as list.
|
89
|
+
"""
|
78
90
|
row_values: List[str] = []
|
79
91
|
if self.lib == ExcelLibType.OPENPYXL:
|
80
92
|
row_values = [(cell.value or "") for cell in self.sheet[row + 1]]
|
{strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py
RENAMED
@@ -57,7 +57,7 @@ class ExcelToSDocConverter:
|
|
57
57
|
header_row_idx = i
|
58
58
|
break
|
59
59
|
else:
|
60
|
-
raise NotImplementedError
|
60
|
+
raise NotImplementedError # pragma: no cover
|
61
61
|
|
62
62
|
header_row = sheet.row_values(header_row_idx)
|
63
63
|
safe_header_row = [safe_name(x) for x in header_row]
|
@@ -149,7 +149,13 @@ class ExcelToSDocConverter:
|
|
149
149
|
)
|
150
150
|
|
151
151
|
requirements_element = GrammarElement(
|
152
|
-
parent=None,
|
152
|
+
parent=None,
|
153
|
+
tag="REQUIREMENT",
|
154
|
+
property_is_composite="",
|
155
|
+
property_prefix="",
|
156
|
+
property_view_style="",
|
157
|
+
fields=fields,
|
158
|
+
relations=[],
|
153
159
|
)
|
154
160
|
elements = [requirements_element]
|
155
161
|
grammar = DocumentGrammar(parent=document, elements=elements)
|
{strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py
RENAMED
@@ -21,9 +21,7 @@ from strictdoc.backend.sdoc.models.document_config import DocumentConfig
|
|
21
21
|
from strictdoc.backend.sdoc.models.document_grammar import (
|
22
22
|
DocumentGrammar,
|
23
23
|
GrammarElement,
|
24
|
-
create_default_relations,
|
25
24
|
)
|
26
|
-
from strictdoc.backend.sdoc.models.free_text import FreeText
|
27
25
|
from strictdoc.backend.sdoc.models.node import SDocNode, SDocNodeField
|
28
26
|
from strictdoc.backend.sdoc.models.reference import (
|
29
27
|
ParentReqReference,
|
@@ -136,6 +134,10 @@ class P01_ReqIFToSDocConverter:
|
|
136
134
|
if not isinstance(spec_object_type_, ReqIFSpecObjectType):
|
137
135
|
continue
|
138
136
|
|
137
|
+
# FIXME: [[NODE]]
|
138
|
+
if spec_object_type_.long_name == "SECTION":
|
139
|
+
continue
|
140
|
+
|
139
141
|
grammar_element: GrammarElement = P01_ReqIFToSDocConverter.create_grammar_element_from_spec_object_type(
|
140
142
|
spec_object_type=spec_object_type_,
|
141
143
|
reqif_bundle=reqif_bundle,
|
@@ -175,6 +177,7 @@ class P01_ReqIFToSDocConverter:
|
|
175
177
|
P01_ReqIFToSDocConverter.create_section_from_spec_object(
|
176
178
|
spec_object=spec_object,
|
177
179
|
context=context,
|
180
|
+
parent_section=current_section_,
|
178
181
|
level=current_hierarchy_.level,
|
179
182
|
reqif_bundle=reqif_bundle,
|
180
183
|
)
|
@@ -207,7 +210,7 @@ class P01_ReqIFToSDocConverter:
|
|
207
210
|
spec_object_type_identifier_
|
208
211
|
)
|
209
212
|
)
|
210
|
-
if spec_object_type.long_name
|
213
|
+
if spec_object_type.long_name == "SECTION":
|
211
214
|
continue
|
212
215
|
grammar_element = (
|
213
216
|
context.map_spec_object_type_identifier_to_grammar_node_tags[
|
@@ -215,8 +218,8 @@ class P01_ReqIFToSDocConverter:
|
|
215
218
|
]
|
216
219
|
)
|
217
220
|
if len(grammar_element.relations) == 0:
|
218
|
-
grammar_element.relations =
|
219
|
-
grammar_element
|
221
|
+
grammar_element.relations = (
|
222
|
+
GrammarElement.create_default_relations(grammar_element)
|
220
223
|
)
|
221
224
|
|
222
225
|
elements.append(grammar_element)
|
@@ -306,11 +309,18 @@ class P01_ReqIFToSDocConverter:
|
|
306
309
|
# fields.
|
307
310
|
pass
|
308
311
|
else:
|
309
|
-
raise NotImplementedError(
|
312
|
+
raise NotImplementedError( # pragma: no cover
|
313
|
+
attribute
|
314
|
+
) from None
|
310
315
|
|
311
316
|
requirement_element = GrammarElement(
|
312
317
|
parent=None,
|
313
318
|
tag=create_safe_requirement_tag_string(spec_object_type.long_name),
|
319
|
+
# FIXME: MERGE NODES
|
320
|
+
# When the migration is done, make the nodes to be always recursive.
|
321
|
+
property_is_composite="",
|
322
|
+
property_prefix="",
|
323
|
+
property_view_style="",
|
314
324
|
fields=fields,
|
315
325
|
relations=[],
|
316
326
|
)
|
@@ -347,6 +357,7 @@ class P01_ReqIFToSDocConverter:
|
|
347
357
|
*,
|
348
358
|
spec_object: ReqIFSpecObject,
|
349
359
|
context: P01_ReqIFToSDocBuildContext,
|
360
|
+
parent_section: Union[SDocSection, SDocDocument],
|
350
361
|
level: int,
|
351
362
|
reqif_bundle: ReqIFBundle,
|
352
363
|
) -> SDocSection:
|
@@ -362,13 +373,15 @@ class P01_ReqIFToSDocConverter:
|
|
362
373
|
attribute.definition_ref
|
363
374
|
].long_name
|
364
375
|
if field_name_or_none is None:
|
365
|
-
raise NotImplementedError
|
376
|
+
raise NotImplementedError # pragma: no cover
|
366
377
|
field_name: str = field_name_or_none
|
367
378
|
if field_name == ReqIFChapterField.CHAPTER_NAME:
|
368
379
|
section_title = attribute.value
|
369
380
|
break
|
370
381
|
else:
|
371
|
-
raise NotImplementedError(
|
382
|
+
raise NotImplementedError( # pragma: no cover
|
383
|
+
spec_object, attribute_map
|
384
|
+
)
|
372
385
|
|
373
386
|
# Sanitize the title. Titles can also come from XHTML attributes with
|
374
387
|
# custom newlines such as:
|
@@ -381,7 +394,7 @@ class P01_ReqIFToSDocConverter:
|
|
381
394
|
section_mid = spec_object.identifier if context.enable_mid else None
|
382
395
|
|
383
396
|
section = SDocSection(
|
384
|
-
parent=
|
397
|
+
parent=parent_section,
|
385
398
|
mid=section_mid,
|
386
399
|
uid=None,
|
387
400
|
custom_level=None,
|
@@ -434,7 +447,7 @@ class P01_ReqIFToSDocConverter:
|
|
434
447
|
attribute.definition_ref
|
435
448
|
].long_name
|
436
449
|
if long_name_or_none is None:
|
437
|
-
raise NotImplementedError
|
450
|
+
raise NotImplementedError # pragma: no cover
|
438
451
|
field_name: str = long_name_or_none
|
439
452
|
if attribute.attribute_type == SpecObjectAttributeType.ENUMERATION:
|
440
453
|
sdoc_field_name = P01_ReqIFToSDocConverter.convert_requirement_field_from_reqif(
|
@@ -466,7 +479,7 @@ class P01_ReqIFToSDocConverter:
|
|
466
479
|
|
467
480
|
break
|
468
481
|
else:
|
469
|
-
raise NotImplementedError
|
482
|
+
raise NotImplementedError # pragma: no cover
|
470
483
|
|
471
484
|
enum_values = ", ".join(enum_values_resolved)
|
472
485
|
fields.append(
|
@@ -602,15 +615,3 @@ class P01_ReqIFToSDocConverter:
|
|
602
615
|
if len(parent_refs) > 0:
|
603
616
|
requirement.relations = parent_refs
|
604
617
|
return requirement
|
605
|
-
|
606
|
-
@staticmethod
|
607
|
-
def create_free_text_from_spec_object(
|
608
|
-
spec_object: ReqIFSpecObject,
|
609
|
-
) -> FreeText:
|
610
|
-
free_text = unescape(
|
611
|
-
spec_object.attribute_map[ReqIFChapterField.TEXT].value
|
612
|
-
)
|
613
|
-
return FreeText(
|
614
|
-
parent=None,
|
615
|
-
parts=[free_text],
|
616
|
-
)
|
{strictdoc-0.7.0 → strictdoc-0.9.0a1}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
# mypy: disable-error-code="no-untyped-call,no-untyped-def,
|
1
|
+
# mypy: disable-error-code="no-untyped-call,no-untyped-def,union-attr"
|
2
2
|
import datetime
|
3
3
|
import uuid
|
4
4
|
from collections import defaultdict
|
@@ -102,11 +102,11 @@ class P01_SDocToReqIFObjectConverter:
|
|
102
102
|
multiline_is_xhtml=multiline_is_xhtml, enable_mid=enable_mid
|
103
103
|
)
|
104
104
|
|
105
|
-
spec_types: List = []
|
105
|
+
spec_types: List[ReqIFSpecificationType] = []
|
106
106
|
spec_objects: List[ReqIFSpecObject] = []
|
107
107
|
spec_relations: List[ReqIFSpecRelation] = []
|
108
108
|
specifications: List[ReqIFSpecification] = []
|
109
|
-
data_types: List = []
|
109
|
+
data_types: List[ReqIFDataTypeDefinitionString] = []
|
110
110
|
data_types_lookup = {}
|
111
111
|
|
112
112
|
specification_type = ReqIFSpecificationType(
|
@@ -214,7 +214,9 @@ class P01_SDocToReqIFObjectConverter:
|
|
214
214
|
data_types.append(data_type)
|
215
215
|
data_types_lookup[field.title] = data_type.identifier
|
216
216
|
else:
|
217
|
-
raise NotImplementedError(
|
217
|
+
raise NotImplementedError( # pragma: no cover
|
218
|
+
field
|
219
|
+
) from None
|
218
220
|
|
219
221
|
document_spec_types = cls._convert_document_grammar_to_spec_types(
|
220
222
|
grammar=assert_cast(document.grammar, DocumentGrammar),
|
@@ -244,16 +246,10 @@ class P01_SDocToReqIFObjectConverter:
|
|
244
246
|
current_hierarchy = root_hierarchy
|
245
247
|
|
246
248
|
# FIXME: ReqIF must export complete documents including fragments.
|
247
|
-
for node_ in document_iterator.all_content(
|
249
|
+
for node_, _ in document_iterator.all_content(
|
248
250
|
print_fragments=False, print_fragments_from_files=False
|
249
251
|
):
|
250
|
-
if node_.
|
251
|
-
raise NotImplementedError(
|
252
|
-
"Exporting composite requirements is not "
|
253
|
-
"supported yet.",
|
254
|
-
node_,
|
255
|
-
)
|
256
|
-
if node_.is_section:
|
252
|
+
if node_.is_section():
|
257
253
|
section: SDocSection = assert_cast(node_, SDocSection)
|
258
254
|
# fmt: off
|
259
255
|
spec_object = (
|
@@ -292,7 +288,7 @@ class P01_SDocToReqIFObjectConverter:
|
|
292
288
|
parents[hierarchy] = current_hierarchy_parent
|
293
289
|
current_hierarchy = hierarchy
|
294
290
|
|
295
|
-
elif node_.is_requirement:
|
291
|
+
elif node_.is_requirement():
|
296
292
|
requirement = assert_cast(node_, SDocNode)
|
297
293
|
spec_object = cls._convert_requirement_to_spec_object(
|
298
294
|
requirement=requirement,
|
@@ -443,10 +439,10 @@ class P01_SDocToReqIFObjectConverter:
|
|
443
439
|
)
|
444
440
|
attributes.append(title_attribute)
|
445
441
|
|
446
|
-
|
447
|
-
If MIDs is enabled and this section has an MID, use it for
|
448
|
-
SPEC-OBJECT IDENTIFIER.
|
449
|
-
|
442
|
+
#
|
443
|
+
# If MIDs is enabled and this section has an MID, use it for
|
444
|
+
# SPEC-OBJECT IDENTIFIER.
|
445
|
+
#
|
450
446
|
enable_mid = context.enable_mid and parent_document.config.enable_mid
|
451
447
|
section_identifier: str
|
452
448
|
if enable_mid and section.reserved_mid is not None:
|
@@ -476,7 +472,7 @@ class P01_SDocToReqIFObjectConverter:
|
|
476
472
|
requirement: SDocNode,
|
477
473
|
grammar: DocumentGrammar,
|
478
474
|
context: P01_SDocToReqIFBuildContext,
|
479
|
-
data_types: List,
|
475
|
+
data_types: List[ReqIFDataTypeDefinitionString],
|
480
476
|
data_types_lookup: Dict[str, str],
|
481
477
|
) -> ReqIFSpecObject:
|
482
478
|
node_document = assert_cast(requirement.get_document(), SDocDocument)
|
@@ -566,7 +562,9 @@ class P01_SDocToReqIFObjectConverter:
|
|
566
562
|
value=field_value,
|
567
563
|
)
|
568
564
|
else:
|
569
|
-
raise NotImplementedError(
|
565
|
+
raise NotImplementedError( # pragma: no cover
|
566
|
+
grammar_field
|
567
|
+
) from None
|
570
568
|
attributes.append(attribute)
|
571
569
|
|
572
570
|
if requirement.reserved_uid is not None:
|
@@ -598,7 +596,11 @@ class P01_SDocToReqIFObjectConverter:
|
|
598
596
|
data_types_lookup,
|
599
597
|
context: P01_SDocToReqIFBuildContext,
|
600
598
|
):
|
601
|
-
spec_object_types: List = []
|
599
|
+
spec_object_types: List[ReqIFSpecificationType] = []
|
600
|
+
|
601
|
+
grammar_document: SDocDocument = assert_cast(
|
602
|
+
grammar.parent, SDocDocument
|
603
|
+
)
|
602
604
|
|
603
605
|
for element in grammar.elements:
|
604
606
|
fields_names = element.get_field_titles()
|
@@ -654,7 +656,9 @@ class P01_SDocToReqIFObjectConverter:
|
|
654
656
|
multi_valued=True,
|
655
657
|
)
|
656
658
|
else:
|
657
|
-
raise NotImplementedError(
|
659
|
+
raise NotImplementedError( # pragma: no cover
|
660
|
+
field
|
661
|
+
) from None
|
658
662
|
attribute_definitions.append(attribute)
|
659
663
|
|
660
664
|
# Extra chapter name attribute.
|
@@ -675,7 +679,7 @@ class P01_SDocToReqIFObjectConverter:
|
|
675
679
|
attribute_definitions=attribute_definitions,
|
676
680
|
)
|
677
681
|
spec_object_types.append(spec_object_type)
|
678
|
-
context.map_grammar_node_tags_to_spec_object_type[
|
682
|
+
context.map_grammar_node_tags_to_spec_object_type[grammar_document][
|
679
683
|
element.tag
|
680
684
|
] = spec_object_type
|
681
685
|
|
@@ -683,20 +687,22 @@ class P01_SDocToReqIFObjectConverter:
|
|
683
687
|
section_spec_type = (
|
684
688
|
P01_SDocToReqIFObjectConverter._create_section_spec_object_type()
|
685
689
|
)
|
686
|
-
context.map_grammar_node_tags_to_spec_object_type[
|
690
|
+
context.map_grammar_node_tags_to_spec_object_type[grammar_document][
|
687
691
|
"SECTION"
|
688
692
|
] = section_spec_type
|
689
693
|
spec_object_types.append(section_spec_type)
|
690
694
|
|
691
695
|
# Using dict as an ordered set.
|
692
|
-
spec_relation_tuples: OrderedSet =
|
696
|
+
spec_relation_tuples: OrderedSet[Tuple[str, Optional[str]]] = (
|
697
|
+
OrderedSet()
|
698
|
+
)
|
693
699
|
for element_ in grammar.elements:
|
694
700
|
for relation_ in element_.relations:
|
695
701
|
spec_relation_tuples.add(
|
696
702
|
(relation_.relation_type, relation_.relation_role)
|
697
703
|
)
|
698
704
|
|
699
|
-
spec_relation_types: List = []
|
705
|
+
spec_relation_types: List[ReqIFSpecRelationType] = []
|
700
706
|
for spec_relation_tuple_ in spec_relation_tuples:
|
701
707
|
spec_relation_type_name = (
|
702
708
|
spec_relation_tuple_[1]
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# mypy: disable-error-code="arg-type,no-
|
1
|
+
# mypy: disable-error-code="arg-type,no-untyped-def"
|
2
2
|
import os
|
3
3
|
from pathlib import Path
|
4
4
|
|
@@ -35,17 +35,14 @@ class ReqIFExport:
|
|
35
35
|
f"{project_config.reqif_profile}."
|
36
36
|
)
|
37
37
|
|
38
|
+
output_file_path: str
|
38
39
|
if not reqifz:
|
39
|
-
output_file_path
|
40
|
-
output_reqif_root, "output.reqif"
|
41
|
-
)
|
40
|
+
output_file_path = os.path.join(output_reqif_root, "output.reqif")
|
42
41
|
reqif_content: str = ReqIFUnparser.unparse(reqif_bundle)
|
43
42
|
with open(output_file_path, "w", encoding="utf8") as output_file:
|
44
43
|
output_file.write(reqif_content)
|
45
44
|
else:
|
46
|
-
output_file_path
|
47
|
-
output_reqif_root, "output.reqifz"
|
48
|
-
)
|
45
|
+
output_file_path = os.path.join(output_reqif_root, "output.reqifz")
|
49
46
|
reqifz_bundle = ReqIFZBundle(
|
50
47
|
reqif_bundles={"document_tree.reqif": reqif_bundle},
|
51
48
|
attachments={},
|