strictdoc 0.6.0__tar.gz → 0.6.1a1__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.6.0 → strictdoc-0.6.1a1}/PKG-INFO +1 -1
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/__init__.py +1 -1
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/node.py +3 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/section.py +6 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/file_traceability_index.py +60 -54
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/query_engine/query_object.py +1 -1
- strictdoc-0.6.1a1/strictdoc/export/html/_static/controllers/autocompletable_field_controller.js +297 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/form.css +41 -5
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/project_statistics.py +6 -10
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/project_tree_stats.py +1 -1
- strictdoc-0.6.1a1/strictdoc/export/html/templates/autocomplete/uid/stream_autocomplete_uid.jinja.html +2 -0
- strictdoc-0.6.1a1/strictdoc/export/html/templates/components/form/field/autocompletable/index.jinja +69 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/row_with_relation.jinja +2 -1
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/frame_requirement_form.jinja +1 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/index.jinja +1 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_statistics/main.jinja +1 -1
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/routers/main_router.py +57 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/.gitignore +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/LICENSE +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/NOTICE +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/README.md +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/pyproject.toml +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/excel_import.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/export/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/export/excel_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/import_/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/import_/excel_sheet_proxy.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/excel/import_/excel_to_sdoc_converter.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/p01_sdoc/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/p01_sdoc/reqif_to_sdoc_converter.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/p01_sdoc/sdoc_to_reqif_converter.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/reqif_export.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/reqif_import.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/reqif/sdoc_reqif_fields.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/constants.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/document_reference.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/error_handling.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/errors/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/errors/document_tree_error.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/free_text_reader.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/grammar/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/grammar/grammar.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/grammar/grammar_builder.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/grammar/grammar_grammar.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/grammar/type_system.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/grammar_reader.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/anchor.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/any_node.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/constants.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/document.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/document_config.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/document_from_file.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/document_grammar.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/document_view.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/free_text.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/inline_link.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/object_factory.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/reference.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/models/type_system.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/pickle_cache.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/processor.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/reader.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/validations/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/validations/sdoc_validator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc/writer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/caching_reader.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/constants.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/grammar.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/marker_parser.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/models/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/models/function.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/models/function_range_marker.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/models/range_marker.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/models/requirement_marker.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/models/source_file_info.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/parse_context.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/processors/general_language_marker_processors.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/reader.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/reader_c.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/reader_python.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/backend/sdoc_source_code/tree_sitter_helpers.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/cli/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/cli/argument_int_range.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/cli/cli_arg_parser.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/cli/command_parser_builder.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/cli/main.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/commands/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/commands/about_command.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/commands/diff_command.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/commands/dump_grammar_command.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/commands/manage_autouid_command.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/commands/version_command.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/actions/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/actions/export_action.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/actions/import_action.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/analyzers/document_stats.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/analyzers/document_uid_analyzer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/asset_manager.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/document_finder.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/document_iterator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/document_meta.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/document_tree.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/document_tree_iterator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/environment.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/file_dependency_manager.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/file_tree.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/finders/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/finders/source_files_finder.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/graph/abstract_bucket.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/graph/many_to_many_set.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/graph/one_to_one_dictionary.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/graph/validations.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/graph_database.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/project_config.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/query_engine/grammar.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/query_engine/query_reader.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/source_tree.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/traceability_index.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/traceability_index_builder.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/constants.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/create_requirement.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/delete_requirement.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/delete_section.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/section.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/update_document_config.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/update_grammar.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/update_grammar_element.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/update_included_document.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/update_requirement.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/transforms/validation_error.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/core/tree_cycle_detector.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/doxygen/doxygen_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/autogen.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/base.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/collapsible_list.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/collapsible_toc.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/collapsible_tree.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/content.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/anchor_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/copy_to_clipboard_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/deletable_field_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/draggable_list_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/dropdown_menu_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/editable_field_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/modal_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/movable_field_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/scroll_into_view_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/controllers/tabs_controller.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/diff.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/diff.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/element.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/favicon.ico +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/fonts/NotoSans-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/fonts/NotoSansMono-VariableFont_wdth,wght.ttf +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/layout.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/node.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/pan_with_space.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/project_tree.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/project_tree.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/requirement-tree.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/requirement.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/requirement__temporary.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/requirements-coverage.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/resizable_bar.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/source-code-coverage.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/source.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/stimulus.min.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/table_vew.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/toc_highlighting.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/traceability_matrix.css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/tree(not_in_use).css +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/turbo.min.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/viewtype_menu.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static/zoomable.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/LICENSE-MATHJAX +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/tex.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mathjax/tex-mml-chtml.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/mermaid/mermaid.min.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/nestor/bundle.umd.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/_static_extra/rapidoc/rapidoc-min.js +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/document_type.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/document_config_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/grammar_element_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/grammar_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/included_document_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/requirement_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/rows/row_with_grammar_element_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/form_objects/section_form_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/document.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/document_deep_trace.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/document_pdf.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/document_table.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/document_trace.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/document_tree.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/source_file_coverage.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/source_file_view_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/traceability_matrix.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/diff_screen_results_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/diff_screen_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/document_screen_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/nestor_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/project_statistics_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/project_tree_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/search_screen_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/source_file_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/view_objects/traceability_matrix_view_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/html_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/html_templates.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/renderers/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/renderers/html_fragment_writer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/renderers/link_renderer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/renderers/markup_renderer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/renderers/text_to_html_writer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg__separator.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_add.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_add_above.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_add_below.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_add_child.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_anchor.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_back.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_book.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_close.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_code.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_copy.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_delete.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_diff.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_done.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_edit.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_expand.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_file.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_folder.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_collapse.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_folder_sm.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_fragment.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_fragment_draft.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_gear.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_go_to_doc.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_index.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_list.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_maximize.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_minimize.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_minusminus.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_move_down.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_move_up.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_plusplus.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_project.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_reset.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_search.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_source.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_stat.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_sync.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_toc.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_res/svg_ico16_tree.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_shared/nav.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_shared/requirement_tree_left.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_shared/requirement_tree_right.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/_shared/tags.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/_shared/stream_refresh_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/_shared/stream_updated_toc.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/add_requirement_comment/stream_add_requirement_comment.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/add_requirement_relation/stream_add_requirement_relation.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_cancel_new_requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_created_requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/create_requirement/stream_new_requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/create_section/stream_cancel_new_section.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/create_section/stream_created_section.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/create_section/stream_new_section.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_confirm_delete_requirement.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/delete_requirement/stream_delete_requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_confirm_delete_section.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/delete_section/stream_delete_section.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_cancel_edit_document_config.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_edit_document_config.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/edit_document_config/stream_save_document_config.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/edit_requirement/stream_edit_requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_edit_section.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/document/edit_section/stream_updated_section.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_requirement.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/node/show_full_node/stream_show_full_section.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_form_import_reqif_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/project_index/import_reqif_document/stream_refresh_with_imported_reqif_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/project_index/stream_create_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/actions/project_index/stream_new_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/base.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/anchor/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/badge/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/button/cancel.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/button/confirm.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/button/delete.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/button/diff.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/button/search.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/button/submit.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/confirm/_usage_example.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/confirm/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/field/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/field/contenteditable/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/field/file/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/field/text/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/field_action_button/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/example.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/frame.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/row_uid_with_reset/stream.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/row_with_comment.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/row/row_with_text_field.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/form/search.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form/row_with_grammar_element/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form/row_with_new_grammar_element/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form_element/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_custom_field/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_relation/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/grammar_form_element/row_with_reserved_field/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/header/_usage_example.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/header/header_pagetype.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/header/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/included_document_form/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/modal/_usage_example.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/modal/form.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/modal/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node/card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node/node_controls/card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node/node_controls/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node/root.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/README.txt +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/comments/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/document_meta/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/document_title/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/files/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/links/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/meta/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/multiline/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/rationale/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/section_h/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/section_h/pdf.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/section_title/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/statement/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/text/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/title/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/title/pdf.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/uid/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/node_field/uid_standalone/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/card_extends_card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/index_extends_node.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/pdf.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/tiny.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/requirement/tiny_extends_card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/resizable_bar/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/card_extends_card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/index_extends_node.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/pdf.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/tiny.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/section/tiny_extends_card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/table_key_value/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/card_extends_card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/index_extends_node.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/pdf.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/tiny.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/components/text_node/tiny_extends_card.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/rst/anchor.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/frame_header_document_title.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_requirement.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/frame_show_full_section.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/frame_toc.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/project_tree_child_documents.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/resizable_bar_with_toc.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/toc.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/_shared/viewtype_menu.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/actions.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/frame_document_config_edit.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/frame_document_content.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/frame_section_form.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/document/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/pdf/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/pdf/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/pdf/template/footer.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/pdf/template/frontpage.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/pdf/template/header.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/pdf/toc.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/table/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/table/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/traceability/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/traceability/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/traceability_deep/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/document/traceability_deep/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/changelog_content.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/diff_content.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/diff_controls.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/fields/document_fields.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/fields/requirement_fields.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/fields/section_fields.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/form.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/frame_changelog_result.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/frame_diff_result.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/legend.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/nav_tabs.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/node/requirement.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/node/section.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/skeleton.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/git/sync/button.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/nestor/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/actions.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/frame_form_import_reqif.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/frame_form_new_document.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/frame_project_tree.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/project_tree.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/project_tree_file.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_index/project_tree_folder.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/project_statistics/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/search/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/search/legend.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/search/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_coverage/file.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_coverage/folder.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_coverage/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_coverage/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_view/aside.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_view/header__source_file_name.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_view/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_view/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/source_file_view/requirement.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/traceability_matrix/file.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/traceability_matrix/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/traceability_matrix/main.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/traceability_matrix/project_tree_flat_anchor_list.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/traceability_matrix/requirement.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/screens/traceability_matrix/resizable_bar_with_project_tree.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/website/document/index.jinja +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/templates/websocket.jinja.html +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/tools/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/tools/html_embedded.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html2pdf/html2pdf_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html2pdf/pdf_print_driver.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/json/json_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/directives/raw_html_role.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/directives/wildcard_enhanced_image.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/document_rst_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/rst_templates.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/rst_to_html_fragment_writer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/templates/requirement.jinja.rst +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/rst/writer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/spdx/spdx_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/spdx/spdx_sdoc_container.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/spdx/spdx_to_sdoc_converter.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/git/change.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/git/change_generator.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/git/git_client.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/git/project_diff_analyzer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/auto_described.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/cast.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/diff.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/exception.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/file_modification_time.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/file_system.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/form_data.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/git_client.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/math.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/md5.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/mid.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/ordered_set.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/parallelizer.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/path_filter.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/paths.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/pickle.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/rst.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/sha256.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/shard.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/sorting.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/string.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/textx.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/helpers/timing.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/__init__.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/app.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/config.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/error_object.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/helpers/turbo.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/main.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/routers/other_router.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/server/server.py +0 -0
- {strictdoc-0.6.0 → strictdoc-0.6.1a1}/tests/integration/scripting_examples/questionnaires/02_user_provided_example/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: strictdoc
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.1a1
|
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/
|
@@ -130,6 +130,12 @@ class SDocSection(SDocObject):
|
|
130
130
|
def is_section(self):
|
131
131
|
return True
|
132
132
|
|
133
|
+
def has_any_text_nodes(self):
|
134
|
+
return any(
|
135
|
+
not node_.is_section and node_.node_type == "TEXT"
|
136
|
+
for node_ in self.section_contents
|
137
|
+
)
|
138
|
+
|
133
139
|
@property
|
134
140
|
def is_root(self) -> bool:
|
135
141
|
return self.document.config.root is True
|
@@ -50,7 +50,7 @@ class FileTraceabilityIndex:
|
|
50
50
|
|
51
51
|
# This is only public non-static functions from languages like C.
|
52
52
|
self.map_all_function_names_to_definition_functions: Dict[
|
53
|
-
str, Function
|
53
|
+
str, List[Function]
|
54
54
|
] = {}
|
55
55
|
|
56
56
|
# "file.py" -> (
|
@@ -241,70 +241,77 @@ class FileTraceabilityIndex:
|
|
241
241
|
and function_.name
|
242
242
|
in self.map_all_function_names_to_definition_functions
|
243
243
|
):
|
244
|
-
|
244
|
+
definition_functions: List[Function] = []
|
245
245
|
if not function_.is_public():
|
246
246
|
definition_function = traceability_info_.ng_map_names_to_definition_functions.get(
|
247
|
-
function_.name
|
247
|
+
function_.name, None
|
248
248
|
)
|
249
|
+
if definition_function is not None:
|
250
|
+
definition_functions.append(definition_function)
|
249
251
|
else:
|
250
|
-
|
252
|
+
mapped_definition_functions = (
|
251
253
|
self.map_all_function_names_to_definition_functions[
|
252
254
|
function_.name
|
253
255
|
]
|
254
256
|
)
|
255
|
-
|
257
|
+
definition_functions.extend(mapped_definition_functions)
|
258
|
+
if len(definition_functions) == 0:
|
256
259
|
continue
|
257
|
-
definition_function_trace_info: SourceFileTraceabilityInfo = definition_function.parent
|
258
260
|
|
259
|
-
for
|
260
|
-
|
261
|
-
parent=None,
|
262
|
-
reqs_objs=marker_.reqs_objs,
|
263
|
-
scope="function",
|
264
|
-
)
|
265
|
-
function_marker.ng_source_line_begin = (
|
266
|
-
definition_function.line_begin
|
267
|
-
)
|
268
|
-
function_marker.ng_source_column_begin = 1
|
269
|
-
function_marker.ng_range_line_begin = (
|
270
|
-
definition_function.line_begin
|
271
|
-
)
|
272
|
-
function_marker.ng_range_line_end = (
|
273
|
-
definition_function.line_end
|
274
|
-
)
|
275
|
-
function_marker.ng_marker_line = (
|
276
|
-
definition_function.line_begin
|
277
|
-
)
|
278
|
-
function_marker.ng_marker_column = 1
|
279
|
-
function_marker.set_description(
|
280
|
-
f"function {function_.display_name}"
|
281
|
-
)
|
261
|
+
for definition_function_ in definition_functions:
|
262
|
+
definition_function_trace_info: SourceFileTraceabilityInfo = definition_function_.parent
|
282
263
|
|
283
|
-
for
|
284
|
-
|
285
|
-
|
264
|
+
for marker_ in function_.markers:
|
265
|
+
function_marker = ForwardFunctionRangeMarker(
|
266
|
+
parent=None,
|
267
|
+
reqs_objs=marker_.reqs_objs,
|
268
|
+
scope="function",
|
286
269
|
)
|
287
|
-
|
288
|
-
|
289
|
-
path_to_info = reversed_trace_info[
|
290
|
-
definition_function_trace_info
|
291
|
-
]
|
292
|
-
self.map_reqs_uids_to_paths.setdefault(
|
293
|
-
req_uid_, OrderedSet()
|
270
|
+
function_marker.ng_source_line_begin = (
|
271
|
+
definition_function_.line_begin
|
294
272
|
)
|
295
|
-
|
296
|
-
|
273
|
+
function_marker.ng_source_column_begin = 1
|
274
|
+
function_marker.ng_range_line_begin = (
|
275
|
+
definition_function_.line_begin
|
297
276
|
)
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
277
|
+
function_marker.ng_range_line_end = (
|
278
|
+
definition_function_.line_end
|
279
|
+
)
|
280
|
+
function_marker.ng_marker_line = (
|
281
|
+
definition_function_.line_begin
|
282
|
+
)
|
283
|
+
function_marker.ng_marker_column = 1
|
284
|
+
function_marker.set_description(
|
285
|
+
f"function {function_.display_name}"
|
302
286
|
)
|
303
|
-
self.map_paths_to_reqs[path_to_info].add(node)
|
304
287
|
|
305
|
-
|
306
|
-
|
307
|
-
|
288
|
+
for req_uid_ in marker_.reqs:
|
289
|
+
markers = definition_function_trace_info.ng_map_reqs_to_markers.setdefault(
|
290
|
+
req_uid_, []
|
291
|
+
)
|
292
|
+
markers.append(function_marker)
|
293
|
+
|
294
|
+
path_to_info = reversed_trace_info[
|
295
|
+
definition_function_trace_info
|
296
|
+
]
|
297
|
+
self.map_reqs_uids_to_paths.setdefault(
|
298
|
+
req_uid_, OrderedSet()
|
299
|
+
)
|
300
|
+
self.map_reqs_uids_to_paths[req_uid_].add(
|
301
|
+
path_to_info
|
302
|
+
)
|
303
|
+
|
304
|
+
node = traceability_index.get_node_by_uid(
|
305
|
+
req_uid_
|
306
|
+
)
|
307
|
+
self.map_paths_to_reqs.setdefault(
|
308
|
+
path_to_info, OrderedSet()
|
309
|
+
)
|
310
|
+
self.map_paths_to_reqs[path_to_info].add(node)
|
311
|
+
|
312
|
+
definition_function_trace_info.markers.append(
|
313
|
+
function_marker
|
314
|
+
)
|
308
315
|
|
309
316
|
for (
|
310
317
|
traceability_info_
|
@@ -440,14 +447,13 @@ class FileTraceabilityIndex:
|
|
440
447
|
marker_type: RangeMarkerType
|
441
448
|
|
442
449
|
if FunctionAttribute.DEFINITION in function_.attributes:
|
443
|
-
assert (
|
444
|
-
function_.name
|
445
|
-
not in self.map_all_function_names_to_definition_functions
|
446
|
-
), function_.name
|
447
450
|
if function_.is_public():
|
451
|
+
self.map_all_function_names_to_definition_functions.setdefault(
|
452
|
+
function_.name, []
|
453
|
+
)
|
448
454
|
self.map_all_function_names_to_definition_functions[
|
449
455
|
function_.name
|
450
|
-
]
|
456
|
+
].append(function_)
|
451
457
|
|
452
458
|
if (
|
453
459
|
source_file.in_doctree_source_file_rel_path_posix
|
strictdoc-0.6.1a1/strictdoc/export/html/_static/controllers/autocompletable_field_controller.js
ADDED
@@ -0,0 +1,297 @@
|
|
1
|
+
// MIT License
|
2
|
+
//
|
3
|
+
// based on https://github.com/afcapel/stimulus-autocomplete/
|
4
|
+
// Copyright (c) 2021 Alberto Fernández-Capel
|
5
|
+
|
6
|
+
const optionSelector = "[role='option']:not([aria-disabled])"
|
7
|
+
const activeSelector = "[aria-selected='true']"
|
8
|
+
|
9
|
+
Stimulus.register("autocompletable", class extends Controller {
|
10
|
+
static targets = ["name"]
|
11
|
+
static classes = ["selected"]
|
12
|
+
static values = {
|
13
|
+
ready: Boolean,
|
14
|
+
url: String,
|
15
|
+
minLength: Number,
|
16
|
+
delay: { type: Number, default: 300 },
|
17
|
+
queryParam: { type: String, default: "q" },
|
18
|
+
}
|
19
|
+
static uniqOptionId = 0
|
20
|
+
|
21
|
+
connect() {
|
22
|
+
// this.element is the DOM element to which the controller is connected to.
|
23
|
+
const autocompletable = this.element
|
24
|
+
this.autocompletable = autocompletable
|
25
|
+
this.hidden = autocompletable.nextElementSibling
|
26
|
+
this.results = this.hidden.nextElementSibling
|
27
|
+
|
28
|
+
this.close()
|
29
|
+
|
30
|
+
if(!autocompletable.hasAttribute("autocompletable")) autocompletable.setAttribute("autocompletable", "off")
|
31
|
+
autocompletable.setAttribute("spellcheck", "false")
|
32
|
+
|
33
|
+
this.mouseDown = false
|
34
|
+
|
35
|
+
this.onInputChange = debounce(this.onInputChange, this.delayValue)
|
36
|
+
|
37
|
+
autocompletable.addEventListener("keydown", (event) => {
|
38
|
+
const handler = this[`on${event.key}Keydown`]
|
39
|
+
if (handler) handler(event)
|
40
|
+
});
|
41
|
+
|
42
|
+
autocompletable.addEventListener("blur", (event) => {
|
43
|
+
if (this.mouseDown) return
|
44
|
+
this.close()
|
45
|
+
});
|
46
|
+
|
47
|
+
autocompletable.addEventListener("input", (event) => {
|
48
|
+
const query = autocompletable.innerText.trim()
|
49
|
+
if (query && query.length >= this.minLengthValue) {
|
50
|
+
this.fetchResults(query)
|
51
|
+
} else {
|
52
|
+
this.hideAndRemoveOptions()
|
53
|
+
}
|
54
|
+
|
55
|
+
const text = filterSingleLine(this.autocompletable.innerText)
|
56
|
+
this.hidden.value = text
|
57
|
+
});
|
58
|
+
|
59
|
+
this.results.addEventListener("mousedown", this.onResultsMouseDown)
|
60
|
+
this.results.addEventListener("click", this.onResultsClick)
|
61
|
+
|
62
|
+
if (autocompletable.hasAttribute("autofocus")) {
|
63
|
+
autocompletable.focus()
|
64
|
+
}
|
65
|
+
|
66
|
+
this.readyValue = true
|
67
|
+
}
|
68
|
+
|
69
|
+
disconnect() {
|
70
|
+
this.autocompletable.removeEventListener("keydown", this.onKeydown)
|
71
|
+
this.autocompletable.removeEventListener("blur", this.onInputBlur)
|
72
|
+
this.autocompletable.removeEventListener("input", this.onInputChange)
|
73
|
+
|
74
|
+
this.results.removeEventListener("mousedown", this.onResultsMouseDown)
|
75
|
+
this.results.removeEventListener("click", this.onResultsClick)
|
76
|
+
}
|
77
|
+
|
78
|
+
sibling(next) {
|
79
|
+
console.group(this.options)
|
80
|
+
const options = this.options
|
81
|
+
const selected = this.selectedOption
|
82
|
+
const index = options.indexOf(selected)
|
83
|
+
const sibling = next ? options[index + 1] : options[index - 1]
|
84
|
+
const def = next ? options[0] : options[options.length - 1]
|
85
|
+
return sibling || def
|
86
|
+
}
|
87
|
+
|
88
|
+
select(target) {
|
89
|
+
const previouslySelected = this.selectedOption
|
90
|
+
if (previouslySelected) {
|
91
|
+
previouslySelected.removeAttribute("aria-selected")
|
92
|
+
previouslySelected.classList.remove(...this.selectedClassesOrDefault)
|
93
|
+
}
|
94
|
+
|
95
|
+
target.setAttribute("aria-selected", "true")
|
96
|
+
target.classList.add(...this.selectedClassesOrDefault)
|
97
|
+
this.autocompletable.setAttribute("aria-activedescendant", target.id)
|
98
|
+
target.scrollIntoView({ behavior: "auto", block: "nearest" })
|
99
|
+
}
|
100
|
+
|
101
|
+
onEscapeKeydown = (event) => {
|
102
|
+
if (!this.resultsShown) return
|
103
|
+
|
104
|
+
this.hideAndRemoveOptions()
|
105
|
+
event.stopPropagation()
|
106
|
+
event.preventDefault()
|
107
|
+
}
|
108
|
+
|
109
|
+
onArrowDownKeydown = (event) => {
|
110
|
+
const item = this.sibling(true)
|
111
|
+
if (item) this.select(item)
|
112
|
+
event.preventDefault()
|
113
|
+
}
|
114
|
+
|
115
|
+
onArrowUpKeydown = (event) => {
|
116
|
+
const item = this.sibling(false)
|
117
|
+
if (item) this.select(item)
|
118
|
+
event.preventDefault()
|
119
|
+
}
|
120
|
+
|
121
|
+
onTabKeydown = (event) => {
|
122
|
+
const selected = this.selectedOption
|
123
|
+
if (selected) this.commit(selected)
|
124
|
+
}
|
125
|
+
|
126
|
+
onEnterKeydown = (event) => {
|
127
|
+
const selected = this.selectedOption
|
128
|
+
if (selected && this.resultsShown) {
|
129
|
+
this.commit(selected)
|
130
|
+
}
|
131
|
+
/* single line, dont allow enter */
|
132
|
+
event.preventDefault()
|
133
|
+
}
|
134
|
+
|
135
|
+
commit(selected) {
|
136
|
+
if (selected.getAttribute("aria-disabled") === "true") return
|
137
|
+
|
138
|
+
if (selected instanceof HTMLAnchorElement) {
|
139
|
+
selected.click()
|
140
|
+
this.close()
|
141
|
+
return
|
142
|
+
}
|
143
|
+
|
144
|
+
const textValue = selected.getAttribute("data-autocompletable-label") || selected.textContent.trim()
|
145
|
+
const value = selected.getAttribute("data-autocompletable-value") || textValue
|
146
|
+
this.autocompletable.innerText = value
|
147
|
+
|
148
|
+
this.hidden.value = value
|
149
|
+
this.hidden.dispatchEvent(new Event("input"))
|
150
|
+
this.hidden.dispatchEvent(new Event("change"))
|
151
|
+
|
152
|
+
this.autocompletable.focus()
|
153
|
+
this.hideAndRemoveOptions()
|
154
|
+
|
155
|
+
this.element.dispatchEvent(
|
156
|
+
new CustomEvent("autocompletable.change", {
|
157
|
+
bubbles: true,
|
158
|
+
detail: { value: value, textValue: textValue, selected: selected }
|
159
|
+
})
|
160
|
+
)
|
161
|
+
}
|
162
|
+
|
163
|
+
clear() {
|
164
|
+
this.autocompletable.innerText = ""
|
165
|
+
this.hidden.value = ""
|
166
|
+
}
|
167
|
+
|
168
|
+
onResultsClick = (event) => {
|
169
|
+
if (!(event.target instanceof Element)) return
|
170
|
+
const selected = event.target.closest(optionSelector)
|
171
|
+
if (selected) this.commit(selected)
|
172
|
+
}
|
173
|
+
|
174
|
+
onResultsMouseDown = () => {
|
175
|
+
this.mouseDown = true
|
176
|
+
this.results.addEventListener("mouseup", () => {
|
177
|
+
this.mouseDown = false
|
178
|
+
}, { once: true })
|
179
|
+
}
|
180
|
+
|
181
|
+
identifyOptions() {
|
182
|
+
const prefix = this.results.id || "autocompletable"
|
183
|
+
const optionsWithoutId = this.results.querySelectorAll(`${optionSelector}:not([id])`)
|
184
|
+
optionsWithoutId.forEach(el => el.id = `${prefix}-option-${this.constructor.uniqOptionId++}`)
|
185
|
+
}
|
186
|
+
|
187
|
+
hideAndRemoveOptions() {
|
188
|
+
this.close()
|
189
|
+
this.results.innerHTML = null
|
190
|
+
}
|
191
|
+
|
192
|
+
fetchResults = async (query) => {
|
193
|
+
if (!this.hasUrlValue) return
|
194
|
+
|
195
|
+
const url = this.buildURL(query)
|
196
|
+
try {
|
197
|
+
this.element.dispatchEvent(new CustomEvent("loadstart"))
|
198
|
+
const html = await this.doFetch(url)
|
199
|
+
this.replaceResults(html)
|
200
|
+
this.element.dispatchEvent(new CustomEvent("load"))
|
201
|
+
this.element.dispatchEvent(new CustomEvent("loadend"))
|
202
|
+
} catch(error) {
|
203
|
+
this.element.dispatchEvent(new CustomEvent("error"))
|
204
|
+
this.element.dispatchEvent(new CustomEvent("loadend"))
|
205
|
+
throw error
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
buildURL(query) {
|
210
|
+
const url = new URL(this.urlValue, window.location.href)
|
211
|
+
const params = new URLSearchParams(url.search.slice(1))
|
212
|
+
params.append(this.queryParamValue, query)
|
213
|
+
url.search = params.toString()
|
214
|
+
|
215
|
+
return url.toString()
|
216
|
+
}
|
217
|
+
|
218
|
+
doFetch = async (url) => {
|
219
|
+
const response = await fetch(url)
|
220
|
+
|
221
|
+
if (!response.ok) {
|
222
|
+
throw new Error(`Server responded with status ${response.status}`)
|
223
|
+
}
|
224
|
+
|
225
|
+
const html = await response.text()
|
226
|
+
return html
|
227
|
+
}
|
228
|
+
|
229
|
+
replaceResults(html) {
|
230
|
+
this.results.innerHTML = html
|
231
|
+
this.identifyOptions()
|
232
|
+
if (!!this.options) {
|
233
|
+
this.open()
|
234
|
+
} else {
|
235
|
+
this.close()
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
open() {
|
240
|
+
if (this.resultsShown) return
|
241
|
+
|
242
|
+
this.resultsShown = true
|
243
|
+
this.element.setAttribute("aria-expanded", "true")
|
244
|
+
this.element.dispatchEvent(
|
245
|
+
new CustomEvent("toggle", {
|
246
|
+
detail: { action: "open", autocompletable: this.autocompletable, results: this.results }
|
247
|
+
})
|
248
|
+
)
|
249
|
+
}
|
250
|
+
|
251
|
+
close() {
|
252
|
+
if (!this.resultsShown) return
|
253
|
+
|
254
|
+
this.resultsShown = false
|
255
|
+
this.autocompletable.removeAttribute("aria-activedescendant")
|
256
|
+
this.element.setAttribute("aria-expanded", "false")
|
257
|
+
this.element.dispatchEvent(
|
258
|
+
new CustomEvent("toggle", {
|
259
|
+
detail: { action: "close", autocompletable: this.autocompletable, results: this.results }
|
260
|
+
})
|
261
|
+
)
|
262
|
+
}
|
263
|
+
|
264
|
+
get resultsShown() {
|
265
|
+
return !this.results.hidden
|
266
|
+
}
|
267
|
+
|
268
|
+
set resultsShown(value) {
|
269
|
+
this.results.hidden = !value
|
270
|
+
}
|
271
|
+
|
272
|
+
get options() {
|
273
|
+
return Array.from(this.results.querySelectorAll(optionSelector))
|
274
|
+
}
|
275
|
+
|
276
|
+
get selectedOption() {
|
277
|
+
return this.results.querySelector(activeSelector)
|
278
|
+
}
|
279
|
+
|
280
|
+
get selectedClassesOrDefault() {
|
281
|
+
return this.hasSelectedClass ? this.selectedClasses : ["autocomplete-active"]
|
282
|
+
}
|
283
|
+
|
284
|
+
});
|
285
|
+
|
286
|
+
function filterSingleLine(text) {
|
287
|
+
return text.replace(/\s/g, ' ').replace(/\s\s+/g, ' ')
|
288
|
+
};
|
289
|
+
|
290
|
+
const debounce = (fn, delay = 10) => {
|
291
|
+
let timeoutId = null
|
292
|
+
|
293
|
+
return (...args) => {
|
294
|
+
clearTimeout(timeoutId)
|
295
|
+
timeoutId = setTimeout(fn, delay)
|
296
|
+
}
|
297
|
+
}
|
@@ -227,7 +227,10 @@ sdoc-form-grid {
|
|
227
227
|
padding:
|
228
228
|
calc(var(--base-rhythm)*4)
|
229
229
|
calc(var(--base-rhythm)*3); /* (4-1) related to column gap */
|
230
|
-
|
230
|
+
|
231
|
+
overflow-x: clip; /* Prevents overflow issues affecting:
|
232
|
+
- field_action::before (highlight visibility on delete) and
|
233
|
+
- autocompletable (dropdown visibility) */
|
231
234
|
|
232
235
|
/* content container has no padding-block */
|
233
236
|
margin-top: calc(var(--base-rhythm)*2);
|
@@ -306,15 +309,46 @@ sdoc-form-field-group:focus-within::before {
|
|
306
309
|
* sdoc-contenteditable
|
307
310
|
*/
|
308
311
|
|
309
|
-
sdoc-contenteditable
|
312
|
+
sdoc-contenteditable,
|
313
|
+
sdoc-autocompletable {
|
310
314
|
display: block;
|
311
315
|
position: relative;
|
312
316
|
}
|
313
317
|
|
314
|
-
sdoc-contenteditable[contenteditable="false"]
|
318
|
+
sdoc-contenteditable[contenteditable="false"],
|
319
|
+
sdoc-autocompletable[contenteditable="false"] {
|
315
320
|
color: var(--color-fg-secondary);
|
316
321
|
}
|
317
322
|
|
323
|
+
.autocomplete-items {
|
324
|
+
position: absolute;
|
325
|
+
border: 1px solid #d4d4d4;
|
326
|
+
background-color: var(--color-bg-contrast);
|
327
|
+
border-bottom: none;
|
328
|
+
border-top: none;
|
329
|
+
z-index: 99;
|
330
|
+
top: 100%;
|
331
|
+
left: 0;
|
332
|
+
right: 0;
|
333
|
+
width: 40vw;
|
334
|
+
max-height: 60vh;
|
335
|
+
overflow-y: auto;
|
336
|
+
z-index: 999;
|
337
|
+
}
|
338
|
+
|
339
|
+
.autocomplete-active {
|
340
|
+
/*when navigating through the items using the arrow keys:*/
|
341
|
+
background-color: var(--color-highlight) !important;
|
342
|
+
}
|
343
|
+
|
344
|
+
.autocompletable-result-item {
|
345
|
+
position:relative;
|
346
|
+
display:block;
|
347
|
+
padding:.25rem 0.25rem;
|
348
|
+
margin-bottom:-1px;
|
349
|
+
border:1px solid rgba(0,0,0,.125)
|
350
|
+
}
|
351
|
+
|
318
352
|
.monospace {
|
319
353
|
font-family: var(--code-font-family);
|
320
354
|
}
|
@@ -329,7 +363,8 @@ sdoc-contenteditable[contenteditable="false"] {
|
|
329
363
|
/* todo: Join sdoc-contenteditable with sdoc-form-field */
|
330
364
|
|
331
365
|
sdoc-form-field label,
|
332
|
-
sdoc-contenteditable::before
|
366
|
+
sdoc-contenteditable::before,
|
367
|
+
sdoc-autocompletable::before {
|
333
368
|
/* for contenteditable */
|
334
369
|
content: attr(data-field-label);
|
335
370
|
/* for all */
|
@@ -346,7 +381,8 @@ sdoc-contenteditable::before {
|
|
346
381
|
}
|
347
382
|
|
348
383
|
sdoc-form-field:focus-within label,
|
349
|
-
sdoc-contenteditable:focus::before
|
384
|
+
sdoc-contenteditable:focus::before,
|
385
|
+
sdoc-autocompletable:focus::before {
|
350
386
|
color: var(--color-fg-accent);
|
351
387
|
}
|
352
388
|
|
{strictdoc-0.6.0 → strictdoc-0.6.1a1}/strictdoc/export/html/generators/project_statistics.py
RENAMED
@@ -39,18 +39,14 @@ class ProgressStatisticsGenerator:
|
|
39
39
|
):
|
40
40
|
if isinstance(node, SDocSection):
|
41
41
|
document_tree_stats.total_sections += 1
|
42
|
+
if not node.has_any_text_nodes():
|
43
|
+
document_tree_stats.sections_without_text_nodes += 1
|
42
44
|
|
43
|
-
|
44
|
-
isinstance(node_, SDocNode)
|
45
|
-
and node_.node_type == "TEXT"
|
46
|
-
for node_ in node.section_contents
|
47
|
-
)
|
48
|
-
if contains_text_nodes:
|
49
|
-
document_tree_stats.sections_without_free_text += 1
|
50
|
-
|
51
|
-
if isinstance(node, SDocNode):
|
45
|
+
elif isinstance(node, SDocNode):
|
52
46
|
requirement: SDocNode = assert_cast(node, SDocNode)
|
53
|
-
|
47
|
+
if not requirement.is_text_node():
|
48
|
+
document_tree_stats.total_requirements += 1
|
49
|
+
|
54
50
|
if requirement.reserved_uid is None:
|
55
51
|
document_tree_stats.requirements_no_uid += 1
|
56
52
|
|
@@ -0,0 +1,2 @@
|
|
1
|
+
{% for node in nodes %}
|
2
|
+
<li class="autocompletable-result-item" role="option" data-autocompletable-value="{{ node.reserved_uid }}"><span class="requirement__link-parent"><span class="requirement__parent-uid">{{ node.reserved_uid }}</span> {{ node.reserved_title }}</span></li>{% endfor %}
|