strictdoc 0.0.39__tar.gz → 0.0.41a0__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.39 → strictdoc-0.0.41a0}/PKG-INFO +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/pyproject.toml +8 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/__init__.py +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/cli/cli_arg_parser.py +16 -12
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/cli/main.py +3 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/base.css +1 -4
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/content.css +23 -0
- strictdoc-0.0.41a0/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +225 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +5 -3
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/editable_field_controller.js +1 -1
- strictdoc-0.0.41a0/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +9 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/element.css +51 -147
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/layout.css +18 -40
- strictdoc-0.0.41a0/strictdoc/export/html/_static/pan_with_space.js +151 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirement.css +1 -1
- strictdoc-0.0.41a0/strictdoc/export/html/_static/resizable_bar.js +602 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/document_config_form_object.py +5 -4
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/requirement_form_object.py +11 -4
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document.py +8 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_deep_trace.py +8 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_table.py +8 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_trace.py +8 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/document_tree.py +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/requirements_coverage.py +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/source_file_coverage.py +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/source_file_view_generator.py +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/link_renderer.py +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/markup_renderer.py +15 -2
- strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +5 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +3 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +3 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +7 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/deep_trace/show_full_requirement/stream_show_full_requirement.jinja +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/add_requirement_parent_link/stream_add_requirement_parent_link.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +3 -3
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_add_grammar_field.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_edit_document_grammar.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +1 -1
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +1 -1
- {strictdoc-0.0.39/strictdoc/export/html/templates/actions/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index}/import_reqif_document/stream_form_import_reqif_document.jinja.html +1 -1
- strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +9 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +9 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates/actions/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/actions/project_index}/stream_new_document.jinja.html +1 -1
- strictdoc-0.0.41a0/strictdoc/export/html/templates/base.jinja.html +96 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/components/header/_usage_example.jinja +15 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/components/header/header_pagetype.jinja +1 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/components/header/index.jinja +30 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +1 -1
- strictdoc-0.0.41a0/strictdoc/export/html/templates/components/resizable_bar/index.jinja +24 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +9 -0
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/toc.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +2 -32
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +40 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +6 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +8 -0
- strictdoc-0.0.39/strictdoc/export/html/templates/single_document/document_actions.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/actions.jinja +4 -10
- {strictdoc-0.0.39/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_content.jinja.html +1 -1
- {strictdoc-0.0.39/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_grammar_edit.jinja.html +1 -1
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/requirement_edit.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit.jinja +5 -3
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/section_edit.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_section_edit.jinja +3 -1
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/index.jinja +65 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/main.jinja +3 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/table/index.jinja +52 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/table/main.jinja +241 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability/index.jinja +59 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability/main.jinja +44 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +62 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +42 -0
- strictdoc-0.0.39/strictdoc/export/html/templates/document_tree/document_tree_actions.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/actions.jinja +6 -4
- {strictdoc-0.0.39/strictdoc/export/html/templates/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index}/frame_form_import_reqif.jinja.html +1 -1
- {strictdoc-0.0.39/strictdoc/export/html/templates/document_tree → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index}/frame_form_new_document.jinja.html +1 -1
- strictdoc-0.0.39/strictdoc/export/html/templates/document_tree/frame_document_tree.jinja.html → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +1 -1
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/index.jinja +46 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/project_index/main.jinja +3 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/index.jinja +38 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/main.jinja +29 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/project_tree_flat_anchor_list.jinja +16 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/requirements_coverage/resizable_bar_with_project_tree.jinja +6 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +29 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +99 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/source_file_view/aside.jinja +2 -2
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +5 -0
- strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/source_file_view/index.jinja +45 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/source_file_view/main.jinja +5 -2
- strictdoc-0.0.41a0/strictdoc/export/rst/directives/wildcard_enhanced_image.py +67 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/rst/rst_to_html_fragment_writer.py +17 -4
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/routers/main_router.py +37 -26
- strictdoc-0.0.39/.coveragerc +0 -11
- strictdoc-0.0.39/.github/workflows/ci-linux-ubuntu-latest.yml +0 -39
- strictdoc-0.0.39/.github/workflows/ci-mac.yml +0 -39
- strictdoc-0.0.39/.github/workflows/ci-windows-powershell.yml +0 -49
- strictdoc-0.0.39/.github/workflows/ci-windows.yml +0 -54
- strictdoc-0.0.39/.github/workflows/codeql-analysis.yml +0 -71
- strictdoc-0.0.39/.github/workflows/end2end-tests.yml +0 -105
- strictdoc-0.0.39/.github/workflows/periodic-integration-test.yml +0 -121
- strictdoc-0.0.39/.github/workflows/periodic-release-test.yml +0 -36
- strictdoc-0.0.39/.github/workflows/release.yml +0 -34
- strictdoc-0.0.39/.link_health.yml +0 -3
- strictdoc-0.0.39/.pylint.ini +0 -525
- strictdoc-0.0.39/.python-version +0 -2
- strictdoc-0.0.39/.readthedocs.yaml +0 -26
- strictdoc-0.0.39/.ruby-version +0 -2
- strictdoc-0.0.39/developer/design/2022-05-strictdoc.afdesign +0 -0
- strictdoc-0.0.39/developer/pip_install_strictdoc_deps.py +0 -74
- strictdoc-0.0.39/developer/pyinstaller_hooks/hook-latexcodec.py +0 -4
- strictdoc-0.0.39/developer/pyinstaller_hooks/hook-six.py +0 -4
- strictdoc-0.0.39/developer/pyinstaller_hooks/hook-yaml.py +0 -4
- strictdoc-0.0.39/developer/snap/README.md +0 -30
- strictdoc-0.0.39/developer/snap/snapcraft.yaml +0 -21
- strictdoc-0.0.39/docs/sphinx/Makefile +0 -20
- strictdoc-0.0.39/docs/sphinx/make.bat +0 -35
- strictdoc-0.0.39/docs/sphinx/requirements.txt +0 -4
- strictdoc-0.0.39/docs/sphinx/source/_static/logo.jpg +0 -0
- strictdoc-0.0.39/docs/sphinx/source/_static/theme_overrides.css +0 -13
- strictdoc-0.0.39/docs/sphinx/source/conf.py +0 -298
- strictdoc-0.0.39/docs/sphinx/source/index.rst +0 -15
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_01_user_guide.rst +0 -1527
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_02_faq.rst +0 -319
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_03_development_plan.rst +0 -148
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_04_backlog.rst +0 -220
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_10_contributing.rst +0 -43
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_11_developer_guide.rst +0 -162
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_20_requirements.rst +0 -563
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_21_design.rst +0 -118
- strictdoc-0.0.39/docs/sphinx/source/strictdoc_30_credits.rst +0 -76
- strictdoc-0.0.39/docs/strictdoc.toml +0 -9
- strictdoc-0.0.39/docs/strictdoc_01_user_guide.sdoc +0 -1803
- strictdoc-0.0.39/docs/strictdoc_02_faq.sdoc +0 -365
- strictdoc-0.0.39/docs/strictdoc_03_development_plan.sdoc +0 -130
- strictdoc-0.0.39/docs/strictdoc_04_backlog.sdoc +0 -246
- strictdoc-0.0.39/docs/strictdoc_10_contributing.sdoc +0 -59
- strictdoc-0.0.39/docs/strictdoc_11_developer_guide.sdoc +0 -195
- strictdoc-0.0.39/docs/strictdoc_20_requirements.sdoc +0 -494
- strictdoc-0.0.39/docs/strictdoc_21_design.sdoc +0 -146
- strictdoc-0.0.39/docs/strictdoc_30_credits.sdoc +0 -94
- strictdoc-0.0.39/strictdoc/export/html/_static/controllers/collapsible_list_controller.js +0 -209
- strictdoc-0.0.39/strictdoc/export/html/_static/pan_with_space.js +0 -145
- strictdoc-0.0.39/strictdoc/export/html/_static/toc.js +0 -27
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/document_header.jinja.html +0 -6
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/document_title.jinja +0 -8
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/project_header.jinja.html +0 -6
- strictdoc-0.0.39/strictdoc/export/html/templates/_shared/source_file_header.jinja.html +0 -11
- strictdoc-0.0.39/strictdoc/export/html/templates/actions/document_tree/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -9
- strictdoc-0.0.39/strictdoc/export/html/templates/actions/document_tree/stream_create_document.jinja.html +0 -9
- strictdoc-0.0.39/strictdoc/export/html/templates/base.jinja.html +0 -90
- strictdoc-0.0.39/strictdoc/export/html/templates/document_tree/document_tree.jinja.html +0 -50
- strictdoc-0.0.39/strictdoc/export/html/templates/requirements_coverage/document_list.jinja.html +0 -14
- strictdoc-0.0.39/strictdoc/export/html/templates/requirements_coverage/requirements_coverage.jinja.html +0 -65
- strictdoc-0.0.39/strictdoc/export/html/templates/single_document/document.jinja.html +0 -57
- strictdoc-0.0.39/strictdoc/export/html/templates/single_document_table/document.jinja.html +0 -295
- strictdoc-0.0.39/strictdoc/export/html/templates/single_document_traceability/document.jinja.html +0 -100
- strictdoc-0.0.39/strictdoc/export/html/templates/single_document_traceability_deep/document.jinja.html +0 -96
- strictdoc-0.0.39/strictdoc/export/html/templates/source_file_coverage/source_file_coverage.jinja.html +0 -130
- strictdoc-0.0.39/strictdoc/export/html/templates/source_file_view/index.jinja +0 -41
- strictdoc-0.0.39/tests/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/conftest.py +0 -68
- strictdoc-0.0.39/tests/end2end/end2end_test_setup.py +0 -125
- strictdoc-0.0.39/tests/end2end/helpers/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/components/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/components/confirm.py +0 -38
- strictdoc-0.0.39/tests/end2end/helpers/components/modal.py +0 -42
- strictdoc-0.0.39/tests/end2end/helpers/components/node/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/components/node/add_node_menu.py +0 -153
- strictdoc-0.0.39/tests/end2end/helpers/components/node/document_root.py +0 -111
- strictdoc-0.0.39/tests/end2end/helpers/components/node/node.py +0 -174
- strictdoc-0.0.39/tests/end2end/helpers/components/node/requirement.py +0 -183
- strictdoc-0.0.39/tests/end2end/helpers/components/node/section.py +0 -36
- strictdoc-0.0.39/tests/end2end/helpers/components/toc.py +0 -69
- strictdoc-0.0.39/tests/end2end/helpers/components/viewtype_selector.py +0 -83
- strictdoc-0.0.39/tests/end2end/helpers/constants.py +0 -29
- strictdoc-0.0.39/tests/end2end/helpers/form/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/form/form.py +0 -129
- strictdoc-0.0.39/tests/end2end/helpers/screens/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/screens/deep_traceability/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/screens/deep_traceability/screen_deep_traceability.py +0 -16
- strictdoc-0.0.39/tests/end2end/helpers/screens/document/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/screens/document/form_edit_config.py +0 -89
- strictdoc-0.0.39/tests/end2end/helpers/screens/document/form_edit_grammar.py +0 -44
- strictdoc-0.0.39/tests/end2end/helpers/screens/document/form_edit_requirement.py +0 -68
- strictdoc-0.0.39/tests/end2end/helpers/screens/document/form_edit_section.py +0 -18
- strictdoc-0.0.39/tests/end2end/helpers/screens/document/screen_document.py +0 -44
- strictdoc-0.0.39/tests/end2end/helpers/screens/document_tree/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/screens/document_tree/form_add_document.py +0 -17
- strictdoc-0.0.39/tests/end2end/helpers/screens/document_tree/form_import_reqif.py +0 -15
- strictdoc-0.0.39/tests/end2end/helpers/screens/document_tree/screen_document_tree.py +0 -80
- strictdoc-0.0.39/tests/end2end/helpers/screens/screen.py +0 -113
- strictdoc-0.0.39/tests/end2end/helpers/screens/table/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/screens/table/screen_table.py +0 -16
- strictdoc-0.0.39/tests/end2end/helpers/screens/traceability/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/helpers/screens/traceability/screen_traceability.py +0 -16
- strictdoc-0.0.39/tests/end2end/navigation/toc/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/navigation/toc/expected_output/document.sdoc +0 -27
- strictdoc-0.0.39/tests/end2end/navigation/toc/input/document.sdoc +0 -27
- strictdoc-0.0.39/tests/end2end/navigation/toc/test_UC112_T01_UI_toc.py +0 -50
- strictdoc-0.0.39/tests/end2end/navigation/toc/test_UC112_T02_UI_toc_saves_state.py +0 -65
- strictdoc-0.0.39/tests/end2end/navigation/viewtype_selector/__init__.py +0 -0
- strictdoc-0.0.39/tests/end2end/navigation/viewtype_selector/expected_output/document.sdoc +0 -20
- strictdoc-0.0.39/tests/end2end/navigation/viewtype_selector/input/document.sdoc +0 -20
- strictdoc-0.0.39/tests/end2end/navigation/viewtype_selector/test_UC113_UI_viewtype_selector.py +0 -66
- strictdoc-0.0.39/tests/end2end/project_index/UC50_viewing_document_tree/UC50_T01_empty_document_tree/test_UC50_T01_empty_document_tree.py +0 -22
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T01_empty_document_title/test_UC51_G1_T01_empty_document_title.py +0 -34
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T02_empty_document_path/test_UC51_G1_T02_empty_document_path.py +0 -34
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T03_document_path_with_no_sdoc_extension/test_UC51_G1_T03_document_path_with_no_sdoc_extension.py +0 -35
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_G1_validation/UC51_G1_T04_document_path_bad_chars/test_UC51_G1_T04_document_path_bad_chars.py +0 -35
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/expected_output/docs/document1.sdoc +0 -2
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/expected_output/dummy.txt +0 -0
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/input/dummy.txt +0 -0
- strictdoc-0.0.39/tests/end2end/project_index/UC51_creating_document/UC51_T01_creating_document/test_UC51_T01_creating_document.py +0 -35
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_G1_validations/UC55_G1_T01_not_a_reqif_format/sample.reqif +0 -1
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_G1_validations/UC55_G1_T01_not_a_reqif_format/test_UC55_G1_T01_not_a_reqif_file.py +0 -38
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/expected_output/Document_1.sdoc +0 -8
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/expected_output/dummy.txt +0 -0
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/input/dummy.txt +0 -0
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/sample.reqif +0 -112
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T01_default_import/test_UC55_T01_default_import.py +0 -40
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T02_cancel_import/test_UC55_T02_cancel_import.py +0 -34
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/expected_output/Document_1.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/expected_output/Document_2.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/expected_output/dummy.txt +0 -0
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/input/dummy.txt +0 -0
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/sample.reqif +0 -249
- strictdoc-0.0.39/tests/end2end/project_index/UC55_import_document_from_reqif/UC55_T03_import_tree_of_two_documents/test_UC55_T03_import_tree_of_two_documents.py +0 -43
- strictdoc-0.0.39/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/expected_output/Document_1.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/expected_output/Document_2.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/input/Document_1.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/input/Document_2.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/project_index/UC56_export_tree_to_reqif/UC56_T01_export_tree_to_reqif/test_UC56_T01_export_tree_to_reqif.py +0 -43
- strictdoc-0.0.39/tests/end2end/project_options/project_title/01_option_not_specified/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/project_options/project_title/01_option_not_specified/test_01_option_not_specified.py +0 -22
- strictdoc-0.0.39/tests/end2end/project_options/project_title/02_option_specified/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/project_options/project_title/02_option_specified/strictdoc.toml +0 -2
- strictdoc-0.0.39/tests/end2end/project_options/project_title/02_option_specified/test_02_option_specified.py +0 -24
- strictdoc-0.0.39/tests/end2end/project_options/server_host/01_option_not_specified/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/project_options/server_host/01_option_not_specified/test_01_server_host_not_specified.py +0 -32
- strictdoc-0.0.39/tests/end2end/project_options/server_host/02_option_specified/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/project_options/server_host/02_option_specified/strictdoc.toml +0 -6
- strictdoc-0.0.39/tests/end2end/project_options/server_host/02_option_specified/test_02_server_host_specified.py +0 -31
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_T03_requirement_show_more_in_modal/expected_output/document.sdoc +0 -28
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_T03_requirement_show_more_in_modal/input/document.sdoc +0 -28
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_T03_requirement_show_more_in_modal/test_UC40_T03_requirement_show_more_in_modal.py +0 -73
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T01_document_has_no_requirement/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T01_document_has_no_requirement/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T01_document_has_no_requirement/test_UC40_T01_document_has_no_requirement.py +0 -38
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T02_document_has_requirement/expected_output/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T02_document_has_requirement/input/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/deep_traceability/UC40_view_document/UC40_T02_document_has_requirement/test_UC40_T02_document_has_requirement.py +0 -38
- strictdoc-0.0.39/tests/end2end/screens/document/UC01_view_document/UC01_T01_document_is_empty/document.sdoc +0 -2
- strictdoc-0.0.39/tests/end2end/screens/document/UC01_view_document/UC01_T01_document_is_empty/test_UC01_T01_empty_document.py +0 -29
- strictdoc-0.0.39/tests/end2end/screens/document/UC01_view_document/UC01_T02_document_has_freetext/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC01_view_document/UC01_T02_document_has_freetext/test_UC01_T02_document_has_freetext.py +0 -29
- strictdoc-0.0.39/tests/end2end/screens/document/UC01_view_document/UC01_T03_document_has_node/document.sdoc +0 -8
- strictdoc-0.0.39/tests/end2end/screens/document/UC01_view_document/UC01_T03_document_has_node/test_UC01_T03_document_has_node.py +0 -29
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T01_section_with_empty_name/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T01_section_with_empty_name/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T01_section_with_empty_name/test_UC03_G1_T01_section_with_empty_name.py +0 -49
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T02_malformed_rst_statement/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T02_malformed_rst_statement/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_G1/UC03_G1_T02_malformed_rst_statement/test_UC03_G1_T02_malformed_rst_statement.py +0 -49
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T01_cancel_new_section/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T01_cancel_new_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T01_cancel_new_section/test_UC03_T01_cancel_new_section.py +0 -42
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T02_create_before_section/expected_output/document.sdoc +0 -24
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T02_create_before_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T02_create_before_section/test_UC03_T02_create_before_section.py +0 -61
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T03_create_first_section/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T03_create_first_section/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T03_create_first_section/test_UC03_T03_create_first_section.py +0 -51
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T04_create_two_sibling_sections/expected_output/document.sdoc +0 -24
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T04_create_two_sibling_sections/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T04_create_two_sibling_sections/test_UC03_T04_create_two_sibling_sections.py +0 -72
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T05_create_three_nested_sections/expected_output/document.sdoc +0 -33
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T05_create_three_nested_sections/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T05_create_three_nested_sections/test_UC03_T05_create_three_nested_sections.py +0 -85
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T06_create_section_after_requirement/expected_output/document.sdoc +0 -21
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T06_create_section_after_requirement/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T06_create_section_after_requirement/test_UC03_T06_create_section_after_requirement.py +0 -55
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T07_create_section_sanitizing_trailing_symbols/expected_output/document.sdoc +0 -19
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T07_create_section_sanitizing_trailing_symbols/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC03_create_section/UC03_T07_create_section_sanitizing_trailing_symbols/test_UC03_T07_create_section_sanitizing_trailing_symbols.py +0 -50
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T01_requirement_with_no_statement/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T01_requirement_with_no_statement/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T01_requirement_with_no_statement/test_UC06_G1_T01_requirement_with_no_statement.py +0 -48
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T02_malformed_rst_statement/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T02_malformed_rst_statement/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_G1_validations/UC06_G1_T02_malformed_rst_statement/test_UC06_G1_T02_malformed_rst_statement.py +0 -50
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T01_cancel_new_requirement/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T01_cancel_new_requirement/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T01_cancel_new_requirement/test_UC06_T01_cancel_new_requirement.py +0 -43
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T03_create_requirement_after_section/expected_output/document.sdoc +0 -21
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T03_create_requirement_after_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T03_create_requirement_after_section/test_UC06_T03_creating_requirement_after_section.py +0 -56
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T04_create_requirement_in_section/expected_output/document.sdoc +0 -21
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T04_create_requirement_in_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T04_create_requirement_in_section/test_UC06_T04_create_requirement_in_section.py +0 -57
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T06_create_requirements_in_document/expected_output/document.sdoc +0 -36
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T06_create_requirements_in_document/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T06_create_requirements_in_document/test_UC06_T06_create_requirements_in_document.py +0 -105
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T08_sanitize_trailing_symbols/expected_output/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T08_sanitize_trailing_symbols/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC06_create_requirement/UC06_T08_sanitize_trailing_symbols/test_UC06_T08_sanitize_trailing_symbols.py +0 -53
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T01_add_one_link/expected_output/document.sdoc +0 -23
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T01_add_one_link/input/document.sdoc +0 -20
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T01_add_one_link/test_UC07_G1_T01_add_one_link.py +0 -70
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T02_add_three_links/expected_output/document.sdoc +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T02_add_three_links/input/document.sdoc +0 -34
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T02_add_three_links/test_UC07_G1_T02_add_three_links.py +0 -48
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T03_remove_existing_link/expected_output/document.sdoc +0 -20
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T03_remove_existing_link/input/document.sdoc +0 -23
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T03_remove_existing_link/test_UC07_G1_T03_remove_existing_link.py +0 -61
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T10_editing_requirement_refs_validate_empty/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T10_editing_requirement_refs_validate_empty/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T10_editing_requirement_refs_validate_empty/test_UC07_G1_T10_editing_requirement_refs.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T11_added_link_not_exists/expected_output/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T11_added_link_not_exists/input/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T11_added_link_not_exists/test_UC07_G1_T11_added_link_not_exists.py +0 -46
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T12_added_link_when_no_uid/expected_output/document.sdoc +0 -25
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T12_added_link_when_no_uid/input/document.sdoc +0 -25
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T12_added_link_when_no_uid/test_UC07_G1_T12_added_link_when_no_uid.py +0 -48
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T13_renaming_uid_when_parent_links_exist/expected_output/document.sdoc +0 -23
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T13_renaming_uid_when_parent_links_exist/input/document.sdoc +0 -23
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T13_renaming_uid_when_parent_links_exist/test_UC07_G1_T13_renaming_uid_when_parent_links_exist.py +0 -48
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T14_renaming_uid_when_child_links_exist/expected_output/document.sdoc +0 -23
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T14_renaming_uid_when_child_links_exist/input/document.sdoc +0 -23
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T14_renaming_uid_when_child_links_exist/test_UC07_G1_T14_renaming_uid_when_child_links_exist.py +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/expected_output/document1.sdoc +0 -13
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/expected_output/document2.sdoc +0 -13
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/input/document1.sdoc +0 -13
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/input/document2.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G1_editing_requirement_links/UC07_G1_T20_two_documents_removing_link/test_UC07_G1_T20_two_documents_removing_link.py +0 -65
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T01_empty_statement/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T01_empty_statement/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T01_empty_statement/test_UC07_G2_T01_empty_statement.py +0 -44
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T02_statement_malformed_rst/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T02_statement_malformed_rst/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_G2_validation/UC07_G2_T02_statement_malformed_rst/test_UC07_G2_T02_statement_malformed_rst.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T01_editing_requirement/expected_output/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T01_editing_requirement/input/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T01_editing_requirement/test_UC07_T01_editing_requirement.py +0 -73
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T02_editing_statement_only/expected_output/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T02_editing_statement_only/input/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T02_editing_statement_only/test_UC07_T02_editing_statement_only.py +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T10_editing_table_requirement/expected_output/document.sdoc +0 -18
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T10_editing_table_requirement/input/document.sdoc +0 -17
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T10_editing_table_requirement/test_UC07_T10_editing_table_requirement.py +0 -59
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T20_add_comment/expected_output/document.sdoc +0 -24
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T20_add_comment/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T20_add_comment/test_UC07_T20_add_comment.py +0 -57
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T21_remove_comment/expected_output/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T21_remove_comment/input/document.sdoc +0 -14
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T21_remove_comment/test_UC07_T21_remove_comment.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T22_remove_one_of_three_comments/expected_output/document.sdoc +0 -17
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T22_remove_one_of_three_comments/input/document.sdoc +0 -20
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T22_remove_one_of_three_comments/test_UC07_T22_remove_one_of_three_comments.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T23_add_empty_to_two_existing_comments/expected_output/document.sdoc +0 -17
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T23_add_empty_to_two_existing_comments/input/document.sdoc +0 -17
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T23_add_empty_to_two_existing_comments/test_UC07_T23_add_empty_to_two_existing_comments.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T50_cancel_edit_requirement/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T50_cancel_edit_requirement/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T50_cancel_edit_requirement/test_UC07_T50_cancel_edit_requirement.py +0 -40
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T60_sanitizing_trailing_symbols/expected_output/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T60_sanitizing_trailing_symbols/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T60_sanitizing_trailing_symbols/test_UC07_T60_sanitizing_trailing_symbols.py +0 -52
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T61_escape_html/expected_output/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T61_escape_html/input/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T61_escape_html/test_UC07_T61_escape_html.py +0 -51
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T62_reescape_html_by_validations/expected_output/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T62_reescape_html_by_validations/input/document.sdoc +0 -16
- strictdoc-0.0.39/tests/end2end/screens/document/UC07_edit_requirement/UC07_T62_reescape_html_by_validations/test_UC07_T62_reescape_html_by_validations.py +0 -49
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T01_edit_section_with_empty_title/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T01_edit_section_with_empty_title/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T01_edit_section_with_empty_title/test_UC08_G1_T01_edit_section_with_empty_title.py +0 -46
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T02_section_statement_malformed_rst/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T02_section_statement_malformed_rst/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_G1_validation/UC08_G1_T02_section_statement_malformed_rst/test_UC08_G1_T02_section_statement_malformed_rst.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T01_cancel_edit_section/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T01_cancel_edit_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T01_cancel_edit_section/test_UC08_T01_cancel_edit_section.py +0 -39
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T02_edit_section/expected_output/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T02_edit_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T02_edit_section/test_UC08_T02_edit_section.py +0 -46
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T03_edit_section_sanitize_trailing_symbols/expected_output/document.sdoc +0 -19
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T03_edit_section_sanitize_trailing_symbols/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T03_edit_section_sanitize_trailing_symbols/test_UC08_T03_edit_section_sanitize_trailing_symbols.py +0 -52
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T04_edit_section_escape_html/expected_output/document.sdoc +0 -19
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T04_edit_section_escape_html/input/document.sdoc +0 -19
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T04_edit_section_escape_html/test_UC08_T04_edit_section_escape_html.py +0 -53
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T05_edit_section_reescape_html_by_validation/expected_output/document.sdoc +0 -19
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T05_edit_section_reescape_html_by_validation/input/document.sdoc +0 -19
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T05_edit_section_reescape_html_by_validation/test_UC08_T05_edit_section_reescape_html_by_validation.py +0 -50
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T06_cancel_edit_nested_section/expected_output/document.sdoc +0 -24
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T06_cancel_edit_nested_section/input/document.sdoc +0 -24
- strictdoc-0.0.39/tests/end2end/screens/document/UC08_edit_section/UC08_T06_cancel_edit_nested_section/test_UC08_T06_cancel_edit_nested_section.py +0 -40
- strictdoc-0.0.39/tests/end2end/screens/document/UC09_delete_section/UC09_T01_delete_section/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC09_delete_section/UC09_T01_delete_section/input/document.sdoc +0 -15
- strictdoc-0.0.39/tests/end2end/screens/document/UC09_delete_section/UC09_T01_delete_section/test_UC09_T01_delete_section.py +0 -38
- strictdoc-0.0.39/tests/end2end/screens/document/UC10_delete_requirement/UC10_T01_delete_requirement/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC10_delete_requirement/UC10_T01_delete_requirement/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC10_delete_requirement/UC10_T01_delete_requirement/test_UC10_T01_delete_requirement.py +0 -38
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T01_empty_title/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T01_empty_title/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T01_empty_title/test_UC11_G1_T01_empty_title.py +0 -43
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T02_abstract_with_invalid_rst/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T02_abstract_with_invalid_rst/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_G1_validations/UC11_G1_T02_abstract_with_invalid_rst/test_UC11_G1_T02_abstract_with_invalid_rst.py +0 -42
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T01_edit_document_title/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T01_edit_document_title/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T01_edit_document_title/test_UC11_T01_edit_document_title.py +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T03_edit_document_cancel/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T03_edit_document_cancel/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T03_edit_document_cancel/test_UC11_T03_edit_document_cancel.py +0 -38
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T11_edit_document_version/expected_output/document.sdoc +0 -13
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T11_edit_document_version/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T11_edit_document_version/test_UC11_T11_edit_document_version.py +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T20_edit_document_uid/expected_output/document.sdoc +0 -13
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T20_edit_document_uid/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T20_edit_document_uid/test_UC11_T20_edit_document_uid.py +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T31_edit_document_classification/expected_output/document.sdoc +0 -13
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T31_edit_document_classification/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T31_edit_document_classification/test_UC11_T31_edit_document_classification.py +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T40_edit_document_abstract/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T40_edit_document_abstract/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T40_edit_document_abstract/test_UC11_T40_edit_document_abstract.py +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T41_remove_document_abstract/expected_output/document.sdoc +0 -2
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T41_remove_document_abstract/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T41_remove_document_abstract/test_UC11_T41_remove_document_abstract.py +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T43_sanitize_abstract/expected_output/document.sdoc +0 -10
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T43_sanitize_abstract/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T43_sanitize_abstract/test_UC11_T43_sanitize_abstract.py +0 -48
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T44_freetext_LINK_to_a_section/expected_output/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T44_freetext_LINK_to_a_section/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T44_freetext_LINK_to_a_section/test_UC11_T44_freetext_LINK_to_a_section.py +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T50_escape_html/expected_output/document.sdoc +0 -10
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T50_escape_html/input/document.sdoc +0 -10
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T50_escape_html/test_UC11_T50_escape_html.py +0 -49
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T51_reescape_html_by_validation/expected_output/document.sdoc +0 -10
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T51_reescape_html_by_validation/input/document.sdoc +0 -10
- strictdoc-0.0.39/tests/end2end/screens/document/UC11_edit_document_config/UC11_T51_reescape_html_by_validation/test_UC11_T51_reescape_html_by_validation.py +0 -46
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T02_move_field_up/expected_output/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T02_move_field_up/input/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T02_move_field_up/test_UC12_T02_move_field_up.py +0 -44
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T03_move_field_down/expected_output/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T03_move_field_down/input/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T03_move_field_down/test_UC12_T03_move_field_down.py +0 -44
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T04_delete_existing_field/expected_output/document.sdoc +0 -41
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T04_delete_existing_field/input/document.sdoc +0 -44
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T04_delete_existing_field/test_UC12_T04_delete_existing_field.py +0 -44
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T10_add_field/expected_output/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T10_add_field/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T10_add_field/test_UC12_T10_add_field.py +0 -45
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T11_add_field_move_up_save/expected_output/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T11_add_field_move_up_save/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T11_add_field_move_up_save/test_UC12_T11_add_field_move_up_save.py +0 -50
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T12_add_field_move_up_and_down_save/expected_output/document.sdoc +0 -47
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T12_add_field_move_up_and_down_save/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T12_add_field_move_up_and_down_save/test_UC12_T12_add_field_move_up_and_down_save.py +0 -52
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T13_add_three_fields/expected_output/document.sdoc +0 -53
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T13_add_three_fields/input/document.sdoc +0 -12
- strictdoc-0.0.39/tests/end2end/screens/document/UC12_edit_document_grammar/UC12_T13_add_three_fields/test_UC12_T13_add_three_fields.py +0 -52
- strictdoc-0.0.39/tests/end2end/screens/document/UC20_export_to_reqif/UC20_T1_green_case/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/document/UC20_export_to_reqif/UC20_T1_green_case/export.reqif +0 -114
- strictdoc-0.0.39/tests/end2end/screens/document/UC20_export_to_reqif/UC20_T1_green_case/test_UC20_T1_green_case.py +0 -49
- strictdoc-0.0.39/tests/end2end/screens/table/UC60_view_document/UC60_T01_document_has_no_content/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/table/UC60_view_document/UC60_T01_document_has_no_content/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/table/UC60_view_document/UC60_T01_document_has_no_content/test_UC60_T01_document_has_no_content.py +0 -36
- strictdoc-0.0.39/tests/end2end/screens/table/UC60_view_document/UC60_T02_document_has_content/expected_output/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/table/UC60_view_document/UC60_T02_document_has_content/input/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/table/UC60_view_document/UC60_T02_document_has_content/test_UC60_T02_document_has_content.py +0 -36
- strictdoc-0.0.39/tests/end2end/screens/traceability/UC30_view_document/UC30_T01_document_has_no_content/expected_output/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/traceability/UC30_view_document/UC30_T01_document_has_no_content/input/document.sdoc +0 -6
- strictdoc-0.0.39/tests/end2end/screens/traceability/UC30_view_document/UC30_T01_document_has_no_content/test_UC30_T01_document_has_no_content.py +0 -36
- strictdoc-0.0.39/tests/end2end/screens/traceability/UC30_view_document/UC30_T02_document_has_content/expected_output/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/traceability/UC30_view_document/UC30_T02_document_has_content/input/document.sdoc +0 -11
- strictdoc-0.0.39/tests/end2end/screens/traceability/UC30_view_document/UC30_T02_document_has_content/test_UC30_T02_document_has_content.py +0 -36
- strictdoc-0.0.39/tests/end2end/sdoc_test_environment.py +0 -53
- strictdoc-0.0.39/tests/end2end/server.py +0 -334
- strictdoc-0.0.39/tests/integration/backend/excel/export/01_basic_excel_export/expected/input.xlsx +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/export/01_basic_excel_export/input.sdoc +0 -23
- strictdoc-0.0.39/tests/integration/backend/excel/export/01_basic_excel_export/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/backend/excel/export/02_no_reqs_to_export/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/backend/excel/export/02_no_reqs_to_export/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/excel/export/03_custom_fields_to_export/expected/input.xlsx +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/export/03_custom_fields_to_export/input.sdoc +0 -31
- strictdoc-0.0.39/tests/integration/backend/excel/export/03_custom_fields_to_export/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/backend/excel/export/04_custom_grammar_fields_to_export_fields_subset/expected/input.xlsx +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/export/04_custom_grammar_fields_to_export_fields_subset/input.sdoc +0 -51
- strictdoc-0.0.39/tests/integration/backend/excel/export/04_custom_grammar_fields_to_export_fields_subset/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/backend/excel/export/05_custom_grammar_fields_to_export_fields_default/expected/input.xlsx +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/export/05_custom_grammar_fields_to_export_fields_default/input.sdoc +0 -51
- strictdoc-0.0.39/tests/integration/backend/excel/export/05_custom_grammar_fields_to_export_fields_default/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/backend/excel/export/06_custom_grammar_fields_to_export_fields_all/expected/input.xlsx +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/export/06_custom_grammar_fields_to_export_fields_all/input.sdoc +0 -51
- strictdoc-0.0.39/tests/integration/backend/excel/export/06_custom_grammar_fields_to_export_fields_all/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/backend/excel/export/07_custom_grammar_fields_to_export_fields_all_special/expected/input.xlsx +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/export/07_custom_grammar_fields_to_export_fields_all_special/input.sdoc +0 -92
- strictdoc-0.0.39/tests/integration/backend/excel/export/07_custom_grammar_fields_to_export_fields_all_special/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/backend/excel/import/01_import_basic_e2e/expected/expected.sdoc +0 -73
- strictdoc-0.0.39/tests/integration/backend/excel/import/01_import_basic_e2e/input.xls +0 -0
- strictdoc-0.0.39/tests/integration/backend/excel/import/01_import_basic_e2e/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/ProR/sample.reqif +0 -3966
- strictdoc-0.0.39/tests/integration/backend/reqif/ProR/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/01_minimal_reqif/sample.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/01_minimal_reqif/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/02_one_requirement/sample.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/02_one_requirement/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/03_one_section_one_requirement/sample.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/03_one_section_one_requirement/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/04_one_section_one_subsection_one_requirement/sample.sdoc +0 -18
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/04_one_section_one_subsection_one_requirement/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/05_two_sections/sample.sdoc +0 -24
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/05_two_sections/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/06_three_sections/sample.sdoc +0 -35
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/06_three_sections/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/07_one_nested_section/sample.sdoc +0 -41
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/07_one_nested_section/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/08_two_nested_sections/sample.sdoc +0 -80
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/08_two_nested_sections/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/09_next_requirement_drop_in_level/sample.sdoc +0 -24
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/09_next_requirement_drop_in_level/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/100_export_reqif_header/sample.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/100_export_reqif_header/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/10_composite_requirements_not_supported_yet/sample.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/10_composite_requirements_not_supported_yet/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/11_exporting_sections_free_text/sample.sdoc +0 -15
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/11_exporting_sections_free_text/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/12_multiline_statements/sample.sdoc +0 -11
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/12_multiline_statements/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/13_refs/sample.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/13_refs/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/14_document_freetext/sample.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/14_document_freetext/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/20_comment_multiple/sample.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/20_comment_multiple/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/30_custom_grammar/sample.sdoc +0 -33
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/30_custom_grammar/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/31_custom_grammar_single_choice_type/sample.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/31_custom_grammar_single_choice_type/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/32_custom_grammar_multi_choice_type/sample.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/32_custom_grammar_multi_choice_type/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/40_specification_type/sample.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/backend/reqif/native/end_to_end/40_specification_type/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/backend/reqif/native/examples/01_sample/sample.reqif +0 -4073
- strictdoc-0.0.39/tests/integration/backend/reqif/native/examples/01_sample/test.itest +0 -16
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/01_stripping_xhtml_namespaces/sample.reqif +0 -203
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/01_stripping_xhtml_namespaces/test.itest +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/02_escaping_symbols/sample.reqif +0 -203
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/02_escaping_symbols/test.itest +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/03_xhtml_object_edge_case/sample.reqif +0 -206
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/03_xhtml_object_edge_case/test.itest +0 -16
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/01_user_provided_example/sample.reqif +0 -3804
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/01_user_provided_example/test.itest +0 -13
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/02_user_provided_example_with_changed_requirement_type/sample.reqif +0 -3804
- strictdoc-0.0.39/tests/integration/backend/reqif/profiles/p11_polarion/e2e_examples/02_user_provided_example_with_changed_requirement_type/test.itest +0 -13
- strictdoc-0.0.39/tests/integration/cat.py +0 -19
- strictdoc-0.0.39/tests/integration/check_exists.py +0 -81
- strictdoc-0.0.39/tests/integration/commands/about/01_print_about/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/bypass/01-basic-requirement-test/input.sdoc +0 -5
- strictdoc-0.0.39/tests/integration/commands/bypass/01-basic-requirement-test/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/commands/bypass/01_minimal_document_with_freetext/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/bypass/01_minimal_document_with_freetext/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/commands/bypass/02-basic-composite-requirement-test/input.sdoc +0 -9
- strictdoc-0.0.39/tests/integration/commands/bypass/02-basic-composite-requirement-test/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/commands/dump-grammar/01_dump_grammar/test.itest +0 -8
- strictdoc-0.0.39/tests/integration/commands/export/01_minimal_document/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/01_minimal_document/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/02_minimal_document_with_freetext/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/02_minimal_document_with_freetext/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/03_input_dir_has_slash/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/03_input_dir_has_slash/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input1.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input10.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input2.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input3.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input4.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input5.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input6.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input7.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input8.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/input9.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/04_parallelization/test.itest +0 -44
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input1.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input10.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input2.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input3.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input4.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input5.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input6.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input7.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input8.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/input9.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/05_parallelization_no_macos_problem_regression/test.itest +0 -37
- strictdoc-0.0.39/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input1.sdoc +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input2.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input3.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/input4.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/06_parallelization_sdoc_parsing_problem_in_child_process/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/07_input_is_single_file/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/07_input_is_single_file/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/08_finds_document_through_empty_intermediate_folders/input/intermediate/requirements/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/08_finds_document_through_empty_intermediate_folders/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/09_does_not_find_documents_in_output_folder/input/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/09_does_not_find_documents_in_output_folder/input2.sdoc_ +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/09_does_not_find_documents_in_output_folder/test.itest +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/01_asset_export/_assets/sandbox1.svg +0 -27
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/01_asset_export/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/01_asset_export/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/02_asset_export_single_sdoc_rel_path/_assets/sandbox1.svg +0 -27
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/02_asset_export_single_sdoc_rel_path/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/02_asset_export_single_sdoc_rel_path/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/03_asset_export_single_sdoc_full_path/_assets/sandbox1.svg +0 -27
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/03_asset_export_single_sdoc_full_path/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/03_asset_export_single_sdoc_full_path/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/_assets/sandbox1.svg +0 -27
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/input.ssec +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/04_asset_export_single_sdoc_double_includes_rel_path/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/05_asset_export_does_only_when_newer/test.itest +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/05_asset_export_does_only_when_newer/test_document/_assets/sandbox1.svg +0 -27
- strictdoc-0.0.39/tests/integration/commands/export/html/assets/05_asset_export_does_only_when_newer/test_document/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/01_basic_req_to_file_link_full_path/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/01_basic_req_to_file_link_full_path/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/01_basic_req_to_file_link_full_path/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/02_basic_req_to_file_link_cwd_dot/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/02_basic_req_to_file_link_cwd_dot/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/02_basic_req_to_file_link_cwd_dot/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/03_basic_req_to_file_link_range/file.py +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/03_basic_req_to_file_link_range/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/03_basic_req_to_file_link_range/test.itest +0 -17
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/04_input_is_single_file/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/04_input_is_single_file/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/04_input_is_single_file/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/file2.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/input.sdoc +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/05_multiple_files_per_requirement/test.itest +0 -15
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/06_prints_file_export_lines/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/06_prints_file_export_lines/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/06_prints_file_export_lines/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/07_utf8_symbols_in_source_files/file.py +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/07_utf8_symbols_in_source_files/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/07_utf8_symbols_in_source_files/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/08_nosdoc_pragma/file.py +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/08_nosdoc_pragma/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/08_nosdoc_pragma/test.itest +0 -8
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/09_files_not_referenced_are_not_generated/file.py +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/09_files_not_referenced_are_not_generated/input.sdoc +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/09_files_not_referenced_are_not_generated/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/11_paths_with_windows_backward_slashes/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/11_paths_with_windows_backward_slashes/subdir/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/11_paths_with_windows_backward_slashes/test.itest +0 -18
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/12_basic_req_to_file_link_full_path/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/12_basic_req_to_file_link_full_path/input.sdoc +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/12_basic_req_to_file_link_full_path/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/13_file_link_to_a_file_with_empty_first_string/file.py +0 -3
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/13_file_link_to_a_file_with_empty_first_string/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/13_file_link_to_a_file_with_empty_first_string/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/file1.py +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/file2.py +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/input.sdoc +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/14_difference_in_range_links_to_this_and_other_files/test.itest +0 -29
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/docs/input.sdoc +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/src/file1.py +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/src/file2.py +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/15_docs_and_src_folders/test.itest +0 -30
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/file1.py +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/file2.py +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/input.sdoc +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/16_difference_in_nonrange_links_to_this_and_other_files/test.itest +0 -19
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/error_handling/01_req_references_non_existing_file/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/error_handling/01_req_references_non_existing_file/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/error_handling/02_source_file_references_non_existing_req/file.py +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/error_handling/02_source_file_references_non_existing_req/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/error_handling/02_source_file_references_non_existing_req/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/g1_file_types/10_tex/example.sdoc +0 -26
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/g1_file_types/10_tex/file.tex +0 -48
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/g1_file_types/10_tex/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/g1_file_types/20_jinja/example.sdoc +0 -26
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/g1_file_types/20_jinja/file.jinja2 +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/html/file_traceability/g1_file_types/20_jinja/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html/grammar/01_custom_field/input.sdoc +0 -49
- strictdoc-0.0.39/tests/integration/commands/export/html/grammar/01_custom_field/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/child.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/grandchild.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/parent.sdoc +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/01_when_parent_changes_generate_children/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/child.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/grandchild.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/parent.sdoc +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/02_when_child_changes_generate_parents/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/03_when_new_child_generate_parents/child.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/03_when_new_child_generate_parents/parent.sdoc +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/incremental_generation/03_when_new_child_generate_parents/test.itest +0 -15
- strictdoc-0.0.39/tests/integration/commands/export/html/markup/01_referencing_a_section_with_LINK/input.sdoc +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/html/markup/01_referencing_a_section_with_LINK/section.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/commands/export/html/markup/01_referencing_a_section_with_LINK/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/html/mathjax/01_mathjax_enabled/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/mathjax/01_mathjax_enabled/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/html/mathjax/02_mathjax_disabled/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/mathjax/02_mathjax_disabled/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/strictdoc.toml +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/html/requirements_coverage/01_links_to_files/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/rst_markup_to_html/01_table_to_html/input.sdoc +0 -19
- strictdoc-0.0.39/tests/integration/commands/export/html/rst_markup_to_html/01_table_to_html/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/html/source_coverage/01_links_to_files/file.py +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html/source_coverage/01_links_to_files/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/html/source_coverage/01_links_to_files/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/commands/export/html/utf8/01_utf8_in_sdoc/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/html/utf8/01_utf8_in_sdoc/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/html-standalone/01_standalone_without_html/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html-standalone/01_standalone_without_html/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html-standalone/02_standalone_and_html/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html-standalone/02_standalone_and_html/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/html-standalone/03_embeds_default_assets/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/html-standalone/03_embeds_default_assets/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/options/--formats/01_incorrect_format/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/options/--formats/01_incorrect_format/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/commands/export/options/--no-parallelization/input1.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/options/--no-parallelization/input2.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/commands/export/options/--no-parallelization/test.itest +0 -29
- strictdoc-0.0.39/tests/integration/commands/export/options/--output-dir/01_output_dir_full_path/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/options/--output-dir/01_output_dir_full_path/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/options/--output-dir/02_output_dir_relative_path/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/options/--output-dir/02_output_dir_relative_path/test.itest +0 -12
- strictdoc-0.0.39/tests/integration/commands/export/options/--project-title/01_project_title_not_specified/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/options/--project-title/01_project_title_not_specified/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/options/--project-title/02_project_title_is_specified/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/options/--project-title/02_project_title_is_specified/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/01_basic_rst_export/expected/input.rst +0 -1
- strictdoc-0.0.39/tests/integration/commands/export/rst/01_basic_rst_export/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/rst/01_basic_rst_export/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/02_folder_structure_is_preserved_for_nested/expected/input.rst +0 -1
- strictdoc-0.0.39/tests/integration/commands/export/rst/02_folder_structure_is_preserved_for_nested/input_folder/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/commands/export/rst/02_folder_structure_is_preserved_for_nested/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/04_one_requirement_without_title/expected/input.rst +0 -10
- strictdoc-0.0.39/tests/integration/commands/export/rst/04_one_requirement_without_title/input.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/commands/export/rst/04_one_requirement_without_title/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/05_requirement_without_title/expected/input.rst +0 -21
- strictdoc-0.0.39/tests/integration/commands/export/rst/05_requirement_without_title/input.sdoc +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/rst/05_requirement_without_title/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/06_requirement_with_title/expected/input.rst +0 -27
- strictdoc-0.0.39/tests/integration/commands/export/rst/06_requirement_with_title/input.sdoc +0 -16
- strictdoc-0.0.39/tests/integration/commands/export/rst/06_requirement_with_title/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/07_requirement_comments/expected/input.rst +0 -31
- strictdoc-0.0.39/tests/integration/commands/export/rst/07_requirement_comments/input.sdoc +0 -22
- strictdoc-0.0.39/tests/integration/commands/export/rst/07_requirement_comments/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/08_requirement_comments_then_section/expected/input.rst +0 -22
- strictdoc-0.0.39/tests/integration/commands/export/rst/08_requirement_comments_then_section/input.sdoc +0 -24
- strictdoc-0.0.39/tests/integration/commands/export/rst/08_requirement_comments_then_section/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/09_requirement_rationale/expected/input.rst +0 -33
- strictdoc-0.0.39/tests/integration/commands/export/rst/09_requirement_rationale/input.sdoc +0 -25
- strictdoc-0.0.39/tests/integration/commands/export/rst/09_requirement_rationale/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/10_empty_freetext/expected/input.rst +0 -0
- strictdoc-0.0.39/tests/integration/commands/export/rst/10_empty_freetext/input.sdoc +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/10_empty_freetext/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/11_several_freetexts/expected/input.rst +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/11_several_freetexts/input.sdoc +0 -14
- strictdoc-0.0.39/tests/integration/commands/export/rst/11_several_freetexts/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/20_custom_field/expected/input.rst +0 -30
- strictdoc-0.0.39/tests/integration/commands/export/rst/20_custom_field/input.sdoc +0 -71
- strictdoc-0.0.39/tests/integration/commands/export/rst/20_custom_field/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/30_requirement_references/expected/input.rst +0 -65
- strictdoc-0.0.39/tests/integration/commands/export/rst/30_requirement_references/input.sdoc +0 -40
- strictdoc-0.0.39/tests/integration/commands/export/rst/30_requirement_references/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/export/rst/40_link_to_another_section/expected/input.rst +0 -11
- strictdoc-0.0.39/tests/integration/commands/export/rst/40_link_to_another_section/input.sdoc +0 -21
- strictdoc-0.0.39/tests/integration/commands/export/rst/40_link_to_another_section/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/commands/no_command/01_no_command_no_args/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/commands/version/01_print_version/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/cp.py +0 -18
- strictdoc-0.0.39/tests/integration/diff.py +0 -31
- strictdoc-0.0.39/tests/integration/error_handling/03_rst_to_html_conversion_warnings/input.sdoc +0 -15
- strictdoc-0.0.39/tests/integration/error_handling/03_rst_to_html_conversion_warnings/test.itest +0 -14
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/01_requirement_exists_in_two_different_docs/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/01_requirement_exists_in_two_different_docs/input2.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/01_requirement_exists_in_two_different_docs/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/02_requirement_exists_two_times_in_the_same_doc/input.sdoc +0 -10
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/02_requirement_exists_two_times_in_the_same_doc/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/03_section_uid_exists_in_two_different_docs/input.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/03_section_uid_exists_in_two_different_docs/input2.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/03_section_uid_exists_in_two_different_docs/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/04_requirement_link_cycles_two_reqs/input.sdoc +0 -16
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/04_requirement_link_cycles_two_reqs/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/05_requirement_link_cycles_4_reqs/input.sdoc +0 -30
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/05_requirement_link_cycles_4_reqs/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/06_inline_link_does_not_exist/input.sdoc +0 -11
- strictdoc-0.0.39/tests/integration/error_handling/graph_consistency/06_inline_link_does_not_exist/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/excel_diff.py +0 -53
- strictdoc-0.0.39/tests/integration/expect_exit.py +0 -70
- strictdoc-0.0.39/tests/integration/html_markup_validator.py +0 -101
- strictdoc-0.0.39/tests/integration/lit.cfg +0 -33
- strictdoc-0.0.39/tests/integration/mkdir.py +0 -9
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/01_option_is_on/input.sdoc +0 -17
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/01_option_is_on/test.itest +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/02_option_is_off/input.sdoc +0 -20
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/02_option_is_off/test.itest +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/03_section_level_is_not_provided_when_automatic_levels_is_off/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/03_section_level_is_not_provided_when_automatic_levels_is_off/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/04_req_level_not_provided_when_auto_levels_off/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/04_req_level_not_provided_when_auto_levels_off/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/05_composite_req_level_not_provided_when_auto_levels_off/input.sdoc +0 -19
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/05_composite_req_level_not_provided_when_auto_levels_off/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/06_option_is_on_but_level_are_provided/input.sdoc +0 -20
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/06_option_is_on_but_level_are_provided/test.itest +0 -4
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/07_includes_w_option_on/input.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/07_includes_w_option_on/input.ssec +0 -14
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/07_includes_w_option_on/test.itest +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/08_includes_w_option_off/input.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/08_includes_w_option_off/input.ssec +0 -17
- strictdoc-0.0.39/tests/integration/options/options_per_document/AUTO_LEVELS/08_includes_w_option_off/test.itest +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/MARKUP/01_options_markup_is_default/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_document/MARKUP/01_options_markup_is_default/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/options/options_per_document/MARKUP/02_options_markup_is_text/input.sdoc +0 -9
- strictdoc-0.0.39/tests/integration/options/options_per_document/MARKUP/02_options_markup_is_text/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_document/MARKUP/03_options_markup_is_html/input.sdoc +0 -8
- strictdoc-0.0.39/tests/integration/options/options_per_document/MARKUP/03_options_markup_is_html/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/MATHJAX/01_enabled/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/MATHJAX/01_enabled/strictdoc.toml +0 -5
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/MATHJAX/01_enabled/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/MATHJAX/02_disabled/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/MATHJAX/02_disabled/test.itest +0 -5
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/no_options/01_enabled/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/no_options/01_enabled/strictdoc.toml +0 -4
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/no_options/01_enabled/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/no_options/02_disabled/input.sdoc +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/features/no_options/02_disabled/test.itest +0 -10
- strictdoc-0.0.39/tests/integration/options/options_per_project/html_assets_strictdoc_dir/01_option_specified/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/html_assets_strictdoc_dir/01_option_specified/strictdoc.toml +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/html_assets_strictdoc_dir/01_option_specified/test.itest +0 -12
- strictdoc-0.0.39/tests/integration/options/options_per_project/html_assets_strictdoc_dir/02_option_not_specified/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/html_assets_strictdoc_dir/02_option_not_specified/test.itest +0 -12
- strictdoc-0.0.39/tests/integration/options/options_per_project/project_title/01_option_specified/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/project_title/01_option_specified/strictdoc.toml +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/project_title/01_option_specified/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/project_title/02_option_not_specified/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/project_title/02_option_not_specified/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/01_malformed_toml/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/01_malformed_toml/strictdoc.toml +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/01_malformed_toml/test.itest +0 -9
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/02_unknown_feature/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/02_unknown_feature/strictdoc.toml +0 -5
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/02_unknown_feature/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/03_features_not_array/input.sdoc +0 -6
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/03_features_not_array/strictdoc.toml +0 -3
- strictdoc-0.0.39/tests/integration/options/options_per_project/validations/03_features_not_array/test.itest +0 -2
- strictdoc-0.0.39/tests/integration/options/options_per_section/LEVEL/01_level_is_None/input.sdoc +0 -44
- strictdoc-0.0.39/tests/integration/options/options_per_section/LEVEL/01_level_is_None/test.itest +0 -17
- strictdoc-0.0.39/tests/integration/options/options_per_section/LEVEL/02_level_is_None_for_requirements/input.sdoc +0 -39
- strictdoc-0.0.39/tests/integration/options/options_per_section/LEVEL/02_level_is_None_for_requirements/test.itest +0 -19
- strictdoc-0.0.39/tests/integration/per_document_grammar/01_basic_grammar_declaration_and_valid_fields/input.sdoc +0 -29
- strictdoc-0.0.39/tests/integration/per_document_grammar/01_basic_grammar_declaration_and_valid_fields/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/per_document_grammar/02_several_comments/input.sdoc +0 -23
- strictdoc-0.0.39/tests/integration/per_document_grammar/02_several_comments/test.itest +0 -11
- strictdoc-0.0.39/tests/integration/per_document_grammar/03_non_required_grammar_fields_are_skipped/input.sdoc +0 -22
- strictdoc-0.0.39/tests/integration/per_document_grammar/03_non_required_grammar_fields_are_skipped/test.itest +0 -3
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/multiple_single_choice/01_choice_declaration/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/multiple_single_choice/01_choice_declaration/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/01_invalid_value/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/01_invalid_value/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/02_valid_value_but_no_whitespace/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/multiple_single_choice/validation/02_valid_value_but_no_whitespace/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/single_choice/01_choice_declaration/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/single_choice/01_choice_declaration/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/single_choice/validation/01_invalid_value/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/single_choice/validation/01_invalid_value/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/tag/01_tag_declaration/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/tag/01_tag_declaration/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/tag/validation/01_invalid_value/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/type_system/tag/validation/01_invalid_value/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/01_unknown_requirement_type/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/01_unknown_requirement_type/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/02_invalid_field/input.sdoc +0 -13
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/02_invalid_field/test.itest +0 -6
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/03_valid_field_but_incorrect_order/input.sdoc +0 -17
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/03_valid_field_but_incorrect_order/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/04_missing_required_grammar_field/input.sdoc +0 -16
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/04_missing_required_grammar_field/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/05_unexpected_field_outside_grammar/input.sdoc +0 -18
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/05_unexpected_field_outside_grammar/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/06_gef_reference_type_not_allowed/input.sdoc +0 -24
- strictdoc-0.0.39/tests/integration/per_document_grammar/validation/06_gef_reference_type_not_allowed/test.itest +0 -7
- strictdoc-0.0.39/tests/integration/rm.py +0 -31
- strictdoc-0.0.39/tests/integration/self_testing/commands/export/01_strictdoc_smoke_test/test.itest +0 -53
- strictdoc-0.0.39/tests/integration/self_testing/commands/export/02_strictdoc_html_markup/test.itest +0 -33
- strictdoc-0.0.39/tests/integration/self_testing/commands/export/03_strictdoc_smoke_test_source_files/test.itest +0 -40
- strictdoc-0.0.39/tests/integration/self_testing/commands/passthrough/01_hello_world/test.itest +0 -17
- strictdoc-0.0.39/tests/integration/touch.py +0 -9
- strictdoc-0.0.39/tests/unit/__init__.py +0 -0
- strictdoc-0.0.39/tests/unit/conftest.py +0 -8
- strictdoc-0.0.39/tests/unit/helpers/test_document_builder.py +0 -72
- strictdoc-0.0.39/tests/unit/strictdoc/__init__.py +0 -0
- strictdoc-0.0.39/tests/unit/strictdoc/backend/__init__.py +0 -0
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/models/test_requirement.py +0 -53
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/test_dsl_grammars.py +0 -66
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/test_dsl_includes.py +0 -161
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/test_dsl_parent_document_assignment.py +0 -44
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/test_dsl_passthrough.py +0 -1779
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/test_free_text_reader.py +0 -17
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/test_requirement_from_dict.py +0 -46
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc/validations/test_requirement_validations.py +0 -86
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- strictdoc-0.0.39/tests/unit/strictdoc/backend/sdoc_source_code/test_dsl_source_file_syntax.py +0 -393
- strictdoc-0.0.39/tests/unit/strictdoc/cli/test_cli_arg_parser.py +0 -234
- strictdoc-0.0.39/tests/unit/strictdoc/core/test_file_tree.py +0 -40
- strictdoc-0.0.39/tests/unit/strictdoc/core/test_level_counter.py +0 -24
- strictdoc-0.0.39/tests/unit/strictdoc/core/test_project_config.py +0 -38
- strictdoc-0.0.39/tests/unit/strictdoc/core/test_traceability_index.py +0 -322
- strictdoc-0.0.39/tests/unit/strictdoc/export/html/renderers/test_text_to_html_fragment_writer.py +0 -20
- strictdoc-0.0.39/tests/unit/strictdoc/export/test_rst_to_html_fragment_writer.py +0 -90
- strictdoc-0.0.39/tests/unit/strictdoc/helpers/test_rst.py +0 -40
- strictdoc-0.0.39/tests/unit/strictdoc/helpers/test_string.py +0 -81
- strictdoc-0.0.39/tests/unit/tools/fixtures/001-confluence-html-file-two-sections/001-confluence-html-table-two-sections.html +0 -125
- strictdoc-0.0.39/tests/unit/tools/fixtures/002-confluence-html-file-parsing-paragraphs/002-confluence-html-table-parsing-paragraphs.html +0 -64
- strictdoc-0.0.39/tests/unit/tools/test_confluence_html_table_import.py +0 -109
- strictdoc-0.0.39/tests/unit_server/__init__.py +0 -0
- strictdoc-0.0.39/tests/unit_server/conftest.py +0 -8
- strictdoc-0.0.39/tests/unit_server/strictdoc/server/01_hello_world/sample.sdoc +0 -10
- strictdoc-0.0.39/tests/unit_server/strictdoc/server/01_hello_world/test_01_hello_world.py +0 -27
- strictdoc-0.0.39/tests/unit_server/strictdoc/server/02_export_document_to_reqif/sample.sdoc +0 -10
- strictdoc-0.0.39/tests/unit_server/strictdoc/server/02_export_document_to_reqif/test_02_export_document_to_reqif.py +0 -44
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/.gitignore +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/CHANGELOG.md +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/CONTRIBUTING.md +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/Dockerfile +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/LICENSE +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/NOTICE +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/README.md +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/favicon.ico +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/mypy.ini +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/requirements.check.txt +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/ruff.toml +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/export/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/export/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/import_/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/import_/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/p11_polarion/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/p11_polarion/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/include_reader.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/document.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/document_config.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/fragment.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/fragment_from_file.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/free_text.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/node.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/requirement.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/section.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/processor.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/reader.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/validations/requirement.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc/writer.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/models/range_pragma.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/actions/passthrough_action.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/document_finder.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/document_iterator.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/error_message.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/file_traceability_index.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/file_tree.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/level_counter.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/project_config.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/traceability_index.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/traceability_index_builder.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/form.css +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/stimulus.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/tree.css +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/turbo.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/document_grammar_form_object.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_block/files_tree.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_block/uid_and_title.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_document_grammar/stream_save_document_grammar.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_update_requirement.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/abstract/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/comments/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/files/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/links/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/meta/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/multiline/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/rationale/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/statement/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/title/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/requirement/uid/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/h/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/text/index.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/components/section/title/index.jinja +0 -0
- /strictdoc-0.0.39/strictdoc/export/html/templates/_shared/viewtype_menu.jinja.html → /strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_config.jinja.html +0 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates/single_document → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document}/frame_document_grammar_edit_custom_field.jinja.html +0 -0
- /strictdoc-0.0.39/strictdoc/export/html/templates/_shared/requirement_edit_field_comment.jinja → /strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_comment.jinja +0 -0
- /strictdoc-0.0.39/strictdoc/export/html/templates/_shared/requirement_edit_field_parent_link.jinja.html → /strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/document/frame_requirement_edit_field_parent_link.jinja +0 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates/single_document_traceability_deep → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens/document/traceability_deep}/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/requirements_coverage/requirement.jinja.html +0 -0
- {strictdoc-0.0.39/strictdoc/export/html/templates → strictdoc-0.0.41a0/strictdoc/export/html/templates/screens}/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/app.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/config.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/main.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/strictdoc/server/server.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/tasks.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/tasks_wine.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/tools/confluence_html_table_import.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/tools/link_health.py +0 -0
- {strictdoc-0.0.39 → strictdoc-0.0.41a0}/tox.ini +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.41a0
|
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/
|
@@ -5,6 +5,14 @@ build-backend = "hatchling.build"
|
|
5
5
|
[tool.hatch.version]
|
6
6
|
path = "strictdoc/__init__.py"
|
7
7
|
|
8
|
+
[tool.hatch.build]
|
9
|
+
exclude = [
|
10
|
+
"/.*",
|
11
|
+
"/developer",
|
12
|
+
"/docs",
|
13
|
+
"/tests",
|
14
|
+
]
|
15
|
+
|
8
16
|
#[tool.hatch.build.targets.sdist]
|
9
17
|
#include = [
|
10
18
|
# "/uvicorn",
|
@@ -252,9 +252,7 @@ def cli_args_parser() -> argparse.ArgumentParser:
|
|
252
252
|
command_parser_server.add_argument(
|
253
253
|
"--no-reload", dest="reload", action="store_false"
|
254
254
|
)
|
255
|
-
command_parser_server.add_argument(
|
256
|
-
"--port", default=5111, type=IntRange(1024, 65000)
|
257
|
-
)
|
255
|
+
command_parser_server.add_argument("--port", type=IntRange(1024, 65000))
|
258
256
|
|
259
257
|
# Command – Version
|
260
258
|
command_subparsers.add_parser(
|
@@ -294,16 +292,15 @@ class ServerCommandConfig:
|
|
294
292
|
input_path: str,
|
295
293
|
output_path: Optional[str],
|
296
294
|
reload: bool,
|
297
|
-
port: int,
|
295
|
+
port: Optional[int],
|
298
296
|
):
|
299
297
|
assert os.path.exists(input_path)
|
300
|
-
assert isinstance(port, int)
|
301
298
|
self.environment: SDocRuntimeEnvironment = environment
|
302
299
|
abs_input_path = os.path.abspath(input_path)
|
303
300
|
self.input_path: str = abs_input_path
|
304
301
|
self.output_path: Optional[str] = output_path
|
305
302
|
self.reload: bool = reload
|
306
|
-
self.port = port
|
303
|
+
self.port: Optional[int] = port
|
307
304
|
|
308
305
|
|
309
306
|
class ExportMode(Enum):
|
@@ -348,11 +345,6 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
|
|
348
345
|
# FIXME: This does not belong here.
|
349
346
|
self._server_port: Optional[int] = None
|
350
347
|
|
351
|
-
def configure_for_server(self, server_port: int):
|
352
|
-
assert isinstance(server_port, int)
|
353
|
-
self.is_running_on_server = True
|
354
|
-
self._server_port = server_port
|
355
|
-
|
356
348
|
@property
|
357
349
|
def server_port(self) -> int:
|
358
350
|
assert self._server_port is not None
|
@@ -377,7 +369,19 @@ class ExportCommandConfig: # pylint: disable=too-many-instance-attributes
|
|
377
369
|
def get_extra_static_files_path(self):
|
378
370
|
return self.environment.get_extra_static_files_path()
|
379
371
|
|
380
|
-
def
|
372
|
+
def integrate_configs(
|
373
|
+
self,
|
374
|
+
*,
|
375
|
+
project_config: ProjectConfig,
|
376
|
+
server_config: Optional[ServerCommandConfig],
|
377
|
+
):
|
378
|
+
server_port = project_config.server_port
|
379
|
+
if server_config is not None:
|
380
|
+
self.is_running_on_server = True
|
381
|
+
if server_config.port is not None:
|
382
|
+
server_port = server_config.port
|
383
|
+
self._server_port = server_port
|
384
|
+
|
381
385
|
if self.project_title is None:
|
382
386
|
self.project_title = project_config.project_title
|
383
387
|
self.dir_for_sdoc_assets = project_config.dir_for_sdoc_assets
|
@@ -66,7 +66,9 @@ def _main(parallelizer):
|
|
66
66
|
path_to_config_dir=config.input_paths[0]
|
67
67
|
)
|
68
68
|
)
|
69
|
-
config.
|
69
|
+
config.integrate_configs(
|
70
|
+
project_config=project_config, server_config=None
|
71
|
+
)
|
70
72
|
parallelization_value = (
|
71
73
|
"Disabled" if config.no_parallelization else "Enabled"
|
72
74
|
)
|
@@ -49,9 +49,6 @@
|
|
49
49
|
--base-padding: var(--base-font-size);
|
50
50
|
--base-margin: calc(var(--base-font-size)*1.5);
|
51
51
|
|
52
|
-
--toc-width: 300px;
|
53
|
-
--toc-layout-transition: 0.1s;
|
54
|
-
|
55
52
|
--base-elevation-0: 0 0 0 rgba(0,0,0,0);
|
56
53
|
--base-elevation-node: 0 0 16px rgba(0,0,0,.1);
|
57
54
|
--base-elevation-modal: 0 0 32px rgba(0,0,0,.32);
|
@@ -68,7 +65,7 @@
|
|
68
65
|
|
69
66
|
--card-width: 300px;
|
70
67
|
|
71
|
-
--base-border: 1px solid
|
68
|
+
--base-border: 1px solid var(--color-border);
|
72
69
|
|
73
70
|
--color-red: rgb(200, 0, 0);
|
74
71
|
--color-blue: rgb(50, 100, 200);
|
@@ -1,3 +1,23 @@
|
|
1
|
+
/* .main */
|
2
|
+
|
3
|
+
.main {
|
4
|
+
padding: var(--base-gap);
|
5
|
+
position: relative;
|
6
|
+
overflow: auto;
|
7
|
+
scroll-behavior: smooth;
|
8
|
+
height: 100%;
|
9
|
+
background-color: var(--color-bg-main);
|
10
|
+
}
|
11
|
+
|
12
|
+
/* redefine main layout grid */
|
13
|
+
|
14
|
+
[data-viewtype="source-file"] .main {
|
15
|
+
padding: 0;
|
16
|
+
background: white;
|
17
|
+
}
|
18
|
+
|
19
|
+
/* .content */
|
20
|
+
|
1
21
|
.content {
|
2
22
|
min-width: calc(var(--card-width) + calc(var(--base-padding)*4));
|
3
23
|
}
|
@@ -5,6 +25,9 @@
|
|
5
25
|
[data-viewtype="document"] .content {
|
6
26
|
display: block;
|
7
27
|
max-width: 900px;
|
28
|
+
margin-bottom: 300px;
|
29
|
+
margin-left: auto;
|
30
|
+
margin-right: auto;
|
8
31
|
}
|
9
32
|
|
10
33
|
[data-viewtype="traceability"] .content {
|
@@ -0,0 +1,225 @@
|
|
1
|
+
// To collapse and expand TOC branches
|
2
|
+
|
3
|
+
import { Controller } from "/_static/stimulus.js";
|
4
|
+
|
5
|
+
const ROOT_SELECTOR = 'js-collapsible_list';
|
6
|
+
const LIST_SELECTOR = `[${ROOT_SELECTOR}="list"]`;
|
7
|
+
const BRANCH_SELECTOR = `collapsible_list__branch`;
|
8
|
+
const LIST_DEFAULT = 'open';
|
9
|
+
const SYMBOL_MINUS = '-';
|
10
|
+
const SYMBOL_PLUS = '+';
|
11
|
+
|
12
|
+
const STYLE = `
|
13
|
+
[data-${BRANCH_SELECTOR}] {
|
14
|
+
display: flex;
|
15
|
+
align-items: center;
|
16
|
+
justify-content: center;
|
17
|
+
-webkit-box-align: center;
|
18
|
+
-webkit-box-pack: center;
|
19
|
+
background-clip: padding-box;
|
20
|
+
cursor: pointer;
|
21
|
+
user-select: none;
|
22
|
+
transition: .3s;
|
23
|
+
width: 16px;
|
24
|
+
height: 16px;
|
25
|
+
font-size: 14px;
|
26
|
+
font-weight: bold;
|
27
|
+
line-height: 0;
|
28
|
+
border-radius: 50%;
|
29
|
+
color: rgba(0,0,0,0.5);
|
30
|
+
box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
|
31
|
+
position: absolute;
|
32
|
+
top: 0;
|
33
|
+
left: -8px;
|
34
|
+
}
|
35
|
+
|
36
|
+
[data-${BRANCH_SELECTOR}]:hover {
|
37
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
38
|
+
box-shadow: rgb(0 0 0 / 15%) 0px 2px 8px 0px;
|
39
|
+
color: rgba(0,0,0,1);
|
40
|
+
}
|
41
|
+
|
42
|
+
[data-${BRANCH_SELECTOR}='closed']::before {
|
43
|
+
content: '${SYMBOL_PLUS}';
|
44
|
+
}
|
45
|
+
|
46
|
+
[data-${BRANCH_SELECTOR}='open']::before {
|
47
|
+
content: '${SYMBOL_MINUS}';
|
48
|
+
}
|
49
|
+
|
50
|
+
[data-${BRANCH_SELECTOR}='closed'] + ul {
|
51
|
+
height: 0;
|
52
|
+
overflow: hidden;
|
53
|
+
}
|
54
|
+
|
55
|
+
[data-${BRANCH_SELECTOR}='open'] + ul {
|
56
|
+
height: auto;
|
57
|
+
}
|
58
|
+
|
59
|
+
[${ROOT_SELECTOR}-bulk] {
|
60
|
+
display: flex;
|
61
|
+
gap: 8px;
|
62
|
+
z-index: 2;
|
63
|
+
position: fixed;
|
64
|
+
margin-top: -16px;
|
65
|
+
margin-left: -8px;
|
66
|
+
pointer-events: none;
|
67
|
+
padding: 8px;
|
68
|
+
background: #F2F5F9;
|
69
|
+
box-shadow: #F2F5F9 0px 8px 8px 0px;
|
70
|
+
}
|
71
|
+
[${ROOT_SELECTOR}-bulk] + ${LIST_SELECTOR} {
|
72
|
+
margin-top: 32px;
|
73
|
+
}
|
74
|
+
[${ROOT_SELECTOR}-bulk] > div {
|
75
|
+
cursor: pointer;
|
76
|
+
user-select: none;
|
77
|
+
transition: .3s;
|
78
|
+
width: 16px;
|
79
|
+
height: 16px;
|
80
|
+
position: relative;
|
81
|
+
pointer-events: auto;
|
82
|
+
}
|
83
|
+
|
84
|
+
[${ROOT_SELECTOR}-bulk] > div::before {
|
85
|
+
content: attr(data-action);
|
86
|
+
display: flex;
|
87
|
+
align-items: center;
|
88
|
+
justify-content: center;
|
89
|
+
-webkit-box-align: center;
|
90
|
+
-webkit-box-pack: center;
|
91
|
+
background-clip: padding-box;
|
92
|
+
width: 16px;
|
93
|
+
height: 16px;
|
94
|
+
font-size: 14px;
|
95
|
+
font-weight: bold;
|
96
|
+
line-height: 0;
|
97
|
+
border-radius: 50%;
|
98
|
+
background: #F2F5F9;
|
99
|
+
box-shadow: rgb(0 0 0 / 10%) 0 0px 0px 1px, rgb(0 0 0 / 10%) 2px 1px 1px 0px;
|
100
|
+
position: absolute;
|
101
|
+
top: 0;
|
102
|
+
left: 0;
|
103
|
+
z-index: 2;
|
104
|
+
}
|
105
|
+
[${ROOT_SELECTOR}-bulk] > div:hover::before {
|
106
|
+
background: #FFF;
|
107
|
+
}
|
108
|
+
[${ROOT_SELECTOR}-bulk] > div::after {
|
109
|
+
content: '';
|
110
|
+
width: 16px;
|
111
|
+
height: 16px;
|
112
|
+
border-radius: 50%;
|
113
|
+
position: absolute;
|
114
|
+
box-shadow: rgb(0 0 0 / 15%) 0px 0px 0px 1px;
|
115
|
+
top: -2px;
|
116
|
+
left: 2px;
|
117
|
+
z-index: 1;
|
118
|
+
}
|
119
|
+
`;
|
120
|
+
|
121
|
+
Stimulus.register("collapsible_list", class extends Controller {
|
122
|
+
static targets = ["name"];
|
123
|
+
|
124
|
+
initialize() {
|
125
|
+
const listElement = document.querySelector(LIST_SELECTOR);
|
126
|
+
this.render(listElement)
|
127
|
+
}
|
128
|
+
|
129
|
+
render(listElement) {
|
130
|
+
// Processes the list and makes it collapse, if that makes sense
|
131
|
+
// (if the expanded list was long and would cause scrolling).
|
132
|
+
// Returns the processed list.
|
133
|
+
const branchList = prepareList(listElement);
|
134
|
+
|
135
|
+
// Do it if that makes sense (if there are branches
|
136
|
+
// in the list that could in principle be collapsible):
|
137
|
+
if (branchList.length > 0) {
|
138
|
+
processList(branchList);
|
139
|
+
addStyleElement(this.element, STYLE);
|
140
|
+
|
141
|
+
// Uncomment to add buttons for bulk operations:
|
142
|
+
// listElement.before(createBulkHandler(branchList));
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
});
|
147
|
+
|
148
|
+
function addStyleElement(target, styleTextContent) {
|
149
|
+
const style = document.createElement('style');
|
150
|
+
style.setAttribute("collapsible-list-style", '');
|
151
|
+
style.textContent = styleTextContent;
|
152
|
+
target.prepend(style);
|
153
|
+
}
|
154
|
+
|
155
|
+
function prepareList(target) {
|
156
|
+
const ulList = [...target.querySelectorAll('ul')];
|
157
|
+
const ulHandlerList = ulList.map(
|
158
|
+
ul => {
|
159
|
+
const parent = ul.parentNode;
|
160
|
+
const ulHandler = document.createElement('div');
|
161
|
+
|
162
|
+
parent.insertBefore(ulHandler, ul);
|
163
|
+
// Required:
|
164
|
+
parent.style = "position:relative";
|
165
|
+
return ulHandler;
|
166
|
+
}
|
167
|
+
)
|
168
|
+
return ulHandlerList;
|
169
|
+
}
|
170
|
+
|
171
|
+
function createBulkHandler(list) {
|
172
|
+
const bulk = document.createElement('div');
|
173
|
+
bulk.setAttribute(`${ROOT_SELECTOR}-bulk`, '');
|
174
|
+
|
175
|
+
const bulkPlus = document.createElement('div');
|
176
|
+
bulkPlus.dataset.action = SYMBOL_PLUS;
|
177
|
+
const bulkMinus = document.createElement('div');
|
178
|
+
bulkMinus.dataset.action = SYMBOL_MINUS;
|
179
|
+
|
180
|
+
// add event listeners
|
181
|
+
bulkPlus.addEventListener('click', () => {
|
182
|
+
bulkToggle(list, 'closed');
|
183
|
+
});
|
184
|
+
bulkMinus.addEventListener('click', () => {
|
185
|
+
bulkToggle(list, 'open');
|
186
|
+
});
|
187
|
+
|
188
|
+
bulk.append(bulkPlus, bulkMinus);
|
189
|
+
return bulk;
|
190
|
+
}
|
191
|
+
|
192
|
+
function processList(list) {
|
193
|
+
// This defines how a document is opened:
|
194
|
+
// with a collapsed or expanded TOC.
|
195
|
+
const storage = sessionStorage.getItem('collapsibleToc');
|
196
|
+
|
197
|
+
// If there is no information in the storage, we set the default list state.
|
198
|
+
const initState = storage || LIST_DEFAULT;
|
199
|
+
|
200
|
+
list.forEach(item => {
|
201
|
+
item.dataset[BRANCH_SELECTOR] = initState;
|
202
|
+
|
203
|
+
// add event listeners
|
204
|
+
item.addEventListener('click', () => {
|
205
|
+
toggle(item);
|
206
|
+
});
|
207
|
+
item.addEventListener('dblclick', () => {
|
208
|
+
bulkToggle(list, item.dataset[BRANCH_SELECTOR]);
|
209
|
+
});
|
210
|
+
})
|
211
|
+
}
|
212
|
+
|
213
|
+
function toggle(item) {
|
214
|
+
const oldState = item.dataset[BRANCH_SELECTOR];
|
215
|
+
const nextState = (oldState === 'closed') ? 'open' : 'closed';
|
216
|
+
item.dataset[BRANCH_SELECTOR] = nextState;
|
217
|
+
}
|
218
|
+
|
219
|
+
function bulkToggle(list, oldState) {
|
220
|
+
const nextState = (oldState === 'closed') ? 'open' : 'closed';
|
221
|
+
// Add last bulk to local storage:
|
222
|
+
sessionStorage.setItem('collapsibleToc', nextState);
|
223
|
+
// Update list:
|
224
|
+
list.forEach(el => el.dataset[BRANCH_SELECTOR] = nextState);
|
225
|
+
}
|
@@ -24,7 +24,6 @@ Stimulus.register("dropdown_menu", class extends Controller {
|
|
24
24
|
}
|
25
25
|
|
26
26
|
registerListEvents(params) {
|
27
|
-
|
28
27
|
const toggle = this.element.querySelector(HANDLER_SELECTOR);
|
29
28
|
const content = this.element.querySelector(LIST_SELECTOR);
|
30
29
|
|
@@ -43,11 +42,14 @@ Stimulus.register("dropdown_menu", class extends Controller {
|
|
43
42
|
JSON.parse(toggle.getAttribute('aria-expanded')) ? hide() : show();
|
44
43
|
})
|
45
44
|
|
45
|
+
const buttonList = [...content.querySelectorAll('a')];
|
46
|
+
buttonList.forEach(button => {
|
47
|
+
button.addEventListener('click', event => hide());
|
48
|
+
})
|
49
|
+
|
46
50
|
const handleClosure = event => !content.contains(event.target) && hide();
|
47
51
|
|
48
52
|
window.addEventListener('click', handleClosure);
|
49
53
|
window.addEventListener('focusin', handleClosure);
|
50
|
-
|
51
|
-
|
52
54
|
}
|
53
55
|
});
|
@@ -4,6 +4,11 @@
|
|
4
4
|
text-decoration: none;
|
5
5
|
}
|
6
6
|
|
7
|
+
svg {
|
8
|
+
/* Disable shrinking of icons in flex strings */
|
9
|
+
flex-shrink: 0;
|
10
|
+
}
|
11
|
+
|
7
12
|
/* a */
|
8
13
|
|
9
14
|
a {
|
@@ -45,7 +50,9 @@ a[aria-disabled="true"] {
|
|
45
50
|
|
46
51
|
.actions_group {
|
47
52
|
display: flex;
|
48
|
-
|
53
|
+
/* header context: */
|
54
|
+
column-gap: calc(var(--base-rhythm)/2);
|
55
|
+
margin-left: auto;
|
49
56
|
}
|
50
57
|
|
51
58
|
.action_button,
|
@@ -363,24 +370,13 @@ svg.svg_icon {
|
|
363
370
|
height: calc(var(--base-rhythm)*6);
|
364
371
|
display: flex;
|
365
372
|
align-items: center;
|
366
|
-
|
373
|
+
justify-content: flex-start;
|
374
|
+
/* column-gap: var(--base-rhythm); */
|
375
|
+
column-gap: calc(var(--base-rhythm)/2);
|
376
|
+
padding-left: calc(var(--base-rhythm)*2);
|
367
377
|
padding-right: var(--base-rhythm);
|
368
378
|
border-bottom: var(--base-border);
|
369
|
-
}
|
370
|
-
|
371
|
-
.header__r {
|
372
|
-
margin-left: auto;
|
373
|
-
}
|
374
|
-
|
375
|
-
.header__document {
|
376
|
-
display: inline-flex;
|
377
|
-
align-items: center;
|
378
|
-
justify-content: center;
|
379
|
-
padding: 0 var(--base-rhythm);
|
380
|
-
padding-left: calc(var(--base-rhythm)*2);
|
381
|
-
column-gap: calc(var(--base-rhythm)/2);
|
382
379
|
min-width: 0;
|
383
|
-
line-height: 1.5;
|
384
380
|
}
|
385
381
|
|
386
382
|
.header__document_title {
|
@@ -388,17 +384,9 @@ svg.svg_icon {
|
|
388
384
|
white-space: nowrap;
|
389
385
|
text-overflow: ellipsis;
|
390
386
|
font-size: var(--font-size-sm);
|
391
|
-
font-weight:
|
392
|
-
}
|
387
|
+
font-weight: 900;
|
393
388
|
|
394
|
-
.
|
395
|
-
display: inline-flex;
|
396
|
-
align-items: center;
|
397
|
-
justify-content: center;
|
398
|
-
padding: 0 var(--base-rhythm);
|
399
|
-
padding-left: calc(var(--base-rhythm)*2);
|
400
|
-
column-gap: calc(var(--base-rhythm)/2);
|
401
|
-
min-width: 0;
|
389
|
+
flex-shrink: 0.1;
|
402
390
|
}
|
403
391
|
|
404
392
|
.header__project_name {
|
@@ -406,7 +394,10 @@ svg.svg_icon {
|
|
406
394
|
white-space: nowrap;
|
407
395
|
text-overflow: ellipsis;
|
408
396
|
font-size: var(--font-size-sm);
|
409
|
-
font-weight:
|
397
|
+
font-weight: 500;
|
398
|
+
min-width: calc(var(--base-rhythm)*2.5);
|
399
|
+
|
400
|
+
flex-shrink: 100;
|
410
401
|
}
|
411
402
|
|
412
403
|
/* .footer */
|
@@ -646,139 +637,52 @@ sdoc-menu-handler[aria-expanded="true"] svg {
|
|
646
637
|
margin-bottom: calc(var(--base-rhythm)*2);
|
647
638
|
}
|
648
639
|
|
649
|
-
/*
|
650
|
-
|
651
|
-
.toc_panel {
|
652
|
-
--toc_panel__controls-height: calc(var(--base-rhythm)*6);
|
653
|
-
|
654
|
-
position: relative;
|
655
|
-
height: 100%;
|
656
|
-
}
|
657
|
-
|
658
|
-
.toc_handler {
|
659
|
-
cursor: pointer;
|
660
|
-
user-select: none;
|
661
|
-
margin-right: auto;
|
640
|
+
/* tree */
|
662
641
|
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
margin-right: auto;
|
671
|
-
margin-left: calc(var(--base-rhythm)*6);
|
642
|
+
.tree {
|
643
|
+
display: flex;
|
644
|
+
flex-direction: column;
|
645
|
+
justify-content: flex-start;
|
646
|
+
align-items: flex-start;
|
647
|
+
gap: var(--base-rhythm);
|
648
|
+
padding-top: var(--base-rhythm);
|
672
649
|
}
|
673
650
|
|
674
|
-
.
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
border-right: var(--base-border);
|
681
|
-
padding: calc(var(--base-rhythm)*8) calc(var(--base-rhythm)*2);
|
682
|
-
|
651
|
+
a.tree_item,
|
652
|
+
.tree_item {
|
653
|
+
display: flex;
|
654
|
+
align-items: flex-start;
|
655
|
+
justify-content: flex-start;
|
656
|
+
column-gap: var(--base-rhythm);
|
683
657
|
font-size: var(--font-size-sm);
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
}
|
688
|
-
|
689
|
-
.toc_panel__content:hover {
|
690
|
-
scrollbar-color: var(--thumbBG) var(--scrollbarBG);
|
691
|
-
}
|
692
|
-
|
693
|
-
.toc_panel__content::-webkit-scrollbar-thumb {
|
694
|
-
background-color: transparent;
|
695
|
-
}
|
696
|
-
|
697
|
-
.toc_panel__content:hover::-webkit-scrollbar-thumb {
|
698
|
-
background-color: var(--thumbBG)
|
699
|
-
}
|
700
|
-
|
701
|
-
[data-toc_state="close"] .toc_panel__content {
|
702
|
-
width: 250px;
|
703
|
-
margin-left: -333px;
|
704
|
-
}
|
705
|
-
|
706
|
-
[data-toc_state="open"] .toc_panel__content {
|
707
|
-
width: auto;
|
708
|
-
margin-left: 0;
|
709
|
-
}
|
710
|
-
|
711
|
-
[data-toc_state="close"] .toc_panel__overlay {
|
712
|
-
display: none;
|
713
|
-
}
|
714
|
-
|
715
|
-
[data-toc_state="open"] .toc_panel__overlay {
|
716
|
-
display: block;
|
717
|
-
}
|
718
|
-
|
719
|
-
[data-toc_state="open"] .toc_handler {
|
720
|
-
color: rgba(0,0,0,0.3);
|
658
|
+
min-width: 0;
|
659
|
+
line-height: 1.5;
|
660
|
+
width: 99%; /* To calculate cite overflow */
|
721
661
|
}
|
722
662
|
|
723
|
-
|
724
|
-
|
725
|
-
|
663
|
+
a.tree_item:hover {
|
664
|
+
/* color: var(--color-bg-main);
|
665
|
+
fill: var(--color-bg-main); */
|
726
666
|
}
|
727
667
|
|
728
|
-
.
|
668
|
+
.tree_item[active] {
|
729
669
|
color: var(--color-fg-contrast);
|
730
670
|
}
|
731
671
|
|
732
|
-
.
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
left: 0;
|
738
|
-
width: 100%;
|
739
|
-
height: 100%;
|
740
|
-
/* overflow: hidden; */
|
741
|
-
/* scrollbar-gutter: stable; */
|
742
|
-
overflow-y: scroll;
|
743
|
-
overflow-x: hidden;
|
744
|
-
|
745
|
-
pointer-events: none;
|
746
|
-
}
|
747
|
-
|
748
|
-
.toc_panel__overlay::after,
|
749
|
-
.toc_panel__overlay::before {
|
750
|
-
content: '';
|
751
|
-
position: absolute;
|
752
|
-
left: 0;
|
753
|
-
right: 0;
|
754
|
-
|
755
|
-
pointer-events: none;
|
756
|
-
}
|
757
|
-
|
758
|
-
.toc_panel__overlay::before {
|
759
|
-
top: 0;
|
760
|
-
height: calc(var(--toc_panel__controls-height)*2);
|
761
|
-
background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-main) 50%, transparent 70%, transparent 100%);
|
762
|
-
}
|
763
|
-
|
764
|
-
.toc_panel__overlay::after {
|
765
|
-
bottom: 0;
|
766
|
-
height: var(--toc_panel__controls-height);
|
767
|
-
background: linear-gradient(0deg, var(--color-bg-main) 0%, transparent 100%);
|
672
|
+
.document_title {
|
673
|
+
font-size: var(--font-size-sm);
|
674
|
+
font-weight: 700;
|
675
|
+
width: 99%; /* To calculate cite overflow */
|
768
676
|
}
|
769
677
|
|
770
|
-
.
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
padding-right: var(--base-rhythm);
|
779
|
-
width: 100%;
|
780
|
-
height: var(--toc_panel__controls-height);
|
781
|
-
background-color: var(--color-bg-main);
|
678
|
+
.document_title[data-file_name]::after {
|
679
|
+
content: attr(data-file_name);
|
680
|
+
display: block;
|
681
|
+
text-overflow: ellipsis;
|
682
|
+
overflow: hidden;
|
683
|
+
width: 99%; /* To calculate cite overflow */
|
684
|
+
font-weight:400;
|
685
|
+
opacity:0.6;
|
782
686
|
}
|
783
687
|
|
784
688
|
/* toc */
|