├── .flake8 ├── .fmf └── version ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── Containerfile-api-debian ├── Containerfile-api-fedora ├── Containerfile-app ├── LICENSE ├── README.md ├── api ├── README.md ├── __init__.py ├── ai.py ├── api.py ├── api_url.py ├── api_utils.py ├── configs │ ├── email_template.html │ ├── settings.yaml │ └── testrun_plugin_presets.yaml ├── import_manager.py ├── lava-job.yaml ├── notifier.py ├── repos_scanner.py ├── spdx_manager.py ├── test │ ├── conftest.py │ ├── test_ai.py │ ├── test_alert.py │ ├── test_api.py │ ├── test_api_documents_mapping.py │ ├── test_api_sw_requirement_mapping.py │ ├── test_api_utils.py │ ├── test_api_write_permission_request.py │ ├── test_comment.py │ ├── test_document_document_mapping.py │ ├── test_notifier.py │ ├── test_repos_scanner.py │ ├── test_spdx_api_validation.py │ ├── test_sw_requirement_sw_requirement_mapping.py │ ├── test_sw_requirement_test_specification_mapping.py │ ├── test_testrun_tmt_validation.py │ └── test_user_login.py ├── testrun.py ├── testrun_base.py ├── testrun_github_actions.py ├── testrun_gitlab_ci.py ├── testrun_lava.py ├── testrun_testing_farm.py ├── testrun_tmt.py ├── tmt-plan.fmf └── tmt_export_json.sh ├── app ├── .eslintrc.js ├── .prettierignore ├── .prettierrc ├── README.md ├── cypress.config.ts ├── cypress │ ├── e2e │ │ ├── api.cy.js │ │ ├── api_notifications.cy.js │ │ ├── edit_user_enabled.cy.js │ │ ├── edit_user_roles.cy.js │ │ ├── import_sw_requirement.cy.js │ │ ├── import_test_case.cy.js │ │ ├── login.cy.js │ │ ├── mapping_document.cy.js │ │ ├── mapping_justification.cy.js │ │ ├── mapping_nested_sw_requirement.cy.js │ │ ├── mapping_sw_requirement.cy.js │ │ ├── mapping_test_case.cy.js │ │ ├── mapping_test_specification.cy.js │ │ ├── reset_user_password.cy.js │ │ ├── test_failing_tmt_test_case.cy.js │ │ └── test_passing_tmt_test_case.cy.js │ ├── fixtures │ │ ├── api.json │ │ ├── consts.json │ │ ├── document.json │ │ ├── justification.json │ │ ├── sw_requirement.json │ │ ├── test_case.json │ │ ├── test_specification.json │ │ └── users.json │ └── support │ │ ├── commands.js │ │ ├── e2e.js │ │ └── utils.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── Admin │ │ │ ├── Admin.tsx │ │ │ ├── AdminListingTable.tsx │ │ │ ├── AdminSettings.tsx │ │ │ ├── AdminTestRunPluginPresets.tsx │ │ │ ├── Menu │ │ │ │ └── AdminMenuKebab.tsx │ │ │ └── Modal │ │ │ │ └── AdminModal.tsx │ │ ├── AppLayout │ │ │ ├── AppLayout.tsx │ │ │ └── HeaderToolbar.tsx │ │ ├── Common │ │ │ ├── Alert │ │ │ │ └── AlertBanner.tsx │ │ │ ├── AutoRefresh │ │ │ │ └── AutoRefresh.tsx │ │ │ ├── Label │ │ │ │ └── CompletionLabel.tsx │ │ │ └── Modal │ │ │ │ └── ModalNotification.tsx │ │ ├── Constants │ │ │ └── constants.tsx │ │ ├── Custom │ │ │ ├── CommentCard.tsx │ │ │ └── LeavesProgressBar.tsx │ │ ├── Dashboard │ │ │ ├── APIListingPageSection.tsx │ │ │ ├── APIListingTable.tsx │ │ │ ├── Dashboard.tsx │ │ │ ├── Form │ │ │ │ └── APIForm.tsx │ │ │ ├── Menu │ │ │ │ └── ApiMenuKebab.tsx │ │ │ └── Modal │ │ │ │ ├── APICheckSpecModal.tsx │ │ │ │ ├── APIDeleteModal.tsx │ │ │ │ ├── APIManageUserPermissionsModal.tsx │ │ │ │ └── APIModal.tsx │ │ ├── Login │ │ │ └── Login.tsx │ │ ├── Mapping │ │ │ ├── Form │ │ │ │ ├── CommentForm.tsx │ │ │ │ ├── DocumentForm.tsx │ │ │ │ ├── JustificationForm.tsx │ │ │ │ ├── SectionForm.tsx │ │ │ │ ├── SwRequirementForm.tsx │ │ │ │ ├── TestCaseForm.tsx │ │ │ │ ├── TestRunBugForm.tsx │ │ │ │ ├── TestRunConfigForm.tsx │ │ │ │ ├── TestRunForm.tsx │ │ │ │ └── TestSpecificationForm.tsx │ │ │ ├── Import │ │ │ │ ├── SwRequirementImport.tsx │ │ │ │ └── TestCaseImport.tsx │ │ │ ├── Mapping.tsx │ │ │ ├── MappingBreadCrumb.tsx │ │ │ ├── MappingListingTable.tsx │ │ │ ├── MappingPageSection.tsx │ │ │ ├── MappingViewSelect.tsx │ │ │ ├── Menu │ │ │ │ ├── DocumentMenuKebab.tsx │ │ │ │ ├── JustificationMenuKebab.tsx │ │ │ │ ├── MappingSectionMenuKebab.tsx │ │ │ │ ├── SwRequirementMenuKebab.tsx │ │ │ │ ├── TestCaseMenuKebab.tsx │ │ │ │ ├── TestSpecificationMenuKebab.tsx │ │ │ │ └── UnmappedMenuKebab.tsx │ │ │ ├── Modal │ │ │ │ ├── APIExportSPDXModal.tsx │ │ │ │ ├── MappingCommentModal.tsx │ │ │ │ ├── MappingDeleteModal.tsx │ │ │ │ ├── MappingDetailsModal.tsx │ │ │ │ ├── MappingDocumentModal.tsx │ │ │ │ ├── MappingForkModal.tsx │ │ │ │ ├── MappingHistoryModal.tsx │ │ │ │ ├── MappingJustificationModal.tsx │ │ │ │ ├── MappingModalProps.tsx │ │ │ │ ├── MappingSwRequirementModal.tsx │ │ │ │ ├── MappingTestCaseModal.tsx │ │ │ │ ├── MappingTestSpecificationModal.tsx │ │ │ │ ├── MappingUsageModal.tsx │ │ │ │ ├── TestResultDetailsModal.tsx │ │ │ │ ├── TestResultsModal.tsx │ │ │ │ └── TestRunModal.tsx │ │ │ └── Search │ │ │ │ ├── DocumentSearch.tsx │ │ │ │ ├── JustificationSearch.tsx │ │ │ │ ├── SwRequirementSearch.tsx │ │ │ │ ├── TestCaseSearch.tsx │ │ │ │ ├── TestRunConfigSearch.tsx │ │ │ │ └── TestSpecificationSearch.tsx │ │ ├── NotFound │ │ │ └── NotFound.tsx │ │ ├── Notification │ │ │ └── Notification.tsx │ │ ├── SSHKey │ │ │ ├── Form │ │ │ │ └── SSHKeyForm.tsx │ │ │ ├── Menu │ │ │ │ └── SSHKeyMenuKebab.tsx │ │ │ ├── Modal │ │ │ │ └── SSHKeyModal.tsx │ │ │ ├── SSHKey.tsx │ │ │ └── SSHKeyListing.tsx │ │ ├── Scanner │ │ │ ├── Modal │ │ │ │ └── ModalTraceabilityLog.tsx │ │ │ └── TraceabilityScanner.tsx │ │ ├── Signin │ │ │ └── Signin.tsx │ │ ├── User │ │ │ ├── AuthProvider.tsx │ │ │ └── Modal │ │ │ │ └── UserProfileModal.tsx │ │ ├── UserFiles │ │ │ ├── Form │ │ │ │ ├── UserFilesAddForm.tsx │ │ │ │ └── UserFilesEditForm.tsx │ │ │ ├── Menu │ │ │ │ └── UserFilesMenuKebab.tsx │ │ │ ├── Modal │ │ │ │ └── UserFilesModal.tsx │ │ │ ├── UserFiles.tsx │ │ │ └── UserFilesListing.tsx │ │ ├── __snapshots__ │ │ │ └── app.test.tsx.snap │ │ ├── app.css │ │ ├── app.test.tsx │ │ ├── bgimages │ │ │ ├── avatarImg.svg │ │ │ ├── background.svg │ │ │ ├── basil.svg │ │ │ ├── basil_black.svg │ │ │ ├── empty_leaf.svg │ │ │ ├── full_leaf.svg │ │ │ └── half_leaf.svg │ │ ├── index.tsx │ │ ├── routes.tsx │ │ └── utils │ │ │ └── useDocumentTitle.ts │ ├── favicon.png │ ├── index.html │ ├── index.tsx │ └── typings.d.ts ├── stylePaths.js ├── tsconfig.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── changelog.md ├── cypress.config.js ├── db ├── README.md ├── __init__.py ├── db_orm.py └── models │ ├── __init__.py │ ├── api.py │ ├── api_document.py │ ├── api_justification.py │ ├── api_sw_requirement.py │ ├── api_test_case.py │ ├── api_test_specification.py │ ├── comment.py │ ├── db_base.py │ ├── document.py │ ├── document_document.py │ ├── init_db.py │ ├── justification.py │ ├── migration │ ├── postgres_1_8_5.sql │ ├── sqlite_1_3_0.sql │ ├── sqlite_1_4_0.sql │ ├── sqlite_1_5_0.sql │ ├── sqlite_1_6_3.sql │ └── sqlite_1_7_1.sql │ ├── note.py │ ├── notification.py │ ├── ssh_key.py │ ├── sw_requirement.py │ ├── sw_requirement_sw_requirement.py │ ├── sw_requirement_test_case.py │ ├── sw_requirement_test_specification.py │ ├── test_case.py │ ├── test_run.py │ ├── test_run_config.py │ ├── test_specification.py │ ├── test_specification_test_case.py │ └── user.py ├── deploy └── apache │ ├── .env │ ├── README.md │ ├── build_basil_api.sh │ ├── build_basil_frontend.sh │ ├── common.sh │ ├── init_postgresql.sh │ └── run.sh ├── docs ├── Makefile ├── make.bat ├── slides │ └── Embedded Open Source Summit - Seattle - 2024.pdf └── source │ ├── _static │ └── _images │ │ ├── architecture.png │ │ ├── create_work_item_1.png │ │ ├── create_work_item_2.png │ │ ├── create_work_item_3.png │ │ ├── create_work_item_4.png │ │ ├── create_work_item_5.png │ │ ├── notifications.png │ │ ├── sw_components.png │ │ ├── test_case_tmt.png │ │ ├── test_result_artifacts.png │ │ ├── test_result_fail_bug.png │ │ ├── test_result_out.png │ │ ├── test_result_pass.png │ │ ├── test_run1.png │ │ ├── test_run_config_container.png │ │ ├── test_run_config_ssh.png │ │ ├── testrun_KernelCI_filtering.png │ │ ├── user_api_permissions.png │ │ ├── user_roles.png │ │ ├── user_ssh_keys.png │ │ ├── work_items_import_1.png │ │ └── work_items_mapping.png │ ├── conf.py │ ├── e2e_testing.rst │ ├── functional_safety.rst │ ├── how_does_it_work.rst │ ├── how_to_run_it.rst │ ├── index.rst │ ├── key_concepts.rst │ ├── notifications.rst │ ├── repos_scanner.rst │ ├── spdx_traceability_export.rst │ ├── test_run.rst │ ├── user_management.rst │ ├── work_items.rst │ └── work_items_import.rst ├── examples ├── code │ ├── api_get_sw_components_v1.py │ └── api_get_sw_components_v2.py ├── export │ └── spdx.jsonld ├── import │ └── reqs │ │ ├── reqs.csv │ │ ├── reqs.json │ │ ├── reqs.xlsx │ │ ├── reqs.yaml │ │ └── strictdoc-output.spdx.jsonld ├── lava │ └── lava-test.yaml └── tmt │ ├── glibc │ └── test.fmf │ ├── local │ ├── tmt-dummy-failing-test.fmf │ └── tmt-dummy-test.fmf │ └── ltp │ └── syscall.fmf ├── misc ├── cronjobs │ └── daily │ │ └── basil-db-vol-backup ├── tmt_provision_podman.patch ├── tmt_provision_podman_debian.patch └── tmt_provision_podman_debian_apt.patch ├── nginx.conf ├── pyproject.toml ├── requirements.txt ├── run_demo.sh └── scripts └── check_version.sh /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/.flake8 -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Containerfile-api-debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/Containerfile-api-debian -------------------------------------------------------------------------------- /Containerfile-api-fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/Containerfile-api-fedora -------------------------------------------------------------------------------- /Containerfile-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/Containerfile-app -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/ai.py -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/api.py -------------------------------------------------------------------------------- /api/api_url.py: -------------------------------------------------------------------------------- 1 | api_port = 5000 2 | -------------------------------------------------------------------------------- /api/api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/api_utils.py -------------------------------------------------------------------------------- /api/configs/email_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/configs/email_template.html -------------------------------------------------------------------------------- /api/configs/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/configs/settings.yaml -------------------------------------------------------------------------------- /api/configs/testrun_plugin_presets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/configs/testrun_plugin_presets.yaml -------------------------------------------------------------------------------- /api/import_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/import_manager.py -------------------------------------------------------------------------------- /api/lava-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/lava-job.yaml -------------------------------------------------------------------------------- /api/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/notifier.py -------------------------------------------------------------------------------- /api/repos_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/repos_scanner.py -------------------------------------------------------------------------------- /api/spdx_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/spdx_manager.py -------------------------------------------------------------------------------- /api/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/conftest.py -------------------------------------------------------------------------------- /api/test/test_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_ai.py -------------------------------------------------------------------------------- /api/test/test_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_alert.py -------------------------------------------------------------------------------- /api/test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_api.py -------------------------------------------------------------------------------- /api/test/test_api_documents_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_api_documents_mapping.py -------------------------------------------------------------------------------- /api/test/test_api_sw_requirement_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_api_sw_requirement_mapping.py -------------------------------------------------------------------------------- /api/test/test_api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_api_utils.py -------------------------------------------------------------------------------- /api/test/test_api_write_permission_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_api_write_permission_request.py -------------------------------------------------------------------------------- /api/test/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_comment.py -------------------------------------------------------------------------------- /api/test/test_document_document_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_document_document_mapping.py -------------------------------------------------------------------------------- /api/test/test_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_notifier.py -------------------------------------------------------------------------------- /api/test/test_repos_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_repos_scanner.py -------------------------------------------------------------------------------- /api/test/test_spdx_api_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_spdx_api_validation.py -------------------------------------------------------------------------------- /api/test/test_sw_requirement_sw_requirement_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_sw_requirement_sw_requirement_mapping.py -------------------------------------------------------------------------------- /api/test/test_sw_requirement_test_specification_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_sw_requirement_test_specification_mapping.py -------------------------------------------------------------------------------- /api/test/test_testrun_tmt_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_testrun_tmt_validation.py -------------------------------------------------------------------------------- /api/test/test_user_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/test/test_user_login.py -------------------------------------------------------------------------------- /api/testrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun.py -------------------------------------------------------------------------------- /api/testrun_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun_base.py -------------------------------------------------------------------------------- /api/testrun_github_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun_github_actions.py -------------------------------------------------------------------------------- /api/testrun_gitlab_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun_gitlab_ci.py -------------------------------------------------------------------------------- /api/testrun_lava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun_lava.py -------------------------------------------------------------------------------- /api/testrun_testing_farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun_testing_farm.py -------------------------------------------------------------------------------- /api/testrun_tmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/testrun_tmt.py -------------------------------------------------------------------------------- /api/tmt-plan.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/tmt-plan.fmf -------------------------------------------------------------------------------- /api/tmt_export_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/api/tmt_export_json.sh -------------------------------------------------------------------------------- /app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/.eslintrc.js -------------------------------------------------------------------------------- /app/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/.prettierrc -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/README.md -------------------------------------------------------------------------------- /app/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress.config.ts -------------------------------------------------------------------------------- /app/cypress/e2e/api.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/api.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/api_notifications.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/api_notifications.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/edit_user_enabled.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/edit_user_enabled.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/edit_user_roles.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/edit_user_roles.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/import_sw_requirement.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/import_sw_requirement.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/import_test_case.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/import_test_case.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/login.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/login.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/mapping_document.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/mapping_document.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/mapping_justification.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/mapping_justification.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/mapping_nested_sw_requirement.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/mapping_nested_sw_requirement.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/mapping_sw_requirement.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/mapping_sw_requirement.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/mapping_test_case.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/mapping_test_case.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/mapping_test_specification.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/mapping_test_specification.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/reset_user_password.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/reset_user_password.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/test_failing_tmt_test_case.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/test_failing_tmt_test_case.cy.js -------------------------------------------------------------------------------- /app/cypress/e2e/test_passing_tmt_test_case.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/e2e/test_passing_tmt_test_case.cy.js -------------------------------------------------------------------------------- /app/cypress/fixtures/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/api.json -------------------------------------------------------------------------------- /app/cypress/fixtures/consts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/consts.json -------------------------------------------------------------------------------- /app/cypress/fixtures/document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/document.json -------------------------------------------------------------------------------- /app/cypress/fixtures/justification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/justification.json -------------------------------------------------------------------------------- /app/cypress/fixtures/sw_requirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/sw_requirement.json -------------------------------------------------------------------------------- /app/cypress/fixtures/test_case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/test_case.json -------------------------------------------------------------------------------- /app/cypress/fixtures/test_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/test_specification.json -------------------------------------------------------------------------------- /app/cypress/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/fixtures/users.json -------------------------------------------------------------------------------- /app/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/support/commands.js -------------------------------------------------------------------------------- /app/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/support/e2e.js -------------------------------------------------------------------------------- /app/cypress/support/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/cypress/support/utils.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/app/Admin/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Admin/Admin.tsx -------------------------------------------------------------------------------- /app/src/app/Admin/AdminListingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Admin/AdminListingTable.tsx -------------------------------------------------------------------------------- /app/src/app/Admin/AdminSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Admin/AdminSettings.tsx -------------------------------------------------------------------------------- /app/src/app/Admin/AdminTestRunPluginPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Admin/AdminTestRunPluginPresets.tsx -------------------------------------------------------------------------------- /app/src/app/Admin/Menu/AdminMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Admin/Menu/AdminMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Admin/Modal/AdminModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Admin/Modal/AdminModal.tsx -------------------------------------------------------------------------------- /app/src/app/AppLayout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/AppLayout/AppLayout.tsx -------------------------------------------------------------------------------- /app/src/app/AppLayout/HeaderToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/AppLayout/HeaderToolbar.tsx -------------------------------------------------------------------------------- /app/src/app/Common/Alert/AlertBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Common/Alert/AlertBanner.tsx -------------------------------------------------------------------------------- /app/src/app/Common/AutoRefresh/AutoRefresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Common/AutoRefresh/AutoRefresh.tsx -------------------------------------------------------------------------------- /app/src/app/Common/Label/CompletionLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Common/Label/CompletionLabel.tsx -------------------------------------------------------------------------------- /app/src/app/Common/Modal/ModalNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Common/Modal/ModalNotification.tsx -------------------------------------------------------------------------------- /app/src/app/Constants/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Constants/constants.tsx -------------------------------------------------------------------------------- /app/src/app/Custom/CommentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Custom/CommentCard.tsx -------------------------------------------------------------------------------- /app/src/app/Custom/LeavesProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Custom/LeavesProgressBar.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/APIListingPageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/APIListingPageSection.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/APIListingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/APIListingTable.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Form/APIForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Form/APIForm.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Menu/ApiMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Menu/ApiMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Modal/APICheckSpecModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Modal/APICheckSpecModal.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Modal/APIDeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Modal/APIDeleteModal.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Modal/APIManageUserPermissionsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Modal/APIManageUserPermissionsModal.tsx -------------------------------------------------------------------------------- /app/src/app/Dashboard/Modal/APIModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Dashboard/Modal/APIModal.tsx -------------------------------------------------------------------------------- /app/src/app/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Login/Login.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/CommentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/CommentForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/DocumentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/DocumentForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/JustificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/JustificationForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/SectionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/SectionForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/SwRequirementForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/SwRequirementForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/TestCaseForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/TestCaseForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/TestRunBugForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/TestRunBugForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/TestRunConfigForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/TestRunConfigForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/TestRunForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/TestRunForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Form/TestSpecificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Form/TestSpecificationForm.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Import/SwRequirementImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Import/SwRequirementImport.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Import/TestCaseImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Import/TestCaseImport.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Mapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Mapping.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/MappingBreadCrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/MappingBreadCrumb.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/MappingListingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/MappingListingTable.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/MappingPageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/MappingPageSection.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/MappingViewSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/MappingViewSelect.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/DocumentMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/DocumentMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/JustificationMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/JustificationMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/MappingSectionMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/MappingSectionMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/SwRequirementMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/SwRequirementMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/TestCaseMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/TestCaseMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/TestSpecificationMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/TestSpecificationMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Menu/UnmappedMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Menu/UnmappedMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/APIExportSPDXModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/APIExportSPDXModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingCommentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingCommentModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingDeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingDeleteModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingDetailsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingDetailsModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingDocumentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingDocumentModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingForkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingForkModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingHistoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingHistoryModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingJustificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingJustificationModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingModalProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingModalProps.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingSwRequirementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingSwRequirementModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingTestCaseModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingTestCaseModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingTestSpecificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingTestSpecificationModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/MappingUsageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/MappingUsageModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/TestResultDetailsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/TestResultDetailsModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/TestResultsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/TestResultsModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Modal/TestRunModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Modal/TestRunModal.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Search/DocumentSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Search/DocumentSearch.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Search/JustificationSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Search/JustificationSearch.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Search/SwRequirementSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Search/SwRequirementSearch.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Search/TestCaseSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Search/TestCaseSearch.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Search/TestRunConfigSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Search/TestRunConfigSearch.tsx -------------------------------------------------------------------------------- /app/src/app/Mapping/Search/TestSpecificationSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Mapping/Search/TestSpecificationSearch.tsx -------------------------------------------------------------------------------- /app/src/app/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /app/src/app/Notification/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Notification/Notification.tsx -------------------------------------------------------------------------------- /app/src/app/SSHKey/Form/SSHKeyForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/SSHKey/Form/SSHKeyForm.tsx -------------------------------------------------------------------------------- /app/src/app/SSHKey/Menu/SSHKeyMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/SSHKey/Menu/SSHKeyMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/SSHKey/Modal/SSHKeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/SSHKey/Modal/SSHKeyModal.tsx -------------------------------------------------------------------------------- /app/src/app/SSHKey/SSHKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/SSHKey/SSHKey.tsx -------------------------------------------------------------------------------- /app/src/app/SSHKey/SSHKeyListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/SSHKey/SSHKeyListing.tsx -------------------------------------------------------------------------------- /app/src/app/Scanner/Modal/ModalTraceabilityLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Scanner/Modal/ModalTraceabilityLog.tsx -------------------------------------------------------------------------------- /app/src/app/Scanner/TraceabilityScanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Scanner/TraceabilityScanner.tsx -------------------------------------------------------------------------------- /app/src/app/Signin/Signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/Signin/Signin.tsx -------------------------------------------------------------------------------- /app/src/app/User/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/User/AuthProvider.tsx -------------------------------------------------------------------------------- /app/src/app/User/Modal/UserProfileModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/User/Modal/UserProfileModal.tsx -------------------------------------------------------------------------------- /app/src/app/UserFiles/Form/UserFilesAddForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/UserFiles/Form/UserFilesAddForm.tsx -------------------------------------------------------------------------------- /app/src/app/UserFiles/Form/UserFilesEditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/UserFiles/Form/UserFilesEditForm.tsx -------------------------------------------------------------------------------- /app/src/app/UserFiles/Menu/UserFilesMenuKebab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/UserFiles/Menu/UserFilesMenuKebab.tsx -------------------------------------------------------------------------------- /app/src/app/UserFiles/Modal/UserFilesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/UserFiles/Modal/UserFilesModal.tsx -------------------------------------------------------------------------------- /app/src/app/UserFiles/UserFiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/UserFiles/UserFiles.tsx -------------------------------------------------------------------------------- /app/src/app/UserFiles/UserFilesListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/UserFiles/UserFilesListing.tsx -------------------------------------------------------------------------------- /app/src/app/__snapshots__/app.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/__snapshots__/app.test.tsx.snap -------------------------------------------------------------------------------- /app/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/app.css -------------------------------------------------------------------------------- /app/src/app/app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/app.test.tsx -------------------------------------------------------------------------------- /app/src/app/bgimages/avatarImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/avatarImg.svg -------------------------------------------------------------------------------- /app/src/app/bgimages/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/background.svg -------------------------------------------------------------------------------- /app/src/app/bgimages/basil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/basil.svg -------------------------------------------------------------------------------- /app/src/app/bgimages/basil_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/basil_black.svg -------------------------------------------------------------------------------- /app/src/app/bgimages/empty_leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/empty_leaf.svg -------------------------------------------------------------------------------- /app/src/app/bgimages/full_leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/full_leaf.svg -------------------------------------------------------------------------------- /app/src/app/bgimages/half_leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/bgimages/half_leaf.svg -------------------------------------------------------------------------------- /app/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/index.tsx -------------------------------------------------------------------------------- /app/src/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/routes.tsx -------------------------------------------------------------------------------- /app/src/app/utils/useDocumentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/app/utils/useDocumentTitle.ts -------------------------------------------------------------------------------- /app/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/favicon.png -------------------------------------------------------------------------------- /app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/index.html -------------------------------------------------------------------------------- /app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/index.tsx -------------------------------------------------------------------------------- /app/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/src/typings.d.ts -------------------------------------------------------------------------------- /app/stylePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/stylePaths.js -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/webpack.common.js -------------------------------------------------------------------------------- /app/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/webpack.dev.js -------------------------------------------------------------------------------- /app/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/app/webpack.prod.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/changelog.md -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/cypress.config.js -------------------------------------------------------------------------------- /db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/README.md -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/db_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/db_orm.py -------------------------------------------------------------------------------- /db/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/models/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/api.py -------------------------------------------------------------------------------- /db/models/api_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/api_document.py -------------------------------------------------------------------------------- /db/models/api_justification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/api_justification.py -------------------------------------------------------------------------------- /db/models/api_sw_requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/api_sw_requirement.py -------------------------------------------------------------------------------- /db/models/api_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/api_test_case.py -------------------------------------------------------------------------------- /db/models/api_test_specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/api_test_specification.py -------------------------------------------------------------------------------- /db/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/comment.py -------------------------------------------------------------------------------- /db/models/db_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/db_base.py -------------------------------------------------------------------------------- /db/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/document.py -------------------------------------------------------------------------------- /db/models/document_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/document_document.py -------------------------------------------------------------------------------- /db/models/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/init_db.py -------------------------------------------------------------------------------- /db/models/justification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/justification.py -------------------------------------------------------------------------------- /db/models/migration/postgres_1_8_5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/migration/postgres_1_8_5.sql -------------------------------------------------------------------------------- /db/models/migration/sqlite_1_3_0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/migration/sqlite_1_3_0.sql -------------------------------------------------------------------------------- /db/models/migration/sqlite_1_4_0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE apis ADD COLUMN last_coverage text(10) DEFAULT '0'; -------------------------------------------------------------------------------- /db/models/migration/sqlite_1_5_0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/migration/sqlite_1_5_0.sql -------------------------------------------------------------------------------- /db/models/migration/sqlite_1_6_3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/migration/sqlite_1_6_3.sql -------------------------------------------------------------------------------- /db/models/migration/sqlite_1_7_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/migration/sqlite_1_7_1.sql -------------------------------------------------------------------------------- /db/models/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/note.py -------------------------------------------------------------------------------- /db/models/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/notification.py -------------------------------------------------------------------------------- /db/models/ssh_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/ssh_key.py -------------------------------------------------------------------------------- /db/models/sw_requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/sw_requirement.py -------------------------------------------------------------------------------- /db/models/sw_requirement_sw_requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/sw_requirement_sw_requirement.py -------------------------------------------------------------------------------- /db/models/sw_requirement_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/sw_requirement_test_case.py -------------------------------------------------------------------------------- /db/models/sw_requirement_test_specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/sw_requirement_test_specification.py -------------------------------------------------------------------------------- /db/models/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/test_case.py -------------------------------------------------------------------------------- /db/models/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/test_run.py -------------------------------------------------------------------------------- /db/models/test_run_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/test_run_config.py -------------------------------------------------------------------------------- /db/models/test_specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/test_specification.py -------------------------------------------------------------------------------- /db/models/test_specification_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/test_specification_test_case.py -------------------------------------------------------------------------------- /db/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/db/models/user.py -------------------------------------------------------------------------------- /deploy/apache/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/.env -------------------------------------------------------------------------------- /deploy/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/README.md -------------------------------------------------------------------------------- /deploy/apache/build_basil_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/build_basil_api.sh -------------------------------------------------------------------------------- /deploy/apache/build_basil_frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/build_basil_frontend.sh -------------------------------------------------------------------------------- /deploy/apache/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/common.sh -------------------------------------------------------------------------------- /deploy/apache/init_postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/init_postgresql.sh -------------------------------------------------------------------------------- /deploy/apache/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/deploy/apache/run.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/slides/Embedded Open Source Summit - Seattle - 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/slides/Embedded Open Source Summit - Seattle - 2024.pdf -------------------------------------------------------------------------------- /docs/source/_static/_images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/architecture.png -------------------------------------------------------------------------------- /docs/source/_static/_images/create_work_item_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/create_work_item_1.png -------------------------------------------------------------------------------- /docs/source/_static/_images/create_work_item_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/create_work_item_2.png -------------------------------------------------------------------------------- /docs/source/_static/_images/create_work_item_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/create_work_item_3.png -------------------------------------------------------------------------------- /docs/source/_static/_images/create_work_item_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/create_work_item_4.png -------------------------------------------------------------------------------- /docs/source/_static/_images/create_work_item_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/create_work_item_5.png -------------------------------------------------------------------------------- /docs/source/_static/_images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/notifications.png -------------------------------------------------------------------------------- /docs/source/_static/_images/sw_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/sw_components.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_case_tmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_case_tmt.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_result_artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_result_artifacts.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_result_fail_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_result_fail_bug.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_result_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_result_out.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_result_pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_result_pass.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_run1.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_run_config_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_run_config_container.png -------------------------------------------------------------------------------- /docs/source/_static/_images/test_run_config_ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/test_run_config_ssh.png -------------------------------------------------------------------------------- /docs/source/_static/_images/testrun_KernelCI_filtering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/testrun_KernelCI_filtering.png -------------------------------------------------------------------------------- /docs/source/_static/_images/user_api_permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/user_api_permissions.png -------------------------------------------------------------------------------- /docs/source/_static/_images/user_roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/user_roles.png -------------------------------------------------------------------------------- /docs/source/_static/_images/user_ssh_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/user_ssh_keys.png -------------------------------------------------------------------------------- /docs/source/_static/_images/work_items_import_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/work_items_import_1.png -------------------------------------------------------------------------------- /docs/source/_static/_images/work_items_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/_static/_images/work_items_mapping.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/e2e_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/e2e_testing.rst -------------------------------------------------------------------------------- /docs/source/functional_safety.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/functional_safety.rst -------------------------------------------------------------------------------- /docs/source/how_does_it_work.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/how_does_it_work.rst -------------------------------------------------------------------------------- /docs/source/how_to_run_it.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/how_to_run_it.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/key_concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/key_concepts.rst -------------------------------------------------------------------------------- /docs/source/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/notifications.rst -------------------------------------------------------------------------------- /docs/source/repos_scanner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/repos_scanner.rst -------------------------------------------------------------------------------- /docs/source/spdx_traceability_export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/spdx_traceability_export.rst -------------------------------------------------------------------------------- /docs/source/test_run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/test_run.rst -------------------------------------------------------------------------------- /docs/source/user_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/user_management.rst -------------------------------------------------------------------------------- /docs/source/work_items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/work_items.rst -------------------------------------------------------------------------------- /docs/source/work_items_import.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/docs/source/work_items_import.rst -------------------------------------------------------------------------------- /examples/code/api_get_sw_components_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/code/api_get_sw_components_v1.py -------------------------------------------------------------------------------- /examples/code/api_get_sw_components_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/code/api_get_sw_components_v2.py -------------------------------------------------------------------------------- /examples/export/spdx.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/export/spdx.jsonld -------------------------------------------------------------------------------- /examples/import/reqs/reqs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/import/reqs/reqs.csv -------------------------------------------------------------------------------- /examples/import/reqs/reqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/import/reqs/reqs.json -------------------------------------------------------------------------------- /examples/import/reqs/reqs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/import/reqs/reqs.xlsx -------------------------------------------------------------------------------- /examples/import/reqs/reqs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/import/reqs/reqs.yaml -------------------------------------------------------------------------------- /examples/import/reqs/strictdoc-output.spdx.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/import/reqs/strictdoc-output.spdx.jsonld -------------------------------------------------------------------------------- /examples/lava/lava-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/lava/lava-test.yaml -------------------------------------------------------------------------------- /examples/tmt/glibc/test.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/tmt/glibc/test.fmf -------------------------------------------------------------------------------- /examples/tmt/local/tmt-dummy-failing-test.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/tmt/local/tmt-dummy-failing-test.fmf -------------------------------------------------------------------------------- /examples/tmt/local/tmt-dummy-test.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/tmt/local/tmt-dummy-test.fmf -------------------------------------------------------------------------------- /examples/tmt/ltp/syscall.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/examples/tmt/ltp/syscall.fmf -------------------------------------------------------------------------------- /misc/cronjobs/daily/basil-db-vol-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/misc/cronjobs/daily/basil-db-vol-backup -------------------------------------------------------------------------------- /misc/tmt_provision_podman.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/misc/tmt_provision_podman.patch -------------------------------------------------------------------------------- /misc/tmt_provision_podman_debian.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/misc/tmt_provision_podman_debian.patch -------------------------------------------------------------------------------- /misc/tmt_provision_podman_debian_apt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/misc/tmt_provision_podman_debian_apt.patch -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/nginx.conf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/run_demo.sh -------------------------------------------------------------------------------- /scripts/check_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elisa-tech/BASIL/HEAD/scripts/check_version.sh --------------------------------------------------------------------------------