strictdoc 0.0.52__tar.gz → 0.0.54a1__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.52 → strictdoc-0.0.54a1}/PKG-INFO +1 -3
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/pyproject.toml +0 -9
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/export/excel_generator.py +0 -8
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +7 -2
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/grammar/grammar.py +6 -15
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +2 -6
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/grammar/type_system.py +3 -22
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/constants.py +4 -16
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/document.py +42 -13
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/document_from_file.py +21 -25
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/document_grammar.py +0 -3
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/node.py +6 -2
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/object_factory.py +0 -2
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/reference.py +0 -10
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/section.py +4 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/type_system.py +0 -90
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/pickle_cache.py +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/processor.py +21 -70
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/reader.py +1 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/writer.py +108 -133
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/cli/cli_arg_parser.py +12 -5
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/cli/command_parser_builder.py +9 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/actions/export_action.py +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/document_finder.py +5 -1
- strictdoc-0.0.54a1/strictdoc/core/document_iterator.py +192 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/file_tree.py +36 -3
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/finders/source_files_finder.py +5 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/project_config.py +36 -16
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/traceability_index_builder.py +3 -11
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/create_requirement.py +18 -5
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/section.py +36 -12
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/update_grammar_element.py +1 -1
- strictdoc-0.0.54a1/strictdoc/core/transforms/update_included_document.py +70 -0
- strictdoc-0.0.54a1/strictdoc/export/html/_static/collapsible_toc.js +200 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/collapsible_tree.js +3 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/content.css +6 -13
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/element.css +46 -9
- strictdoc-0.0.54a1/strictdoc/export/html/_static/zoomable.js +387 -0
- strictdoc-0.0.54a1/strictdoc/export/html/form_objects/included_document_form_object.py +124 -0
- strictdoc-0.0.54a1/strictdoc/export/html/generators/traceability_matrix.py +102 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +25 -1
- strictdoc-0.0.52/strictdoc/export/html/generators/traceability_matrix.py → strictdoc-0.0.54a1/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +6 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/renderers/link_renderer.py +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/renderers/markup_renderer.py +1 -1
- strictdoc-0.0.54a1/strictdoc/export/html/templates/components/included_document_form/index.jinja +44 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/node/index.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +14 -3
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +7 -3
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +1 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/index.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/table/index.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -13
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +2 -2
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/diff_content.jinja +4 -4
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/legend.jinja +3 -5
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/index.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/main.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/search/legend.jinja +3 -5
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +2 -2
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +1 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/json/json_generator.py +86 -41
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -9
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/git/project_diff_analyzer.py +19 -6
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/helpers/turbo.py +2 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/routers/main_router.py +177 -35
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc.toml +2 -1
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/tasks.py +0 -10
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/tasks_wine.py +0 -9
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/tools/confluence_html_table_import.py +0 -2
- strictdoc-0.0.52/strictdoc/backend/sdoc/models/document_bibliography.py +0 -42
- strictdoc-0.0.52/strictdoc/core/document_iterator.py +0 -154
- strictdoc-0.0.52/strictdoc/core/level_counter.py +0 -21
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/.gitignore +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/CHANGELOG.md +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/Dockerfile +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/LICENSE +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/NOTICE +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/README.md +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/docs_extra/DO178_requirements.sdoc +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/docs_extra/Zephyr_requirements.sdoc +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/drafts/requirements/strictdoc.toml +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/drafts/rst_examples.sdoc +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/mypy.ini +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/requirements.bootstrap.txt +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/requirements.check.txt +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/ruff.toml +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/anchor.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/document_config.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/document_view.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/free_text.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/models/object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/commands/diff_command.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/commands/manage_autouid_command.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/actions/passthrough_action.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/analyzers/document_stats.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/file_traceability_index.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/graph/abstract_bucket.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/graph/many_to_many_set.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/graph_database.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/query_engine/query_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/query_engine/query_reader.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/traceability_index.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/delete_section.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/update_document_config.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/update_free_text.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/update_requirement.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/document_dot_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/dot_templates.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile1/document.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile1/folder.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile1/legend.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile1/requirement.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile1/section.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile1/top_level.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile2/document.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile2/folder.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile2/requirement.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile2/section.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/dot/templates/profile2/top_level.dot +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/html2pdf/bundle.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/project_tree.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/form_objects/form_object.py +0 -0
- /strictdoc-0.0.52/strictdoc/export/html/form_objects/document_grammar_form_object.py → /strictdoc-0.0.54a1/strictdoc/export/html/form_objects/grammar_element_form_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/form_objects/requirement_form_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/project_statistics.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/source_file_view_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/abstract/pdf.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/document_title/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/meta/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/title/pdf.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/h/pdf.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/section/uid/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html2pdf/html2pdf.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/spdx/spdx_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/git/change.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/git/change_generator.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/git/git_client.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/diff.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/ordered_set.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/app.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/server/server.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/tools/link_health.py +0 -0
- {strictdoc-0.0.52 → strictdoc-0.0.54a1}/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.54a1
|
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/
|
@@ -27,14 +27,12 @@ Requires-Dist: graphviz>=0.20.1
|
|
27
27
|
Requires-Dist: html5lib>=1.1
|
28
28
|
Requires-Dist: jinja2>=2.11.2
|
29
29
|
Requires-Dist: lxml==4.*,>=4.6.2
|
30
|
-
Requires-Dist: pybtex==0.*,>=0.23.0
|
31
30
|
Requires-Dist: pygments==2.*,>=2.10.0
|
32
31
|
Requires-Dist: python-datauri==0.*,>=0.2.9
|
33
32
|
Requires-Dist: python-multipart
|
34
33
|
Requires-Dist: reqif==0.*,>=0.0.39
|
35
34
|
Requires-Dist: requests
|
36
35
|
Requires-Dist: selenium
|
37
|
-
Requires-Dist: setuptools
|
38
36
|
Requires-Dist: spdx-tools
|
39
37
|
Requires-Dist: textx==3.*,>=3.0.0
|
40
38
|
Requires-Dist: toml
|
@@ -78,15 +78,6 @@ dependencies = [
|
|
78
78
|
# SPDX
|
79
79
|
"spdx-tools",
|
80
80
|
|
81
|
-
# Bibtex
|
82
|
-
"pybtex >= 0.23.0, == 0.*",
|
83
|
-
# Bibtex fails with:
|
84
|
-
# ModuleNotFoundError: No module named 'pkg_resources'
|
85
|
-
# because pkg_resources has been deprecated.
|
86
|
-
# Installing setuptools fixes the issue for now, see
|
87
|
-
# https://bitbucket.org/pybtex-devs/pybtex/issues/169
|
88
|
-
"setuptools",
|
89
|
-
|
90
81
|
# Web server dependencies
|
91
82
|
"fastapi >= 0.83.0",
|
92
83
|
# FastAPI: To receive uploaded files and/or form data, first install python-multipart.
|
@@ -9,7 +9,6 @@ from xlsxwriter.worksheet import Worksheet
|
|
9
9
|
from strictdoc.backend.sdoc.models.document import SDocDocument
|
10
10
|
from strictdoc.backend.sdoc.models.node import SDocNode
|
11
11
|
from strictdoc.backend.sdoc.models.reference import (
|
12
|
-
BibReference,
|
13
12
|
FileReference,
|
14
13
|
ParentReqReference,
|
15
14
|
)
|
@@ -164,13 +163,6 @@ class ExcelGenerator:
|
|
164
163
|
+ ref.get_posix_path()
|
165
164
|
+ "\n"
|
166
165
|
)
|
167
|
-
elif isinstance(ref, BibReference):
|
168
|
-
value += (
|
169
|
-
ref.ref_type
|
170
|
-
+ ": "
|
171
|
-
+ ref.bib_entry.bib_value
|
172
|
-
+ "\n"
|
173
|
-
)
|
174
166
|
else:
|
175
167
|
value = req_field.get_value()
|
176
168
|
worksheet.write(row, idx, value)
|
{strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py
RENAMED
@@ -120,7 +120,13 @@ class ExcelToSDocConverter:
|
|
120
120
|
document_config = DocumentConfig.default_config(None)
|
121
121
|
document_title = title if title else "<No title>"
|
122
122
|
document = SDocDocument(
|
123
|
-
None,
|
123
|
+
mid=None,
|
124
|
+
title=document_title,
|
125
|
+
config=document_config,
|
126
|
+
view=None,
|
127
|
+
grammar=None,
|
128
|
+
free_texts=[],
|
129
|
+
section_contents=[],
|
124
130
|
)
|
125
131
|
|
126
132
|
fields = list(
|
@@ -219,6 +225,5 @@ class ExcelToSDocConverter:
|
|
219
225
|
mid=None,
|
220
226
|
fields=list(template_requirement.enumerate_fields()),
|
221
227
|
)
|
222
|
-
requirement.ng_level = 1
|
223
228
|
|
224
229
|
return requirement
|
{strictdoc-0.0.52 → strictdoc-0.0.54a1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py
RENAMED
@@ -275,7 +275,7 @@ class P01_ReqIFToSDocConverter: # pylint: disable=invalid-name
|
|
275
275
|
document_config = DocumentConfig.default_config(None)
|
276
276
|
document_title = title if title else "<No title>"
|
277
277
|
document = SDocDocument(
|
278
|
-
None, document_title, document_config, None, None,
|
278
|
+
None, document_title, document_config, None, None, [], []
|
279
279
|
)
|
280
280
|
document.grammar = DocumentGrammar.create_default(document)
|
281
281
|
# FIXME: One day this will go away.
|
@@ -290,7 +290,7 @@ class P11_ReqIFToSDocConverter: # pylint: disable=invalid-name
|
|
290
290
|
document_config.markup = "HTML"
|
291
291
|
document_title = title if title else "<No title>"
|
292
292
|
document = SDocDocument(
|
293
|
-
None, document_title, document_config, None, None,
|
293
|
+
None, document_title, document_config, None, None, [], []
|
294
294
|
)
|
295
295
|
document.grammar = DocumentGrammar.create_default(document)
|
296
296
|
return document
|
@@ -37,19 +37,10 @@ SDocDocument[noskipws]:
|
|
37
37
|
(config = DocumentConfig)?
|
38
38
|
(view = DocumentView)?
|
39
39
|
('\n' grammar = DocumentGrammar)?
|
40
|
-
('\n' bibliography = DocumentBibliography)?
|
41
40
|
free_texts *= SpaceThenFreeText
|
42
41
|
section_contents *= SectionOrRequirement
|
43
42
|
;
|
44
43
|
|
45
|
-
DocumentBibliography[noskipws]:
|
46
|
-
'[BIBLIOGRAPHY]' '\n'
|
47
|
-
( 'BIBFILES:' '\n'
|
48
|
-
bib_files *= BibFileEntry )?
|
49
|
-
( 'ENTRIES:' '\n'
|
50
|
-
bib_entries += BibEntry )?
|
51
|
-
;
|
52
|
-
|
53
44
|
DocumentConfig[noskipws]:
|
54
45
|
('UID: ' uid = /{REGEX_UID}/ '\n')?
|
55
46
|
('VERSION: ' version = SingleLineString '\n')?
|
@@ -136,16 +127,16 @@ SDocSection[noskipws]:
|
|
136
127
|
;
|
137
128
|
|
138
129
|
SectionOrRequirement[noskipws]:
|
139
|
-
'\n' (SDocSection | SDocNode |
|
130
|
+
'\n' (SDocSection | SDocNode | SDocCompositeNode | DocumentFromFile)
|
140
131
|
;
|
141
132
|
|
142
|
-
|
133
|
+
DocumentFromFile[noskipws]:
|
143
134
|
'[DOCUMENT_FROM_FILE]' '\n'
|
144
135
|
'FILE: ' file = /.+$/ '\n'
|
145
136
|
;
|
146
137
|
|
147
138
|
SpaceThenRequirement[noskipws]:
|
148
|
-
'\n' (SDocNode |
|
139
|
+
'\n' (SDocNode | SDocCompositeNode)
|
149
140
|
;
|
150
141
|
|
151
142
|
SpaceThenFreeText[noskipws]:
|
@@ -157,12 +148,12 @@ ReservedKeyword[noskipws]:
|
|
157
148
|
;
|
158
149
|
|
159
150
|
SDocNode[noskipws]:
|
160
|
-
'[' !
|
151
|
+
'[' !SDocCompositeNodeTagName requirement_type = RequirementType ']' '\n'
|
161
152
|
('MID: ' mid = SingleLineString '\n')?
|
162
153
|
fields *= SDocNodeField
|
163
154
|
;
|
164
155
|
|
165
|
-
|
156
|
+
SDocCompositeNodeTagName[noskipws]:
|
166
157
|
'COMPOSITE_'
|
167
158
|
;
|
168
159
|
|
@@ -180,7 +171,7 @@ SDocNodeField[noskipws]:
|
|
180
171
|
)
|
181
172
|
;
|
182
173
|
|
183
|
-
|
174
|
+
SDocCompositeNode[noskipws]:
|
184
175
|
'[COMPOSITE_' requirement_type = RequirementType ']' '\n'
|
185
176
|
|
186
177
|
('MID: ' mid = SingleLineString '\n')?
|
@@ -24,7 +24,7 @@ GrammarElement[noskipws]:
|
|
24
24
|
;
|
25
25
|
|
26
26
|
GrammarElementRelation[noskipws]:
|
27
|
-
(GrammarElementRelationParent | GrammarElementRelationChild | GrammarElementRelationFile
|
27
|
+
(GrammarElementRelationParent | GrammarElementRelationChild | GrammarElementRelationFile)
|
28
28
|
;
|
29
29
|
|
30
30
|
GrammarElementRelationParent[noskipws]:
|
@@ -41,10 +41,6 @@ GrammarElementRelationFile[noskipws]:
|
|
41
41
|
' - TYPE: ' relation_type='File' '\n'
|
42
42
|
;
|
43
43
|
|
44
|
-
GrammarElementRelationBibtex[noskipws]:
|
45
|
-
' - TYPE: ' relation_type='BibTex' '\n'
|
46
|
-
;
|
47
|
-
|
48
44
|
GrammarElementField[noskipws]:
|
49
45
|
GrammarElementFieldString |
|
50
46
|
GrammarElementFieldSingleChoice |
|
@@ -91,7 +87,7 @@ GrammarElementFieldReference[noskipws]:
|
|
91
87
|
;
|
92
88
|
|
93
89
|
ReferenceType[noskipws]:
|
94
|
-
('ParentReqReference' | 'ChildReqReference' | 'FileReference'
|
90
|
+
('ParentReqReference' | 'ChildReqReference' | 'FileReference')
|
95
91
|
;
|
96
92
|
|
97
93
|
ReferenceTypeXs[noskipws]:
|
@@ -36,12 +36,12 @@ RequirementType[noskipws]:
|
|
36
36
|
;
|
37
37
|
|
38
38
|
ReservedKeyword[noskipws]:
|
39
|
-
'DOCUMENT' | 'GRAMMAR'
|
39
|
+
'DOCUMENT' | 'GRAMMAR'
|
40
40
|
;
|
41
41
|
|
42
42
|
Reference[noskipws]:
|
43
43
|
// FileReference is an early, experimental feature. Do not use yet.
|
44
|
-
ParentReqReference | ChildReqReference | FileReference
|
44
|
+
ParentReqReference | ChildReqReference | FileReference
|
45
45
|
;
|
46
46
|
|
47
47
|
ParentReqReference[noskipws]:
|
@@ -63,11 +63,6 @@ FileReference[noskipws]:
|
|
63
63
|
g_file_entry = FileEntry
|
64
64
|
;
|
65
65
|
|
66
|
-
BibFileEntry[noskipws]:
|
67
|
-
'- FORMAT: BibTex\n'
|
68
|
-
' VALUE: ' file_path = /.*$/ '\n'
|
69
|
-
;
|
70
|
-
|
71
66
|
FileEntry[noskipws]:
|
72
67
|
(' FORMAT: ' g_file_format = FileEntryFormat '\n')?
|
73
68
|
' VALUE: ' g_file_path = /.*$/ '\n'
|
@@ -75,21 +70,7 @@ FileEntry[noskipws]:
|
|
75
70
|
;
|
76
71
|
|
77
72
|
FileEntryFormat[noskipws]:
|
78
|
-
'
|
79
|
-
;
|
80
|
-
|
81
|
-
BibReference[noskipws]:
|
82
|
-
'- TYPE: BibTex' '\n'
|
83
|
-
(' FORMAT: ' bib_format = BibEntryFormat '\n')?
|
84
|
-
' VALUE: ' bib_value = /.*$/ '\n'
|
73
|
+
'Sourcecode' | 'Python' | /[A-Z]+[A-Z_]*/
|
85
74
|
;
|
86
75
|
|
87
|
-
BibEntry[noskipws]:
|
88
|
-
('- FORMAT: ' bib_format = BibEntryFormat '\n')?
|
89
|
-
' VALUE: ' bib_value = /.*$/ '\n'
|
90
|
-
;
|
91
|
-
|
92
|
-
BibEntryFormat[noskipws]:
|
93
|
-
'String' | 'BibTex' | 'Citation'
|
94
|
-
;
|
95
76
|
"""
|
@@ -1,10 +1,7 @@
|
|
1
1
|
from strictdoc.backend.sdoc.models.anchor import Anchor
|
2
2
|
from strictdoc.backend.sdoc.models.document import SDocDocument
|
3
|
-
from strictdoc.backend.sdoc.models.document_bibliography import (
|
4
|
-
DocumentBibliography,
|
5
|
-
)
|
6
3
|
from strictdoc.backend.sdoc.models.document_config import DocumentConfig
|
7
|
-
from strictdoc.backend.sdoc.models.document_from_file import
|
4
|
+
from strictdoc.backend.sdoc.models.document_from_file import DocumentFromFile
|
8
5
|
from strictdoc.backend.sdoc.models.document_grammar import (
|
9
6
|
DocumentGrammar,
|
10
7
|
GrammarElement,
|
@@ -15,12 +12,11 @@ from strictdoc.backend.sdoc.models.document_view import (
|
|
15
12
|
)
|
16
13
|
from strictdoc.backend.sdoc.models.inline_link import InlineLink
|
17
14
|
from strictdoc.backend.sdoc.models.node import (
|
18
|
-
|
15
|
+
SDocCompositeNode,
|
19
16
|
SDocNode,
|
20
17
|
SDocNodeField,
|
21
18
|
)
|
22
19
|
from strictdoc.backend.sdoc.models.reference import (
|
23
|
-
BibReference,
|
24
20
|
ChildReqReference,
|
25
21
|
FileReference,
|
26
22
|
ParentReqReference,
|
@@ -28,15 +24,12 @@ from strictdoc.backend.sdoc.models.reference import (
|
|
28
24
|
)
|
29
25
|
from strictdoc.backend.sdoc.models.section import FreeText, SDocSection
|
30
26
|
from strictdoc.backend.sdoc.models.type_system import (
|
31
|
-
BibEntry,
|
32
|
-
BibFileEntry,
|
33
27
|
FileEntry,
|
34
28
|
GrammarElementFieldMultipleChoice,
|
35
29
|
GrammarElementFieldReference,
|
36
30
|
GrammarElementFieldSingleChoice,
|
37
31
|
GrammarElementFieldString,
|
38
32
|
GrammarElementFieldTag,
|
39
|
-
GrammarElementRelationBibtex,
|
40
33
|
GrammarElementRelationChild,
|
41
34
|
GrammarElementRelationFile,
|
42
35
|
GrammarElementRelationParent,
|
@@ -47,21 +40,18 @@ from strictdoc.backend.sdoc.models.type_system import (
|
|
47
40
|
|
48
41
|
SECTION_MODELS = [
|
49
42
|
SDocSection,
|
50
|
-
|
43
|
+
DocumentFromFile,
|
51
44
|
SDocNode,
|
52
45
|
SDocNodeField,
|
53
|
-
|
46
|
+
SDocCompositeNode,
|
54
47
|
Reference,
|
55
48
|
ParentReqReference,
|
56
49
|
ChildReqReference,
|
57
50
|
FileReference,
|
58
|
-
BibReference,
|
59
51
|
FreeText,
|
60
52
|
InlineLink,
|
61
53
|
Anchor,
|
62
|
-
BibFileEntry,
|
63
54
|
FileEntry,
|
64
|
-
BibEntry,
|
65
55
|
]
|
66
56
|
|
67
57
|
GRAMMAR_MODELS = [
|
@@ -72,7 +62,6 @@ GRAMMAR_MODELS = [
|
|
72
62
|
GrammarElementFieldMultipleChoice,
|
73
63
|
GrammarElementFieldTag,
|
74
64
|
GrammarElementFieldReference,
|
75
|
-
GrammarElementRelationBibtex,
|
76
65
|
GrammarElementRelationParent,
|
77
66
|
GrammarElementRelationChild,
|
78
67
|
GrammarElementRelationFile,
|
@@ -82,7 +71,6 @@ DOCUMENT_MODELS = [
|
|
82
71
|
DocumentConfig,
|
83
72
|
SDocDocument,
|
84
73
|
DocumentView,
|
85
|
-
DocumentBibliography,
|
86
74
|
ViewElement,
|
87
75
|
ViewElementField,
|
88
76
|
ViewElementTags,
|
@@ -1,8 +1,5 @@
|
|
1
1
|
from typing import List, Optional
|
2
2
|
|
3
|
-
from strictdoc.backend.sdoc.models.document_bibliography import (
|
4
|
-
DocumentBibliography,
|
5
|
-
)
|
6
3
|
from strictdoc.backend.sdoc.models.document_config import DocumentConfig
|
7
4
|
from strictdoc.backend.sdoc.models.document_grammar import DocumentGrammar
|
8
5
|
from strictdoc.backend.sdoc.models.document_view import DocumentView
|
@@ -12,6 +9,12 @@ from strictdoc.helpers.auto_described import auto_described
|
|
12
9
|
from strictdoc.helpers.mid import MID
|
13
10
|
|
14
11
|
|
12
|
+
@auto_described
|
13
|
+
class SDocDocumentContext:
|
14
|
+
def __init__(self):
|
15
|
+
self.title_number_string = None
|
16
|
+
|
17
|
+
|
15
18
|
@auto_described
|
16
19
|
class SDocDocument: # pylint: disable=too-many-instance-attributes
|
17
20
|
def __init__(
|
@@ -21,7 +24,6 @@ class SDocDocument: # pylint: disable=too-many-instance-attributes
|
|
21
24
|
config: Optional[DocumentConfig],
|
22
25
|
view: Optional[DocumentView],
|
23
26
|
grammar: Optional[DocumentGrammar],
|
24
|
-
bibliography: Optional[DocumentBibliography],
|
25
27
|
free_texts,
|
26
28
|
section_contents,
|
27
29
|
):
|
@@ -38,7 +40,6 @@ class SDocDocument: # pylint: disable=too-many-instance-attributes
|
|
38
40
|
view if view is not None else DocumentView.create_default(self)
|
39
41
|
)
|
40
42
|
self.grammar: Optional[DocumentGrammar] = grammar
|
41
|
-
self.bibliography: Optional[DocumentBibliography] = bibliography
|
42
43
|
self.free_texts: List[FreeText] = free_texts
|
43
44
|
self.section_contents = section_contents
|
44
45
|
|
@@ -49,17 +50,45 @@ class SDocDocument: # pylint: disable=too-many-instance-attributes
|
|
49
50
|
self.ng_needs_generation = False
|
50
51
|
self.ng_uses_old_refs_field: bool = False
|
51
52
|
self.ng_at_least_one_relations_field: bool = False
|
53
|
+
self.ng_has_requirements = False
|
52
54
|
|
53
55
|
self.meta: Optional[DocumentMeta] = None
|
54
56
|
|
55
57
|
self.reserved_mid: MID = MID(mid) if mid is not None else MID.create()
|
56
58
|
self.mid_permanent: bool = mid is not None
|
57
|
-
self.document_is_included: bool = False
|
58
59
|
self.included_documents: List["SDocDocument"] = []
|
60
|
+
self.context = SDocDocumentContext()
|
59
61
|
|
60
62
|
self.ng_including_document_reference: Optional = None
|
63
|
+
self.ng_including_document_from_file: Optional = None
|
64
|
+
|
65
|
+
@property
|
66
|
+
def uid(self) -> Optional[str]:
|
67
|
+
return self.config.uid
|
68
|
+
|
69
|
+
@property
|
70
|
+
def is_section(self):
|
71
|
+
return True
|
72
|
+
|
73
|
+
@property
|
74
|
+
def is_root_included_document(self):
|
75
|
+
return self.document_is_included()
|
76
|
+
|
77
|
+
@property
|
78
|
+
def is_requirement(self):
|
79
|
+
return False
|
80
|
+
|
81
|
+
@property
|
82
|
+
def is_composite_requirement(self):
|
83
|
+
return False
|
61
84
|
|
62
|
-
def
|
85
|
+
def get_node_type_string(self) -> Optional[str]:
|
86
|
+
return None
|
87
|
+
|
88
|
+
def get_type_string(self) -> str:
|
89
|
+
return "document" if not self.document_is_included() else "section"
|
90
|
+
|
91
|
+
def document_is_included(self) -> bool:
|
63
92
|
return self.ng_including_document_reference.get_document() is not None
|
64
93
|
|
65
94
|
def get_included_document(self):
|
@@ -88,13 +117,13 @@ class SDocDocument: # pylint: disable=too-many-instance-attributes
|
|
88
117
|
|
89
118
|
def has_any_requirements(self) -> bool:
|
90
119
|
from strictdoc.backend.sdoc.models.document_from_file import (
|
91
|
-
|
120
|
+
DocumentFromFile,
|
92
121
|
)
|
93
122
|
|
94
123
|
task_list = list(self.section_contents)
|
95
124
|
while len(task_list) > 0:
|
96
125
|
section_or_requirement = task_list.pop(0)
|
97
|
-
if isinstance(section_or_requirement,
|
126
|
+
if isinstance(section_or_requirement, DocumentFromFile):
|
98
127
|
if section_or_requirement.has_any_requirements():
|
99
128
|
return True
|
100
129
|
continue
|
@@ -107,14 +136,14 @@ class SDocDocument: # pylint: disable=too-many-instance-attributes
|
|
107
136
|
def get_title(self):
|
108
137
|
return self.title
|
109
138
|
|
110
|
-
@staticmethod
|
111
|
-
def get_type_string() -> str:
|
112
|
-
return "document"
|
113
|
-
|
114
139
|
@property
|
115
140
|
def ng_resolved_custom_level(self):
|
116
141
|
return None
|
117
142
|
|
143
|
+
@property
|
144
|
+
def requirement_prefix(self) -> str:
|
145
|
+
return self.get_requirement_prefix()
|
146
|
+
|
118
147
|
def get_requirement_prefix(self) -> str:
|
119
148
|
return self.config.get_requirement_prefix()
|
120
149
|
|
@@ -1,12 +1,11 @@
|
|
1
1
|
from typing import List, Optional
|
2
2
|
|
3
3
|
from strictdoc.backend.sdoc.document_reference import DocumentReference
|
4
|
-
from strictdoc.backend.sdoc.models.section import SDocSection
|
5
4
|
from strictdoc.helpers.auto_described import auto_described
|
6
5
|
|
7
6
|
|
8
7
|
@auto_described
|
9
|
-
class
|
8
|
+
class DocumentFromFile:
|
10
9
|
def __init__(
|
11
10
|
self,
|
12
11
|
parent,
|
@@ -15,13 +14,13 @@ class FragmentFromFile:
|
|
15
14
|
self.parent = parent
|
16
15
|
self.file = file
|
17
16
|
|
18
|
-
self.ng_level = None
|
19
17
|
self.ng_has_requirements = False
|
20
18
|
self.ng_document_reference: Optional[DocumentReference] = None
|
21
19
|
self.ng_included_document_reference: Optional[DocumentReference] = None
|
20
|
+
self.ng_resolved_custom_level = None
|
21
|
+
self.ng_whitelisted = True
|
22
22
|
self.resolved_full_path_to_document_file = None
|
23
23
|
self.resolved_document: Optional = None
|
24
|
-
self.top_section: Optional = None
|
25
24
|
|
26
25
|
@property
|
27
26
|
def document(self):
|
@@ -31,7 +30,7 @@ class FragmentFromFile:
|
|
31
30
|
task_list = list(self.section_contents)
|
32
31
|
while len(task_list) > 0:
|
33
32
|
section_or_requirement = task_list.pop(0)
|
34
|
-
if isinstance(section_or_requirement,
|
33
|
+
if isinstance(section_or_requirement, DocumentFromFile):
|
35
34
|
if section_or_requirement.has_any_requirements():
|
36
35
|
return True
|
37
36
|
if section_or_requirement.is_requirement:
|
@@ -42,26 +41,23 @@ class FragmentFromFile:
|
|
42
41
|
|
43
42
|
@property
|
44
43
|
def section_contents(self) -> List:
|
45
|
-
return [self.
|
44
|
+
return [self.resolved_document]
|
46
45
|
|
47
|
-
def configure_with_resolved_document(self,
|
48
|
-
assert document is not None
|
49
|
-
self.resolved_document = document
|
50
|
-
|
51
|
-
top_section = SDocSection(
|
52
|
-
self,
|
53
|
-
mid=None,
|
54
|
-
uid=None,
|
55
|
-
custom_level=None,
|
56
|
-
title=self.resolved_document.title,
|
57
|
-
requirement_prefix=self.resolved_document.get_requirement_prefix(),
|
58
|
-
free_texts=self.resolved_document.free_texts,
|
59
|
-
section_contents=self.resolved_document.section_contents,
|
60
|
-
root_section=True,
|
61
|
-
)
|
62
|
-
top_section.ng_level = self.ng_level
|
46
|
+
def configure_with_resolved_document(self, resolved_document):
|
63
47
|
assert self.ng_included_document_reference is None
|
64
48
|
assert self.ng_document_reference is not None
|
65
|
-
|
66
|
-
|
67
|
-
self.
|
49
|
+
|
50
|
+
assert resolved_document is not None
|
51
|
+
self.resolved_document = resolved_document
|
52
|
+
|
53
|
+
including_document = self.parent
|
54
|
+
assert (
|
55
|
+
including_document.__class__.__name__ == "SDocDocument"
|
56
|
+
), including_document
|
57
|
+
|
58
|
+
resolved_document.ng_including_document_from_file = self
|
59
|
+
|
60
|
+
resolved_document.ng_including_document_reference.set_document(
|
61
|
+
including_document
|
62
|
+
)
|
63
|
+
including_document.included_documents.append(resolved_document)
|
@@ -7,7 +7,6 @@ from strictdoc.backend.sdoc.models.type_system import (
|
|
7
7
|
GrammarElementField,
|
8
8
|
GrammarElementFieldReference,
|
9
9
|
GrammarElementFieldString,
|
10
|
-
GrammarElementRelationBibtex,
|
11
10
|
GrammarElementRelationChild,
|
12
11
|
GrammarElementRelationFile,
|
13
12
|
GrammarElementRelationParent,
|
@@ -26,7 +25,6 @@ def create_default_relations(
|
|
26
25
|
GrammarElementRelationParent,
|
27
26
|
GrammarElementRelationChild,
|
28
27
|
GrammarElementRelationFile,
|
29
|
-
GrammarElementRelationBibtex,
|
30
28
|
]
|
31
29
|
]:
|
32
30
|
return [
|
@@ -59,7 +57,6 @@ class GrammarElement:
|
|
59
57
|
GrammarElementRelationParent,
|
60
58
|
GrammarElementRelationChild,
|
61
59
|
GrammarElementRelationFile,
|
62
|
-
GrammarElementRelationBibtex,
|
63
60
|
]
|
64
61
|
] = (
|
65
62
|
relations
|
@@ -223,6 +223,10 @@ class SDocNode(SDocObject):
|
|
223
223
|
def get_title(self):
|
224
224
|
return self.reserved_title
|
225
225
|
|
226
|
+
@property
|
227
|
+
def is_root_included_document(self):
|
228
|
+
return False
|
229
|
+
|
226
230
|
@property
|
227
231
|
def is_root(self) -> bool:
|
228
232
|
return self.document.config.root is True
|
@@ -504,7 +508,7 @@ class SDocNode(SDocObject):
|
|
504
508
|
|
505
509
|
def get_requirement_prefix(self) -> str:
|
506
510
|
parent: Union[SDocSection, SDocDocument] = assert_cast(
|
507
|
-
self.parent, (SDocSection, SDocDocument,
|
511
|
+
self.parent, (SDocSection, SDocDocument, SDocCompositeNode)
|
508
512
|
)
|
509
513
|
return parent.get_requirement_prefix()
|
510
514
|
|
@@ -655,7 +659,7 @@ class SDocNode(SDocObject):
|
|
655
659
|
|
656
660
|
|
657
661
|
@auto_described
|
658
|
-
class
|
662
|
+
class SDocCompositeNode(SDocNode):
|
659
663
|
def __init__(self, parent, **fields):
|
660
664
|
super().__init__(parent, **fields)
|
661
665
|
self.ng_document_reference: Optional[DocumentReference] = None
|
@@ -15,7 +15,6 @@ class SDocObjectFactory:
|
|
15
15
|
config=None,
|
16
16
|
view=None,
|
17
17
|
grammar=None,
|
18
|
-
bibliography=None,
|
19
18
|
free_texts=[],
|
20
19
|
section_contents=[],
|
21
20
|
)
|
@@ -196,5 +195,4 @@ class SDocObjectFactory:
|
|
196
195
|
comments=None,
|
197
196
|
)
|
198
197
|
|
199
|
-
requirement.ng_level = level
|
200
198
|
return requirement
|
@@ -1,7 +1,6 @@
|
|
1
1
|
from typing import Optional
|
2
2
|
|
3
3
|
from strictdoc.backend.sdoc.models.type_system import (
|
4
|
-
BibEntry,
|
5
4
|
FileEntry,
|
6
5
|
ReferenceType,
|
7
6
|
)
|
@@ -61,12 +60,3 @@ class ChildReqReference(Reference):
|
|
61
60
|
role if role is not None and len(role) > 0 else None
|
62
61
|
)
|
63
62
|
self.mid = MID.create()
|
64
|
-
|
65
|
-
|
66
|
-
@auto_described
|
67
|
-
class BibReference(Reference):
|
68
|
-
def __init__(self, parent, bib_format: Optional[str], bib_value: str):
|
69
|
-
super().__init__(ReferenceType.BIB_REF, parent)
|
70
|
-
self.bib_entry = BibEntry(self, bib_format, bib_value)
|
71
|
-
# TODO Add bib_entry into Parent-Root Document.Bibliography
|
72
|
-
self.mid = MID.create()
|
@@ -70,6 +70,10 @@ class SDocSection(SDocObject): # pylint: disable=too-many-instance-attributes
|
|
70
70
|
def get_node_type_string(self) -> Optional[str]:
|
71
71
|
return None
|
72
72
|
|
73
|
+
@property
|
74
|
+
def is_root_included_document(self):
|
75
|
+
return False
|
76
|
+
|
73
77
|
def get_title(self):
|
74
78
|
return self.title
|
75
79
|
|