strictdoc 0.0.50a1__tar.gz → 0.0.52__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.50a1 → strictdoc-0.0.52}/.gitignore +1 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/CHANGELOG.md +102 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/PKG-INFO +1 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/docs_extra/DO178_requirements.sdoc +16 -16
- strictdoc-0.0.52/drafts/rst_examples.sdoc +266 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/excel/export/excel_generator.py +6 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +22 -7
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +4 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/error_handling.py +89 -106
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/grammar/grammar.py +5 -123
- strictdoc-0.0.52/strictdoc/backend/sdoc/grammar/grammar_builder.py +55 -0
- strictdoc-0.0.52/strictdoc/backend/sdoc/grammar/grammar_grammar.py +100 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/grammar/type_system.py +20 -2
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/include_reader.py → strictdoc-0.0.52/strictdoc/backend/sdoc/grammar_reader.py +14 -16
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/anchor.py +4 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/constants.py +10 -12
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document.py +17 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_config.py +14 -1
- strictdoc-0.0.52/strictdoc/backend/sdoc/models/document_from_file.py +67 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_grammar.py +33 -13
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_view.py +2 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/free_text.py +4 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/node.py +35 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/section.py +33 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/processor.py +84 -58
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/reader.py +1 -7
- strictdoc-0.0.52/strictdoc/backend/sdoc/validations/sdoc_validator.py +272 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/writer.py +18 -40
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/document_finder.py +37 -18
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/document_iterator.py +40 -20
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/document_tree.py +17 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/file_tree.py +13 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/traceability_index.py +13 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/traceability_index_builder.py +94 -5
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/create_requirement.py +6 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/delete_section.py +2 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/section.py +4 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/update_requirement.py +2 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/autogen.css +107 -13
- strictdoc-0.0.52/strictdoc/export/html/_static/collapsible_tree.js +30 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/content.css +3 -3
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +1 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/element.css +29 -10
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/node.css +27 -0
- strictdoc-0.0.52/strictdoc/export/html/_static/project_tree.css +218 -0
- strictdoc-0.0.52/strictdoc/export/html/_static/project_tree.js +345 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/grammar_form_object.py +5 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/requirement_form_object.py +22 -3
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/section_form_object.py +9 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/project_statistics.py +3 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +15 -4
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +3 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +8 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/html_generator.py +3 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/renderers/link_renderer.py +1 -1
- strictdoc-0.0.52/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +5 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +4 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +4 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +4 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +1 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +1 -1
- strictdoc-0.0.52/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +9 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +9 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/search.jinja +4 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form/index.jinja +15 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/index.jinja +28 -4
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +15 -15
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +42 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +29 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +6 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +3 -2
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +1 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/index.jinja +2 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -1
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +3 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/index.jinja +11 -1
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/project_index/main.jinja +56 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +21 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +33 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +29 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -1
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/search/legend.jinja +14 -2
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +55 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +27 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +6 -1
- strictdoc-0.0.52/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +25 -0
- strictdoc-0.0.52/strictdoc/export/html/templates/website/document/index.jinja +1 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/git/change_generator.py +4 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/git/project_diff_analyzer.py +9 -3
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/routers/main_router.py +102 -54
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -38
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/models/fragment.py +0 -15
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/models/fragment_from_file.py +0 -41
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/post_processing/sdoc_fragment_post_processor.py +0 -39
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/validations/requirement.py +0 -191
- strictdoc-0.0.50a1/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -67
- strictdoc-0.0.50a1/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -9
- strictdoc-0.0.50a1/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -9
- strictdoc-0.0.50a1/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -37
- strictdoc-0.0.50a1/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -84
- strictdoc-0.0.50a1/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -3
- strictdoc-0.0.50a1/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -99
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/Dockerfile +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/LICENSE +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/NOTICE +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/README.md +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/docs_extra/Zephyr_requirements.sdoc +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/drafts/requirements/strictdoc.toml +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/mypy.ini +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/pyproject.toml +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/requirements.bootstrap.txt +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/requirements.check.txt +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/ruff.toml +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/document_bibliography.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/cli/cli_arg_parser.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/cli/command_parser_builder.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/commands/diff_command.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/commands/manage_autouid_command.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/actions/passthrough_action.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/analyzers/document_stats.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/file_traceability_index.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/graph/abstract_bucket.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/graph/many_to_many_set.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/graph_database.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/level_counter.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/project_config.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/query_engine/query_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/query_engine/query_reader.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/update_document_config.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/update_free_text.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/update_grammar_element.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/document_dot_generator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/dot_templates.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/document.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/folder.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/legend.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/requirement.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/section.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile1/top_level.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/document.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/folder.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/requirement.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/section.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/dot/templates/profile2/top_level.dot +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- /strictdoc-0.0.50a1/strictdoc/export/html/_static/tree.css → /strictdoc-0.0.52/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/document_grammar_form_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/form_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/source_file_view_generator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/abstract/pdf.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/document_title/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/meta/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/title/pdf.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/h/pdf.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/section/uid/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html2pdf/html2pdf.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/json/json_generator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/spdx/spdx_generator.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/git/change.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/git/git_client.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/diff.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/ordered_set.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/app.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/helpers/turbo.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/server/server.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc.toml +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/tasks.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/tasks_wine.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/tools/confluence_html_table_import.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/tools/link_health.py +0 -0
- {strictdoc-0.0.50a1 → strictdoc-0.0.52}/tox.ini +0 -0
@@ -2,22 +2,122 @@
|
|
2
2
|
|
3
3
|
## [Unreleased](https://github.com/strictdoc-project/strictdoc/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.
|
5
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.51...HEAD)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Bump version to 0.0.51 [\#1717](https://github.com/strictdoc-project/strictdoc/pull/1717) ([stanislaw](https://github.com/stanislaw))
|
10
|
+
|
11
|
+
## [0.0.51](https://github.com/strictdoc-project/strictdoc/tree/0.0.51) (2024-03-20)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.50...0.0.51)
|
14
|
+
|
15
|
+
**Fixed bugs:**
|
16
|
+
|
17
|
+
- UI: Search screen: fix the case when finding requirements/sections [\#1716](https://github.com/strictdoc-project/strictdoc/pull/1716) ([stanislaw](https://github.com/stanislaw))
|
18
|
+
|
19
|
+
**Merged pull requests:**
|
20
|
+
|
21
|
+
- export/html: Update project tree markup [\#1715](https://github.com/strictdoc-project/strictdoc/pull/1715) ([mettta](https://github.com/mettta))
|
22
|
+
|
23
|
+
## [0.0.50](https://github.com/strictdoc-project/strictdoc/tree/0.0.50) (2024-03-19)
|
24
|
+
|
25
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.49...0.0.50)
|
6
26
|
|
7
27
|
**Fixed bugs:**
|
8
28
|
|
29
|
+
- UI: Project tree: Visual artefact when the fragments are not displayed [\#1709](https://github.com/strictdoc-project/strictdoc/issues/1709)
|
30
|
+
- No module named 'requests' when running "export --html2pdf" [\#1701](https://github.com/strictdoc-project/strictdoc/issues/1701)
|
31
|
+
- UI: Diff screen: do not build source file traceability when doing history [\#1708](https://github.com/strictdoc-project/strictdoc/pull/1708) ([stanislaw](https://github.com/stanislaw))
|
32
|
+
|
33
|
+
**Closed issues:**
|
34
|
+
|
35
|
+
- Implement CSS styles for RST warning and info boxes in HTML [\#1706](https://github.com/strictdoc-project/strictdoc/issues/1706)
|
36
|
+
- Update strictdoc.tmLanguage [\#1589](https://github.com/strictdoc-project/strictdoc/issues/1589)
|
37
|
+
|
38
|
+
**Merged pull requests:**
|
39
|
+
|
40
|
+
- docs: regenerate Read the Docs [\#1714](https://github.com/strictdoc-project/strictdoc/pull/1714) ([stanislaw](https://github.com/stanislaw))
|
41
|
+
- Bump version to 0.0.50 [\#1713](https://github.com/strictdoc-project/strictdoc/pull/1713) ([stanislaw](https://github.com/stanislaw))
|
42
|
+
- Styles: add CSS for RST admonition markup [\#1712](https://github.com/strictdoc-project/strictdoc/pull/1712) ([mettta](https://github.com/mettta))
|
43
|
+
- export/html: project\_index: Show fragments by default, disable switcher, add info about including file [\#1711](https://github.com/strictdoc-project/strictdoc/pull/1711) ([mettta](https://github.com/mettta))
|
44
|
+
- docs: FAQ: resources: FOSDEM 2024 [\#1710](https://github.com/strictdoc-project/strictdoc/pull/1710) ([stanislaw](https://github.com/stanislaw))
|
45
|
+
- export/html: show the "included documents" only when there are included docs [\#1705](https://github.com/strictdoc-project/strictdoc/pull/1705) ([stanislaw](https://github.com/stanislaw))
|
46
|
+
- backend/sdoc: remove last occurrences of Fragment, document the change [\#1704](https://github.com/strictdoc-project/strictdoc/pull/1704) ([stanislaw](https://github.com/stanislaw))
|
47
|
+
- Migration from Fragments to includable Documents [\#1703](https://github.com/strictdoc-project/strictdoc/pull/1703) ([stanislaw](https://github.com/stanislaw))
|
48
|
+
- html2pdf: fix the issue of running within virtual environments [\#1702](https://github.com/strictdoc-project/strictdoc/pull/1702) ([stanislaw](https://github.com/stanislaw))
|
49
|
+
- Bump version to 0.0.49 [\#1700](https://github.com/strictdoc-project/strictdoc/pull/1700) ([stanislaw](https://github.com/stanislaw))
|
50
|
+
|
51
|
+
## [0.0.49](https://github.com/strictdoc-project/strictdoc/tree/0.0.49) (2024-03-11)
|
52
|
+
|
53
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.48...0.0.49)
|
54
|
+
|
55
|
+
**Fixed bugs:**
|
56
|
+
|
57
|
+
- auto-uid strips RELATIONS if the REQUIREMENT has no UID/MID [\#1630](https://github.com/strictdoc-project/strictdoc/issues/1630)
|
58
|
+
- BUG: the "Copy to clipboard" button is missing after node editing [\#1588](https://github.com/strictdoc-project/strictdoc/issues/1588)
|
59
|
+
- Adjust the grammar rules and validation rules of the forms. [\#947](https://github.com/strictdoc-project/strictdoc/issues/947)
|
9
60
|
- models: requirement: preserve REFS when setting a field [\#1631](https://github.com/strictdoc-project/strictdoc/pull/1631) ([stanislaw](https://github.com/stanislaw))
|
10
61
|
|
11
62
|
**Closed issues:**
|
12
63
|
|
64
|
+
- UI: Edit grammar element: implement the component for human title [\#1674](https://github.com/strictdoc-project/strictdoc/issues/1674)
|
65
|
+
- Documentation: List of `DOCUMENT` grammar elements does not specify where `REQ_PREFIX` belongs [\#1670](https://github.com/strictdoc-project/strictdoc/issues/1670)
|
66
|
+
- Extend/change the 'edit' menu on each node. [\#1661](https://github.com/strictdoc-project/strictdoc/issues/1661)
|
67
|
+
- Missing validation on "Edit Grammar" form in the frontend [\#1659](https://github.com/strictdoc-project/strictdoc/issues/1659)
|
13
68
|
- Excel export: export multiple documents with relations between them, document the common commands [\#1639](https://github.com/strictdoc-project/strictdoc/issues/1639)
|
14
69
|
- HTML2PDF: Make the webdriver\_manager to avoid downloading newer versions if a cached one already exists [\#1636](https://github.com/strictdoc-project/strictdoc/issues/1636)
|
15
|
-
- auto-uid strips RELATIONS if the REQUIREMENT has no UID/MID [\#1630](https://github.com/strictdoc-project/strictdoc/issues/1630)
|
16
70
|
- auto-uid throws AttributeError when I have a COMPOSITE\_REQUIREMENT [\#1623](https://github.com/strictdoc-project/strictdoc/issues/1623)
|
17
71
|
- StrictDoc does not recognize source files with arbitrary extensions [\#1621](https://github.com/strictdoc-project/strictdoc/issues/1621)
|
72
|
+
- Will not process sdoc files in --output-dir [\#1620](https://github.com/strictdoc-project/strictdoc/issues/1620)
|
73
|
+
- HTML pages: bundle all fonts inside StrictDoc's bundle to avoid hitting Internet all the time [\#1601](https://github.com/strictdoc-project/strictdoc/issues/1601)
|
74
|
+
- UI: Editing arbitrary Nodes, not only Requirement [\#1537](https://github.com/strictdoc-project/strictdoc/issues/1537)
|
75
|
+
- Path resolution for fragments: must read fragments relative to the sdoc input path [\#1261](https://github.com/strictdoc-project/strictdoc/issues/1261)
|
76
|
+
- Project tree: highlight the current document [\#1127](https://github.com/strictdoc-project/strictdoc/issues/1127)
|
77
|
+
- Activate collapsible TOC JS code for static HTML export [\#1097](https://github.com/strictdoc-project/strictdoc/issues/1097)
|
18
78
|
|
19
79
|
**Merged pull requests:**
|
20
80
|
|
81
|
+
- backend/sdoc: writing fragments back to files [\#1699](https://github.com/strictdoc-project/strictdoc/pull/1699) ([stanislaw](https://github.com/stanislaw))
|
82
|
+
- backend/sdoc: writing fragments back to files [\#1697](https://github.com/strictdoc-project/strictdoc/pull/1697) ([stanislaw](https://github.com/stanislaw))
|
83
|
+
- backend/sdoc: rework the parsing algorithm for fragments [\#1696](https://github.com/strictdoc-project/strictdoc/pull/1696) ([stanislaw](https://github.com/stanislaw))
|
84
|
+
- backend/sdoc: resolve relative paths to full paths when importing fragments [\#1695](https://github.com/strictdoc-project/strictdoc/pull/1695) ([stanislaw](https://github.com/stanislaw))
|
85
|
+
- docs: update Roadmap [\#1693](https://github.com/strictdoc-project/strictdoc/pull/1693) ([stanislaw](https://github.com/stanislaw))
|
86
|
+
- Bump version to 0.0.49a7 [\#1690](https://github.com/strictdoc-project/strictdoc/pull/1690) ([stanislaw](https://github.com/stanislaw))
|
87
|
+
- export/html: update form error styles for fields and field groups \(driven by HUMAN\_TITLE\) [\#1689](https://github.com/strictdoc-project/strictdoc/pull/1689) ([stanislaw](https://github.com/stanislaw))
|
88
|
+
- export/html: make collapsible\_list.js based on MutationObserver [\#1686](https://github.com/strictdoc-project/strictdoc/pull/1686) ([mettta](https://github.com/mettta))
|
89
|
+
- export/html: define the copy\_to\_clipboard in expandable node components [\#1685](https://github.com/strictdoc-project/strictdoc/pull/1685) ([mettta](https://github.com/mettta))
|
90
|
+
- export/html: Use self-hosting fonts [\#1684](https://github.com/strictdoc-project/strictdoc/pull/1684) ([mettta](https://github.com/mettta))
|
91
|
+
- Bump version to 0.0.49a6 [\#1682](https://github.com/strictdoc-project/strictdoc/pull/1682) ([stanislaw](https://github.com/stanislaw))
|
92
|
+
- export/html: improve the edit grammar form [\#1681](https://github.com/strictdoc-project/strictdoc/pull/1681) ([mettta](https://github.com/mettta))
|
93
|
+
- export/html: highlight current document [\#1680](https://github.com/strictdoc-project/strictdoc/pull/1680) ([stanislaw](https://github.com/stanislaw))
|
94
|
+
- export/dot: minor improvements to the layout [\#1679](https://github.com/strictdoc-project/strictdoc/pull/1679) ([stanislaw](https://github.com/stanislaw))
|
95
|
+
- server: several validation messages: requirement -\> node [\#1678](https://github.com/strictdoc-project/strictdoc/pull/1678) ([stanislaw](https://github.com/stanislaw))
|
96
|
+
- Code climate: update to new Ruff settings [\#1676](https://github.com/strictdoc-project/strictdoc/pull/1676) ([stanislaw](https://github.com/stanislaw))
|
97
|
+
- server: requirement\_form\_object: adapt to custom elements in the last places [\#1675](https://github.com/strictdoc-project/strictdoc/pull/1675) ([stanislaw](https://github.com/stanislaw))
|
98
|
+
- docs: add a note about not detecting .sdoc files in the output/ folder [\#1673](https://github.com/strictdoc-project/strictdoc/pull/1673) ([stanislaw](https://github.com/stanislaw))
|
99
|
+
- docs: SDoc grammar DOCUMENT fields: add REQ\_PREFIX [\#1672](https://github.com/strictdoc-project/strictdoc/pull/1672) ([stanislaw](https://github.com/stanislaw))
|
100
|
+
- screens/diff: improve the legend with "HEAD vs HEAD+" [\#1671](https://github.com/strictdoc-project/strictdoc/pull/1671) ([stanislaw](https://github.com/stanislaw))
|
101
|
+
- feat: Make the document grammar editable with respect to human titles [\#1669](https://github.com/strictdoc-project/strictdoc/pull/1669) ([dahbar](https://github.com/dahbar))
|
102
|
+
- export/dot: disable requirement links [\#1668](https://github.com/strictdoc-project/strictdoc/pull/1668) ([stanislaw](https://github.com/stanislaw))
|
103
|
+
- export/json: basic JSON export [\#1667](https://github.com/strictdoc-project/strictdoc/pull/1667) ([stanislaw](https://github.com/stanislaw))
|
104
|
+
- server: creating grammar elements and arbitrary nodes [\#1666](https://github.com/strictdoc-project/strictdoc/pull/1666) ([stanislaw](https://github.com/stanislaw))
|
105
|
+
- export/html: Preparing the menu structure for adding new node types [\#1665](https://github.com/strictdoc-project/strictdoc/pull/1665) ([mettta](https://github.com/mettta))
|
106
|
+
- Some style enhancements [\#1664](https://github.com/strictdoc-project/strictdoc/pull/1664) ([mettta](https://github.com/mettta))
|
107
|
+
- export/html: node\_controls: Updating the layout and icons for the "Add node" menu [\#1663](https://github.com/strictdoc-project/strictdoc/pull/1663) ([mettta](https://github.com/mettta))
|
108
|
+
- Refactoring: DocumentGrammarFormObject -\> GrammarElementFormObject, move more logic from Jinja to Python [\#1662](https://github.com/strictdoc-project/strictdoc/pull/1662) ([stanislaw](https://github.com/stanislaw))
|
109
|
+
- html2pdf: update bundle.js: Paragraph: split nested inline elements [\#1660](https://github.com/strictdoc-project/strictdoc/pull/1660) ([mettta](https://github.com/mettta))
|
110
|
+
- export/html: introduce view\_objects to encapsulate Jinja templates data [\#1657](https://github.com/strictdoc-project/strictdoc/pull/1657) ([stanislaw](https://github.com/stanislaw))
|
111
|
+
- html2pdf: update bundle.js: Add options to manually invoke or automatically run the script [\#1656](https://github.com/strictdoc-project/strictdoc/pull/1656) ([mettta](https://github.com/mettta))
|
112
|
+
- Refactoring: Document -\> SDocDocument [\#1655](https://github.com/strictdoc-project/strictdoc/pull/1655) ([stanislaw](https://github.com/stanislaw))
|
113
|
+
- Refactoring: Section -\> SDocSection [\#1654](https://github.com/strictdoc-project/strictdoc/pull/1654) ([stanislaw](https://github.com/stanislaw))
|
114
|
+
- Refactoring: Requirement -\> SDocNode [\#1653](https://github.com/strictdoc-project/strictdoc/pull/1653) ([stanislaw](https://github.com/stanislaw))
|
115
|
+
- Refactoring: rename three helper classes from Requirement\* -\> Node\* [\#1652](https://github.com/strictdoc-project/strictdoc/pull/1652) ([stanislaw](https://github.com/stanislaw))
|
116
|
+
- Refactoring: requirement.py -\> node.py [\#1651](https://github.com/strictdoc-project/strictdoc/pull/1651) ([stanislaw](https://github.com/stanislaw))
|
117
|
+
- Refactoring: Node -\> SDocObject [\#1650](https://github.com/strictdoc-project/strictdoc/pull/1650) ([stanislaw](https://github.com/stanislaw))
|
118
|
+
- html2pdf: update bundle.js: Fix 'block overruns the page bottom' [\#1649](https://github.com/strictdoc-project/strictdoc/pull/1649) ([mettta](https://github.com/mettta))
|
119
|
+
- html2pdf: update bundle.js: Add \<object\> preprocessing [\#1648](https://github.com/strictdoc-project/strictdoc/pull/1648) ([mettta](https://github.com/mettta))
|
120
|
+
- Regenerate CHANGELOG [\#1647](https://github.com/strictdoc-project/strictdoc/pull/1647) ([stanislaw](https://github.com/stanislaw))
|
21
121
|
- tests/end2end: test opening a hyperlink to an CSV asset [\#1646](https://github.com/strictdoc-project/strictdoc/pull/1646) ([stanislaw](https://github.com/stanislaw))
|
22
122
|
- server: main\_router: treat everything "not .html" as assets [\#1645](https://github.com/strictdoc-project/strictdoc/pull/1645) ([stanislaw](https://github.com/stanislaw))
|
23
123
|
- export/excel: link Excel export requirement to source files [\#1644](https://github.com/strictdoc-project/strictdoc/pull/1644) ([stanislaw](https://github.com/stanislaw))
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.52
|
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/
|
@@ -197,6 +197,22 @@ COMMENT: >>>
|
|
197
197
|
S: Source file coverage is StrictDoc's experimental feature. With a more detailed specification, we can turn it to a more advanced and clear presentation of the needed aspects.
|
198
198
|
<<<
|
199
199
|
|
200
|
+
[REQUIREMENT]
|
201
|
+
MID: 8bd26640450f448c8228464223c21373
|
202
|
+
UID: DO178-9
|
203
|
+
COMPLIANCE: C
|
204
|
+
STATUS: Active
|
205
|
+
TITLE: Project-level grammar
|
206
|
+
STATEMENT: >>>
|
207
|
+
StrictDoc shall support creation of a project-level grammar.
|
208
|
+
<<<
|
209
|
+
RATIONALE: >>>
|
210
|
+
A single grammar defined for a project (same grammar for several documents) helps to standardize the structure of all documents in a documentation tree and reduces the effort needed to create identical grammars all the time.
|
211
|
+
<<<
|
212
|
+
COMMENT: >>>
|
213
|
+
S: This feature is easy to implement. The easiest implementation path is to include a config parameter, such as ``project_grammar`` in the already-existing ``strictdoc.toml`` file. At startup, StrictDoc recognizes the parameter and reads the grammar from a separate file. The project grammar becomes a single source of truth for all documents in the project tree but the option to override a grammar for a given document is still preserved.
|
214
|
+
<<<
|
215
|
+
|
200
216
|
[/SECTION]
|
201
217
|
|
202
218
|
[SECTION]
|
@@ -288,22 +304,6 @@ COMMENT: >>>
|
|
288
304
|
S: This is easy to implement but would be nice to have it specified in terms of how exactly it should look like. The requirements coverage screen was one experimental attempt to visualize and highlight the uncovered requirements but we didn't stabilize the feature in terms of the visual clarity.
|
289
305
|
<<<
|
290
306
|
|
291
|
-
[REQUIREMENT]
|
292
|
-
MID: 8bd26640450f448c8228464223c21373
|
293
|
-
UID: DO178-9
|
294
|
-
COMPLIANCE: C
|
295
|
-
STATUS: Backlog
|
296
|
-
TITLE: Project-level grammar
|
297
|
-
STATEMENT: >>>
|
298
|
-
StrictDoc shall support creation of a project-level grammar.
|
299
|
-
<<<
|
300
|
-
RATIONALE: >>>
|
301
|
-
A single grammar defined for a project (same grammar for several documents) helps to standardize the structure of all documents in a documentation tree and reduces the effort needed to create identical grammars all the time.
|
302
|
-
<<<
|
303
|
-
COMMENT: >>>
|
304
|
-
S: This feature is easy to implement. The easiest implementation path is to include a config parameter, such as ``project_grammar`` in the already-existing ``strictdoc.toml`` file. At startup, StrictDoc recognizes the parameter and reads the grammar from a separate file. The project grammar becomes a single source of truth for all documents in the project tree but the option to override a grammar for a given document is still preserved.
|
305
|
-
<<<
|
306
|
-
|
307
307
|
[REQUIREMENT]
|
308
308
|
MID: a1fb2f7cd7cd4c8eb33c3407a791fd88
|
309
309
|
UID: DO178-16
|
@@ -0,0 +1,266 @@
|
|
1
|
+
[DOCUMENT]
|
2
|
+
TITLE: rST examples
|
3
|
+
|
4
|
+
[SECTION]
|
5
|
+
TITLE: Admonition
|
6
|
+
|
7
|
+
[FREETEXT]
|
8
|
+
"attention", "caution", "danger", "error", "hint", "important", "note", "tip", "warning"
|
9
|
+
|
10
|
+
.. admonition:: And, by the way...
|
11
|
+
|
12
|
+
You can make up your own admonition too.
|
13
|
+
|
14
|
+
Second line
|
15
|
+
|
16
|
+
Second line without indent
|
17
|
+
|
18
|
+
.. admonition:: And, by the way...
|
19
|
+
|
20
|
+
You can make up your own admonition too.
|
21
|
+
Second line
|
22
|
+
|
23
|
+
.. note:: This is a note admonition.
|
24
|
+
This is the second line of the first paragraph.
|
25
|
+
|
26
|
+
- The note contains all indented body elements
|
27
|
+
following.
|
28
|
+
- It includes this bullet list.
|
29
|
+
|
30
|
+
.. DANGER::
|
31
|
+
Beware killer rabbits!
|
32
|
+
|
33
|
+
.. danger::
|
34
|
+
The composite requirements feature shows promise
|
35
|
+
|
36
|
+
.. error::
|
37
|
+
The composite requirements feature shows promise
|
38
|
+
|
39
|
+
.. attention::
|
40
|
+
The composite requirements feature shows promise
|
41
|
+
|
42
|
+
.. caution::
|
43
|
+
The composite requirements feature shows promise
|
44
|
+
|
45
|
+
.. important::
|
46
|
+
The composite requirements feature shows promise
|
47
|
+
|
48
|
+
.. warning::
|
49
|
+
The composite requirements feature shows promise
|
50
|
+
|
51
|
+
.. note:: This is a note admonition.
|
52
|
+
This is the second line of the first paragraph.
|
53
|
+
|
54
|
+
.. hint::
|
55
|
+
The composite requirements feature shows promise
|
56
|
+
|
57
|
+
.. tip::
|
58
|
+
The composite requirements feature shows promise
|
59
|
+
[/FREETEXT]
|
60
|
+
|
61
|
+
[/SECTION]
|
62
|
+
|
63
|
+
[SECTION]
|
64
|
+
TITLE: Test Stas
|
65
|
+
|
66
|
+
[FREETEXT]
|
67
|
+
.. warning::
|
68
|
+
|
69
|
+
:name: Test title
|
70
|
+
|
71
|
+
The composite requirements feature shows promise
|
72
|
+
[/FREETEXT]
|
73
|
+
|
74
|
+
[/SECTION]
|
75
|
+
|
76
|
+
[SECTION]
|
77
|
+
TITLE: Code and Math
|
78
|
+
|
79
|
+
[FREETEXT]
|
80
|
+
For example, the content of the following directive
|
81
|
+
|
82
|
+
.. code:: python
|
83
|
+
:number-lines:
|
84
|
+
|
85
|
+
def my_function():
|
86
|
+
"just a test"
|
87
|
+
print(8/2)
|
88
|
+
|
89
|
+
is parsed and marked up as Python source code.
|
90
|
+
|
91
|
+
The "math" directive inserts blocks with mathematical content (display formulas, equations) into the document. The input format is LaTeX math syntax with support for Unicode symbols, for example:
|
92
|
+
|
93
|
+
.. math::
|
94
|
+
|
95
|
+
α_t(i) = P(O_1, O_2, … O_t, q_t = S_i λ)
|
96
|
+
[/FREETEXT]
|
97
|
+
|
98
|
+
[/SECTION]
|
99
|
+
|
100
|
+
[SECTION]
|
101
|
+
TITLE: Table
|
102
|
+
|
103
|
+
[FREETEXT]
|
104
|
+
.. table:: Truth table for "not"
|
105
|
+
:widths: auto
|
106
|
+
:align: right
|
107
|
+
|
108
|
+
===== =====
|
109
|
+
A not A
|
110
|
+
===== =====
|
111
|
+
False True
|
112
|
+
True False
|
113
|
+
===== =====
|
114
|
+
|
115
|
+
The "csv-table" directive is used to create a table from CSV (comma-separated values) [7] data. The data may be internal (an integral part of the document) or external (a separate file).
|
116
|
+
|
117
|
+
.. csv-table:: Frozen Delights!
|
118
|
+
:header: "Treat", "Quantity", "Description"
|
119
|
+
:widths: 15, 10, 30
|
120
|
+
|
121
|
+
"Albatross", 2.99, "On a stick!"
|
122
|
+
"Crunchy Frog", 1.49, "If we took the bones out,
|
123
|
+
it wouldn't be crunchy, now would it?"
|
124
|
+
"Gannet Ripple", 1.99, "On a stick!"
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
The "list-table" directive is used to create a table from data in a uniform two-level bullet list. "Uniform" means that each sublist (second-level list) must contain the same number of list items.
|
129
|
+
|
130
|
+
Example:
|
131
|
+
|
132
|
+
.. list-table:: Frozen Delights!
|
133
|
+
:widths: 15 10 30
|
134
|
+
:header-rows: 1
|
135
|
+
|
136
|
+
* - Treat
|
137
|
+
- Quantity
|
138
|
+
- Description
|
139
|
+
* - Albatross
|
140
|
+
- 2.99
|
141
|
+
- On a stick!
|
142
|
+
* - Crunchy Frog
|
143
|
+
- 1.49
|
144
|
+
- If we took the bones out, it wouldn't be
|
145
|
+
crunchy, now would it?
|
146
|
+
* - Gannet Ripple
|
147
|
+
- 1.99
|
148
|
+
- On a stick!
|
149
|
+
[/FREETEXT]
|
150
|
+
|
151
|
+
[/SECTION]
|
152
|
+
|
153
|
+
[SECTION]
|
154
|
+
TITLE: Block quote
|
155
|
+
|
156
|
+
[FREETEXT]
|
157
|
+
Interpreted as the body of the block quote.
|
158
|
+
|
159
|
+
.. epigraph::
|
160
|
+
|
161
|
+
No matter where you go, there you are.
|
162
|
+
|
163
|
+
-- Buckaroo Banzai (epigraph)
|
164
|
+
|
165
|
+
.. highlights::
|
166
|
+
|
167
|
+
No matter where you go, there you are.
|
168
|
+
|
169
|
+
-- Buckaroo Banzai (highlights)
|
170
|
+
|
171
|
+
.. pull-quote::
|
172
|
+
|
173
|
+
No matter where you go, there you are.
|
174
|
+
|
175
|
+
-- Buckaroo Banzai (pull-quote)
|
176
|
+
|
177
|
+
"To Ma Own Beloved Lassie: A Poem on her 17th Birthday", by
|
178
|
+
Ewan McTeagle (for Lassie O'Shea):
|
179
|
+
|
180
|
+
.. line-block::
|
181
|
+
|
182
|
+
(line-block)
|
183
|
+
Lend us a couple of bob till Thursday.
|
184
|
+
I'm absolutely skint.
|
185
|
+
But I'm expecting a postal order and I can pay you back
|
186
|
+
as soon as it comes.
|
187
|
+
Love, Ewan.
|
188
|
+
[/FREETEXT]
|
189
|
+
|
190
|
+
[/SECTION]
|
191
|
+
|
192
|
+
[SECTION]
|
193
|
+
TITLE: Blocks
|
194
|
+
|
195
|
+
[FREETEXT]
|
196
|
+
.. topic:: Topic Title
|
197
|
+
|
198
|
+
Subsequent indented lines comprise
|
199
|
+
the body of the topic, and are
|
200
|
+
interpreted as body elements.
|
201
|
+
|
202
|
+
.. sidebar:: Optional Sidebar Title
|
203
|
+
:subtitle: Optional Sidebar Subtitle
|
204
|
+
|
205
|
+
Subsequent indented lines comprise
|
206
|
+
the body of the sidebar, and are
|
207
|
+
interpreted as body elements.
|
208
|
+
|
209
|
+
The "compound" directive is used to create a compound paragraph, which is a single logical paragraph containing multiple physical body elements such as simple paragraphs, literal blocks, tables, lists, etc., instead of directly containing text and inline elements. For example:
|
210
|
+
|
211
|
+
.. compound::
|
212
|
+
|
213
|
+
The 'rm' command is very dangerous. If you are logged
|
214
|
+
in as root and enter ::
|
215
|
+
|
216
|
+
cd /
|
217
|
+
rm -rf *
|
218
|
+
|
219
|
+
you will erase the entire contents of your file system.
|
220
|
+
|
221
|
+
The "compound" directive is not a generic block-level container like HTML's <div> element. Do not use it only to group a sequence of elements, or you may get unexpected results.
|
222
|
+
|
223
|
+
If you need a generic block-level container, please use the container directive, described below.
|
224
|
+
|
225
|
+
Compound paragraphs are typically rendered as multiple distinct text blocks, with the possibility of variations to emphasize their logical unity:
|
226
|
+
|
227
|
+
- If paragraphs are rendered with a first-line indent, only the first physical paragraph of a compound paragraph should have that indent -- second and further physical paragraphs should omit the indents;
|
228
|
+
|
229
|
+
- vertical spacing between physical elements may be reduced;
|
230
|
+
|
231
|
+
- and so on.
|
232
|
+
|
233
|
+
|
234
|
+
The "container" directive surrounds its contents (arbitrary body elements) with a generic block-level "container" element. Combined with the optional classes attribute argument(s), this is an extension mechanism for users & applications. For example:
|
235
|
+
|
236
|
+
.. container:: custom
|
237
|
+
|
238
|
+
This paragraph might be rendered in a custom way.
|
239
|
+
[/FREETEXT]
|
240
|
+
|
241
|
+
[/SECTION]
|
242
|
+
|
243
|
+
[SECTION]
|
244
|
+
TITLE: Page parts
|
245
|
+
|
246
|
+
[FREETEXT]
|
247
|
+
.. contents:: Table of Contents
|
248
|
+
|
249
|
+
Title 1
|
250
|
+
=======
|
251
|
+
Paragraph 1.
|
252
|
+
|
253
|
+
Title 2
|
254
|
+
-------
|
255
|
+
Paragraph 2.
|
256
|
+
|
257
|
+
Title 3
|
258
|
+
=======
|
259
|
+
Paragraph 3.
|
260
|
+
|
261
|
+
Title 4
|
262
|
+
-------
|
263
|
+
Paragraph 4.
|
264
|
+
[/FREETEXT]
|
265
|
+
|
266
|
+
[/SECTION]
|
@@ -79,13 +79,17 @@ class ExcelGenerator:
|
|
79
79
|
columns = ExcelGenerator._init_columns_width(fields)
|
80
80
|
|
81
81
|
req_uid_rows = ExcelGenerator._lookup_refs(
|
82
|
-
traceability_index.get_document_iterator(document).all_content(
|
82
|
+
traceability_index.get_document_iterator(document).all_content(
|
83
|
+
print_fragments=False, print_fragments_from_files=False
|
84
|
+
)
|
83
85
|
)
|
84
86
|
|
85
87
|
if len(req_uid_rows):
|
86
88
|
for node in traceability_index.get_document_iterator(
|
87
89
|
document
|
88
|
-
).all_content(
|
90
|
+
).all_content(
|
91
|
+
print_fragments=False, print_fragments_from_files=False
|
92
|
+
):
|
89
93
|
if not node.is_requirement or not node.reserved_uid:
|
90
94
|
# only export the requirements with uid
|
91
95
|
continue
|
{strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py
RENAMED
@@ -98,12 +98,14 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
|
|
98
98
|
)
|
99
99
|
elements: List[GrammarElement] = []
|
100
100
|
document.section_contents = []
|
101
|
-
|
101
|
+
section_stack = [document]
|
102
102
|
used_spec_object_types_ids: Set[str] = set()
|
103
103
|
|
104
104
|
for current_hierarchy in reqif_bundle.iterate_specification_hierarchy(
|
105
105
|
specification
|
106
106
|
):
|
107
|
+
current_section = section_stack[-1]
|
108
|
+
|
107
109
|
spec_object = reqif_bundle.get_spec_object_by_ref(
|
108
110
|
current_hierarchy.spec_object
|
109
111
|
)
|
@@ -121,25 +123,38 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
|
|
121
123
|
)
|
122
124
|
if current_hierarchy.level > current_section.ng_level:
|
123
125
|
current_section.section_contents.append(section)
|
126
|
+
section_stack.append(section)
|
124
127
|
elif current_hierarchy.level < current_section.ng_level:
|
125
128
|
for _ in range(
|
126
|
-
0,
|
129
|
+
0,
|
130
|
+
(current_section.ng_level - current_hierarchy.level)
|
131
|
+
+ 1,
|
127
132
|
):
|
128
|
-
assert
|
129
|
-
|
130
|
-
|
133
|
+
assert len(section_stack) > 0
|
134
|
+
section_stack.pop()
|
135
|
+
current_section = section_stack[-1]
|
131
136
|
current_section.section_contents.append(section)
|
137
|
+
section_stack.append(section)
|
132
138
|
else:
|
133
|
-
|
139
|
+
section_stack.pop()
|
140
|
+
current_section = section_stack[-1]
|
141
|
+
current_section.section_contents.append(section)
|
142
|
+
section_stack.append(section)
|
134
143
|
elif P01_ReqIFToSDocConverter.is_spec_object_requirement(
|
135
144
|
spec_object
|
136
145
|
):
|
137
146
|
requirement: SDocNode = P01_ReqIFToSDocConverter.create_requirement_from_spec_object(
|
138
147
|
spec_object=spec_object,
|
139
|
-
parent_section=
|
148
|
+
parent_section=section_stack[-1],
|
140
149
|
reqif_bundle=reqif_bundle,
|
141
150
|
level=current_hierarchy.level,
|
142
151
|
)
|
152
|
+
for _ in range(
|
153
|
+
0, (current_section.ng_level - current_hierarchy.level) + 1
|
154
|
+
):
|
155
|
+
assert len(section_stack) > 0
|
156
|
+
section_stack.pop()
|
157
|
+
current_section = section_stack[-1]
|
143
158
|
current_section.section_contents.append(requirement)
|
144
159
|
else:
|
145
160
|
raise NotImplementedError(spec_object) from None
|
{strictdoc-0.0.50a1 → strictdoc-0.0.52}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py
RENAMED
@@ -238,7 +238,10 @@ class P01_SDocToReqIFObjectConverter: # pylint: disable=invalid-name
|
|
238
238
|
level=document.ng_level + 1,
|
239
239
|
)
|
240
240
|
current_hierarchy.add_child(hierarchy)
|
241
|
-
|
241
|
+
# FIXME: ReqIF must export complete documents including fragments.
|
242
|
+
for node in document_iterator.all_content(
|
243
|
+
print_fragments=False, print_fragments_from_files=False
|
244
|
+
):
|
242
245
|
if node.is_composite_requirement:
|
243
246
|
raise NotImplementedError(
|
244
247
|
"Exporting composite requirements is not "
|