strictdoc 0.0.47a5__tar.gz → 0.0.48a1__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.47a5 → strictdoc-0.0.48a1}/CHANGELOG.md +427 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/PKG-INFO +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/requirements/01_strictdoc/L1_Open_Requirements_Tool.sdoc +222 -112
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/requirements/01_strictdoc/L2_StrictDoc_Requirements.sdoc +167 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/requirements/01_strictdoc/LZ_Backlog.sdoc +26 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/requirements/02_external/DO178.sdoc +24 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/requirements/02_external/Zephyr.sdoc +18 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/requirements/strictdoc.toml +2 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/mypy.ini +5 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +4 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +8 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +8 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/grammar/grammar.py +6 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/anchor.py +2 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/document.py +13 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/document_config.py +8 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/free_text.py +4 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/inline_link.py +2 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/object_factory.py +5 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/requirement.py +14 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/section.py +6 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/reader.py +7 -9
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/writer.py +27 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/cli/cli_arg_parser.py +23 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/cli/command_parser_builder.py +24 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/cli/main.py +14 -0
- strictdoc-0.0.48a1/strictdoc/commands/diff_command.py +141 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/commands/manage_autouid_command.py +3 -12
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/actions/import_action.py +3 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/actions/passthrough_action.py +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/analyzers/document_stats.py +19 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/analyzers/document_uid_analyzer.py +10 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/document_finder.py +6 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/document_meta.py +20 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/file_tree.py +10 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/finders/source_files_finder.py +7 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/graph_database.py +36 -27
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/project_config.py +77 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/query_engine/grammar.py +6 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/query_engine/query_object.py +16 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/query_engine/query_reader.py +2 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/traceability_index.py +39 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/traceability_index_builder.py +20 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/create_requirement.py +4 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/section.py +11 -8
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/document_dot_generator.py +7 -5
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/content.css +66 -2
- strictdoc-0.0.48a1/strictdoc/export/html/_static/diff.css +531 -0
- strictdoc-0.0.48a1/strictdoc/export/html/_static/diff.js +153 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/element.css +149 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/form.css +87 -74
- strictdoc-0.0.48a1/strictdoc/export/html/_static/html2pdf/bundle.js +1 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/node.css +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/requirement.css +8 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/requirement__temporary.css +0 -17
- strictdoc-0.0.48a1/strictdoc/export/html/_static/traceability_matrix.css +133 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/document_type.py +21 -5
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/form_objects/document_config_form_object.py +3 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/form_objects/document_grammar_form_object.py +3 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/form_objects/requirement_form_object.py +6 -5
- strictdoc-0.0.48a1/strictdoc/export/html/form_objects/section_form_object.py +186 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/document_pdf.py +10 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/project_statistics.py +10 -0
- strictdoc-0.0.48a1/strictdoc/export/html/generators/requirements_coverage.py +116 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/source_file_view_generator.py +3 -1
- strictdoc-0.0.48a1/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +8 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +7 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_shared/nav.jinja.html +13 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +2 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/abstract/index.jinja +2 -2
- strictdoc-0.0.48a1/strictdoc/export/html/templates/components/abstract/pdf.jinja +8 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/components/badge/index.jinja +1 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/components/button/diff.jinja +16 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/components/document_title/index.jinja +1 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/field/index.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/form/field/text/index.jinja +14 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +19 -0
- strictdoc-0.0.47a5/strictdoc/export/html/templates/components/requirement_form/frame_row_with_uid_with_reset_field.jinja → strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +2 -2
- strictdoc-0.0.47a5/strictdoc/export/html/templates/components/requirement_form/stream_row_with_uid_with_reset_field.jinja → strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +6 -4
- {strictdoc-0.0.47a5/strictdoc/export/html/templates/components/requirement_form → strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row}/row_with_comment.jinja +4 -3
- {strictdoc-0.0.47a5/strictdoc/export/html/templates/components/requirement_form → strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row}/row_with_relation.jinja +3 -3
- {strictdoc-0.0.47a5/strictdoc/export/html/templates/components/requirement_form → strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row}/row_with_text_field.jinja +2 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/form/search.jinja +9 -9
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/grammar_form/row_with_custom_field.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/grammar_form/row_with_relation.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/grammar_form/row_with_reserved_field.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/header/_usage_example.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/header/index.jinja +1 -1
- strictdoc-0.0.47a5/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html → strictdoc-0.0.48a1/strictdoc/export/html/templates/components/meta/index.jinja +2 -13
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/node/index.jinja +6 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +16 -16
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/node/root.jinja +6 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +5 -5
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/document/actions.jinja +2 -2
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +9 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +1 -1
- strictdoc-0.0.47a5/strictdoc/export/html/templates/components/requirement_form/index.jinja → strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +5 -5
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +53 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/document/index.jinja +1 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +3 -5
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/pdf/main.jinja +49 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +40 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +29 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +36 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +21 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/table/index.jinja +1 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/table/main.jinja +4 -25
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +1 -3
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +1 -3
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/changelog_content.jinja +116 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/diff_content.jinja +54 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/diff_controls.jinja +20 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +86 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +64 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +69 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/form.jinja +42 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +11 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +38 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/index.jinja +47 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/legend.jinja +60 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/main.jinja +22 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +12 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/node/requirement.jinja +35 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/node/section.jinja +29 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/skeleton.jinja +6 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/git/sync/button.jinja +9 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_index/index.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +4 -4
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +11 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/requirements_coverage/file.jinja +27 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/requirements_coverage/index.jinja +4 -3
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/requirements_coverage/main.jinja +83 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/requirements_coverage/requirement.jinja.html +30 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/search/index.jinja +1 -1
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/search/legend.jinja +33 -0
- strictdoc-0.0.48a1/strictdoc/export/html/templates/screens/search/main.jinja +25 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +1 -1
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +5 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/document_rst_generator.py +1 -1
- strictdoc-0.0.48a1/strictdoc/git/change.py +237 -0
- strictdoc-0.0.48a1/strictdoc/git/change_generator.py +84 -0
- strictdoc-0.0.48a1/strictdoc/git/git_client.py +194 -0
- strictdoc-0.0.48a1/strictdoc/git/project_diff_analyzer.py +1252 -0
- strictdoc-0.0.48a1/strictdoc/helpers/diff.py +35 -0
- strictdoc-0.0.48a1/strictdoc/helpers/md5.py +15 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/app.py +9 -2
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/routers/main_router.py +147 -72
- strictdoc-0.0.48a1/strictdoc/server/routers/other_router.py +274 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/server.py +1 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc.toml +2 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/tasks.py +2 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/tools/confluence_html_table_import.py +2 -1
- strictdoc-0.0.47a5/strictdoc/export/html/_static/favicon.ico +0 -0
- strictdoc-0.0.47a5/strictdoc/export/html/_static/html2pdf/bundle.js +0 -1
- strictdoc-0.0.47a5/strictdoc/export/html/form_objects/section_form_object.py +0 -54
- strictdoc-0.0.47a5/strictdoc/export/html/generators/requirements_coverage.py +0 -53
- strictdoc-0.0.47a5/strictdoc/export/html/templates/_shared/requirement_block/uid_and_title.jinja.html +0 -12
- strictdoc-0.0.47a5/strictdoc/export/html/templates/screens/document/document/frame_section_edit.jinja +0 -74
- strictdoc-0.0.47a5/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -42
- strictdoc-0.0.47a5/strictdoc/export/html/templates/screens/requirements_coverage/main.jinja +0 -29
- strictdoc-0.0.47a5/strictdoc/export/html/templates/screens/requirements_coverage/requirement.jinja.html +0 -17
- strictdoc-0.0.47a5/strictdoc/export/html/templates/screens/search/main.jinja +0 -91
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/.gitignore +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/Dockerfile +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/LICENSE +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/NOTICE +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/README.md +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/drafts/strictdoc_low_level_requirements.sdoc_.sdoc +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/pyproject.toml +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/requirements.bootstrap.txt +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/requirements.check.txt +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/ruff.toml +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/include_reader.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/document_bibliography.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/fragment.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/fragment_from_file.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/node.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/processor.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc/validations/requirement.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/document_iterator.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/file_traceability_index.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/level_counter.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/delete_section.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/update_document_config.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/update_free_text.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/update_requirement.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/dot_templates.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile1/document.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile1/folder.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile1/legend.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile1/requirement.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile1/section.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile1/top_level.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile2/document.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile2/folder.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile2/requirement.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile2/section.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/dot/templates/profile2/top_level.dot +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1/strictdoc/export/html/_static}/favicon.ico +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/tree.css +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/renderers/link_renderer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_field.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_relation.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_edit_document_grammar.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_save_document_grammar.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/document/move_node/stream_update_document_content.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- /strictdoc-0.0.47a5/strictdoc/export/html/templates/components/form/row.jinja → /strictdoc-0.0.48a1/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/title/pdf.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/h/pdf.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/section/uid/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/requirements_coverage/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/requirements_coverage/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/html2pdf/html2pdf.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/ordered_set.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/tasks_wine.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/tools/link_health.py +0 -0
- {strictdoc-0.0.47a5 → strictdoc-0.0.48a1}/tox.ini +0 -0
@@ -2,12 +2,429 @@
|
|
2
2
|
|
3
3
|
## [Unreleased](https://github.com/strictdoc-project/strictdoc/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.
|
5
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.47...HEAD)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Bump version to 0.0.47 [\#1477](https://github.com/strictdoc-project/strictdoc/pull/1477) ([stanislaw](https://github.com/stanislaw))
|
10
|
+
|
11
|
+
## [0.0.47](https://github.com/strictdoc-project/strictdoc/tree/0.0.47) (2023-11-20)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.46...0.0.47)
|
14
|
+
|
15
|
+
**Fixed bugs:**
|
16
|
+
|
17
|
+
- Fix Jinja crashing on .DS\_Store from newer versions of Jinja \(somewhere Python \>3.7\) [\#1433](https://github.com/strictdoc-project/strictdoc/pull/1433) ([stanislaw](https://github.com/stanislaw))
|
18
|
+
- UI: DTR screen: fix link: go to DOC view [\#1432](https://github.com/strictdoc-project/strictdoc/pull/1432) ([stanislaw](https://github.com/stanislaw))
|
19
|
+
|
20
|
+
**Security fixes:**
|
21
|
+
|
22
|
+
- docs: document "Security considerations" [\#1475](https://github.com/strictdoc-project/strictdoc/pull/1475) ([stanislaw](https://github.com/stanislaw))
|
23
|
+
|
24
|
+
**Closed issues:**
|
25
|
+
|
26
|
+
- Search screen: minimal CSS improvements [\#1462](https://github.com/strictdoc-project/strictdoc/issues/1462)
|
27
|
+
- Document option: ROOT true/false to indicate the root nodes in the traceability graph [\#1429](https://github.com/strictdoc-project/strictdoc/issues/1429)
|
28
|
+
- Create requirement: add comment: implement a missing functionality, add a test case [\#1412](https://github.com/strictdoc-project/strictdoc/issues/1412)
|
29
|
+
- Update requirement relations: strip whitespaces before and after a copy-and-pasted UID [\#1411](https://github.com/strictdoc-project/strictdoc/issues/1411)
|
30
|
+
- Deep trace: add a clickable link to a full requirement card [\#1407](https://github.com/strictdoc-project/strictdoc/issues/1407)
|
31
|
+
- Improve the "copy to clipboard" function to use static HTML [\#1406](https://github.com/strictdoc-project/strictdoc/issues/1406)
|
32
|
+
- CI: Flaky test on Windows [\#1397](https://github.com/strictdoc-project/strictdoc/issues/1397)
|
33
|
+
- Deep traceability: zoom view: add vertical scrolling [\#1392](https://github.com/strictdoc-project/strictdoc/issues/1392)
|
34
|
+
- Requirement-to-source traceability: single-line @sdoc markers [\#1359](https://github.com/strictdoc-project/strictdoc/issues/1359)
|
35
|
+
- Double-check the issue with Jinja crashing on .DS\_Store files [\#1356](https://github.com/strictdoc-project/strictdoc/issues/1356)
|
36
|
+
- UID autogeneration: Further improvements [\#1271](https://github.com/strictdoc-project/strictdoc/issues/1271)
|
37
|
+
|
38
|
+
**Merged pull requests:**
|
39
|
+
|
40
|
+
- export/html: update Header component [\#1476](https://github.com/strictdoc-project/strictdoc/pull/1476) ([mettta](https://github.com/mettta))
|
41
|
+
- docs: document Search, ROOT, source\_root\_path [\#1474](https://github.com/strictdoc-project/strictdoc/pull/1474) ([stanislaw](https://github.com/stanislaw))
|
42
|
+
- UI: return Precondition Failed for all optional features when not activated [\#1473](https://github.com/strictdoc-project/strictdoc/pull/1473) ([stanislaw](https://github.com/stanislaw))
|
43
|
+
- project\_config, UI: ensure that Search is only available in the web interface [\#1471](https://github.com/strictdoc-project/strictdoc/pull/1471) ([stanislaw](https://github.com/stanislaw))
|
44
|
+
- CI: --exit-first on macOS and Linux tests [\#1470](https://github.com/strictdoc-project/strictdoc/pull/1470) ([stanislaw](https://github.com/stanislaw))
|
45
|
+
- html2pdf: implement TOC page numbers generator [\#1469](https://github.com/strictdoc-project/strictdoc/pull/1469) ([mettta](https://github.com/mettta))
|
46
|
+
- UI: add UID autogeneration button to section form [\#1467](https://github.com/strictdoc-project/strictdoc/pull/1467) ([mettta](https://github.com/mettta))
|
47
|
+
- docs: introduce the Changelog document [\#1466](https://github.com/strictdoc-project/strictdoc/pull/1466) ([stanislaw](https://github.com/stanislaw))
|
48
|
+
- Bump version to 0.0.47a6 [\#1465](https://github.com/strictdoc-project/strictdoc/pull/1465) ([stanislaw](https://github.com/stanislaw))
|
49
|
+
- export/html: search: improve page-tips [\#1464](https://github.com/strictdoc-project/strictdoc/pull/1464) ([mettta](https://github.com/mettta))
|
50
|
+
- Bump version to 0.0.47a5 [\#1463](https://github.com/strictdoc-project/strictdoc/pull/1463) ([stanislaw](https://github.com/stanislaw))
|
51
|
+
- html/templates: search: update the query syntax legend [\#1460](https://github.com/strictdoc-project/strictdoc/pull/1460) ([stanislaw](https://github.com/stanislaw))
|
52
|
+
- export and passthrough: support --filter-requirements/sections option [\#1459](https://github.com/strictdoc-project/strictdoc/pull/1459) ([stanislaw](https://github.com/stanislaw))
|
53
|
+
- project\_config: "source\_root\_path" parameter to indicate the files root [\#1458](https://github.com/strictdoc-project/strictdoc/pull/1458) ([stanislaw](https://github.com/stanislaw))
|
54
|
+
- export/html: Search: add case with empty search query [\#1456](https://github.com/strictdoc-project/strictdoc/pull/1456) ([mettta](https://github.com/mettta))
|
55
|
+
- query\_object: whitelist "UID", "STATUS", "RATIONALE" for now [\#1455](https://github.com/strictdoc-project/strictdoc/pull/1455) ([stanislaw](https://github.com/stanislaw))
|
56
|
+
- Bump version to 0.0.47a4 [\#1454](https://github.com/strictdoc-project/strictdoc/pull/1454) ([stanislaw](https://github.com/stanislaw))
|
57
|
+
- export/html: update project\_statistics markup [\#1453](https://github.com/strictdoc-project/strictdoc/pull/1453) ([mettta](https://github.com/mettta))
|
58
|
+
- export/html: Search: add message "Nothing matching the query was found." [\#1452](https://github.com/strictdoc-project/strictdoc/pull/1452) ([mettta](https://github.com/mettta))
|
59
|
+
- export/html: 'UID reset button' on the requirement form [\#1451](https://github.com/strictdoc-project/strictdoc/pull/1451) ([mettta](https://github.com/mettta))
|
60
|
+
- export/html: search: node.contains\(...\) expression [\#1450](https://github.com/strictdoc-project/strictdoc/pull/1450) ([stanislaw](https://github.com/stanislaw))
|
61
|
+
- export/html: search: implement is\_root, A not in B, None [\#1449](https://github.com/strictdoc-project/strictdoc/pull/1449) ([stanislaw](https://github.com/stanislaw))
|
62
|
+
- export/html: search: add "help text" placeholder when screen is empty [\#1448](https://github.com/strictdoc-project/strictdoc/pull/1448) ([mettta](https://github.com/mettta))
|
63
|
+
- export/html: markup for search screen [\#1447](https://github.com/strictdoc-project/strictdoc/pull/1447) ([mettta](https://github.com/mettta))
|
64
|
+
- query\_engine/query\_object: handle "X in None" case [\#1446](https://github.com/strictdoc-project/strictdoc/pull/1446) ([stanislaw](https://github.com/stanislaw))
|
65
|
+
- query\_engine: switch to textX-based parser, stop using eval\(\) [\#1445](https://github.com/strictdoc-project/strictdoc/pull/1445) ([stanislaw](https://github.com/stanislaw))
|
66
|
+
- markup\_renderer.py: remove unnecesary assert self.context\_document [\#1444](https://github.com/strictdoc-project/strictdoc/pull/1444) ([mettta](https://github.com/mettta))
|
67
|
+
- UI: search screen: find requirements and sections using Python query [\#1443](https://github.com/strictdoc-project/strictdoc/pull/1443) ([stanislaw](https://github.com/stanislaw))
|
68
|
+
- drafts/requirements: clean up and update backlog [\#1442](https://github.com/strictdoc-project/strictdoc/pull/1442) ([stanislaw](https://github.com/stanislaw))
|
69
|
+
- drafts/requirements: resolve the second round of TBDs [\#1441](https://github.com/strictdoc-project/strictdoc/pull/1441) ([stanislaw](https://github.com/stanislaw))
|
70
|
+
- drafts/requirements: resolve the first round of TBDs [\#1440](https://github.com/strictdoc-project/strictdoc/pull/1440) ([stanislaw](https://github.com/stanislaw))
|
71
|
+
- pyproject.toml: fix running with Python 3.12 by adding setuptools for now [\#1439](https://github.com/strictdoc-project/strictdoc/pull/1439) ([stanislaw](https://github.com/stanislaw))
|
72
|
+
- GitHub CI: bring back the Python 3.12 jobs [\#1438](https://github.com/strictdoc-project/strictdoc/pull/1438) ([stanislaw](https://github.com/stanislaw))
|
73
|
+
- backend/sdoc/grammar: bibtex: recognize BIBLIOGRAPHY + related changes [\#1437](https://github.com/strictdoc-project/strictdoc/pull/1437) ([stanislaw](https://github.com/stanislaw))
|
74
|
+
- tox: improve bootstrapping Python deps [\#1436](https://github.com/strictdoc-project/strictdoc/pull/1436) ([stanislaw](https://github.com/stanislaw))
|
75
|
+
- Bump version to 0.0.47a3 [\#1435](https://github.com/strictdoc-project/strictdoc/pull/1435) ([stanislaw](https://github.com/stanislaw))
|
76
|
+
- backend/sdoc\_source\_code: single-line markers [\#1434](https://github.com/strictdoc-project/strictdoc/pull/1434) ([stanislaw](https://github.com/stanislaw))
|
77
|
+
- export/html: DTR: add 'go to DOC view' action for the card view of requirements [\#1431](https://github.com/strictdoc-project/strictdoc/pull/1431) ([mettta](https://github.com/mettta))
|
78
|
+
- drafts/requirements: merge the contents of L1 and L2 documents into L2 [\#1430](https://github.com/strictdoc-project/strictdoc/pull/1430) ([stanislaw](https://github.com/stanislaw))
|
79
|
+
- Code climate: remove pylint, flake8, black from dev dependencies [\#1428](https://github.com/strictdoc-project/strictdoc/pull/1428) ([stanislaw](https://github.com/stanislaw))
|
80
|
+
- Code climate: GitHub CI: add Python 3.12 [\#1427](https://github.com/strictdoc-project/strictdoc/pull/1427) ([stanislaw](https://github.com/stanislaw))
|
81
|
+
- tests/end2end: introduce sharding for GitHub CI tests on macOS [\#1426](https://github.com/strictdoc-project/strictdoc/pull/1426) ([stanislaw](https://github.com/stanislaw))
|
82
|
+
- Code climate: Ruff: add "C" group of checks [\#1422](https://github.com/strictdoc-project/strictdoc/pull/1422) ([stanislaw](https://github.com/stanislaw))
|
83
|
+
- Code climate: GitHub CI: reduce a number of jobs run for basic checks on each system [\#1425](https://github.com/strictdoc-project/strictdoc/pull/1425) ([stanislaw](https://github.com/stanislaw))
|
84
|
+
- Code climate: switch to Ruff format, disable Pylint and flake8 [\#1424](https://github.com/strictdoc-project/strictdoc/pull/1424) ([stanislaw](https://github.com/stanislaw))
|
85
|
+
- Code climate: Ruff: add "ARG", "C4" group of checks. Set Python 3.7 as a baseline. [\#1423](https://github.com/strictdoc-project/strictdoc/pull/1423) ([stanislaw](https://github.com/stanislaw))
|
86
|
+
- Code climate: Ruff: add "A" group of checks [\#1421](https://github.com/strictdoc-project/strictdoc/pull/1421) ([stanislaw](https://github.com/stanislaw))
|
87
|
+
- Code climate: Ruff: add "pylint" group of checks [\#1420](https://github.com/strictdoc-project/strictdoc/pull/1420) ([stanislaw](https://github.com/stanislaw))
|
88
|
+
- Bump version to 0.0.47a2 [\#1419](https://github.com/strictdoc-project/strictdoc/pull/1419) ([stanislaw](https://github.com/stanislaw))
|
89
|
+
- tests/end2end: introduce sharding for GitHub CI tests on Windows [\#1418](https://github.com/strictdoc-project/strictdoc/pull/1418) ([stanislaw](https://github.com/stanislaw))
|
90
|
+
- server, UI: requirement relations: strip whitespaces before and after copy-and-paste [\#1417](https://github.com/strictdoc-project/strictdoc/pull/1417) ([stanislaw](https://github.com/stanislaw))
|
91
|
+
- server, export/html: create requirement with comments [\#1416](https://github.com/strictdoc-project/strictdoc/pull/1416) ([stanislaw](https://github.com/stanislaw))
|
92
|
+
- export/html: project\_statistics: also print the generation date [\#1415](https://github.com/strictdoc-project/strictdoc/pull/1415) ([stanislaw](https://github.com/stanislaw))
|
93
|
+
- export/html: Improve the "copy to clipboard" function to use static HTML [\#1414](https://github.com/strictdoc-project/strictdoc/pull/1414) ([mettta](https://github.com/mettta))
|
94
|
+
- drafts/requirements: elaborate: Relations, Performance, Multirepo, CLI [\#1413](https://github.com/strictdoc-project/strictdoc/pull/1413) ([stanislaw](https://github.com/stanislaw))
|
95
|
+
- gitignore: \_\_\*.sdoc [\#1409](https://github.com/strictdoc-project/strictdoc/pull/1409) ([mettta](https://github.com/mettta))
|
96
|
+
- drafts/requirements: update to new RELATIONS, elaborate several data model-related requirements [\#1408](https://github.com/strictdoc-project/strictdoc/pull/1408) ([stanislaw](https://github.com/stanislaw))
|
97
|
+
- export/html: form.css: add optional scroll to modal [\#1405](https://github.com/strictdoc-project/strictdoc/pull/1405) ([mettta](https://github.com/mettta))
|
98
|
+
- Code climate: limit mypy to the lowest Python of 3.7 [\#1404](https://github.com/strictdoc-project/strictdoc/pull/1404) ([stanislaw](https://github.com/stanislaw))
|
99
|
+
- gitignore: add \*.local.toml [\#1403](https://github.com/strictdoc-project/strictdoc/pull/1403) ([mettta](https://github.com/mettta))
|
100
|
+
- tests/end2end: try to fix flaky test problem by changing the custom port [\#1402](https://github.com/strictdoc-project/strictdoc/pull/1402) ([stanislaw](https://github.com/stanislaw))
|
101
|
+
- Code climate: tasks: build tox, mypy, pytest, ruff into build/ [\#1401](https://github.com/strictdoc-project/strictdoc/pull/1401) ([stanislaw](https://github.com/stanislaw))
|
102
|
+
|
103
|
+
## [0.0.46](https://github.com/strictdoc-project/strictdoc/tree/0.0.46) (2023-10-29)
|
104
|
+
|
105
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.45...0.0.46)
|
106
|
+
|
107
|
+
## [0.0.45](https://github.com/strictdoc-project/strictdoc/tree/0.0.45) (2023-10-29)
|
108
|
+
|
109
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.43...0.0.45)
|
110
|
+
|
111
|
+
**Fixed bugs:**
|
112
|
+
|
113
|
+
- Requirements are missing sdoc-anchor [\#1363](https://github.com/strictdoc-project/strictdoc/issues/1363)
|
114
|
+
- Visual bug: The anchors shall not be displayed on requirements [\#1345](https://github.com/strictdoc-project/strictdoc/issues/1345)
|
115
|
+
- CI failure: The macOS GitHub Actions job fails with "Invalid or unsupported XPath" on two tests [\#1333](https://github.com/strictdoc-project/strictdoc/issues/1333)
|
116
|
+
- Bug: Editing text via web ui deletes Refs Type File and Refs Value [\#1319](https://github.com/strictdoc-project/strictdoc/issues/1319)
|
117
|
+
- source coverage exception when source file last line is not empty [\#1307](https://github.com/strictdoc-project/strictdoc/issues/1307)
|
118
|
+
- WebUI Suggestion: Prevent 2 sections from having the same UID [\#1290](https://github.com/strictdoc-project/strictdoc/issues/1290)
|
119
|
+
- Creating/editing the names of custom fields in the grammar [\#955](https://github.com/strictdoc-project/strictdoc/issues/955)
|
120
|
+
- source coverage: fix case when source file last line is not empty [\#1308](https://github.com/strictdoc-project/strictdoc/pull/1308) ([stanislaw](https://github.com/stanislaw))
|
121
|
+
|
122
|
+
**Closed issues:**
|
123
|
+
|
124
|
+
- CSS: prevent overflow of fields in the requirement with long strings without breaks [\#1394](https://github.com/strictdoc-project/strictdoc/issues/1394)
|
125
|
+
- UI: update clipboard button styles [\#1389](https://github.com/strictdoc-project/strictdoc/issues/1389)
|
126
|
+
- server: automatically append `.sdoc` extension if missing when adding a new document [\#1375](https://github.com/strictdoc-project/strictdoc/issues/1375)
|
127
|
+
- Add `--version` flag to CLI [\#1373](https://github.com/strictdoc-project/strictdoc/issues/1373)
|
128
|
+
- Long table auto-wrapping/horizontal scrolling [\#1370](https://github.com/strictdoc-project/strictdoc/issues/1370)
|
129
|
+
- UI: end2end tests: TOC and anchors [\#1368](https://github.com/strictdoc-project/strictdoc/issues/1368)
|
130
|
+
- UI: end2end tests: test cloning requirement nodes [\#1367](https://github.com/strictdoc-project/strictdoc/issues/1367)
|
131
|
+
- UI: create end2end tests for LINKS and ANCHORS [\#1366](https://github.com/strictdoc-project/strictdoc/issues/1366)
|
132
|
+
- Minor UI issue: requirement template: the only \<p\> paragraph without margins [\#1362](https://github.com/strictdoc-project/strictdoc/issues/1362)
|
133
|
+
- tasks: invoke server: add --config parameter [\#1357](https://github.com/strictdoc-project/strictdoc/issues/1357)
|
134
|
+
- UI: Clone/duplicate requirement node [\#1343](https://github.com/strictdoc-project/strictdoc/issues/1343)
|
135
|
+
- Implement relation types \(e.g., refines, implements, verifies\) [\#1310](https://github.com/strictdoc-project/strictdoc/issues/1310)
|
136
|
+
- CLI: specify a path to the project config with --config parameter [\#1301](https://github.com/strictdoc-project/strictdoc/issues/1301)
|
137
|
+
- Take into account project config last modification date when invalidating caches [\#1300](https://github.com/strictdoc-project/strictdoc/issues/1300)
|
138
|
+
- Path not found: replace assert with proper error handling [\#1291](https://github.com/strictdoc-project/strictdoc/issues/1291)
|
139
|
+
- backend/sdoc: support Child links [\#1279](https://github.com/strictdoc-project/strictdoc/issues/1279)
|
140
|
+
- UI: Editing grammar: ensure that all requirements can be mass-updated when the fields order is changed [\#1225](https://github.com/strictdoc-project/strictdoc/issues/1225)
|
141
|
+
- Documentation train 2023-Q3 [\#1209](https://github.com/strictdoc-project/strictdoc/issues/1209)
|
142
|
+
- Feature: Project statistics / progress report screen [\#1132](https://github.com/strictdoc-project/strictdoc/issues/1132)
|
143
|
+
- Ensure a convention for the custom fields: single-line fields above, multiline fields below [\#948](https://github.com/strictdoc-project/strictdoc/issues/948)
|
144
|
+
- UI: Make all text fields have a button "copy to buffer" [\#913](https://github.com/strictdoc-project/strictdoc/issues/913)
|
145
|
+
- ReqIF-SDoc: exporting/importing \(roundtrip\) [\#571](https://github.com/strictdoc-project/strictdoc/issues/571)
|
146
|
+
- ReqIF implementation roadmap [\#520](https://github.com/strictdoc-project/strictdoc/issues/520)
|
147
|
+
|
148
|
+
**Merged pull requests:**
|
149
|
+
|
150
|
+
- main\_router: update\_grammar: fix an edge case, improve a flaky test case [\#1322](https://github.com/strictdoc-project/strictdoc/pull/1322) ([stanislaw](https://github.com/stanislaw))
|
151
|
+
- Requirement relations: good 80%+ of the overall implementation [\#1320](https://github.com/strictdoc-project/strictdoc/pull/1320) ([stanislaw](https://github.com/stanislaw))
|
152
|
+
- tests/end2end: rename several tests, update to e2e conventions [\#1317](https://github.com/strictdoc-project/strictdoc/pull/1317) ([stanislaw](https://github.com/stanislaw))
|
153
|
+
- tests/end2end: update to new naming conventions: edit\_requirement/\_requirement\_relations/\* [\#1316](https://github.com/strictdoc-project/strictdoc/pull/1316) ([stanislaw](https://github.com/stanislaw))
|
154
|
+
- backend, UI: ParentReqReference: role\_uid -\> role [\#1315](https://github.com/strictdoc-project/strictdoc/pull/1315) ([stanislaw](https://github.com/stanislaw))
|
155
|
+
- helpers: new form data parser [\#1314](https://github.com/strictdoc-project/strictdoc/pull/1314) ([stanislaw](https://github.com/stanislaw))
|
156
|
+
- templates/components: new set of templates for editing requirements and grammar fields [\#1313](https://github.com/strictdoc-project/strictdoc/pull/1313) ([stanislaw](https://github.com/stanislaw))
|
157
|
+
- export/html: code climate: djLint issues in templates [\#1312](https://github.com/strictdoc-project/strictdoc/pull/1312) ([mettta](https://github.com/mettta))
|
158
|
+
- export/html: code climate: djLint issues in templates [\#1311](https://github.com/strictdoc-project/strictdoc/pull/1311) ([mettta](https://github.com/mettta))
|
159
|
+
- sdoc/grammar: introduce REFS/RELATIONS/ROLES [\#1309](https://github.com/strictdoc-project/strictdoc/pull/1309) ([stanislaw](https://github.com/stanislaw))
|
160
|
+
- backend/sdoc: recognize REFS/RELATION field in the grammar [\#1305](https://github.com/strictdoc-project/strictdoc/pull/1305) ([stanislaw](https://github.com/stanislaw))
|
161
|
+
- config: take into account config last modification date when invalidating caches [\#1304](https://github.com/strictdoc-project/strictdoc/pull/1304) ([stanislaw](https://github.com/stanislaw))
|
162
|
+
- cli and server: validate --config parameter [\#1303](https://github.com/strictdoc-project/strictdoc/pull/1303) ([stanislaw](https://github.com/stanislaw))
|
163
|
+
- cli and server: support --config parameter [\#1302](https://github.com/strictdoc-project/strictdoc/pull/1302) ([stanislaw](https://github.com/stanislaw))
|
164
|
+
- UI: add missing features related to editing document grammar [\#1299](https://github.com/strictdoc-project/strictdoc/pull/1299) ([stanislaw](https://github.com/stanislaw))
|
165
|
+
- traceability\_index: fix finding an existing node with a given UID [\#1297](https://github.com/strictdoc-project/strictdoc/pull/1297) ([stanislaw](https://github.com/stanislaw))
|
166
|
+
- strictdoc.toml: do not generate project statistics by default [\#1296](https://github.com/strictdoc-project/strictdoc/pull/1296) ([stanislaw](https://github.com/stanislaw))
|
167
|
+
- docs: add experimental features, limitations, improve Hello World part [\#1295](https://github.com/strictdoc-project/strictdoc/pull/1295) ([stanislaw](https://github.com/stanislaw))
|
168
|
+
- docs: fix recent RST content markup [\#1294](https://github.com/strictdoc-project/strictdoc/pull/1294) ([stanislaw](https://github.com/stanislaw))
|
169
|
+
- export/rst: add a missing branch to generate Anchors [\#1293](https://github.com/strictdoc-project/strictdoc/pull/1293) ([stanislaw](https://github.com/stanislaw))
|
170
|
+
- export/html: Project statistics screen [\#1292](https://github.com/strictdoc-project/strictdoc/pull/1292) ([stanislaw](https://github.com/stanislaw))
|
171
|
+
- Bump version to 0.0.44a3 [\#1288](https://github.com/strictdoc-project/strictdoc/pull/1288) ([stanislaw](https://github.com/stanislaw))
|
172
|
+
- tests/integration: user-provided ReqIF file with a schema not compliant to ReqIF recommendations [\#1287](https://github.com/strictdoc-project/strictdoc/pull/1287) ([stanislaw](https://github.com/stanislaw))
|
173
|
+
- export/html, server: add Mermaid [\#1285](https://github.com/strictdoc-project/strictdoc/pull/1285) ([stanislaw](https://github.com/stanislaw))
|
174
|
+
- server: 200/304 handling of documents: "Cache-Control": "no-cache" [\#1284](https://github.com/strictdoc-project/strictdoc/pull/1284) ([stanislaw](https://github.com/stanislaw))
|
175
|
+
- server: introduce 200/304 handling of documents [\#1283](https://github.com/strictdoc-project/strictdoc/pull/1283) ([stanislaw](https://github.com/stanislaw))
|
176
|
+
- server: introduce 200/304 handling of assets [\#1282](https://github.com/strictdoc-project/strictdoc/pull/1282) ([stanislaw](https://github.com/stanislaw))
|
177
|
+
- export/html: do not precompile Jinja templates if a project is too small [\#1281](https://github.com/strictdoc-project/strictdoc/pull/1281) ([stanislaw](https://github.com/stanislaw))
|
178
|
+
- backend/sdoc, export/html: support child / reverse parent links [\#1280](https://github.com/strictdoc-project/strictdoc/pull/1280) ([stanislaw](https://github.com/stanislaw))
|
179
|
+
- drafts/requirements: L2 and L3: refine more requirements \(SDoc format, Excel, open source, links\) [\#1276](https://github.com/strictdoc-project/strictdoc/pull/1276) ([stanislaw](https://github.com/stanislaw))
|
180
|
+
|
181
|
+
## [0.0.43](https://github.com/strictdoc-project/strictdoc/tree/0.0.43) (2023-08-13)
|
182
|
+
|
183
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.42...0.0.43)
|
184
|
+
|
185
|
+
**Fixed bugs:**
|
186
|
+
|
187
|
+
- Edge case: crash when renaming section UID [\#1245](https://github.com/strictdoc-project/strictdoc/issues/1245)
|
188
|
+
- export/html: moving nodes edge case [\#1232](https://github.com/strictdoc-project/strictdoc/issues/1232)
|
189
|
+
- grammar/type\_system : change test of non-empty strings [\#1210](https://github.com/strictdoc-project/strictdoc/issues/1210)
|
190
|
+
- Minor visual issue: the DTR screen shows slightly corrupted TOC styles [\#1179](https://github.com/strictdoc-project/strictdoc/issues/1179)
|
191
|
+
|
192
|
+
**Closed issues:**
|
193
|
+
|
194
|
+
- Known issue: Jinja2 template compiler chokes on .DS\_Store files of macOS [\#1266](https://github.com/strictdoc-project/strictdoc/issues/1266)
|
195
|
+
- Time to do something with ERR\_CONNECTION\_REFUSED Selenium errors on Linux CI [\#1217](https://github.com/strictdoc-project/strictdoc/issues/1217)
|
196
|
+
- multi-line fields not preserving whitepace in all formats \(rst:yes, html:no\) [\#1212](https://github.com/strictdoc-project/strictdoc/issues/1212)
|
197
|
+
- Unable to reference .cc files [\#1199](https://github.com/strictdoc-project/strictdoc/issues/1199)
|
198
|
+
- Double-check if we want to allow RST quote blocks starting free text blocks [\#1148](https://github.com/strictdoc-project/strictdoc/issues/1148)
|
199
|
+
- Investigate: test 'export tree to reqif' \(sometimes\) fails on Windows [\#1100](https://github.com/strictdoc-project/strictdoc/issues/1100)
|
200
|
+
- Documentation train 2023-Q2 [\#1074](https://github.com/strictdoc-project/strictdoc/issues/1074)
|
201
|
+
- UI: Section: Incoming/outgoing links [\#1045](https://github.com/strictdoc-project/strictdoc/issues/1045)
|
202
|
+
- Document TOC tree: minor UI issue: difference in offset of Section and Requirement [\#1013](https://github.com/strictdoc-project/strictdoc/issues/1013)
|
203
|
+
- Missing documentation for inline links [\#725](https://github.com/strictdoc-project/strictdoc/issues/725)
|
204
|
+
- Feature: Links to Sections [\#382](https://github.com/strictdoc-project/strictdoc/issues/382)
|
205
|
+
- Traceability: show parent links with missing parents [\#366](https://github.com/strictdoc-project/strictdoc/issues/366)
|
206
|
+
|
207
|
+
**Merged pull requests:**
|
208
|
+
|
209
|
+
- Bump version to 0.0.43 [\#1275](https://github.com/strictdoc-project/strictdoc/pull/1275) ([stanislaw](https://github.com/stanislaw))
|
210
|
+
- export/html/html\_templates: filter out .DS\_Store files when compiling Jinja templates [\#1274](https://github.com/strictdoc-project/strictdoc/pull/1274) ([stanislaw](https://github.com/stanislaw))
|
211
|
+
- UI: generate the UID automatically when creating requirements [\#1273](https://github.com/strictdoc-project/strictdoc/pull/1273) ([stanislaw](https://github.com/stanislaw))
|
212
|
+
- drafts/requirements: L1 and L2 reqs: compliance management and compliance matrices, requirements and source files traceability, auto UIDs [\#1270](https://github.com/strictdoc-project/strictdoc/pull/1270) ([stanislaw](https://github.com/stanislaw))
|
213
|
+
- drafts/requirements: L1 reqs: integration between distinct projects requirements trees and reverse parent links [\#1269](https://github.com/strictdoc-project/strictdoc/pull/1269) ([stanislaw](https://github.com/stanislaw))
|
214
|
+
- drafts/ and docs/: merge the old and new backlog items [\#1268](https://github.com/strictdoc-project/strictdoc/pull/1268) ([stanislaw](https://github.com/stanislaw))
|
215
|
+
- drafts/requirements: L1 reqs: SDK and DB, general usability and UX, large number of users, qualification [\#1267](https://github.com/strictdoc-project/strictdoc/pull/1267) ([stanislaw](https://github.com/stanislaw))
|
216
|
+
- docs: document the \[LINK: ...\] feature [\#1265](https://github.com/strictdoc-project/strictdoc/pull/1265) ([stanislaw](https://github.com/stanislaw))
|
217
|
+
- backend/reqif: ReqIFz roundtrip [\#1264](https://github.com/strictdoc-project/strictdoc/pull/1264) ([stanislaw](https://github.com/stanislaw))
|
218
|
+
- Code climate: fix E721 [\#1263](https://github.com/strictdoc-project/strictdoc/pull/1263) ([stanislaw](https://github.com/stanislaw))
|
219
|
+
- export/rst: multiline fields: make a newline break after field name [\#1262](https://github.com/strictdoc-project/strictdoc/pull/1262) ([stanislaw](https://github.com/stanislaw))
|
220
|
+
- Code climate: tests/end2end: migrate more tests to new conventions [\#1260](https://github.com/strictdoc-project/strictdoc/pull/1260) ([stanislaw](https://github.com/stanislaw))
|
221
|
+
- backend/sdoc and rst\_to\_html: take into account the output directory when hashing picked file names [\#1259](https://github.com/strictdoc-project/strictdoc/pull/1259) ([stanislaw](https://github.com/stanislaw))
|
222
|
+
- export/html: improvements in the caching algorithm [\#1258](https://github.com/strictdoc-project/strictdoc/pull/1258) ([stanislaw](https://github.com/stanislaw))
|
223
|
+
- backend/sdoc: optimize grammar for some more performance [\#1257](https://github.com/strictdoc-project/strictdoc/pull/1257) ([stanislaw](https://github.com/stanislaw))
|
224
|
+
- export:/html2pdf: add frontpage template [\#1256](https://github.com/strictdoc-project/strictdoc/pull/1256) ([mettta](https://github.com/mettta))
|
225
|
+
- Bump version to 0.0.43a7 [\#1255](https://github.com/strictdoc-project/strictdoc/pull/1255) ([stanislaw](https://github.com/stanislaw))
|
226
|
+
- Code climate: tests/end2end: update more tests to latest conventions [\#1254](https://github.com/strictdoc-project/strictdoc/pull/1254) ([stanislaw](https://github.com/stanislaw))
|
227
|
+
- backend/reqif: more explicit default ReqIF profile: "P01 SDoc" [\#1253](https://github.com/strictdoc-project/strictdoc/pull/1253) ([stanislaw](https://github.com/stanislaw))
|
228
|
+
- tests/end2end: migrate 2 test cases to E2ECase [\#1252](https://github.com/strictdoc-project/strictdoc/pull/1252) ([stanislaw](https://github.com/stanislaw))
|
229
|
+
- backend/sdoc: reader: good performance improvement from pickling parsed SDoc content [\#1251](https://github.com/strictdoc-project/strictdoc/pull/1251) ([stanislaw](https://github.com/stanislaw))
|
230
|
+
- export/html: PDF: adding pdf-version for anchored title components [\#1250](https://github.com/strictdoc-project/strictdoc/pull/1250) ([mettta](https://github.com/mettta))
|
231
|
+
- drafts/requirements: more statuses and links for reqs in the SDoc-level spec [\#1249](https://github.com/strictdoc-project/strictdoc/pull/1249) ([stanislaw](https://github.com/stanislaw))
|
232
|
+
- Code climate: tests/end2end: adjust update\_section group to new conventions [\#1248](https://github.com/strictdoc-project/strictdoc/pull/1248) ([stanislaw](https://github.com/stanislaw))
|
233
|
+
- export/html, server: fix a branch: rename section UID [\#1247](https://github.com/strictdoc-project/strictdoc/pull/1247) ([stanislaw](https://github.com/stanislaw))
|
234
|
+
- drafts/requirements: assign status and links to more trivial requirements [\#1246](https://github.com/strictdoc-project/strictdoc/pull/1246) ([stanislaw](https://github.com/stanislaw))
|
235
|
+
- export/html: PDF & CSS: fixes unexpected margins [\#1244](https://github.com/strictdoc-project/strictdoc/pull/1244) ([mettta](https://github.com/mettta))
|
236
|
+
- drafts/requirements: StrictDoc reqs: assign Active status to several reqs [\#1243](https://github.com/strictdoc-project/strictdoc/pull/1243) ([stanislaw](https://github.com/stanislaw))
|
237
|
+
- export/dot: profile2: take into account folders [\#1242](https://github.com/strictdoc-project/strictdoc/pull/1242) ([stanislaw](https://github.com/stanislaw))
|
238
|
+
- export/html: incoming links to sections and anchors [\#1241](https://github.com/strictdoc-project/strictdoc/pull/1241) ([stanislaw](https://github.com/stanislaw))
|
239
|
+
- drafts/requirements: activate status of 3 SDoc reqs [\#1240](https://github.com/strictdoc-project/strictdoc/pull/1240) ([stanislaw](https://github.com/stanislaw))
|
240
|
+
- export/html: update style for document and section meta [\#1239](https://github.com/strictdoc-project/strictdoc/pull/1239) ([mettta](https://github.com/mettta))
|
241
|
+
- drafts/requirements: export/import requirements: allocate statuses, connect some SDoc grammar reqs [\#1238](https://github.com/strictdoc-project/strictdoc/pull/1238) ([stanislaw](https://github.com/stanislaw))
|
242
|
+
- export:/html2pdf: replace requirement outline with border [\#1237](https://github.com/strictdoc-project/strictdoc/pull/1237) ([mettta](https://github.com/mettta))
|
243
|
+
- drafts/requirements: assign status fields for ZEP and SDoc dev constraints [\#1236](https://github.com/strictdoc-project/strictdoc/pull/1236) ([stanislaw](https://github.com/stanislaw))
|
244
|
+
- export:/html2pdf: bundle.js: improve grid splitting [\#1235](https://github.com/strictdoc-project/strictdoc/pull/1235) ([mettta](https://github.com/mettta))
|
245
|
+
- export/html, server: fix edge case when dropping a req on another req [\#1234](https://github.com/strictdoc-project/strictdoc/pull/1234) ([stanislaw](https://github.com/stanislaw))
|
246
|
+
- drafts/requirements: more links and statuses, also move DO-178C to the HLR level [\#1233](https://github.com/strictdoc-project/strictdoc/pull/1233) ([stanislaw](https://github.com/stanislaw))
|
247
|
+
- drafts: integrate new StrictDoc requirements work [\#1231](https://github.com/strictdoc-project/strictdoc/pull/1231) ([stanislaw](https://github.com/stanislaw))
|
248
|
+
- HTML2PDF: basic implementation [\#1230](https://github.com/strictdoc-project/strictdoc/pull/1230) ([stanislaw](https://github.com/stanislaw))
|
249
|
+
- export/dot: several improvements: reqs title UIDs and URL link back to server [\#1228](https://github.com/strictdoc-project/strictdoc/pull/1228) ([stanislaw](https://github.com/stanislaw))
|
250
|
+
- Update README.md: Fix CI badges [\#1227](https://github.com/strictdoc-project/strictdoc/pull/1227) ([stanislaw](https://github.com/stanislaw))
|
251
|
+
- tests/end2end: switch some more tests to new E2E class [\#1226](https://github.com/strictdoc-project/strictdoc/pull/1226) ([stanislaw](https://github.com/stanislaw))
|
252
|
+
- tests/end2end: switch edit\_document\_classification test to new E2E class [\#1224](https://github.com/strictdoc-project/strictdoc/pull/1224) ([stanislaw](https://github.com/stanislaw))
|
253
|
+
- export/html: CSS: remove a.reference.external style [\#1223](https://github.com/strictdoc-project/strictdoc/pull/1223) ([mettta](https://github.com/mettta))
|
254
|
+
- UI: updating section: many more combinations of anchors and links use cases [\#1222](https://github.com/strictdoc-project/strictdoc/pull/1222) ([stanislaw](https://github.com/stanislaw))
|
255
|
+
- backend/sdoc: requirement: make STATEMENT mandatory in custom grammar [\#1221](https://github.com/strictdoc-project/strictdoc/pull/1221) ([stanislaw](https://github.com/stanislaw))
|
256
|
+
- tests/end2end: retry 3 times when Selenium CONNECTION\_REFUSED is hit [\#1220](https://github.com/strictdoc-project/strictdoc/pull/1220) ([stanislaw](https://github.com/stanislaw))
|
257
|
+
- Code climate: backend/sdoc/models: switch to using MID instead of str [\#1219](https://github.com/strictdoc-project/strictdoc/pull/1219) ([stanislaw](https://github.com/stanislaw))
|
258
|
+
- tests/end2end: start catching Selenium exceptions more targeted [\#1218](https://github.com/strictdoc-project/strictdoc/pull/1218) ([stanislaw](https://github.com/stanislaw))
|
259
|
+
- tests/end2end: add a test for adding LINK to an existing section ANCHOR [\#1216](https://github.com/strictdoc-project/strictdoc/pull/1216) ([stanislaw](https://github.com/stanislaw))
|
260
|
+
- grammar, anchors: handle edge case of malformed RST [\#1215](https://github.com/strictdoc-project/strictdoc/pull/1215) ([stanislaw](https://github.com/stanislaw))
|
261
|
+
- export/html: fix RST rendering for custom fields [\#1214](https://github.com/strictdoc-project/strictdoc/pull/1214) ([stanislaw](https://github.com/stanislaw))
|
262
|
+
- docs/strictdoc\_01\_user\_guide.sdoc: remove accidental debug lines [\#1213](https://github.com/strictdoc-project/strictdoc/pull/1213) ([stanislaw](https://github.com/stanislaw))
|
263
|
+
- resolve \#1210: leading spaces allowed [\#1211](https://github.com/strictdoc-project/strictdoc/pull/1211) ([BenGardiner](https://github.com/BenGardiner))
|
264
|
+
- export/dot: add legend and folder clusters, improve sorting of flowdown [\#1208](https://github.com/strictdoc-project/strictdoc/pull/1208) ([stanislaw](https://github.com/stanislaw))
|
265
|
+
- export/dot: color-code requirement status, add legend [\#1207](https://github.com/strictdoc-project/strictdoc/pull/1207) ([stanislaw](https://github.com/stanislaw))
|
266
|
+
- export/dot: profile1: randomize link colors to simplify tracing [\#1206](https://github.com/strictdoc-project/strictdoc/pull/1206) ([stanislaw](https://github.com/stanislaw))
|
267
|
+
- export/html: fix margins in DOC TREE [\#1205](https://github.com/strictdoc-project/strictdoc/pull/1205) ([mettta](https://github.com/mettta))
|
268
|
+
- export/html: fix TOC styles for disabled items on DTR screen [\#1204](https://github.com/strictdoc-project/strictdoc/pull/1204) ([mettta](https://github.com/mettta))
|
269
|
+
- export/html: Make anchors visible on hovering over the node [\#1203](https://github.com/strictdoc-project/strictdoc/pull/1203) ([mettta](https://github.com/mettta))
|
270
|
+
- export/html: Adding anchor visualisation [\#1202](https://github.com/strictdoc-project/strictdoc/pull/1202) ([mettta](https://github.com/mettta))
|
271
|
+
- export/dot: basic export to Graphviz/DOT [\#1201](https://github.com/strictdoc-project/strictdoc/pull/1201) ([stanislaw](https://github.com/stanislaw))
|
272
|
+
- export/html, source traceability: add support for C++/.cc extension [\#1200](https://github.com/strictdoc-project/strictdoc/pull/1200) ([stanislaw](https://github.com/stanislaw))
|
273
|
+
|
274
|
+
## [0.0.42](https://github.com/strictdoc-project/strictdoc/tree/0.0.42) (2023-06-18)
|
275
|
+
|
276
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.41...0.0.42)
|
277
|
+
|
278
|
+
**Fixed bugs:**
|
279
|
+
|
280
|
+
- UI section move internal error [\#1185](https://github.com/strictdoc-project/strictdoc/issues/1185)
|
281
|
+
|
282
|
+
**Closed issues:**
|
283
|
+
|
284
|
+
- UI link inner document reference, i.e. RST citations feature [\#1191](https://github.com/strictdoc-project/strictdoc/issues/1191)
|
285
|
+
- server error on "big" inlined csv-table directive [\#1171](https://github.com/strictdoc-project/strictdoc/issues/1171)
|
286
|
+
- Feature request: support include\_directories and exclude\_directories option for traceability [\#1157](https://github.com/strictdoc-project/strictdoc/issues/1157)
|
287
|
+
- Performance profiling of Python code: set up the infrastructure [\#1129](https://github.com/strictdoc-project/strictdoc/issues/1129)
|
288
|
+
- Warnings during tests: deprecated tools and requests to update to Node.js 16 and to using Environment Files. [\#1101](https://github.com/strictdoc-project/strictdoc/issues/1101)
|
289
|
+
- Project config: features: implement and document ALL\_STABLE and ALL\_EXPERIMENTAL. [\#1050](https://github.com/strictdoc-project/strictdoc/issues/1050)
|
290
|
+
- Option: enable strict mode: turn warnings into errors [\#451](https://github.com/strictdoc-project/strictdoc/issues/451)
|
291
|
+
|
292
|
+
**Merged pull requests:**
|
293
|
+
|
294
|
+
- Bump version to 0.0.42 [\#1198](https://github.com/strictdoc-project/strictdoc/pull/1198) ([stanislaw](https://github.com/stanislaw))
|
295
|
+
- helpers/exception: all warnings are turned into errors by raising StrictDocException [\#1197](https://github.com/strictdoc-project/strictdoc/pull/1197) ([stanislaw](https://github.com/stanislaw))
|
296
|
+
- file\_system: improve the sync\_dir reporting capability [\#1196](https://github.com/strictdoc-project/strictdoc/pull/1196) ([stanislaw](https://github.com/stanislaw))
|
297
|
+
- tasks: performance task to generate and visualize profiling info [\#1195](https://github.com/strictdoc-project/strictdoc/pull/1195) ([stanislaw](https://github.com/stanislaw))
|
298
|
+
- traceability\_index: introduce a basic graph database class [\#1194](https://github.com/strictdoc-project/strictdoc/pull/1194) ([stanislaw](https://github.com/stanislaw))
|
299
|
+
- Code climate: simplify some end-2-end test method names [\#1193](https://github.com/strictdoc-project/strictdoc/pull/1193) ([stanislaw](https://github.com/stanislaw))
|
300
|
+
- Feature: reference arbitratry locations in the free text using ANCHOR/LINK [\#1192](https://github.com/strictdoc-project/strictdoc/pull/1192) ([stanislaw](https://github.com/stanislaw))
|
301
|
+
- export/html, source file view: fix two edge cases \(empty source files, source files with empty lines\) [\#1190](https://github.com/strictdoc-project/strictdoc/pull/1190) ([stanislaw](https://github.com/stanislaw))
|
302
|
+
- cli/command\_parser: Fix 'export' format/field msg [\#1189](https://github.com/strictdoc-project/strictdoc/pull/1189) ([richardbarlow](https://github.com/richardbarlow))
|
303
|
+
- "manage auto-uid" command: auto-assign UID for sections as well [\#1188](https://github.com/strictdoc-project/strictdoc/pull/1188) ([stanislaw](https://github.com/stanislaw))
|
304
|
+
- main\_router: improve the performance of move\_node by using the new on-demand loading architecture [\#1187](https://github.com/strictdoc-project/strictdoc/pull/1187) ([stanislaw](https://github.com/stanislaw))
|
305
|
+
- main\_router: fix move\_node action regression due to the recent refactoring [\#1186](https://github.com/strictdoc-project/strictdoc/pull/1186) ([stanislaw](https://github.com/stanislaw))
|
306
|
+
- "manage auto-uid" command: auto-assign UID for the whole project tree [\#1184](https://github.com/strictdoc-project/strictdoc/pull/1184) ([stanislaw](https://github.com/stanislaw))
|
307
|
+
- project\_config: mass refactoring: merge in export config [\#1183](https://github.com/strictdoc-project/strictdoc/pull/1183) ([stanislaw](https://github.com/stanislaw))
|
308
|
+
- cli/cli\_arg\_parser: extract creation of cmd parsers to a separate class [\#1182](https://github.com/strictdoc-project/strictdoc/pull/1182) ([stanislaw](https://github.com/stanislaw))
|
309
|
+
- strictdoc.toml: introduce ALL\_FEATURES umbrella option, switch to features option to toggle the standalone HTML export [\#1181](https://github.com/strictdoc-project/strictdoc/pull/1181) ([stanislaw](https://github.com/stanislaw))
|
310
|
+
- export/html: align the feature toggles with how the HTML components are displayed or hidden [\#1180](https://github.com/strictdoc-project/strictdoc/pull/1180) ([stanislaw](https://github.com/stanislaw))
|
311
|
+
- docs: switch to generating project tree from the root folder [\#1178](https://github.com/strictdoc-project/strictdoc/pull/1178) ([stanislaw](https://github.com/stanislaw))
|
312
|
+
- helpers/path\_filter: basic validation of user input [\#1177](https://github.com/strictdoc-project/strictdoc/pull/1177) ([stanislaw](https://github.com/stanislaw))
|
313
|
+
- screens/deep\_traceability: edge case: truncate csv-table:: content correctly [\#1174](https://github.com/strictdoc-project/strictdoc/pull/1174) ([stanislaw](https://github.com/stanislaw))
|
314
|
+
- RST-to-HTML: fix the relative/absolute path resolution by csv-table directive [\#1173](https://github.com/strictdoc-project/strictdoc/pull/1173) ([stanislaw](https://github.com/stanislaw))
|
315
|
+
- strictdoc.toml: options to include/exclude doc paths and source file paths [\#1170](https://github.com/strictdoc-project/strictdoc/pull/1170) ([stanislaw](https://github.com/stanislaw))
|
316
|
+
|
317
|
+
## [0.0.41](https://github.com/strictdoc-project/strictdoc/tree/0.0.41) (2023-05-21)
|
318
|
+
|
319
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.40...0.0.41)
|
320
|
+
|
321
|
+
**Fixed bugs:**
|
322
|
+
|
323
|
+
- strictdoc server does not render .PNG image [\#1161](https://github.com/strictdoc-project/strictdoc/issues/1161)
|
324
|
+
- Yet another flaky UI test: UC112\_T01\_UI\_toc [\#1155](https://github.com/strictdoc-project/strictdoc/issues/1155)
|
325
|
+
- Assets are missing in Windows [\#1152](https://github.com/strictdoc-project/strictdoc/issues/1152)
|
326
|
+
- Problems when starting a server with the --input-path docs [\#1145](https://github.com/strictdoc-project/strictdoc/issues/1145)
|
327
|
+
|
328
|
+
**Closed issues:**
|
329
|
+
|
330
|
+
- Double-check behavior of REQUIREMENTS\_COVERAGE with a feature toggle and CLI argument [\#1142](https://github.com/strictdoc-project/strictdoc/issues/1142)
|
331
|
+
- Adapt SOURCE FILE COVERAGE view to new components [\#1138](https://github.com/strictdoc-project/strictdoc/issues/1138)
|
332
|
+
- Add resizable component to requirements\_coverage TOC [\#1137](https://github.com/strictdoc-project/strictdoc/issues/1137)
|
333
|
+
- Project tree: show the full relative path to each document folder [\#1128](https://github.com/strictdoc-project/strictdoc/issues/1128)
|
334
|
+
- pip install fails on win10 due to short path in windows registry [\#1118](https://github.com/strictdoc-project/strictdoc/issues/1118)
|
335
|
+
- pan\_with\_space.js: JS errors [\#1116](https://github.com/strictdoc-project/strictdoc/issues/1116)
|
336
|
+
- Minor CSS issue: highlight better the distance between paragraphs in requirement rationale [\#1115](https://github.com/strictdoc-project/strictdoc/issues/1115)
|
337
|
+
- Minor CSS issue: it is not possible to create a next requirement because the menu is not accessible [\#1114](https://github.com/strictdoc-project/strictdoc/issues/1114)
|
338
|
+
- Move document nodes using drag-and-drop TOC [\#1113](https://github.com/strictdoc-project/strictdoc/issues/1113)
|
339
|
+
- .. image:: filename.\* not rendered [\#1106](https://github.com/strictdoc-project/strictdoc/issues/1106)
|
340
|
+
- tests/end2end: implement a test for TOC collapse/expand [\#1105](https://github.com/strictdoc-project/strictdoc/issues/1105)
|
341
|
+
- tests/end2end: introduce a helper that ensures absence of JS errors in every test [\#1058](https://github.com/strictdoc-project/strictdoc/issues/1058)
|
342
|
+
- Web server: switch to dynamic generation of content as opposed to always rendering all static content [\#1032](https://github.com/strictdoc-project/strictdoc/issues/1032)
|
343
|
+
- Introduce end-to-end tests for requirements-to-source traceability [\#1019](https://github.com/strictdoc-project/strictdoc/issues/1019)
|
344
|
+
- Server and UI: resolve paths to the images correctly [\#818](https://github.com/strictdoc-project/strictdoc/issues/818)
|
345
|
+
- Ubuntu VM use case: document usage of libtidy when running integration tests [\#505](https://github.com/strictdoc-project/strictdoc/issues/505)
|
346
|
+
|
347
|
+
**Merged pull requests:**
|
348
|
+
|
349
|
+
- Bump version to 0.0.41 [\#1169](https://github.com/strictdoc-project/strictdoc/pull/1169) ([stanislaw](https://github.com/stanislaw))
|
350
|
+
- export/html: remove unused draggable\_list.js [\#1168](https://github.com/strictdoc-project/strictdoc/pull/1168) ([mettta](https://github.com/mettta))
|
351
|
+
- server, export/html: remove last hardcoded path to Stimulus.js [\#1167](https://github.com/strictdoc-project/strictdoc/pull/1167) ([stanislaw](https://github.com/stanislaw))
|
352
|
+
- docs: update to 18/27 of Q2 documentation train [\#1166](https://github.com/strictdoc-project/strictdoc/pull/1166) ([stanislaw](https://github.com/stanislaw))
|
353
|
+
- export/html: implement draggable\_list [\#1165](https://github.com/strictdoc-project/strictdoc/pull/1165) ([mettta](https://github.com/mettta))
|
354
|
+
- export/html: fix turbo links that were broken by the recent refactoring [\#1164](https://github.com/strictdoc-project/strictdoc/pull/1164) ([mettta](https://github.com/mettta))
|
355
|
+
- server: load all document pages on demand [\#1163](https://github.com/strictdoc-project/strictdoc/pull/1163) ([stanislaw](https://github.com/stanislaw))
|
356
|
+
- server, main\_router: fix resolution of paths for image assets [\#1162](https://github.com/strictdoc-project/strictdoc/pull/1162) ([stanislaw](https://github.com/stanislaw))
|
357
|
+
- export/html: Connect to websocket relative to current domain [\#1160](https://github.com/strictdoc-project/strictdoc/pull/1160) ([richardbarlow](https://github.com/richardbarlow))
|
358
|
+
- tests/end2end: try to fix flaky test: UC112\_T01\_UI: sleep 1s to let animations finish [\#1159](https://github.com/strictdoc-project/strictdoc/pull/1159) ([stanislaw](https://github.com/stanislaw))
|
359
|
+
- export/html: project tree TOC: print full relative paths [\#1158](https://github.com/strictdoc-project/strictdoc/pull/1158) ([stanislaw](https://github.com/stanislaw))
|
360
|
+
- server: set websocket host to configured server host as well [\#1154](https://github.com/strictdoc-project/strictdoc/pull/1154) ([stanislaw](https://github.com/stanislaw))
|
361
|
+
- Bump version to 0.0.41-alpha [\#1153](https://github.com/strictdoc-project/strictdoc/pull/1153) ([stanislaw](https://github.com/stanislaw))
|
362
|
+
- CI: Fix GitHub Actions deprecation warning about Node v12 [\#1150](https://github.com/strictdoc-project/strictdoc/pull/1150) ([stanislaw](https://github.com/stanislaw))
|
363
|
+
- pyproject.toml: exclude unneeded dependencies when releasing Pip [\#1149](https://github.com/strictdoc-project/strictdoc/pull/1149) ([stanislaw](https://github.com/stanislaw))
|
364
|
+
- tests/end2end: implement a test for collapsible list [\#1147](https://github.com/strictdoc-project/strictdoc/pull/1147) ([mettta](https://github.com/mettta))
|
365
|
+
- export/html: add bottom margin for requirement content items [\#1146](https://github.com/strictdoc-project/strictdoc/pull/1146) ([mettta](https://github.com/mettta))
|
366
|
+
- export/html: Move nav panel in source\_file\_view to left [\#1144](https://github.com/strictdoc-project/strictdoc/pull/1144) ([mettta](https://github.com/mettta))
|
367
|
+
- UI: Add resizable component to requirements\_coverage TOC [\#1143](https://github.com/strictdoc-project/strictdoc/pull/1143) ([mettta](https://github.com/mettta))
|
368
|
+
- UI: improving panning on the deep-traceability screen [\#1139](https://github.com/strictdoc-project/strictdoc/pull/1139) ([mettta](https://github.com/mettta))
|
369
|
+
- export/html: fixes dragging content on the deep-traceability page [\#1136](https://github.com/strictdoc-project/strictdoc/pull/1136) ([mettta](https://github.com/mettta))
|
370
|
+
- export/html: center content block on document page [\#1135](https://github.com/strictdoc-project/strictdoc/pull/1135) ([mettta](https://github.com/mettta))
|
371
|
+
- UI: add a right-hand modification to the resizable bar, and move TOC to right [\#1134](https://github.com/strictdoc-project/strictdoc/pull/1134) ([mettta](https://github.com/mettta))
|
372
|
+
- Refactoring templates [\#1133](https://github.com/strictdoc-project/strictdoc/pull/1133) ([mettta](https://github.com/mettta))
|
373
|
+
- tests/end2end: update port 51000 in test\_02\_server\_host\_specified.py [\#1131](https://github.com/strictdoc-project/strictdoc/pull/1131) ([mettta](https://github.com/mettta))
|
374
|
+
- export/html: basic support of image.\* Sphinx directive [\#1130](https://github.com/strictdoc-project/strictdoc/pull/1130) ([stanislaw](https://github.com/stanislaw))
|
375
|
+
- UI: Improving the behaviour of menus and the appearance of forms when editing [\#1126](https://github.com/strictdoc-project/strictdoc/pull/1126) ([mettta](https://github.com/mettta))
|
376
|
+
- UI: add resizable bars for TOC and ProjectTree on document screens [\#1125](https://github.com/strictdoc-project/strictdoc/pull/1125) ([mettta](https://github.com/mettta))
|
377
|
+
|
378
|
+
## [0.0.40](https://github.com/strictdoc-project/strictdoc/tree/0.0.40) (2023-04-24)
|
379
|
+
|
380
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.39...0.0.40)
|
381
|
+
|
382
|
+
**Merged pull requests:**
|
383
|
+
|
384
|
+
- strictdoc.toml: fix how the "port" parameter is recognized [\#1124](https://github.com/strictdoc-project/strictdoc/pull/1124) ([stanislaw](https://github.com/stanislaw))
|
385
|
+
|
386
|
+
## [0.0.39](https://github.com/strictdoc-project/strictdoc/tree/0.0.39) (2023-04-23)
|
387
|
+
|
388
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.38...0.0.39)
|
6
389
|
|
7
390
|
**Closed issues:**
|
8
391
|
|
392
|
+
- strictdoc.toml config option: server/host parameter that specifies which host Uvicorn binds to [\#1119](https://github.com/strictdoc-project/strictdoc/issues/1119)
|
393
|
+
|
394
|
+
**Merged pull requests:**
|
395
|
+
|
396
|
+
- Bump version to 0.0.39 [\#1123](https://github.com/strictdoc-project/strictdoc/pull/1123) ([stanislaw](https://github.com/stanislaw))
|
397
|
+
- strictdoc.toml: \[server\] section with "host" and "port" options [\#1122](https://github.com/strictdoc-project/strictdoc/pull/1122) ([stanislaw](https://github.com/stanislaw))
|
398
|
+
- grammar: harden the weak parts of the grammar: remaining single-line fields [\#1117](https://github.com/strictdoc-project/strictdoc/pull/1117) ([stanislaw](https://github.com/stanislaw))
|
399
|
+
- tasks: fix release task one more time [\#1110](https://github.com/strictdoc-project/strictdoc/pull/1110) ([stanislaw](https://github.com/stanislaw))
|
400
|
+
|
401
|
+
## [0.0.38](https://github.com/strictdoc-project/strictdoc/tree/0.0.38) (2023-04-12)
|
402
|
+
|
403
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.37...0.0.38)
|
404
|
+
|
405
|
+
**Fixed bugs:**
|
406
|
+
|
407
|
+
- RST parsing edge case: invalid literal for int\(\) with base 10: '1...'. [\#1026](https://github.com/strictdoc-project/strictdoc/issues/1026)
|
408
|
+
- tests/end2end: fix --long-timeouts argument [\#1108](https://github.com/strictdoc-project/strictdoc/pull/1108) ([stanislaw](https://github.com/stanislaw))
|
409
|
+
- export/html: when rendering DTR screen, truncate RST directives to just nothing [\#1107](https://github.com/strictdoc-project/strictdoc/pull/1107) ([stanislaw](https://github.com/stanislaw))
|
410
|
+
|
411
|
+
**Closed issues:**
|
412
|
+
|
413
|
+
- tests/end2end: a timeout of 5s is not enough on slower \(Windows\) machines [\#1104](https://github.com/strictdoc-project/strictdoc/issues/1104)
|
414
|
+
- Task release-pyinstaller seems broken [\#1091](https://github.com/strictdoc-project/strictdoc/issues/1091)
|
9
415
|
- tasks: improve the virtual environments infrastructure [\#1057](https://github.com/strictdoc-project/strictdoc/issues/1057)
|
10
416
|
|
417
|
+
**Merged pull requests:**
|
418
|
+
|
419
|
+
- Bump version to 0.0.38 [\#1109](https://github.com/strictdoc-project/strictdoc/pull/1109) ([stanislaw](https://github.com/stanislaw))
|
420
|
+
- export/html: Fixing bulk controls in the collapsible list [\#1103](https://github.com/strictdoc-project/strictdoc/pull/1103) ([mettta](https://github.com/mettta))
|
421
|
+
- backend: upgrade textX grammars to the latest Arpeggio PEG rules [\#1102](https://github.com/strictdoc-project/strictdoc/pull/1102) ([stanislaw](https://github.com/stanislaw))
|
422
|
+
- tests/end2end/helpers: update toc.py usind \[data-testid\] [\#1099](https://github.com/strictdoc-project/strictdoc/pull/1099) ([mettta](https://github.com/mettta))
|
423
|
+
- export/html: CSS: fix scrollbar corner [\#1096](https://github.com/strictdoc-project/strictdoc/pull/1096) ([mettta](https://github.com/mettta))
|
424
|
+
- export/html: do not collapse TOC when there is not much content [\#1095](https://github.com/strictdoc-project/strictdoc/pull/1095) ([mettta](https://github.com/mettta))
|
425
|
+
- tasks: silently upgrade strictdoc dependencies when needed [\#1092](https://github.com/strictdoc-project/strictdoc/pull/1092) ([stanislaw](https://github.com/stanislaw))
|
426
|
+
- Regenerate CHANGELOG [\#1090](https://github.com/strictdoc-project/strictdoc/pull/1090) ([stanislaw](https://github.com/stanislaw))
|
427
|
+
|
11
428
|
## [0.0.37](https://github.com/strictdoc-project/strictdoc/tree/0.0.37) (2023-03-29)
|
12
429
|
|
13
430
|
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.36...0.0.37)
|
@@ -44,10 +461,13 @@
|
|
44
461
|
|
45
462
|
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.35...0.0.36)
|
46
463
|
|
464
|
+
**Fixed bugs:**
|
465
|
+
|
466
|
+
- Missing Requirements [\#1060](https://github.com/strictdoc-project/strictdoc/issues/1060)
|
467
|
+
|
47
468
|
**Closed issues:**
|
48
469
|
|
49
470
|
- CI: set up an integration test job for proving the quality of the latest released Pip package [\#1067](https://github.com/strictdoc-project/strictdoc/issues/1067)
|
50
|
-
- Missing Requirements [\#1060](https://github.com/strictdoc-project/strictdoc/issues/1060)
|
51
471
|
|
52
472
|
**Merged pull requests:**
|
53
473
|
|
@@ -787,7 +1207,11 @@
|
|
787
1207
|
|
788
1208
|
## [0.0.14](https://github.com/strictdoc-project/strictdoc/tree/0.0.14) (2021-08-18)
|
789
1209
|
|
790
|
-
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.
|
1210
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.14a...0.0.14)
|
1211
|
+
|
1212
|
+
## [0.0.14a](https://github.com/strictdoc-project/strictdoc/tree/0.0.14a) (2021-08-18)
|
1213
|
+
|
1214
|
+
[Full Changelog](https://github.com/strictdoc-project/strictdoc/compare/0.0.13...0.0.14a)
|
791
1215
|
|
792
1216
|
**Merged pull requests:**
|
793
1217
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.48a1
|
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/
|