strictdoc 0.0.42a5__tar.gz → 0.0.42a6__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.42a5 → strictdoc-0.0.42a6}/PKG-INFO +1 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/cli_arg_parser.py +17 -17
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_meta.py +7 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/project_config.py +20 -3
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/element.css +1 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_tree.py +1 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/requirements_coverage.py +1 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/source_file_coverage.py +1 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/source_file_view_generator.py +1 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/html_generator.py +67 -77
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/base.jinja.html +2 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/root.jinja +1 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +17 -2
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/actions.jinja +4 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/index.jinja +18 -6
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/table/index.jinja +1 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +1 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +1 -1
- strictdoc-0.0.42a6/strictdoc/export/html/templates/screens/project_index/actions.jinja +36 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/index.jinja +1 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/tools/html_embedded.py +4 -1
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/routers/main_router.py +17 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc.toml +9 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tasks.py +1 -1
- strictdoc-0.0.42a5/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -33
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/.gitignore +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/CHANGELOG.md +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/Dockerfile +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/LICENSE +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/NOTICE +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/README.md +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/favicon.ico +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/mypy.ini +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/pyproject.toml +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/requirements.check.txt +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/ruff.toml +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/export/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/export/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/import_/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/import_/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/include_reader.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/document.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/document_config.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/fragment.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/fragment_from_file.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/free_text.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/node.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/requirement.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/section.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/processor.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/reader.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/validations/requirement.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc/writer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/models/range_pragma.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/actions/passthrough_action.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_finder.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_iterator.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/error_message.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/file_traceability_index.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/file_tree.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/level_counter.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/traceability_index.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/traceability_index_builder.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/content.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/stimulus.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/tree.css +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/turbo.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/document_grammar_form_object.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/requirement_form_object.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/link_renderer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_block/uid_and_title.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/deep_trace/show_full_requirement/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/add_requirement_parent_link/stream_add_requirement_parent_link.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_field.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_edit_document_grammar.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_save_document_grammar.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_grammar_edit.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_document_grammar_edit_custom_field.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_comment.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_parent_link.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/frame_section_edit.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability_deep/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/requirement.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/requirements_coverage/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/app.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/strictdoc/server/server.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tasks_wine.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tools/confluence_html_table_import.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/tools/link_health.py +0 -0
- {strictdoc-0.0.42a5 → strictdoc-0.0.42a6}/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.42a6
|
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/
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import argparse
|
2
2
|
import os
|
3
3
|
import sys
|
4
|
-
from enum import Enum
|
5
4
|
from typing import List, Optional
|
6
5
|
|
7
6
|
from strictdoc.backend.reqif.sdoc_reqif_fields import ReqIFProfile
|
@@ -10,7 +9,7 @@ from strictdoc.core.environment import SDocRuntimeEnvironment
|
|
10
9
|
from strictdoc.core.project_config import ProjectConfig, ProjectFeature
|
11
10
|
from strictdoc.helpers.auto_described import auto_described
|
12
11
|
|
13
|
-
EXPORT_FORMATS = ["html", "
|
12
|
+
EXPORT_FORMATS = ["html", "rst", "excel", "reqif-sdoc"]
|
14
13
|
EXCEL_PARSERS = ["basic"]
|
15
14
|
|
16
15
|
|
@@ -303,12 +302,6 @@ class ServerCommandConfig:
|
|
303
302
|
self.port: Optional[int] = port
|
304
303
|
|
305
304
|
|
306
|
-
class ExportMode(Enum):
|
307
|
-
DOCTREE = 1
|
308
|
-
STANDALONE = 2
|
309
|
-
DOCTREE_AND_STANDALONE = 3
|
310
|
-
|
311
|
-
|
312
305
|
class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
|
313
306
|
def __init__( # pylint: disable=too-many-arguments
|
314
307
|
self,
|
@@ -356,15 +349,6 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
|
|
356
349
|
assert self._server_port is not None
|
357
350
|
return self._server_port
|
358
351
|
|
359
|
-
def get_export_mode(self):
|
360
|
-
if "html" in self.formats:
|
361
|
-
if "html-standalone" in self.formats:
|
362
|
-
return ExportMode.DOCTREE_AND_STANDALONE
|
363
|
-
return ExportMode.DOCTREE
|
364
|
-
if "html-standalone" in self.formats:
|
365
|
-
return ExportMode.STANDALONE
|
366
|
-
raise NotImplementedError
|
367
|
-
|
368
352
|
@property
|
369
353
|
def strictdoc_root_path(self):
|
370
354
|
return self.environment.path_to_strictdoc
|
@@ -391,6 +375,22 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
|
|
391
375
|
if self.project_title is None:
|
392
376
|
self.project_title = project_config.project_title
|
393
377
|
self.dir_for_sdoc_assets = project_config.dir_for_sdoc_assets
|
378
|
+
|
379
|
+
if self.experimental_enable_file_traceability:
|
380
|
+
deprecation_message = (
|
381
|
+
"warning: "
|
382
|
+
"'--experimental-enable-file-traceability' command-line "
|
383
|
+
"option will be deprecated. Instead, activate the option in "
|
384
|
+
"the strictdoc.toml config file as follows:\n"
|
385
|
+
"```\n"
|
386
|
+
"[project]\n\n"
|
387
|
+
"features = [\n"
|
388
|
+
' "REQUIREMENT_TO_SOURCE_TRACEABILITY"\n'
|
389
|
+
"]\n"
|
390
|
+
"```"
|
391
|
+
)
|
392
|
+
print(deprecation_message) # noqa: T201
|
393
|
+
|
394
394
|
self.experimental_enable_file_traceability = (
|
395
395
|
self.experimental_enable_file_traceability
|
396
396
|
or project_config.is_feature_activated(
|
@@ -87,6 +87,13 @@ class DocumentMeta:
|
|
87
87
|
f"{self.document_filename_base}-DEEP-TRACE.html"
|
88
88
|
)
|
89
89
|
|
90
|
+
def get_html_standalone_document_link(self):
|
91
|
+
return (
|
92
|
+
f"{self.output_document_dir_rel_path}"
|
93
|
+
f"/"
|
94
|
+
f"{self.document_filename_base}.standalone.html"
|
95
|
+
)
|
96
|
+
|
90
97
|
def get_html_link(self, document_type: DocumentType, other_doc_level):
|
91
98
|
assert isinstance(document_type, DocumentType)
|
92
99
|
|
@@ -23,6 +23,8 @@ class ProjectFeature(str, Enum):
|
|
23
23
|
REQUIREMENTS_COVERAGE_SCREEN = "REQUIREMENTS_COVERAGE_SCREEN"
|
24
24
|
REQUIREMENT_TO_SOURCE_TRACEABILITY = "REQUIREMENT_TO_SOURCE_TRACEABILITY"
|
25
25
|
|
26
|
+
ALL_FEATURES = "ALL_FEATURES"
|
27
|
+
|
26
28
|
@staticmethod
|
27
29
|
def all():
|
28
30
|
return list(map(lambda c: c.value, ProjectFeature))
|
@@ -79,6 +81,15 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
|
|
79
81
|
def is_feature_activated(self, feature: ProjectFeature):
|
80
82
|
return feature in self.project_features
|
81
83
|
|
84
|
+
def is_activated_table_screen(self):
|
85
|
+
return ProjectFeature.TABLE_SCREEN in self.project_features
|
86
|
+
|
87
|
+
def is_activated_trace_screen(self):
|
88
|
+
return ProjectFeature.TRACEABILITY_SCREEN in self.project_features
|
89
|
+
|
90
|
+
def is_activated_deep_trace_screen(self):
|
91
|
+
return ProjectFeature.DEEP_TRACEABILITY_SCREEN in self.project_features
|
92
|
+
|
82
93
|
def is_activated_requirements_to_source_traceability(self):
|
83
94
|
return (
|
84
95
|
ProjectFeature.REQUIREMENT_TO_SOURCE_TRACEABILITY
|
@@ -90,9 +101,13 @@ class ProjectConfig: # pylint: disable=too-many-instance-attributes
|
|
90
101
|
ProjectFeature.REQUIREMENTS_COVERAGE_SCREEN in self.project_features
|
91
102
|
)
|
92
103
|
|
93
|
-
|
94
|
-
|
95
|
-
|
104
|
+
def is_activated_standalone_document(self):
|
105
|
+
return (
|
106
|
+
ProjectFeature.STANDALONE_DOCUMENT_SCREEN in self.project_features
|
107
|
+
)
|
108
|
+
|
109
|
+
def is_activated_reqif(self) -> bool:
|
110
|
+
return ProjectFeature.REQIF in self.project_features
|
96
111
|
|
97
112
|
|
98
113
|
class ProjectConfigLoader:
|
@@ -163,6 +178,8 @@ class ProjectConfigLoader:
|
|
163
178
|
f"'{feature}'."
|
164
179
|
)
|
165
180
|
sys.exit(1)
|
181
|
+
if ProjectFeature.ALL_FEATURES in project_features:
|
182
|
+
project_features = ProjectFeature.all()
|
166
183
|
|
167
184
|
include_doc_paths = project_content.get(
|
168
185
|
"include_doc_paths", include_doc_paths
|
@@ -527,6 +527,7 @@ a.strictdoc__version:hover {
|
|
527
527
|
[data-viewtype="table"] [data-viewtype_link="table"],
|
528
528
|
[data-viewtype="traceability"] [data-viewtype_link="traceability"],
|
529
529
|
[data-viewtype="deep_traceability"] [data-viewtype_link="deep_traceability"],
|
530
|
+
[data-viewtype="standalone_document"] [data-viewtype_link="standalone_document"],
|
530
531
|
.viewtype__menu_item.active {
|
531
532
|
background-color: var(--color-bg-accent);
|
532
533
|
color: var(--color-fg-accent);
|
@@ -4,7 +4,7 @@ from pathlib import Path
|
|
4
4
|
from typing import Optional, Tuple
|
5
5
|
|
6
6
|
from strictdoc.backend.sdoc.models.document import Document
|
7
|
-
from strictdoc.cli.cli_arg_parser import ExportCommandConfig
|
7
|
+
from strictdoc.cli.cli_arg_parser import ExportCommandConfig
|
8
8
|
from strictdoc.core.document_meta import DocumentMeta
|
9
9
|
from strictdoc.core.project_config import ProjectConfig, ProjectFeature
|
10
10
|
from strictdoc.core.source_tree import SourceTree
|
@@ -174,7 +174,6 @@ class HTMLGenerator:
|
|
174
174
|
if specific_documents is None:
|
175
175
|
specific_documents = DocumentType.all()
|
176
176
|
|
177
|
-
export_mode = config.get_export_mode()
|
178
177
|
assert document.meta is not None
|
179
178
|
|
180
179
|
document_meta: DocumentMeta = document.meta
|
@@ -193,87 +192,78 @@ class HTMLGenerator:
|
|
193
192
|
document,
|
194
193
|
)
|
195
194
|
|
196
|
-
if
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
)
|
211
|
-
document_out_file = document_meta.get_html_doc_path()
|
212
|
-
with open(document_out_file, "w", encoding="utf8") as file:
|
213
|
-
file.write(document_content)
|
195
|
+
if DocumentType.DOCUMENT in specific_documents:
|
196
|
+
# Single Document pages
|
197
|
+
document_content = DocumentHTMLGenerator.export(
|
198
|
+
config,
|
199
|
+
project_config,
|
200
|
+
document,
|
201
|
+
traceability_index,
|
202
|
+
markup_renderer,
|
203
|
+
link_renderer,
|
204
|
+
standalone=False,
|
205
|
+
)
|
206
|
+
document_out_file = document_meta.get_html_doc_path()
|
207
|
+
with open(document_out_file, "w", encoding="utf8") as file:
|
208
|
+
file.write(document_content)
|
214
209
|
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
210
|
+
# Single Document Table pages
|
211
|
+
if (
|
212
|
+
project_config.is_feature_activated(ProjectFeature.TABLE_SCREEN)
|
213
|
+
and DocumentType.TABLE in specific_documents
|
214
|
+
):
|
215
|
+
document_content = DocumentTableHTMLGenerator.export(
|
216
|
+
config,
|
217
|
+
project_config,
|
218
|
+
document,
|
219
|
+
traceability_index,
|
220
|
+
markup_renderer,
|
221
|
+
link_renderer,
|
222
|
+
)
|
223
|
+
document_out_file = document_meta.get_html_table_path()
|
224
|
+
with open(document_out_file, "w", encoding="utf8") as file:
|
225
|
+
file.write(document_content)
|
231
226
|
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
227
|
+
# Single Document Traceability pages
|
228
|
+
if (
|
229
|
+
project_config.is_feature_activated(
|
230
|
+
ProjectFeature.TRACEABILITY_SCREEN
|
231
|
+
)
|
232
|
+
and DocumentType.TRACE in specific_documents
|
233
|
+
):
|
234
|
+
document_content = DocumentTraceHTMLGenerator.export(
|
235
|
+
config,
|
236
|
+
project_config,
|
237
|
+
document,
|
238
|
+
traceability_index,
|
239
|
+
markup_renderer,
|
240
|
+
link_renderer,
|
241
|
+
)
|
242
|
+
document_out_file = document_meta.get_html_traceability_path()
|
243
|
+
with open(document_out_file, "w", encoding="utf8") as file:
|
244
|
+
file.write(document_content)
|
250
245
|
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
)
|
269
|
-
with open(document_out_file, "w", encoding="utf8") as file:
|
270
|
-
file.write(document_content)
|
246
|
+
# Single Document Deep Traceability pages
|
247
|
+
if (
|
248
|
+
project_config.is_feature_activated(
|
249
|
+
ProjectFeature.DEEP_TRACEABILITY_SCREEN
|
250
|
+
)
|
251
|
+
and DocumentType.DEEPTRACE in specific_documents
|
252
|
+
):
|
253
|
+
document_content = DocumentDeepTraceHTMLGenerator.export_deep(
|
254
|
+
config,
|
255
|
+
project_config,
|
256
|
+
document,
|
257
|
+
traceability_index,
|
258
|
+
markup_renderer,
|
259
|
+
link_renderer,
|
260
|
+
)
|
261
|
+
document_out_file = document_meta.get_html_deep_traceability_path()
|
262
|
+
with open(document_out_file, "w", encoding="utf8") as file:
|
263
|
+
file.write(document_content)
|
271
264
|
|
272
265
|
if project_config.is_feature_activated(
|
273
266
|
ProjectFeature.STANDALONE_DOCUMENT_SCREEN
|
274
|
-
) or export_mode in (
|
275
|
-
ExportMode.STANDALONE,
|
276
|
-
ExportMode.DOCTREE_AND_STANDALONE,
|
277
267
|
):
|
278
268
|
# Single Document pages (standalone)
|
279
269
|
document_content = DocumentHTMLGenerator.export(
|
@@ -1,4 +1,4 @@
|
|
1
|
-
{%-
|
1
|
+
{%- assert not standalone -%}
|
2
2
|
<div class="viewtype">
|
3
3
|
<div
|
4
4
|
id="viewtype_handler"
|
@@ -24,6 +24,7 @@
|
|
24
24
|
href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_doc_link()}}">
|
25
25
|
Document</a>
|
26
26
|
</li>
|
27
|
+
{%- if project_config.is_activated_table_screen() -%}
|
27
28
|
<li>
|
28
29
|
<a
|
29
30
|
data-viewtype_link="table"
|
@@ -32,6 +33,8 @@
|
|
32
33
|
href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_table_link()}}">
|
33
34
|
Table</a>
|
34
35
|
</li>
|
36
|
+
{%- endif -%}
|
37
|
+
{%- if project_config.is_activated_trace_screen() -%}
|
35
38
|
<li>
|
36
39
|
<a
|
37
40
|
data-viewtype_link="traceability"
|
@@ -40,6 +43,8 @@
|
|
40
43
|
href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_traceability_link()}}">
|
41
44
|
Traceability</a>
|
42
45
|
</li>
|
46
|
+
{%- endif -%}
|
47
|
+
{%- if project_config.is_activated_deep_trace_screen() -%}
|
43
48
|
<li>
|
44
49
|
<a
|
45
50
|
data-viewtype_link="deep_traceability"
|
@@ -48,6 +53,16 @@
|
|
48
53
|
href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_deep_traceability_link()}}">
|
49
54
|
Deep traceability</a>
|
50
55
|
</li>
|
56
|
+
{%- endif -%}
|
57
|
+
{%- if project_config.is_activated_standalone_document() -%}
|
58
|
+
<li>
|
59
|
+
<a
|
60
|
+
data-viewtype_link="standalone_document"
|
61
|
+
class="viewtype__menu_item"
|
62
|
+
title="Go to Standalone Document view"
|
63
|
+
href="{{document.meta.get_root_path_prefix()}}/{{document.meta.get_html_standalone_document_link()}}">
|
64
|
+
Standalone</a>
|
65
|
+
</li>
|
66
|
+
{%- endif -%}
|
51
67
|
</menu>
|
52
68
|
</div>
|
53
|
-
{%- endif -%}
|
@@ -5,6 +5,7 @@
|
|
5
5
|
#}
|
6
6
|
<turbo-frame>
|
7
7
|
<div class="actions_group">
|
8
|
+
{%- if not standalone -%}
|
8
9
|
<a
|
9
10
|
href="/actions/document/edit_grammar?document_mid={{ document.node_id }}"
|
10
11
|
class="action_button"
|
@@ -14,11 +15,14 @@
|
|
14
15
|
data-testid="document-edit-grammar-action"
|
15
16
|
>{% include "_res/svg_ico16_gear.jinja.html" %} Edit grammar</a>
|
16
17
|
|
18
|
+
{%- if project_config.is_activated_reqif() -%}
|
17
19
|
<a
|
18
20
|
class="action_button"
|
19
21
|
href="/reqif/export_document/{{ document.node_id }}"
|
20
22
|
data-testid="document-export-reqif-action"
|
21
23
|
>Export to ReqIF</a>
|
24
|
+
{%- endif -%}
|
25
|
+
{%- endif -%}
|
22
26
|
</div>
|
23
27
|
</turbo-frame>
|
24
28
|
{%- endif -%}
|
@@ -8,10 +8,12 @@
|
|
8
8
|
{% endblock head_css %}
|
9
9
|
|
10
10
|
{% block head_scripts %}
|
11
|
+
{%- if not standalone -%}
|
11
12
|
<script type="text/javascript" src="{{ link_renderer.render_static_url('viewtype_menu.js') }}"></script>
|
13
|
+
{%- endif -%}
|
12
14
|
<script type="text/javascript" src="{{ link_renderer.render_static_url('resizable_bar.js') }}"></script>
|
13
15
|
|
14
|
-
{%- if config.is_running_on_server -%}
|
16
|
+
{%- if config.is_running_on_server and not standalone -%}
|
15
17
|
<script type="module">
|
16
18
|
import hotwiredTurbo from "{{ link_renderer.render_static_url('turbo.js') }}";
|
17
19
|
import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
|
@@ -34,7 +36,7 @@
|
|
34
36
|
{{ super() }}
|
35
37
|
{% endblock head_scripts %}
|
36
38
|
{% block title %}{{ document.title }} - {{ template_type }}{% endblock title %}
|
37
|
-
{% block viewtype %}document{% endblock viewtype %}
|
39
|
+
{% block viewtype %}{{ "document" if not standalone else "standalone_document" }}{% endblock viewtype %}
|
38
40
|
|
39
41
|
{% block layout_nav %}
|
40
42
|
{%- if not standalone -%}
|
@@ -50,12 +52,22 @@
|
|
50
52
|
{% include "screens/document/_shared/resizable_bar_with_toc.jinja" %}
|
51
53
|
{% endblock toc_content %}
|
52
54
|
|
53
|
-
{
|
54
|
-
{%-
|
55
|
-
header__items=[
|
55
|
+
{%- if not standalone -%}
|
56
|
+
{%- set header_items = [
|
56
57
|
"screens/document/_shared/frame_header_document_title.jinja",
|
57
58
|
"screens/document/_shared/viewtype_menu.jinja"
|
58
|
-
]
|
59
|
+
]
|
60
|
+
-%}
|
61
|
+
{%- else -%}
|
62
|
+
{%- set header_items = [
|
63
|
+
"screens/document/_shared/frame_header_document_title.jinja",
|
64
|
+
]
|
65
|
+
-%}
|
66
|
+
{%- endif -%}
|
67
|
+
|
68
|
+
{% block header_content %}
|
69
|
+
{%- with
|
70
|
+
header__items=header_items,
|
59
71
|
header__last="screens/document/document/actions.jinja"
|
60
72
|
-%}
|
61
73
|
{% include "components/header/index.jinja" %}
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<script type="text/javascript" src="{{link_renderer.render_static_url('viewtype_menu.js')}}"></script>
|
7
7
|
<script type="text/javascript" src="{{link_renderer.render_static_url('resizable_bar.js')}}"></script>
|
8
8
|
|
9
|
-
{%- if config.is_running_on_server -%}
|
9
|
+
{%- if config.is_running_on_server and not standalone -%}
|
10
10
|
<script type="module">
|
11
11
|
import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
|
12
12
|
window.Stimulus = Application.start();
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<script type="text/javascript" src="{{ link_renderer.render_static_url('viewtype_menu.js') }}"></script>
|
12
12
|
<script type="text/javascript" src="{{ link_renderer.render_static_url('resizable_bar.js') }}"></script>
|
13
13
|
|
14
|
-
{%- if config.is_running_on_server -%}
|
14
|
+
{%- if config.is_running_on_server and not standalone -%}
|
15
15
|
<script type="module">
|
16
16
|
import hotwiredTurbo from "{{ link_renderer.render_static_url('turbo.js') }}";
|
17
17
|
import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<script type="text/javascript" src="{{ link_renderer.render_static_url('viewtype_menu.js') }}"></script>
|
12
12
|
<script type="text/javascript" src="{{ link_renderer.render_static_url('resizable_bar.js') }}"></script>
|
13
13
|
|
14
|
-
{%- if config.is_running_on_server -%}
|
14
|
+
{%- if config.is_running_on_server and not standalone -%}
|
15
15
|
<script type="module">
|
16
16
|
import hotwiredTurbo from "{{ link_renderer.render_static_url('turbo.js')}}";
|
17
17
|
import { Application, Controller } from "{{ link_renderer.render_static_url('stimulus.js') }}";
|
@@ -0,0 +1,36 @@
|
|
1
|
+
{%- if config.is_running_on_server -%}
|
2
|
+
{#
|
3
|
+
This turbo frame is important because it enables
|
4
|
+
the child turbo links below.
|
5
|
+
#}
|
6
|
+
<turbo-frame>
|
7
|
+
<div class="actions_group">
|
8
|
+
<a
|
9
|
+
class="action_button"
|
10
|
+
href="/actions/project_index/new_document"
|
11
|
+
data-turbo="true"
|
12
|
+
title="Add new document"
|
13
|
+
data-testid="tree-add-document-action"
|
14
|
+
>{% include "_res/svg_ico16_add.jinja.html" %} Add document</a>
|
15
|
+
|
16
|
+
{%- if project_config.is_activated_reqif() -%}
|
17
|
+
<a
|
18
|
+
class="action_button"
|
19
|
+
href="/actions/project_index/import_reqif_document_form"
|
20
|
+
data-turbo="true"
|
21
|
+
title="Import document tree from ReqIF"
|
22
|
+
data-testid="tree-import-reqif-action"
|
23
|
+
>Import from ReqIF</a>
|
24
|
+
|
25
|
+
{%- if not document_tree_iterator.is_empty_tree() -%}
|
26
|
+
<a
|
27
|
+
class="action_button"
|
28
|
+
href="/reqif/export_tree"
|
29
|
+
title="Export document tree to ReqIF"
|
30
|
+
data-testid="tree-export-reqif-action"
|
31
|
+
>Export to ReqIF</a>
|
32
|
+
{%- endif -%}
|
33
|
+
{%- endif -%}
|
34
|
+
</div>
|
35
|
+
</turbo-frame>
|
36
|
+
{%- endif -%}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
{% endblock head_css %}
|
9
9
|
|
10
10
|
{% block head_scripts %}
|
11
|
-
{%- if config.is_running_on_server -%}
|
11
|
+
{%- if config.is_running_on_server and not standalone -%}
|
12
12
|
<script type="module">
|
13
13
|
import hotwiredTurbo from "{{ link_renderer.render_static_url_with_prefix('turbo.js') }}";
|
14
14
|
import { Application, Controller } from "{{ link_renderer.render_static_url_with_prefix('stimulus.js') }}";
|
@@ -47,7 +47,10 @@ class EmbeddableTag:
|
|
47
47
|
elif tag.name == "script":
|
48
48
|
if "type" in tag.attrs:
|
49
49
|
type_value = tag.attrs["type"]
|
50
|
-
if
|
50
|
+
if (
|
51
|
+
type_value in ("text/javascript", "module")
|
52
|
+
and "src" in tag.attrs
|
53
|
+
):
|
51
54
|
return EmbeddableTag(EmbeddableTag.JS, tag.attrs["src"])
|
52
55
|
elif tag.name == "img":
|
53
56
|
if "src" in tag.attrs:
|