strictdoc 0.0.55a1__tar.gz → 0.0.56__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/PKG-INFO +2 -2
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/pyproject.toml +1 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/excel_import.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/export/excel_generator.py +36 -28
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +3 -13
- strictdoc-0.0.56/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +550 -0
- strictdoc-0.0.56/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +795 -0
- {strictdoc-0.0.55a1/strictdoc/backend/reqif/p01_sdoc → strictdoc-0.0.56/strictdoc/backend/reqif/p02_simple}/reqif_to_sdoc_converter.py +117 -102
- {strictdoc-0.0.55a1/strictdoc/backend/reqif/p01_sdoc → strictdoc-0.0.56/strictdoc/backend/reqif/p02_simple}/sdoc_to_reqif_converter.py +197 -111
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +12 -16
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/reqif/reqif_export.py +13 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/reqif/reqif_import.py +25 -3
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/reqif/sdoc_reqif_fields.py +6 -5
- strictdoc-0.0.56/strictdoc/backend/sdoc/constants.py +6 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/document_reference.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/error_handling.py +28 -3
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/errors/document_tree_error.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/free_text_reader.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/grammar/grammar.py +8 -4
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/grammar/grammar_builder.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +1 -9
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/grammar/type_system.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/grammar_reader.py +26 -6
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/anchor.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/constants.py +2 -3
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/document.py +33 -28
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/document_config.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/document_from_file.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/document_grammar.py +48 -41
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/document_view.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/free_text.py +6 -6
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/inline_link.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/node.py +110 -207
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/object_factory.py +2 -9
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/reference.py +3 -2
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/section.py +1 -4
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/models/type_system.py +10 -54
- strictdoc-0.0.56/strictdoc/backend/sdoc/pickle_cache.py +73 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/processor.py +27 -15
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/reader.py +5 -35
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/validations/sdoc_validator.py +24 -30
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc/writer.py +19 -58
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc_source_code/models/range_marker.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc_source_code/reader.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/cli/argument_int_range.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/cli/cli_arg_parser.py +32 -16
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/cli/command_parser_builder.py +47 -4
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/cli/main.py +49 -44
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/commands/about_command.py +2 -2
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/commands/diff_command.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/commands/dump_grammar_command.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/commands/manage_autouid_command.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/commands/version_command.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/actions/export_action.py +3 -2
- strictdoc-0.0.56/strictdoc/core/actions/import_action.py +64 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/actions/passthrough_action.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/analyzers/document_stats.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/analyzers/document_uid_analyzer.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/asset_manager.py +5 -6
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/document_finder.py +23 -15
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/document_iterator.py +14 -12
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/document_meta.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/document_tree.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/document_tree_iterator.py +3 -2
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/environment.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/file_traceability_index.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/file_tree.py +5 -4
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/finders/source_files_finder.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/graph/abstract_bucket.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/graph/many_to_many_set.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/graph/one_to_one_dictionary.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/graph/validations.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/graph_database.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/project_config.py +46 -23
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/query_engine/query_object.py +3 -9
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/query_engine/query_reader.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/source_tree.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/traceability_index.py +4 -2
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/traceability_index_builder.py +28 -3
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/constants.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/create_requirement.py +3 -11
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/delete_section.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/section.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/update_document_config.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/update_free_text.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/update_grammar.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/update_grammar_element.py +4 -9
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/update_included_document.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/update_requirement.py +4 -17
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/tree_cycle_detector.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/document_dot_generator.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/dot_templates.py +1 -0
- strictdoc-0.0.56/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +269 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/document_type.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/document_config_form_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/form_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/grammar_element_form_object.py +1 -3
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/grammar_form_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/included_document_form_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/requirement_form_object.py +36 -54
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/form_objects/section_form_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/document.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/document_deep_trace.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/document_pdf.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/document_table.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/document_trace.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/document_tree.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/project_statistics.py +5 -17
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/source_file_coverage.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/source_file_view_generator.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/traceability_matrix.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +1 -0
- strictdoc-0.0.56/strictdoc/export/html/generators/view_objects/nestor_view_object.py +63 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/html_generator.py +19 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/html_templates.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/renderers/html_fragment_writer.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/renderers/link_renderer.py +3 -3
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/renderers/markup_renderer.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/renderers/text_to_html_writer.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +4 -6
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/node/index.jinja +0 -7
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +2 -2
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +1 -1
- strictdoc-0.0.56/strictdoc/export/html/templates/screens/nestor/index.jinja +45 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/tools/html_embedded.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html2pdf/html2pdf.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html2pdf/html2pdf_generator.py +4 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html2pdf/pdf_print_driver.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/json/json_generator.py +8 -36
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/directives/raw_html_role.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/document_rst_generator.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/rst_templates.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/rst_to_html_fragment_writer.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/writer.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/spdx/spdx_generator.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +10 -42
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/git/change_generator.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/git/git_client.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/git/project_diff_analyzer.py +26 -81
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/auto_described.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/cast.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/diff.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/file_modification_time.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/file_system.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/form_data.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/git_client.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/math.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/md5.py +2 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/mid.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/ordered_set.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/parallelizer.py +58 -21
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/path_filter.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/paths.py +1 -0
- strictdoc-0.0.56/strictdoc/helpers/pickle.py +16 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/sha256.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/sorting.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/string.py +9 -14
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/textx.py +4 -1
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/timing.py +5 -1
- strictdoc-0.0.56/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/app.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/error_object.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/helpers/turbo.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/routers/main_router.py +40 -7
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/routers/other_router.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/server.py +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc.toml +1 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/tasks.py +7 -11
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/tools/confluence_html_table_import.py +2 -0
- strictdoc-0.0.55a1/strictdoc/backend/sdoc/pickle_cache.py +0 -39
- strictdoc-0.0.55a1/strictdoc/core/actions/import_action.py +0 -36
- strictdoc-0.0.55a1/strictdoc/helpers/pickle.py +0 -10
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/.gitignore +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/CHANGELOG.md +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/Dockerfile +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/LICENSE +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/NOTICE +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/README.md +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/docs_extra/DO178_requirements.sdoc +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/docs_extra/Zephyr_requirements.sdoc +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/drafts/requirements/strictdoc.toml +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/drafts/rst_examples.sdoc +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/mypy.ini +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/requirements.bootstrap.txt +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/requirements.check.txt +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/ruff.toml +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/reqif/p11_polarion → strictdoc-0.0.56/strictdoc/backend/reqif/p02_simple}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc → strictdoc-0.0.56/strictdoc/backend/reqif/p11_polarion}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc/errors → strictdoc-0.0.56/strictdoc/backend/sdoc}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc/grammar → strictdoc-0.0.56/strictdoc/backend/sdoc/errors}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc/models → strictdoc-0.0.56/strictdoc/backend/sdoc/grammar}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc/validations → strictdoc-0.0.56/strictdoc/backend/sdoc/models}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc_source_code → strictdoc-0.0.56/strictdoc/backend/sdoc/validations}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/backend/sdoc_source_code/models → strictdoc-0.0.56/strictdoc/backend/sdoc_source_code}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/cli → strictdoc-0.0.56/strictdoc/backend/sdoc_source_code/models}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/commands → strictdoc-0.0.56/strictdoc/cli}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/core → strictdoc-0.0.56/strictdoc/commands}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/core/actions → strictdoc-0.0.56/strictdoc/core}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/core/finders → strictdoc-0.0.56/strictdoc/core/actions}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/export → strictdoc-0.0.56/strictdoc/core/finders}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/export/html → strictdoc-0.0.56/strictdoc/export}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile1/document.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile1/folder.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile1/legend.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile1/requirement.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile1/section.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile1/top_level.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile2/document.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile2/folder.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile2/requirement.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile2/section.dot +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/dot/templates/profile2/top_level.dot +0 -0
- {strictdoc-0.0.55a1/strictdoc/export/html/generators → strictdoc-0.0.56/strictdoc/export/html}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/content.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/element.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/project_tree.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static/zoomable.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.0.55a1/strictdoc/export/html/renderers → strictdoc-0.0.56/strictdoc/export/html/generators}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/export/html/tools → strictdoc-0.0.56/strictdoc/export/html/renderers}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/abstract/pdf.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/document_title/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/meta/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/title/pdf.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/h/pdf.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/section/uid/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.55a1/strictdoc/export/rst → strictdoc-0.0.56/strictdoc/export/html/tools}/__init__.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/helpers → strictdoc-0.0.56/strictdoc/export/rst}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/git/change.py +0 -0
- {strictdoc-0.0.55a1/strictdoc/server → strictdoc-0.0.56/strictdoc/helpers}/__init__.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/tasks_wine.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/tools/link_health.py +0 -0
- {strictdoc-0.0.55a1 → strictdoc-0.0.56}/tox.ini +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.56
|
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/
|
@@ -28,7 +28,7 @@ Requires-Dist: html5lib>=1.1
|
|
28
28
|
Requires-Dist: jinja2>=2.11.2
|
29
29
|
Requires-Dist: lxml==4.*,>=4.6.2
|
30
30
|
Requires-Dist: pygments==2.*,>=2.10.0
|
31
|
-
Requires-Dist: python-datauri==
|
31
|
+
Requires-Dist: python-datauri==2.*,>=2.1.1
|
32
32
|
Requires-Dist: python-multipart
|
33
33
|
Requires-Dist: reqif==0.*,>=0.0.39
|
34
34
|
Requires-Dist: requests
|
@@ -66,7 +66,7 @@ dependencies = [
|
|
66
66
|
# Static HTML export with embedded assets.
|
67
67
|
"beautifulsoup4 >= 4.12.0, == 4.*",
|
68
68
|
"html5lib>=1.1", # Used by beautifulsoup4 as an optional plugin.
|
69
|
-
"python-datauri >=
|
69
|
+
"python-datauri >= 2.1.1, == 2.*",
|
70
70
|
|
71
71
|
# Excel
|
72
72
|
"XlsxWriter >= 1.3.7, == 1.*",
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# mypy: disable-error-code="arg-type,no-untyped-def,type-arg,union-attr,var-annotated"
|
1
2
|
import os
|
2
3
|
from pathlib import Path
|
3
4
|
from typing import Dict, List
|
@@ -97,7 +98,11 @@ class ExcelGenerator:
|
|
97
98
|
field_uc = field.upper()
|
98
99
|
|
99
100
|
# Special treatment for ParentReqReference and Comments
|
100
|
-
if field_uc in (
|
101
|
+
if field_uc in (
|
102
|
+
"RELATIONS:PARENT",
|
103
|
+
"PARENT",
|
104
|
+
"PARENTS",
|
105
|
+
):
|
101
106
|
parent_refs = node.get_requirement_references(
|
102
107
|
ReferenceType.PARENT
|
103
108
|
)
|
@@ -128,47 +133,50 @@ class ExcelGenerator:
|
|
128
133
|
# Using a transition marker to separate multiple
|
129
134
|
# comments
|
130
135
|
if node.comments:
|
131
|
-
|
136
|
+
comment_row_value: str = ""
|
132
137
|
for comment in node.comments:
|
133
|
-
if len(
|
134
|
-
|
135
|
-
|
136
|
-
worksheet.write(row, idx,
|
138
|
+
if len(comment_row_value) > 0:
|
139
|
+
comment_row_value += "\n----------\n"
|
140
|
+
comment_row_value += comment
|
141
|
+
worksheet.write(row, idx, comment_row_value)
|
137
142
|
if (
|
138
|
-
|
139
|
-
and len(
|
143
|
+
comment_row_value
|
144
|
+
and len(comment_row_value)
|
140
145
|
> columns[field][MAX_WIDTH_KEY]
|
141
146
|
):
|
142
|
-
columns[field][MAX_WIDTH_KEY] = len(
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
if
|
147
|
+
columns[field][MAX_WIDTH_KEY] = len(
|
148
|
+
comment_row_value
|
149
|
+
)
|
150
|
+
elif field_uc == "RELATIONS":
|
151
|
+
if len(node.relations) > 0:
|
152
|
+
relations_components = []
|
147
153
|
# Using a transition marker to separate
|
148
154
|
# multiple references
|
149
|
-
for ref in
|
150
|
-
if len(value) > 0:
|
151
|
-
value += "----------\n"
|
155
|
+
for ref in node.relations:
|
152
156
|
if isinstance(ref, ParentReqReference):
|
153
|
-
|
154
|
-
ref.ref_type
|
155
|
-
+ ": "
|
156
|
-
+ ref.ref_uid
|
157
|
-
+ "\n"
|
157
|
+
relations_components.append(
|
158
|
+
ref.ref_type + ": " + ref.ref_uid
|
158
159
|
)
|
159
160
|
elif isinstance(ref, FileReference):
|
160
|
-
|
161
|
+
relations_components.append(
|
161
162
|
ref.ref_type
|
162
163
|
+ ": "
|
163
164
|
+ ref.get_posix_path()
|
164
|
-
+ "\n"
|
165
165
|
)
|
166
|
-
|
167
|
-
|
166
|
+
relations_row_value: str = (
|
167
|
+
"\n----------\n".join(relations_components)
|
168
|
+
)
|
169
|
+
worksheet.write(row, idx, relations_row_value)
|
170
|
+
value_len = len(relations_row_value)
|
171
|
+
if value_len > columns[field][MAX_WIDTH_KEY]:
|
172
|
+
columns[field][MAX_WIDTH_KEY] = value_len
|
173
|
+
elif field_uc in node.ordered_fields_lookup.keys():
|
174
|
+
req_field = node.ordered_fields_lookup[field_uc][0]
|
175
|
+
value: str = req_field.get_value()
|
168
176
|
worksheet.write(row, idx, value)
|
169
|
-
|
170
|
-
if
|
171
|
-
columns[field][MAX_WIDTH_KEY] =
|
177
|
+
value_len = len(value)
|
178
|
+
if value_len > columns[field][MAX_WIDTH_KEY]:
|
179
|
+
columns[field][MAX_WIDTH_KEY] = value_len
|
172
180
|
elif hasattr(node, "special_fields"):
|
173
181
|
if len(node.special_fields):
|
174
182
|
for special_field in node.special_fields:
|
{strictdoc-0.0.55a1 → strictdoc-0.0.56}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py
RENAMED
@@ -1,3 +1,4 @@
|
|
1
|
+
# mypy: disable-error-code="no-untyped-call,no-untyped-def"
|
1
2
|
import os
|
2
3
|
from typing import List, NamedTuple, Optional, Tuple
|
3
4
|
|
@@ -37,7 +38,6 @@ def safe_name(dangerous_name):
|
|
37
38
|
return dangerous_name
|
38
39
|
|
39
40
|
|
40
|
-
# pylint: disable=too-many-instance-attributes
|
41
41
|
class ExcelToSDocConverter:
|
42
42
|
@staticmethod
|
43
43
|
# optional argument title is present for external scripts to assign a title
|
@@ -201,29 +201,19 @@ class ExcelToSDocConverter:
|
|
201
201
|
field_name=name,
|
202
202
|
field_value=None,
|
203
203
|
field_value_multiline=value,
|
204
|
-
field_value_references=None,
|
205
204
|
)
|
206
205
|
]
|
207
206
|
if parent_uid is not None:
|
208
207
|
reference = ParentReqReference(
|
209
208
|
template_requirement, parent_uid, role=None
|
210
209
|
)
|
211
|
-
|
212
|
-
requirement_field = SDocNodeField(
|
213
|
-
parent=template_requirement,
|
214
|
-
field_name="REFS",
|
215
|
-
field_value=None,
|
216
|
-
field_value_multiline=None,
|
217
|
-
field_value_references=[reference],
|
218
|
-
)
|
219
|
-
template_requirement.ordered_fields_lookup["REFS"] = [
|
220
|
-
requirement_field
|
221
|
-
]
|
210
|
+
template_requirement.relations = [reference]
|
222
211
|
requirement = SDocNode(
|
223
212
|
parent=template_requirement.parent,
|
224
213
|
requirement_type=template_requirement.requirement_type,
|
225
214
|
mid=None,
|
226
215
|
fields=list(template_requirement.enumerate_fields()),
|
216
|
+
relations=template_requirement.relations,
|
227
217
|
)
|
228
218
|
|
229
219
|
return requirement
|