├── .editorconfig ├── .env ├── .github └── pull_request_template.md ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .nvmrc ├── Dockerfile ├── Jenkinsfile ├── README.md ├── accessibilty-audit ├── README.md ├── generate-lighthouse-report.js ├── package-lock.json ├── package.json ├── repo-template.json └── urls.txt ├── assets ├── .gitignore ├── configuration.default.json └── env.template.json ├── coverage.Jenkinsfile ├── docker-compose-coverage.yaml ├── docker-compose-test.yaml ├── docker-compose.yaml ├── docs └── developers-guide.md ├── e2e-tests ├── .editorconfig ├── .gitignore ├── .nycrc ├── cypress-flaky.config.js ├── cypress-legacy.config.js ├── cypress-reporter-config.json ├── cypress-security.config.js ├── cypress.config.js ├── e2e-flaky │ ├── explore │ │ └── visual.graph.spec.js │ ├── import │ │ ├── import-server-files-operations.spec.js │ │ ├── import-user-data-batch-operations.spec.js │ │ ├── import-user-data-url.spec.js │ │ └── import.server.files.spec.js │ ├── setup │ │ └── sparql-template-create.js │ └── sparql-editor │ │ ├── actions │ │ ├── execute-update-query.spec.js │ │ └── share-query.spec.js │ │ ├── lucene-connector.spec.js │ │ ├── plugins │ │ └── error-plugin.spec.js │ │ └── yasr │ │ └── table-plugin.spec.js ├── e2e-legacy │ ├── cluster │ │ ├── cluster-configuration │ │ │ ├── cluster-configuration-multi-region.spec.js │ │ │ ├── cluster-configuration-nodes.spec.js │ │ │ ├── cluster-configuration-properties.spec.js │ │ │ └── cluster-configuration.spec.js │ │ ├── cluster-legend.spec.js │ │ ├── cluster-states.spec.js │ │ └── edit-cluster-nodes-modal.spec.js │ ├── explore │ │ ├── class-hierarchy │ │ │ ├── class-hierarchy-with-selected-repository-without-class-hierarchy.spec.js │ │ │ ├── class-hierarchy-with-selected-repository.spec.js │ │ │ ├── class-hierarchy-without-selected-repository.spec.js │ │ │ └── class.hierarchy.spec.js │ │ ├── class-relationships │ │ │ ├── class-relationships-repository-with-data.spec.js │ │ │ ├── class-relationships-with-selected-repository.spec.js │ │ │ ├── class-relationships-without-selected-repository.spec.js │ │ │ └── class-relationships.spec.js │ │ ├── graphs-overview │ │ │ ├── graphs.overview.spec.js │ │ │ └── initial-state │ │ │ │ ├── graphs-overview-with-selected-repository.spec.js │ │ │ │ └── graphs-overview-without-selected-repository.spec.js │ │ ├── similarity-index │ │ │ ├── similarity-index-with-repository.spec.js │ │ │ └── similarity-index-without-repository.spec.js │ │ └── visual-graph │ │ │ ├── graphs-config.spec.js │ │ │ ├── visual-graph-node-labels.spec.js │ │ │ ├── visual-graph-with-selected-repository.js │ │ │ ├── visual-graph-without-selected-repository.js │ │ │ └── visual.graph.spec.js │ ├── graphql │ │ ├── activate-deactivate-graphql-endpoint.spec.js │ │ ├── create-graphql-endpoint.spec.js │ │ ├── delete-graphql-endpoint.spec.js │ │ ├── edit-graphql-enpoint.spec.js │ │ ├── export-graphql-endpoint-definition.spec.js │ │ ├── filter-graphql-endpoints-on-management-view.spec.js │ │ ├── graphql-endpoint-management-view.spec.js │ │ ├── graphql-endpoint-management-with-endpoints.spec.js │ │ ├── graphql-endpoint-management-with-selected-repository.spec.js │ │ ├── graphql-endpoint-management-without-selected-repository.spec.js │ │ ├── graphql-playground-with-endpoints.spec.js │ │ ├── graphql-playground-with-selected-repository.spec.js │ │ ├── graphql-playground-without-selected-repository.spec.js │ │ ├── graphql-playground.spec.js │ │ ├── import-graphql-endpoint-definitions.spec.js │ │ └── set-default-graphql-endpoint.spec.js │ ├── help │ │ ├── guides │ │ │ ├── guides-with-repository.spec.js │ │ │ ├── guides-without-repository.spec.js │ │ │ ├── movies-interactive-guide.spec.js │ │ │ └── star-wars-interactive-guide.js │ │ ├── rest-api-documentatio │ │ │ ├── rest-api-documentation-with-repository.spec.js │ │ │ └── rest-api-documentation-without-repository.spec.js │ │ └── system-information │ │ │ ├── system-information-with-repository.spec.js │ │ │ ├── system-information-without-repository.spec.js │ │ │ └── system-information.spec.js │ ├── home │ │ ├── cookie-policy.spec.js │ │ ├── create-repository.spec.js │ │ ├── documentation-link.spec.js │ │ ├── google-analytics.spec.js │ │ ├── home-page-with-selected-repository.spec.js │ │ ├── home-page-without-repositories.spec.js │ │ ├── home-page-without-selected-repository.spec.js │ │ ├── language-change.spec.js │ │ ├── rdf-resource-search.spec.js │ │ └── view-resource-autocomplete.spec.js │ ├── import │ │ ├── import-server-files-batch-operations.spec.js │ │ ├── import-server-files.spec.js │ │ ├── import-user-data-file-upload.spec.js │ │ ├── import-user-data-settings-dialog.spec.js │ │ ├── import-user-data-text-snippet.spec.js │ │ ├── import-user-data-url.spec.js │ │ ├── import-user-data.spec.js │ │ ├── import-view.spec.js │ │ └── initial-state │ │ │ ├── import-page-with-selected-repositor.js │ │ │ ├── import-page-with-selected-repository-without-imported-files.js │ │ │ └── import-page-without-selected-repository.spec.js │ ├── license │ │ ├── license-with-repository.spec.js │ │ ├── license-without-repository.spec.js │ │ └── license.spec.js │ ├── monitor │ │ ├── backup-and-restore │ │ │ ├── backup-and-restore-with-repository.spec.js │ │ │ ├── backup-and-restore-without-repository.spec.js │ │ │ └── backup-and-restore.spec.js │ │ ├── global-operation-statuses-component.spec.js │ │ ├── query-and-updates │ │ │ ├── queries-and-updates-with-repository.spec.js │ │ │ └── queries-and-updates-without-repository.spec.js │ │ └── system │ │ │ ├── monitor.resources.spec.js │ │ │ ├── system-monitoring-with-repository.spec.js │ │ │ └── system-monitoring-without-repository.spec.js │ ├── not-found │ │ └── not-found.spec.js │ ├── repository │ │ ├── attach-remote-location.spec.js │ │ ├── ontop-repository.spec.js │ │ ├── repositories.spec.js │ │ └── repository-commands.spec.js │ ├── resource │ │ └── resource.spec.js │ ├── setup │ │ ├── aclmanagement │ │ │ ├── acl-management-with-selected repository.spec.js │ │ │ ├── acl-management-without-repositories.spec.js │ │ │ ├── create-rule.spec.js │ │ │ ├── delete-rule.spec.js │ │ │ ├── edit-rule.spec.js │ │ │ ├── render-rules.spec.js │ │ │ ├── reorder-rules.spec.js │ │ │ ├── revert-rules.spec.js │ │ │ ├── scopes.spec.js │ │ │ └── update-rules.spec.js │ │ ├── autocomplete │ │ │ ├── autocomplete-with-repository.spec.js │ │ │ ├── autocomplete-without-repository.spec.js │ │ │ └── autocomplete.spec.js │ │ ├── cluster │ │ │ ├── cluster-initial-state-with-cluster.spec.js │ │ │ └── cluster-initial-state-without-cluster.spec.js │ │ ├── connectors-lucene.spec.js │ │ ├── connectors │ │ │ ├── connectors-initial-state-with-selected-repository.spec.js │ │ │ └── connectors-initial-state-without-repositories.spec.js │ │ ├── jdbc │ │ │ ├── jdbc-create.spec.js │ │ │ ├── jdbc-with-repository.spec.js │ │ │ ├── jdbc-without-repository.spec.js │ │ │ └── jdbc.spec.js │ │ ├── namespaces │ │ │ ├── namespaces-with-repository.spec.js │ │ │ ├── namespaces-without-repository.spec.js │ │ │ └── namespaces.spec.js │ │ ├── plugins │ │ │ ├── plugins-with-repository.spec.js │ │ │ ├── plugins-without-repository.spec.js │ │ │ └── plugins.spec.js │ │ ├── rdf-rank │ │ │ ├── rdf-rank-with-repository.spec.js │ │ │ ├── rdf-rank-without-repository.spec.js │ │ │ └── rdf-rank.spec.js │ │ ├── repositories │ │ │ ├── repositories-view-with-repositories.spec.js │ │ │ └── repositories-view-without-repositories.spec.js │ │ ├── settings │ │ │ ├── my-settings-initial-state.spec.js │ │ │ └── my-settings.spec.js │ │ ├── sparql-template │ │ │ ├── sparql-template-create.js │ │ │ ├── sparql-template-with-repository.spec.js │ │ │ ├── sparql-template-without-repository.spec.js │ │ │ └── sparql-templates.spec.js │ │ └── users-and-access │ │ │ ├── user-and-access.spec.js │ │ │ └── users-and-access-initial-state.spec.js │ ├── sparql-editor │ │ ├── actions │ │ │ ├── execute-query.spec.js │ │ │ ├── expand-results-over-sameas.spec.js │ │ │ ├── include-inferred-statements.spec.js │ │ │ ├── inferred-sameas.spec.js │ │ │ ├── save-query.spec.js │ │ │ └── show-saved-queries.spec.js │ │ ├── internationalization.spec.js │ │ ├── saved-query │ │ │ ├── abort-query.spec.js │ │ │ ├── delete-query.spec.js │ │ │ ├── edit-query.spec.js │ │ │ ├── readonly-query.spec.js │ │ │ └── share-query.spec.js │ │ ├── sparql-editor.spec.js │ │ ├── sparql-page-with-selected-repository.spec.js │ │ ├── sparql-page-without-selected-repository.spec.js │ │ ├── yasgui-tabs.spec.js │ │ ├── yasqe-themes.spec.js │ │ └── yasr │ │ │ ├── download-as.spec.js │ │ │ ├── pagination.spec.js │ │ │ ├── table-plugin.spec.js │ │ │ └── toolbar │ │ │ └── visual-graph-button.spec.js │ └── ttyg │ │ ├── agent-list.spec.js │ │ ├── agent-select-menu.spec.js │ │ ├── chat-list.spec.js │ │ ├── chat-panel.spec.js │ │ ├── clone-agent.spec.js │ │ ├── create-agent.spec.js │ │ ├── create-chat.spec.js │ │ ├── delete-agent.spec.js │ │ ├── edit-agent.spec.js │ │ ├── ttyg-initial-state-with-configured-api-key.spec.js │ │ ├── ttyg-initial-state-with-selected-repository.spec.js │ │ ├── ttyg-initial-state-without-repositories.spec.js │ │ ├── ttyg-permission.spec.js │ │ └── ttyg-view.spec.js ├── e2e-security │ └── setup │ │ ├── home │ │ └── cookie-policy.spec.js │ │ └── users-and-access │ │ ├── create-user-permissions.spec.js │ │ ├── graphql-user.spec.js │ │ ├── repo-admin-role.spec.js │ │ ├── turn-on-security-and-password-change.spec.js │ │ ├── user-and-access.spec.js │ │ └── users-and-access-initial-state.spec.js ├── eslint.config.js ├── fixtures │ ├── cluster │ │ ├── 2-nodes-cluster-group-status-deleted.json │ │ ├── 2-nodes-cluster-group-status.json │ │ ├── 3-nodes-cluster-created.json │ │ ├── 3-nodes-cluster-group-status-after-replace.json │ │ ├── 3-nodes-cluster-group-status-building-snapshot.json │ │ ├── 3-nodes-cluster-group-status-receiving-snapshot.json │ │ ├── 3-nodes-cluster-group-status-sending-snapshot.json │ │ ├── 3-nodes-cluster-group-status-waiting-for-snapshot.json │ │ ├── 3-nodes-cluster-group-status-with-tag.json │ │ ├── 3-nodes-cluster-group-status.json │ │ ├── 4-nodes-cluster-group-status.json │ │ ├── cluster-config.json │ │ ├── cluster-node-status.json │ │ ├── delete-cluster.json │ │ ├── no-cluster-group-status.json │ │ ├── no-cluster-node-status.json │ │ ├── replace-nodes.json │ │ └── save-cluster-configuration-response.json │ ├── connectors │ │ ├── get-connectors.json │ │ ├── get-retrieval-connector-0.json │ │ ├── get-retrieval-connector.json │ │ └── get-ttyg-chatgpt-connectors.json │ ├── graph │ │ └── rdf.txt │ ├── graphdb-import │ │ ├── 0007-import-file.jsonld │ │ ├── 200-row-allianz.ttl │ │ ├── bnodes.ttl │ │ ├── graphdb-news-dataset.zip │ │ ├── italian_public_schools_links.nt.gz │ │ ├── more-files-with-error │ │ │ ├── import-resource-with-correct-data.jsonld │ │ │ ├── import-resource-with-incorrect-data.rdf │ │ │ └── import-resource-with-long-error.rdf │ │ ├── more-files │ │ │ ├── jsonld-file.jsonld │ │ │ └── rdfxml.rdf │ │ ├── ontology-and-shapes.ttl │ │ ├── people.zip │ │ ├── resource-test-data.ttl │ │ ├── sample-jsonld.json │ │ ├── swapi-dataset.ttl │ │ ├── test-trigstar.trigs │ │ ├── test_turtlestar.ttls │ │ ├── turtlestar-data.ttls │ │ └── wine.rdf │ ├── graphql │ │ ├── endpoints │ │ │ ├── graphql-endpoints-info.json │ │ │ └── no-graphql-endpoints-info.json │ │ └── soml │ │ │ ├── big-swapi-schema-broken.yaml │ │ │ ├── swapi-schema-broken.yaml │ │ │ ├── swapi-schema-broken.zip │ │ │ ├── swapi-schema-film-restricted.yaml │ │ │ ├── swapi-schema-planets.yaml │ │ │ ├── swapi-schema-species.yaml │ │ │ ├── swapi-schema.yaml │ │ │ └── swapi-schemas.zip │ ├── guides │ │ ├── guides.json │ │ ├── movies.ttl │ │ └── starwars.ttl │ ├── monitoring │ │ ├── backup-and-restore.json │ │ ├── global-operation-statuses.json │ │ └── no-operations.json │ ├── namespaces │ │ ├── get-repository-starwars-namespaces.json │ │ └── ontotext-generated-namespace.json │ ├── ontop │ │ ├── config.ttl │ │ ├── university-complete.obda │ │ ├── university-complete.properties │ │ └── university-complete.ttl │ ├── queries │ │ ├── add-statement.txt │ │ ├── construct-query.sparql │ │ ├── default-query-response.json │ │ ├── empty-query-response.json │ │ └── prefix-query.sparql │ ├── remote-location │ │ ├── add-remote-location │ │ ├── get-0-remote-locations.json │ │ ├── get-1-remote-locations.json │ │ ├── get-2-remote-locations.json │ │ ├── get-3-remote-locations.json │ │ ├── get-4-remote-locations.json │ │ ├── get-no-remote-locations.json │ │ ├── remote-location-check │ │ ├── remote-location-status-in-cluster.json │ │ ├── remote-location-status-not-in-cluster.json │ │ └── remote-locations-filter.json │ ├── repo-template.json │ ├── repositories │ │ ├── builtin_Rules.pie │ │ ├── free-access.json │ │ ├── get-locations.json │ │ ├── get-remote-and-local-repositories.json │ │ ├── get-repositories.json │ │ ├── get-repository-config-starwars-disabled-fts.json │ │ ├── get-repository-config-starwars-enabled-fts.json │ │ ├── get-ttyg-repositories.json │ │ └── invalid_builtin_Rules.pie │ ├── security │ │ └── get-admin-user.json │ ├── setup │ │ └── aclmanagement │ │ │ └── get-rules.json │ ├── similarity │ │ ├── get-similarity-indexes-0.json │ │ ├── get-similarity-indexes.json │ │ └── get-ttyg-similarity-connectors.json │ ├── snippet-import-template.json │ ├── sparql │ │ └── history-response.json │ ├── ttyg │ │ ├── agent │ │ │ ├── create-agent.json │ │ │ ├── get-agent-defaults-assistant-api.json │ │ │ ├── get-agent-defaults.json │ │ │ ├── get-agent-list-0.json │ │ │ ├── get-agent-list-after-deleted.json │ │ │ ├── get-agent-list-autocomplete-query.json │ │ │ ├── get-agent-list-new-agent.json │ │ │ ├── get-agent-list-with-incompatible-agents.json │ │ │ ├── get-agent-list.json │ │ │ ├── get-agent.json │ │ │ ├── get-similarity-indexes-for-another-repo.json │ │ │ └── get-similarity-indexes.json │ │ ├── autocomplete-response.json │ │ └── chats │ │ │ ├── ask-question-cancel.json │ │ │ ├── ask-question.json │ │ │ ├── cancel-question-response.json │ │ │ ├── create │ │ │ ├── create-chat-response.json │ │ │ ├── get-chats-after-create.json │ │ │ ├── get-chats-before-create.json │ │ │ └── question-response-after-chat-creation.json │ │ │ ├── deleted-chat.json │ │ │ ├── explain-response-1.json │ │ │ ├── explain-response-2.json │ │ │ ├── export-chat.json │ │ │ ├── get-chat-list-0.json │ │ │ ├── get-chat-list-with-deleted-chat.json │ │ │ ├── get-chat-list-with-renamed-chat.json │ │ │ ├── get-chat-list.json │ │ │ ├── get-chat.json │ │ │ └── renamed-chat.json │ └── url-import-template.json ├── package-lock.json ├── package.json ├── plugins │ └── index.js ├── steps │ ├── alert-dialog-steps.js │ ├── application-steps.js │ ├── base-steps.js │ ├── class-views-steps.js │ ├── cluster │ │ ├── cluster-configuration-steps.js │ │ ├── cluster-page-steps.js │ │ ├── cluster-view-steps.js │ │ ├── custer-nodes-configuration-steps.js │ │ └── delete-cluster-dialog-steps.js │ ├── error-steps.js │ ├── explore │ │ ├── class-relationships-steps.js │ │ ├── graphs-overview-steps.js │ │ ├── similarity-index-create-steps.js │ │ └── similarity-indexes-steps.js │ ├── graphql │ │ ├── create-graphql-endpoint-steps.js │ │ ├── edit-graphql-endpoint-steps.js │ │ ├── generation-report-modal-steps.js │ │ ├── graphiql-editor-tools-steps.js │ │ ├── graphiql-playground-steps.js │ │ ├── graphql-endpoint-management-steps.js │ │ ├── graphql-playground-steps.js │ │ └── import-endpoint-definition-modal-steps.js │ ├── guides │ │ ├── guide-dialog-steps.js │ │ ├── guide-steps.js │ │ ├── movies-guide-steps.js │ │ └── star-wars-guide-steps.js │ ├── home-steps.js │ ├── import │ │ ├── file-overwrite-dialog-steps.js │ │ ├── import-resource-message-dialog.js │ │ ├── import-server-files-steps.js │ │ ├── import-settings-dialog-steps.js │ │ ├── import-steps.js │ │ ├── import-test-constants.js │ │ └── import-user-data-steps.js │ ├── json-ld-modal-steps.js │ ├── language-selector-steps.js │ ├── license-steps.js │ ├── loader-steps.js │ ├── login-steps.js │ ├── lucene-connector-steps.js │ ├── main-menu-steps.js │ ├── modal-dialog-steps.js │ ├── monitoring │ │ ├── backup-and-restore-steps.js │ │ ├── queries-and-updates-steps.js │ │ └── system-monitoring-steps.js │ ├── not-found │ │ └── not-found-steps.js │ ├── ontop-repository-steps.js │ ├── operations-statuses-component-steps.js │ ├── rdf-resource-search-steps.js │ ├── repositories │ │ └── attach-repository-steps.js │ ├── repository-selector-steps.js │ ├── repository-steps.js │ ├── resource │ │ ├── resource-edit-steps.js │ │ └── resource-steps.js │ ├── rest-api-documentation-steps.js │ ├── setup │ │ ├── acl-management-steps.js │ │ ├── autocomplete-steps.js │ │ ├── connectors-steps.js │ │ ├── jdbc-create-steps.js │ │ ├── jdbc-steps.js │ │ ├── namespace-steps.js │ │ ├── plugins-steps.js │ │ ├── rdf-rank-steps.js │ │ ├── settings-steps.js │ │ ├── sparql-create-update-steps.js │ │ ├── sparql-templates-steps.js │ │ └── user-and-access-steps.js │ ├── sparql-editor-steps.js │ ├── sparql-steps.js │ ├── system-information-steps.js │ ├── toaster-steps.js │ ├── ttyg │ │ ├── chat-panel-steps.js │ │ ├── ttyg-agent-settings-modal.steps.js │ │ └── ttyg-view-steps.js │ ├── visual-graph-steps.js │ ├── widgets │ │ ├── active-repository-widget-steps.js │ │ ├── license-widget-steps.js │ │ ├── repository-errors-widget-steps.js │ │ └── saved-sparql-queries-widget-steps.js │ ├── window-steps.js │ └── yasgui │ │ ├── confirmation-dialog-steps.js │ │ ├── pagination-steps.js │ │ ├── plugin │ │ └── error-plugin-steps.js │ │ ├── save-query-dialog.js │ │ ├── saved-queries-dialog.js │ │ ├── saved-query.js │ │ ├── share-saved-query-dialog.js │ │ ├── table-plugin-steps.js │ │ ├── yasgui-loader.js │ │ ├── yasgui-steps.js │ │ ├── yasqe-steps.js │ │ └── yasr-steps.js ├── stubs │ ├── autocomplete │ │ └── autocomplete-stubs.js │ ├── backup-and-restore-stubs.js │ ├── browser-stubs.js │ ├── cluster │ │ ├── cluster-stubs.js │ │ └── remote-location-stubs.js │ ├── connector-stubs.js │ ├── environment-stubs.js │ ├── global-operations-statuses-stub.js │ ├── graphql │ │ └── graphql-stubs.js │ ├── jdbc │ │ └── jdbc-stubs.js │ ├── license-stubs.js │ ├── namespace-stubs.js │ ├── query-stubs.js │ ├── repositories │ │ └── repositories-stubs.js │ ├── saved-queries-stubs.js │ ├── security-stubs.js │ ├── setup │ │ └── plugins-stubs.js │ ├── similarity-index-stubs.js │ ├── stubs.js │ ├── ttyg │ │ └── ttyg-stubs.js │ └── yasgui │ │ ├── connectors-stubs.js │ │ └── query-stubs.js ├── support │ ├── commands.js │ ├── e2e.js │ ├── import-commands.js │ ├── repository-commands.js │ ├── security-command.js │ ├── settings-commands.js │ ├── sparql-commands.js │ ├── user-commands.js │ └── visual-graph-commands.js └── utils │ └── html-util.js ├── eslint.config.base.js ├── license-checker ├── README ├── license-checker-format.json └── license-checker-static.json ├── licenses ├── D3_LICENSE.txt ├── LICENSE ├── REQUIREJS_LICENSE.txt ├── THIRDPARTY_LICENSES.txt └── YASGUI_LICENSE.txt ├── lint-staged.config.js ├── package.json ├── packages ├── api │ ├── .babelrc │ ├── .env.test │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── global.d.ts │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── declarations.d.ts │ │ ├── emitters │ │ │ ├── emitter.ts │ │ │ └── event.emitter.ts │ │ ├── error │ │ │ ├── class-not-initializable │ │ │ │ └── class-not-initializable-error.ts │ │ │ ├── error-base.ts │ │ │ └── index.ts │ │ ├── interceptor │ │ │ ├── auth │ │ │ │ ├── auth-request-interceptor.ts │ │ │ │ ├── test │ │ │ │ │ ├── auth-request-interceptor.spec.ts │ │ │ │ │ ├── unauthenticated-interceptor.spec.ts │ │ │ │ │ └── unauthorized-interceptor.spec.ts │ │ │ │ ├── unauthenticated-interceptor.ts │ │ │ │ └── unauthorized-interceptor.ts │ │ │ └── index.ts │ │ ├── models │ │ │ ├── app-lifecycle │ │ │ │ ├── index.ts │ │ │ │ └── lifecycle-state.ts │ │ │ ├── application-settings │ │ │ │ ├── application-settings.ts │ │ │ │ └── index.ts │ │ │ ├── common │ │ │ │ ├── awaitable.ts │ │ │ │ ├── copyable.ts │ │ │ │ ├── id-model.ts │ │ │ │ ├── index.ts │ │ │ │ ├── model-list.ts │ │ │ │ ├── model.ts │ │ │ │ ├── subscription-list.ts │ │ │ │ ├── subscription.ts │ │ │ │ └── test │ │ │ │ │ ├── model-list.spec.ts │ │ │ │ │ ├── model.spec.ts │ │ │ │ │ └── subscription-list.spec.ts │ │ │ ├── configuration │ │ │ │ ├── configuration.ts │ │ │ │ ├── environment.ts │ │ │ │ └── index.ts │ │ │ ├── context │ │ │ │ ├── before-change-validation-promise.ts │ │ │ │ ├── test │ │ │ │ │ └── value-context.spec.ts │ │ │ │ ├── update-context-method.ts │ │ │ │ ├── value-change-callback.ts │ │ │ │ └── value-context.ts │ │ │ ├── cookie │ │ │ │ ├── cookie-consent.ts │ │ │ │ └── index.ts │ │ │ ├── data-structures │ │ │ │ ├── queue.ts │ │ │ │ └── test │ │ │ │ │ └── queue.spec.ts │ │ │ ├── events │ │ │ │ ├── auth │ │ │ │ │ ├── login.ts │ │ │ │ │ └── logout.ts │ │ │ │ ├── event-name.ts │ │ │ │ ├── event-observer.ts │ │ │ │ ├── event.ts │ │ │ │ ├── index.ts │ │ │ │ └── navigation │ │ │ │ │ ├── navigation-end-payload.ts │ │ │ │ │ ├── navigation-end.ts │ │ │ │ │ ├── navigation-start-payload.ts │ │ │ │ │ └── navigation-start.ts │ │ │ ├── http │ │ │ │ ├── http-error-response.ts │ │ │ │ ├── http-options.ts │ │ │ │ ├── http-request-config.ts │ │ │ │ ├── http-request.ts │ │ │ │ ├── http-response-base.ts │ │ │ │ ├── http-response.ts │ │ │ │ └── index.ts │ │ │ ├── interceptor │ │ │ │ ├── http-interceptor-list.ts │ │ │ │ ├── http-interceptor.ts │ │ │ │ └── index.ts │ │ │ ├── language │ │ │ │ ├── available-language.ts │ │ │ │ ├── available-languages-list.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language-config.ts │ │ │ │ └── translation-bundle.ts │ │ │ ├── license │ │ │ │ ├── capability-list.ts │ │ │ │ ├── capability.ts │ │ │ │ ├── index.ts │ │ │ │ ├── license.ts │ │ │ │ ├── product-type.ts │ │ │ │ ├── product.ts │ │ │ │ └── response-models │ │ │ │ │ └── license-response.ts │ │ │ ├── logging │ │ │ │ ├── log-level.ts │ │ │ │ ├── logger-config.ts │ │ │ │ ├── logger-definitions.ts │ │ │ │ ├── logger-type.ts │ │ │ │ └── logger.ts │ │ │ ├── monitoring │ │ │ │ ├── index.ts │ │ │ │ ├── operation-group-summary-list.ts │ │ │ │ ├── operation-group-summary.ts │ │ │ │ ├── operation-group.ts │ │ │ │ ├── operation-list.ts │ │ │ │ ├── operation-status-summary.ts │ │ │ │ ├── operation-status.ts │ │ │ │ ├── operation-type.ts │ │ │ │ └── operation.ts │ │ │ ├── notification │ │ │ │ ├── index.ts │ │ │ │ ├── notification-param.ts │ │ │ │ ├── notification-type.ts │ │ │ │ └── notification.ts │ │ │ ├── plugins │ │ │ │ ├── extension-point.ts │ │ │ │ ├── index.ts │ │ │ │ ├── plugin-definition-list.ts │ │ │ │ ├── plugin-definition.ts │ │ │ │ ├── plugin-module.ts │ │ │ │ ├── plugin-registry.ts │ │ │ │ ├── plugins-manifest-response.ts │ │ │ │ └── plugins-manifest.ts │ │ │ ├── product-info │ │ │ │ ├── index.ts │ │ │ │ └── product-info.ts │ │ │ ├── rdf-search │ │ │ │ ├── api │ │ │ │ │ ├── autocomplete-search-result-response.ts │ │ │ │ │ └── suggestion-response.ts │ │ │ │ ├── autocomplete-search-result.ts │ │ │ │ ├── index.ts │ │ │ │ ├── search-button-config.ts │ │ │ │ ├── search-button-list.ts │ │ │ │ ├── search-button.ts │ │ │ │ ├── suggestion-list.ts │ │ │ │ ├── suggestion-selected-payload.ts │ │ │ │ ├── suggestion-type.ts │ │ │ │ └── suggestion.ts │ │ │ ├── repositories │ │ │ │ ├── index.ts │ │ │ │ ├── namespace │ │ │ │ │ ├── api │ │ │ │ │ │ ├── namespace-response.ts │ │ │ │ │ │ └── namespaces-response.ts │ │ │ │ │ └── namespace-map.ts │ │ │ │ ├── repository-list.ts │ │ │ │ ├── repository-reference.ts │ │ │ │ ├── repository-size-info.ts │ │ │ │ ├── repository-state.ts │ │ │ │ ├── repository-type.ts │ │ │ │ ├── repository.ts │ │ │ │ └── test │ │ │ │ │ ├── repository-list.spec.ts │ │ │ │ │ └── repository.spec.ts │ │ │ ├── repository-location │ │ │ │ ├── index.ts │ │ │ │ ├── repository-location-type.ts │ │ │ │ └── repository-location.ts │ │ │ ├── routing │ │ │ │ ├── external-route-item-model.ts │ │ │ │ ├── route-item-model.ts │ │ │ │ └── route-regex-param-pair.ts │ │ │ ├── security │ │ │ │ ├── auth-settings.ts │ │ │ │ ├── authenticated-user.ts │ │ │ │ ├── authentication-type.ts │ │ │ │ ├── authentication │ │ │ │ │ ├── auth-strategy-type.ts │ │ │ │ │ ├── auth-strategy.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── login-data.ts │ │ │ │ │ ├── openid-auth-flow-models.ts │ │ │ │ │ ├── openid-refresh-token-configuration.ts │ │ │ │ │ └── openid-token-type.ts │ │ │ │ ├── authorization │ │ │ │ │ ├── authorities-ui-model.ts │ │ │ │ │ ├── authority-list.ts │ │ │ │ │ ├── authority.ts │ │ │ │ │ ├── graphdb-authorities-model.ts │ │ │ │ │ └── repositories-permissions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── openid-security-config.ts │ │ │ │ ├── response-models │ │ │ │ │ ├── auth-settings-request-model.ts │ │ │ │ │ ├── auth-settings-response-model.ts │ │ │ │ │ ├── authenticated-user-response.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── restricted-pages.ts │ │ │ │ ├── rights.ts │ │ │ │ ├── security-config.ts │ │ │ │ └── test │ │ │ │ │ ├── authenticated-user.spec.ts │ │ │ │ │ ├── authority-list.spec.ts │ │ │ │ │ └── restricted-pages.spec.ts │ │ │ ├── single-spa │ │ │ │ ├── index.ts │ │ │ │ └── single-spa.ts │ │ │ ├── storage │ │ │ │ ├── index.ts │ │ │ │ ├── storage-data.ts │ │ │ │ ├── storage-key.ts │ │ │ │ └── test │ │ │ │ │ └── storage-data.spec.ts │ │ │ ├── toastr │ │ │ │ ├── index.ts │ │ │ │ ├── toast-config.ts │ │ │ │ ├── toast-message-list.ts │ │ │ │ ├── toast-message.ts │ │ │ │ ├── toast-type.ts │ │ │ │ ├── toastr-config.ts │ │ │ │ ├── toastr-constants.ts │ │ │ │ └── toastr-position.ts │ │ │ ├── translation │ │ │ │ ├── index.ts │ │ │ │ └── translation-parameter.ts │ │ │ ├── url │ │ │ │ ├── index.ts │ │ │ │ └── url-path-params.ts │ │ │ └── users │ │ │ │ ├── app-settings.ts │ │ │ │ ├── index.ts │ │ │ │ ├── response-models │ │ │ │ ├── user-request.ts │ │ │ │ └── user-response.ts │ │ │ │ └── user.ts │ │ ├── ontotext-workbench-api.ts │ │ ├── providers │ │ │ ├── index.ts │ │ │ ├── mapper │ │ │ │ ├── mapper.provider.ts │ │ │ │ ├── mapper.ts │ │ │ │ └── test │ │ │ │ │ └── mapper.provider.spec.ts │ │ │ └── service │ │ │ │ ├── lifecycle-hooks.ts │ │ │ │ ├── service-inject.ts │ │ │ │ ├── service.provider.ts │ │ │ │ ├── service.ts │ │ │ │ └── test │ │ │ │ └── service.provider.spec.ts │ │ └── services │ │ │ ├── app-lifecycle │ │ │ ├── application-lifecycle-context.service.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── application-lifecycle.context.service.spec.ts │ │ │ ├── application-settings │ │ │ ├── application-settings-storage.service.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── application-settings-storage.service.spec.ts │ │ │ ├── autocomplete │ │ │ ├── autocomplete-context.service.ts │ │ │ ├── autocomplete-rest.service.ts │ │ │ ├── autocomplete-storage.service.ts │ │ │ ├── autocomplete.service.ts │ │ │ ├── index.ts │ │ │ ├── mapper │ │ │ │ ├── autocomplete-search-result.mapper.ts │ │ │ │ └── test │ │ │ │ │ └── autocomplete-search-result.mapper.spec.ts │ │ │ └── test │ │ │ │ ├── autocomplete-context.service.spec.ts │ │ │ │ ├── autocomplete-storage.service.spec.ts │ │ │ │ └── autocomplete.service.spec.ts │ │ │ ├── configuration │ │ │ ├── configuration-context.service.ts │ │ │ ├── configuration-rest.service.ts │ │ │ ├── configuration.service.ts │ │ │ ├── env.default.json │ │ │ ├── index.ts │ │ │ ├── missing-application-configuration-error.ts │ │ │ └── test │ │ │ │ ├── configuration-context.service.spec.ts │ │ │ │ └── configuration.service.spec.ts │ │ │ ├── context │ │ │ ├── context-subscription-manager.ts │ │ │ ├── context.service.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ ├── context-subscription-manager.spec.ts │ │ │ │ └── context.service.spec.ts │ │ │ ├── cookie │ │ │ ├── cookie.service.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── cookie.service.spec.ts │ │ │ ├── event-service │ │ │ ├── event.service.ts │ │ │ ├── index.ts │ │ │ └── test │ │ │ │ └── event.service.spec.ts │ │ │ ├── http │ │ │ ├── http.service.ts │ │ │ └── test │ │ │ │ ├── http.service.spec.ts │ │ │ │ └── response-mock.ts │ │ │ ├── interceptor │ │ │ ├── interceptor.service.ts │ │ │ └── test │ │ │ │ └── interceptor.service.spec.ts │ │ │ ├── language │ │ │ ├── index.ts │ │ │ ├── language-context.service.ts │ │ │ ├── language-rest.service.ts │ │ │ ├── language-storage.service.ts │ │ │ ├── language.service.ts │ │ │ ├── mappers │ │ │ │ ├── available-languages-list-mapper.ts │ │ │ │ ├── language-config-mapper.ts │ │ │ │ └── test │ │ │ │ │ ├── available-languages-list-mapper.spec.ts │ │ │ │ │ └── language-config-mapper.spec.ts │ │ │ └── test │ │ │ │ ├── language-context.service.spec.ts │ │ │ │ ├── language-storage.service.spec.ts │ │ │ │ └── language.service.spec.ts │ │ │ ├── license │ │ │ ├── index.ts │ │ │ ├── license-context.service.ts │ │ │ ├── license-rest.service.ts │ │ │ ├── license.service.ts │ │ │ ├── mappers │ │ │ │ ├── capability-list.mapper.ts │ │ │ │ ├── license-response-mapper.spec.ts │ │ │ │ └── license-response-mapper.ts │ │ │ └── test │ │ │ │ ├── license-context.service.spec.ts │ │ │ │ ├── license-rest.service.spec.ts │ │ │ │ └── license.service.spec.ts │ │ │ ├── logging │ │ │ ├── console │ │ │ │ └── console-logger.service.ts │ │ │ ├── index.ts │ │ │ ├── logger-provider.ts │ │ │ ├── logger-service.ts │ │ │ ├── loggers.ts │ │ │ └── test │ │ │ │ └── loggers.spec.ts │ │ │ ├── monitoring │ │ │ ├── index.ts │ │ │ ├── mapper │ │ │ │ ├── operation-group-summary-list.mapper.ts │ │ │ │ ├── operation-list.mapper.ts │ │ │ │ ├── operation-summary-mapper.ts │ │ │ │ └── test │ │ │ │ │ ├── operation-group-summary-list.mapper.spec.ts │ │ │ │ │ ├── operation-list.mapper.spec.ts │ │ │ │ │ └── operation-summary-mapper.spec.ts │ │ │ ├── monitoring-rest.service.ts │ │ │ ├── monitoring.service.ts │ │ │ └── test │ │ │ │ └── monigoring.service.spec.ts │ │ │ ├── namespace │ │ │ ├── index.ts │ │ │ ├── namespaces-context.service.ts │ │ │ ├── namespaces-rest.service.ts │ │ │ ├── namespaces.service.ts │ │ │ └── test │ │ │ │ ├── namespaces-context.service.spec.ts │ │ │ │ └── namespaces.service.spec.ts │ │ │ ├── navigation │ │ │ ├── index.ts │ │ │ └── navigation-context.service.ts │ │ │ ├── notification │ │ │ ├── index.ts │ │ │ ├── notification.service.ts │ │ │ └── test │ │ │ │ └── notification.service.spec.ts │ │ │ ├── plugins │ │ │ ├── index.ts │ │ │ ├── mapper │ │ │ │ └── plugins-manifest.mapper.ts │ │ │ ├── plugins-rest.service.ts │ │ │ ├── plugins.service.ts │ │ │ └── test │ │ │ │ └── plugins.service.spec.ts │ │ │ ├── product-info │ │ │ ├── index.ts │ │ │ ├── mappers │ │ │ │ ├── product-info.mapper.spec.ts │ │ │ │ └── product-info.mapper.ts │ │ │ ├── product-info-context.service.ts │ │ │ ├── product-info-rest.service.ts │ │ │ ├── product-info.service.ts │ │ │ └── test │ │ │ │ ├── product-info-context.service.spec.ts │ │ │ │ └── product-info.service.spec.ts │ │ │ ├── rdf-search │ │ │ ├── index.ts │ │ │ ├── mapper │ │ │ │ ├── suggestion-list.mapper.ts │ │ │ │ └── test │ │ │ │ │ └── suggestion-list.mapper.spec.ts │ │ │ ├── resource-search-storage.service.ts │ │ │ └── test │ │ │ │ └── resource-search-storage.service.spec.ts │ │ │ ├── repository-location │ │ │ ├── index.ts │ │ │ ├── mappers │ │ │ │ ├── repository-location.mapper.ts │ │ │ │ └── test │ │ │ │ │ └── repository-location.mapper.spec.ts │ │ │ ├── repository-location-context.service.ts │ │ │ ├── repository-location-rest.service.ts │ │ │ ├── repository-location.service.ts │ │ │ └── test │ │ │ │ ├── repository-location-context.service.spec.ts │ │ │ │ ├── repository-location-mock-provider.ts │ │ │ │ └── repository-location.service.spec.ts │ │ │ ├── repository │ │ │ ├── index.ts │ │ │ ├── mappers │ │ │ │ ├── namespace-map.mapper.ts │ │ │ │ ├── repository-list.mapper.ts │ │ │ │ ├── repository-size-info.mapper.ts │ │ │ │ ├── repository.mapper.ts │ │ │ │ └── test │ │ │ │ │ ├── namespace-map.mapper.spec.ts │ │ │ │ │ ├── repository-list.mapper.spec.ts │ │ │ │ │ ├── repository-size-info.mapper.spec.ts │ │ │ │ │ └── repository.mapper.spec.ts │ │ │ ├── repository-context.service.ts │ │ │ ├── repository-rest.service.ts │ │ │ ├── repository-storage.service.ts │ │ │ ├── repository.service.ts │ │ │ └── test │ │ │ │ ├── repository-context.service.spec.ts │ │ │ │ ├── repository-mock-provider.ts │ │ │ │ └── repository.service.spec.ts │ │ │ ├── routing │ │ │ ├── routing.service.ts │ │ │ └── test │ │ │ │ └── routing.service.spec.ts │ │ │ ├── security │ │ │ ├── auth-strategies │ │ │ │ ├── base-gdb-login-strategy.ts │ │ │ │ ├── external-strategy.ts │ │ │ │ ├── gdb-token-auth-strategy.ts │ │ │ │ ├── no-security-strategy.ts │ │ │ │ ├── openid-auth-strategy.ts │ │ │ │ └── tests │ │ │ │ │ ├── base-gdb-login-strategy.spec.ts │ │ │ │ │ ├── external-strategy.spec.ts │ │ │ │ │ ├── gdb-token-auth-strategy.spec.ts │ │ │ │ │ ├── no-security-strategy.spec.ts │ │ │ │ │ ├── openid-auth-strategy.spec.ts │ │ │ │ │ └── provider-response-mocks.ts │ │ │ ├── auth-strategy-resolver.ts │ │ │ ├── authentication-storage.service.ts │ │ │ ├── authentication.service.ts │ │ │ ├── authorization.service.ts │ │ │ ├── errors │ │ │ │ ├── authentication-strategy-not-set.ts │ │ │ │ ├── missing-token-in-header.ts │ │ │ │ ├── openid │ │ │ │ │ ├── invalid-jwt-token.ts │ │ │ │ │ ├── invalid-openid-auth-flow.ts │ │ │ │ │ ├── missing-authorization-code.ts │ │ │ │ │ ├── missing-openid-configuration.ts │ │ │ │ │ └── openid-error.ts │ │ │ │ ├── operation-not-supported.ts │ │ │ │ └── response-mapping-error.ts │ │ │ ├── index.ts │ │ │ ├── mappers │ │ │ │ ├── auth-settings.mapper.ts │ │ │ │ ├── authenticated-user.mapper.ts │ │ │ │ ├── authority-list.mapper.ts │ │ │ │ ├── granted-authorities-ui-model.mapper.ts │ │ │ │ ├── graphdb-authorities-model-mapper.ts │ │ │ │ ├── security-config.mapper.ts │ │ │ │ └── test │ │ │ │ │ ├── auth-settings.mapper.spec.ts │ │ │ │ │ ├── authenticated-user.mapper.spec.ts │ │ │ │ │ ├── authority-list.mapper.spec.ts │ │ │ │ │ ├── backend-authorities-mapper.spec.ts │ │ │ │ │ ├── granted-authorities-ui-model.mapper.spec.ts │ │ │ │ │ └── security-config.mapper.spec.ts │ │ │ ├── openid │ │ │ │ ├── index.ts │ │ │ │ ├── openid-auth-flow-handler.ts │ │ │ │ ├── openid-rest-service.ts │ │ │ │ ├── openid-service.ts │ │ │ │ ├── openid-storage.service.ts │ │ │ │ ├── openid-token-refresh-manager.ts │ │ │ │ ├── openid-token-utils.ts │ │ │ │ ├── openid-url-builder.ts │ │ │ │ ├── openid-utils.ts │ │ │ │ └── test │ │ │ │ │ ├── openid-auth-flow-handler.spec.ts │ │ │ │ │ ├── openid-rest-service.spec.ts │ │ │ │ │ ├── openid-service.spec.ts │ │ │ │ │ ├── openid-token-refresh-manager.spec.ts │ │ │ │ │ ├── openid-token-utils.spec.ts │ │ │ │ │ ├── openid-url-builder.spec.ts │ │ │ │ │ └── openid-utils.spec.ts │ │ │ ├── security-context.service.ts │ │ │ ├── security-rest.service.ts │ │ │ ├── security.service.ts │ │ │ ├── test │ │ │ │ ├── auth-strategy-resolver.spec.ts │ │ │ │ ├── authentication-storage.service.spec.ts │ │ │ │ ├── authentication.service.spec.ts │ │ │ │ ├── authorization.service.spec.ts │ │ │ │ ├── security-context.service.spec.ts │ │ │ │ ├── security-rest.service.spec.ts │ │ │ │ └── security.service.spec.ts │ │ │ └── utils │ │ │ │ └── authorities-util.ts │ │ │ ├── storage │ │ │ ├── index.ts │ │ │ ├── local-storage-subscription-handler.service.ts │ │ │ ├── local-storage.service.ts │ │ │ ├── persistence.ts │ │ │ └── test │ │ │ │ ├── local-storage-subscription-handler.service.spec.ts │ │ │ │ └── local-storage.service.spec.ts │ │ │ ├── theme │ │ │ ├── index.ts │ │ │ ├── test │ │ │ │ └── theme.service.spec.ts │ │ │ └── theme.service.ts │ │ │ ├── toastr │ │ │ ├── index.ts │ │ │ ├── mappers │ │ │ │ ├── onto-toastr.mapper.ts │ │ │ │ └── test │ │ │ │ │ └── onto-toastr-mapper.spec.ts │ │ │ ├── onto-toastr.service.ts │ │ │ └── test │ │ │ │ └── onto-toastr.service.spec.ts │ │ │ ├── user-permission │ │ │ └── user-permission-storage.service.ts │ │ │ ├── users │ │ │ ├── index.ts │ │ │ ├── test │ │ │ │ ├── user-request.mapper.spec.ts │ │ │ │ ├── user-response.mapper.spec.ts │ │ │ │ ├── users-rest.service.spec.ts │ │ │ │ └── users.service.spec.ts │ │ │ ├── user-request.mapper.ts │ │ │ ├── user-response.mapper.ts │ │ │ ├── users-rest.service.ts │ │ │ └── users.service.ts │ │ │ ├── utils │ │ │ ├── build-util.ts │ │ │ ├── fibonacci-generator.ts │ │ │ ├── generator-utils.ts │ │ │ ├── index.ts │ │ │ ├── object-util.ts │ │ │ ├── routing-utils.ts │ │ │ ├── test │ │ │ │ ├── fibonacci-generator.spec.ts │ │ │ │ ├── generator-utils.spec.ts │ │ │ │ ├── local-storage-mock.ts │ │ │ │ ├── object-util.spec.ts │ │ │ │ ├── security-config-test-util.ts │ │ │ │ ├── test-util.ts │ │ │ │ └── uri-util.spec.ts │ │ │ └── uri-util.ts │ │ │ └── window │ │ │ ├── index.ts │ │ │ └── window.service.ts │ ├── tsconfig.json │ └── webpack.config.js ├── legacy-workbench │ ├── .babelrc │ ├── .dockerignore │ ├── .editorconfig │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── Dockerfile │ ├── Jenkinsfile │ ├── JenkinsfileRelease │ ├── README.md │ ├── docker-compose.yml │ ├── docker-rootfs │ │ ├── etc │ │ │ └── nginx │ │ │ │ └── conf.d │ │ │ │ └── default.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ └── start-workbench.sh │ ├── eslint.config.cjs │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ ├── copyfiles.js │ │ ├── license-report.js │ │ ├── run-cypress-tests.sh │ │ └── validate-translations.js │ ├── sonar-project.js │ └── src │ │ ├── app.js │ │ ├── css │ │ ├── aclmanagement.css │ │ ├── angular-tooltips.css │ │ ├── autocomplete-select.css │ │ ├── autocomplete.css │ │ ├── backup-and-restore.css │ │ ├── bootstrap-graphdb-theme.css │ │ ├── cluster-nodes-configuration.css │ │ ├── clustermanagement.css │ │ ├── cookie-policy.css │ │ ├── create-similarity-index.css │ │ ├── dependencies.css │ │ ├── domain-range-graph.css │ │ ├── dynamic-form.css │ │ ├── editable-content.css │ │ ├── explore.css │ │ ├── export.css │ │ ├── find.css │ │ ├── graphql │ │ │ ├── create-graphql-endpoint.css │ │ │ ├── endpoint-generation-failure-result-modal.css │ │ │ ├── graphql-endpoint-configuration-modal.css │ │ │ ├── graphql-endpoint-management.css │ │ │ ├── graphql-playground.css │ │ │ └── import-endpoint-definition-modal.css │ │ ├── graphs-config.css │ │ ├── graphs-vizualizations.css │ │ ├── guides.css │ │ ├── home.css │ │ ├── images │ │ │ ├── expand.png │ │ │ ├── labels-size.png │ │ │ ├── node.png │ │ │ ├── predicates.png │ │ │ ├── query.png │ │ │ ├── remove-16x16.svg │ │ │ ├── remove-32x32.svg │ │ │ ├── search.png │ │ │ └── side-panel.png │ │ ├── import-resource-tree.css │ │ ├── import.css │ │ ├── jdbc-create.css │ │ ├── jmx.css │ │ ├── lib │ │ │ ├── animate │ │ │ │ ├── 3.2.0 │ │ │ │ │ └── animate.min.css │ │ │ │ └── animate.css │ │ │ ├── codemirror │ │ │ │ └── moxer.css │ │ │ ├── ontotext-yasgui-web-component.css │ │ │ └── swagger-ui.min.css │ │ ├── markdown-content.css │ │ ├── multiselect-search.css │ │ ├── operations-statuses-monitor.css │ │ ├── plugins.css │ │ ├── rdf-class-hierarchy-labels.css │ │ ├── rdf-class-hierarchy.css │ │ ├── rdf-details-side-panel.css │ │ ├── rdf-resource-search.css │ │ ├── rdfrank.css │ │ ├── repositories.css │ │ ├── repository.create.css │ │ ├── search-resource-input.css │ │ ├── shepherd-custom.css │ │ ├── shuttle-multiselect.css │ │ ├── similarity.css │ │ ├── sparql-editor.css │ │ ├── sparql-templates.css │ │ ├── swagger.custom.css │ │ ├── ttyg │ │ │ ├── agent-instructions-explain-modal.css │ │ │ ├── agent-list.css │ │ │ ├── agent-select-menu.css │ │ │ ├── agent-settings-modal.css │ │ │ ├── chat-item-details.css │ │ │ ├── chat-list.css │ │ │ ├── chat-panel.css │ │ │ ├── external-integration-configuration-modal.css │ │ │ ├── no-agents-view.css │ │ │ └── ttyg.css │ │ ├── user.css │ │ ├── ux-test1.css │ │ ├── wizard.css │ │ └── workbench-custom.css │ │ ├── font │ │ ├── OpenSans │ │ │ ├── LICENSE.txt │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-Bold.woff │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ ├── OpenSans-BoldItalic.woff │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBold.woff │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ ├── OpenSans-ExtraBoldItalic.woff │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Italic.woff │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-Light.woff │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ ├── OpenSans-LightItalic.woff │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Regular.woff │ │ │ ├── OpenSans-Semibold.ttf │ │ │ ├── OpenSans-Semibold.woff │ │ │ ├── OpenSans-SemiboldItalic.ttf │ │ │ └── OpenSans-SemiboldItalic.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── i18n │ │ ├── languages.json │ │ ├── locale-en.json │ │ └── locale-fr.json │ │ ├── img │ │ ├── FEBD255B684CDFDF.png │ │ ├── ajax-loader.gif │ │ ├── forest.gif │ │ ├── graphdb-logo-no-text.svg │ │ ├── graphdb-logo-sq.svg │ │ ├── graphdb-logo.svg │ │ ├── graphdb-splash.svg │ │ ├── loading.gif │ │ ├── loading2.gif │ │ ├── ontotext-logo.png │ │ ├── rank0.gif │ │ ├── rank1.gif │ │ ├── rank10.gif │ │ ├── rank2.gif │ │ ├── rank3.gif │ │ ├── rank4.gif │ │ ├── rank5.gif │ │ ├── rank6.gif │ │ ├── rank7.gif │ │ ├── rank8.gif │ │ └── rank9.gif │ │ ├── js │ │ ├── angular │ │ │ ├── aclmanagement │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── directives │ │ │ │ │ └── custom-role-handler.directive.js │ │ │ │ ├── model.js │ │ │ │ └── plugin.js │ │ │ ├── autocomplete │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ └── modal │ │ │ │ │ └── add-label.html │ │ │ ├── backup-and-restore │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ └── plugin.js │ │ │ ├── clustermanagement │ │ │ │ ├── app.js │ │ │ │ ├── controllers │ │ │ │ │ ├── cluster-management.controller.js │ │ │ │ │ ├── delete-cluster.controller.js │ │ │ │ │ ├── edit-cluster-nodes-modal.controller.js │ │ │ │ │ └── edit-cluster.controller.js │ │ │ │ ├── directives │ │ │ │ │ ├── cluster-configuration │ │ │ │ │ │ ├── cluster-configuration.directive.js │ │ │ │ │ │ ├── cluster-nodes.directive.js │ │ │ │ │ │ ├── cluster-properties.directive.js │ │ │ │ │ │ └── multi-region.directive.js │ │ │ │ │ ├── cluster-graphical-view.directive.js │ │ │ │ │ ├── cluster-legend.directive.js │ │ │ │ │ └── cluster-nodes-configuration.directive.js │ │ │ │ ├── events.js │ │ │ │ ├── plugin.js │ │ │ │ ├── services │ │ │ │ │ ├── cluster-context.service.js │ │ │ │ │ ├── cluster-drawing.service.js │ │ │ │ │ ├── cluster-view-context.service.js │ │ │ │ │ └── remote-locations.service.js │ │ │ │ └── templates │ │ │ │ │ ├── cluster-configuration.html │ │ │ │ │ ├── cluster-configuration │ │ │ │ │ ├── cluster-configuration.html │ │ │ │ │ ├── cluster-nodes.html │ │ │ │ │ ├── cluster-properties.html │ │ │ │ │ └── multi-region.html │ │ │ │ │ ├── cluster-legend.html │ │ │ │ │ ├── cluster-nodes-configuration.html │ │ │ │ │ └── modal │ │ │ │ │ ├── cluster-delete-dialog.html │ │ │ │ │ ├── cluster-edit-dialog.html │ │ │ │ │ ├── edit-cluster-nodes-modal.html │ │ │ │ │ └── secondary-mode-modal.html │ │ │ ├── controllers.js │ │ │ ├── core │ │ │ │ ├── angularCancelOnNavigateModule.js │ │ │ │ ├── components │ │ │ │ │ └── export-settings-modal │ │ │ │ │ │ ├── controller.js │ │ │ │ │ │ └── exportSettingsModal.html │ │ │ │ ├── controllers.js │ │ │ │ ├── directives.js │ │ │ │ ├── directives │ │ │ │ │ ├── angulartooltips │ │ │ │ │ │ └── angular-tooltips.js │ │ │ │ │ ├── ascii-validator.directive.js │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ ├── autocomplete.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── autocomplete.html │ │ │ │ │ ├── cookie-policy │ │ │ │ │ │ ├── cookie-consent.directive.js │ │ │ │ │ │ └── cookie-policy-modal-controller.js │ │ │ │ │ ├── copy-to-clipboard │ │ │ │ │ │ └── copy-to-clipboard.directive.js │ │ │ │ │ ├── dynamic-form │ │ │ │ │ │ ├── dynamic-form-field.directive.js │ │ │ │ │ │ ├── dynamic-form.directive.js │ │ │ │ │ │ ├── field-type.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── dynamic-form.html │ │ │ │ │ │ │ └── form-field-template.html │ │ │ │ │ ├── editable-content │ │ │ │ │ │ └── editable-content.js │ │ │ │ │ ├── fit-text.directive.js │ │ │ │ │ ├── graphql-playground │ │ │ │ │ │ ├── graphql-playground-directive.util.js │ │ │ │ │ │ ├── graphql-playground.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── graphql-playground.html │ │ │ │ │ ├── inline-editable-text │ │ │ │ │ │ ├── inline-editable-text.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── inline-editable-text.template.html │ │ │ │ │ ├── languageselector │ │ │ │ │ │ ├── language-selector.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── languageSelector.html │ │ │ │ │ ├── length-validator.directive.js │ │ │ │ │ ├── markdown-content │ │ │ │ │ │ └── markdown-content.js │ │ │ │ │ ├── multiselect-dropdown │ │ │ │ │ │ ├── multiselect-dropdown.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── multiselect-dropdown.html │ │ │ │ │ ├── multiselect-search │ │ │ │ │ │ ├── multiselect-search.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── multiselect-search.html │ │ │ │ │ ├── open-in-sparql-editor │ │ │ │ │ │ └── open-in-sparql-editor.directive.js │ │ │ │ │ ├── operations-statuses-monitor │ │ │ │ │ │ ├── operations-statuses-monitor.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── operations-statuses-monitor.html │ │ │ │ │ ├── page-info-tooltip.directive.js │ │ │ │ │ ├── paginations.js │ │ │ │ │ ├── prop-indeterminate │ │ │ │ │ │ └── prop-indeterminate.directive.js │ │ │ │ │ ├── rdfresourcesearch │ │ │ │ │ │ ├── rdf-resource-search.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── rdfResourceSearchTemplate.html │ │ │ │ │ ├── shuttle-multiselect │ │ │ │ │ │ ├── shuttle-multiselect.directive.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── shuttle-multiselect.html │ │ │ │ │ ├── uppercased.directive.js │ │ │ │ │ ├── validate-duplicate-url.directive.js │ │ │ │ │ ├── validate-url.directive.js │ │ │ │ │ └── yasgui-component │ │ │ │ │ │ ├── templates │ │ │ │ │ │ └── yasgui-component.html │ │ │ │ │ │ ├── yasgui-component-directive.util.js │ │ │ │ │ │ ├── yasgui-component.directive.js │ │ │ │ │ │ └── yasgui-persistence-migration.service.js │ │ │ │ ├── filters │ │ │ │ │ ├── bytes-filter.js │ │ │ │ │ └── search-filter.js │ │ │ │ ├── interceptors │ │ │ │ │ ├── authentication.interceptor.js │ │ │ │ │ └── unauthorized.interceptor.js │ │ │ │ ├── loading-hint.js │ │ │ │ ├── services.js │ │ │ │ ├── services │ │ │ │ │ ├── autocomplete.service.js │ │ │ │ │ ├── connectors.service.js │ │ │ │ │ ├── event-emitter-service.js │ │ │ │ │ ├── graphql.service.js │ │ │ │ │ ├── jwt-auth.service.js │ │ │ │ │ ├── language.service.js │ │ │ │ │ ├── logger-provider.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── markdown.service.js │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── markdown-code-copy-plugin.js │ │ │ │ │ │ │ └── markdown-open-in-sparql-editor-plugin.js │ │ │ │ │ ├── openid-auth.service.js │ │ │ │ │ ├── rdf4j-repositories.service.js │ │ │ │ │ ├── repositories.service.js │ │ │ │ │ ├── security.service.js │ │ │ │ │ ├── similarity.service.js │ │ │ │ │ ├── tracking │ │ │ │ │ │ ├── cookie.service.js │ │ │ │ │ │ ├── google-analytics-cookie.service.js │ │ │ │ │ │ ├── installation-cookie.service.js │ │ │ │ │ │ └── tracking.service.js │ │ │ │ │ ├── translation.service.js │ │ │ │ │ ├── ttyg.service.js │ │ │ │ │ └── workbench-context.service.js │ │ │ │ └── templates │ │ │ │ │ ├── cookie-policy │ │ │ │ │ ├── cookie-consent.html │ │ │ │ │ └── cookie-policy.html │ │ │ │ │ ├── core-errors.html │ │ │ │ │ ├── editable-content │ │ │ │ │ └── editable-content.html │ │ │ │ │ ├── inactive-plugin-warning-page.html │ │ │ │ │ ├── markdown-content │ │ │ │ │ └── markdown-content.html │ │ │ │ │ ├── modal │ │ │ │ │ ├── copy-to-clipboard-modal.html │ │ │ │ │ ├── modal-simple.html │ │ │ │ │ └── modal-warning.html │ │ │ │ │ └── search-resource-input.html │ │ │ ├── explore │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── directives.js │ │ │ │ ├── plugin.js │ │ │ │ ├── statements.service.js │ │ │ │ └── templates │ │ │ │ │ └── viewTrig.html │ │ │ ├── export │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ └── plugin.js │ │ │ ├── externalsync │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── directives.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ └── deleteConnector.html │ │ │ ├── graphexplore │ │ │ │ ├── app.js │ │ │ │ ├── controllers │ │ │ │ │ ├── dependencies-chord.controller.js │ │ │ │ │ ├── domain-range-graph.controller.js │ │ │ │ │ ├── graphs-config.controller.js │ │ │ │ │ ├── graphs-visualizations.controller.js │ │ │ │ │ └── rdf-class-hierarchy.controller.js │ │ │ │ ├── directives │ │ │ │ │ ├── dependencies-chord.directive.js │ │ │ │ │ ├── domain-range-graph.directive.js │ │ │ │ │ ├── list-items-search-filter.directive.js │ │ │ │ │ ├── rdf-class-hierarchy.directive.js │ │ │ │ │ ├── rdfs-comment-label.directive.js │ │ │ │ │ ├── search-icon-input.directive.js │ │ │ │ │ └── system-repo-warning.directive.js │ │ │ │ ├── plugin.js │ │ │ │ ├── services │ │ │ │ │ ├── rdfs-label-comment.service.js │ │ │ │ │ └── ui-scroll.service.js │ │ │ │ └── templates │ │ │ │ │ ├── listItemsSearchFilterTemplate.html │ │ │ │ │ ├── modal │ │ │ │ │ └── save-graph.html │ │ │ │ │ ├── rdfClassHierarchyClassCountSliderHelpTemplate.html │ │ │ │ │ ├── rdfsCommentLabelTemplate.html │ │ │ │ │ ├── searchIconInputTemplate.html │ │ │ │ │ └── systemRepoWarningTemplate.html │ │ │ ├── graphql │ │ │ │ ├── app.js │ │ │ │ ├── controllers │ │ │ │ │ ├── create-graphql-endpoint-view.controller.js │ │ │ │ │ ├── endpoint-generation-failure-result-modal.controller.js │ │ │ │ │ ├── graphql-endpoint-configuration-modal.controller.js │ │ │ │ │ ├── graphql-endpoint-management-view.controller.js │ │ │ │ │ ├── graphql-playground-view.controller.js │ │ │ │ │ └── import-endpoint-definition-modal.controller.js │ │ │ │ ├── directives │ │ │ │ │ ├── configure-endpoint.directive.js │ │ │ │ │ ├── generate-endpoint.directive.js │ │ │ │ │ └── select-schema-sources.directive.js │ │ │ │ ├── models │ │ │ │ │ └── endpoints.js │ │ │ │ ├── plugin.js │ │ │ │ ├── services │ │ │ │ │ ├── endpoint-generation-report.mapper.js │ │ │ │ │ ├── endpoint-info-list.mapper.js │ │ │ │ │ ├── endpoint-utils.js │ │ │ │ │ ├── endpoints.mapper.js │ │ │ │ │ ├── file-to-import-definition.mapper.js │ │ │ │ │ ├── graphql-context.service.js │ │ │ │ │ ├── graphql-schema-shapes.mapper.js │ │ │ │ │ ├── prefix-list.mapper.js │ │ │ │ │ └── shacl-shape-list.mapper.js │ │ │ │ └── templates │ │ │ │ │ ├── create-graphql-endpoint.html │ │ │ │ │ ├── graphql-endpoint-management.html │ │ │ │ │ ├── graphql-playground.html │ │ │ │ │ ├── modal │ │ │ │ │ ├── endpoint-configuration-modal.html │ │ │ │ │ ├── endpoint-generation-failure-result-modal.html │ │ │ │ │ └── import-endpoint-definition-modal.html │ │ │ │ │ ├── step-configure-endpoint.html │ │ │ │ │ ├── step-generate-endpoint.html │ │ │ │ │ └── step-select-schema-sources.html │ │ │ ├── guides │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── directives.js │ │ │ │ ├── guide-utils.js │ │ │ │ ├── guides.service.js │ │ │ │ ├── model │ │ │ │ │ └── guides.js │ │ │ │ ├── plugin.js │ │ │ │ ├── steps │ │ │ │ │ ├── complex │ │ │ │ │ │ ├── class-hierarchy │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── class-relationships │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── connectors │ │ │ │ │ │ │ ├── lucene │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── create-repository │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── create-similarity-index │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── download-guide-resource │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── enable-autocomplete │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── execute-sparql-query │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── import-rdf-file │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── main-menu │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── rdf-rank │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── select-repository │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── ttyg │ │ │ │ │ │ │ ├── ask-ttyg-agent │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── configure-agent │ │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ │ ├── end-on-api-key-error │ │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ │ ├── fts-search-method │ │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ │ ├── similarity-search-method │ │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ │ └── sparql-search-method │ │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ ├── conversation-with-ttyg-agent │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ ├── create-ttyg-agent │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ ├── edit-ttyg-agent │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ │ └── select-ttyg-agent │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── visual-graph │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ └── welcome │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ └── core │ │ │ │ │ │ └── plugin.js │ │ │ │ ├── templates │ │ │ │ │ └── modal-confirm-exit.html │ │ │ │ └── tour-lib-services │ │ │ │ │ └── shepherd.service.js │ │ │ ├── import │ │ │ │ ├── app.js │ │ │ │ ├── controllers │ │ │ │ │ ├── file-override-confirmation.controller.js │ │ │ │ │ ├── import-resource-message-dialog.controller.js │ │ │ │ │ ├── import-text-snippet.controller.js │ │ │ │ │ ├── import-url.controller.js │ │ │ │ │ ├── import-view.controller.js │ │ │ │ │ ├── settings-modal.controller.js │ │ │ │ │ └── tab.controller.js │ │ │ │ ├── directives │ │ │ │ │ ├── import-progress-indicator.directive.js │ │ │ │ │ ├── import-resource-message.directive.js │ │ │ │ │ ├── import-resource-status-info.directive.js │ │ │ │ │ ├── import-resource-tree.directive.js │ │ │ │ │ └── validate-uri.directive.js │ │ │ │ ├── plugin.js │ │ │ │ ├── services │ │ │ │ │ ├── file-prefix-registry.js │ │ │ │ │ ├── import-context.service.js │ │ │ │ │ └── import-resource-tree.service.js │ │ │ │ └── templates │ │ │ │ │ ├── file-override-confirmation.html │ │ │ │ │ ├── fileSizeLimitInfo.html │ │ │ │ │ ├── import-resource-message-dialog.html │ │ │ │ │ ├── import-resource-message.html │ │ │ │ │ ├── import-resource-status-info.html │ │ │ │ │ ├── import-resource-tree.html │ │ │ │ │ ├── settingsModal.html │ │ │ │ │ ├── textSnippet.html │ │ │ │ │ └── urlImport.html │ │ │ ├── jdbc │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ └── plugin.js │ │ │ ├── models │ │ │ │ ├── clustermanagement │ │ │ │ │ ├── cluster-management-constants.js │ │ │ │ │ ├── cluster.js │ │ │ │ │ ├── node-state.js │ │ │ │ │ ├── recovery-status-state.js │ │ │ │ │ └── states.js │ │ │ │ ├── connectors │ │ │ │ │ ├── connector-command.js │ │ │ │ │ └── connectors.js │ │ │ │ ├── cookie-policy │ │ │ │ │ └── cookie-consent.js │ │ │ │ ├── dynamic-form │ │ │ │ │ ├── dynamic-form-field.js │ │ │ │ │ └── dynamic-form-model.js │ │ │ │ ├── form-fields.js │ │ │ │ ├── graphql │ │ │ │ │ ├── create-endpoint-from-owl-request.js │ │ │ │ │ ├── create-endpoint-from-shapes-request.js │ │ │ │ │ ├── create-endpoint-wizard-steps.js │ │ │ │ │ ├── endpoint-configuration-form.js │ │ │ │ │ ├── endpoint-definition-file.js │ │ │ │ │ ├── endpoint-generation-report.js │ │ │ │ │ ├── graphql-endpoint-configuration-setting.js │ │ │ │ │ ├── graphql-endpoint-configuration.js │ │ │ │ │ ├── graphql-endpoint-overview-list.js │ │ │ │ │ ├── graphql-endpoints-info.js │ │ │ │ │ ├── graphql-endpoints.js │ │ │ │ │ ├── graphql-playground-component.js │ │ │ │ │ ├── graphql-playground-config.js │ │ │ │ │ ├── graphql-schema-shapes.js │ │ │ │ │ ├── update-endpoint-request.js │ │ │ │ │ └── wizard.js │ │ │ │ ├── graphs │ │ │ │ │ ├── graph-list-options.js │ │ │ │ │ ├── graph-list.js │ │ │ │ │ └── graphs-config.js │ │ │ │ ├── http-status.js │ │ │ │ ├── import │ │ │ │ │ ├── file-formats.js │ │ │ │ │ ├── import-parsing-settings.js │ │ │ │ │ ├── import-resource-format.js │ │ │ │ │ ├── import-resource-status.js │ │ │ │ │ ├── import-resource-tree-element.js │ │ │ │ │ ├── import-resource-type.js │ │ │ │ │ ├── import-resource.js │ │ │ │ │ ├── import-settings.js │ │ │ │ │ └── sorting-type.js │ │ │ │ ├── jdbc │ │ │ │ │ ├── jdbc-column-type.js │ │ │ │ │ ├── jdbc-column.js │ │ │ │ │ ├── jdbc-configuration-error.js │ │ │ │ │ └── jdbc-configuration-info.js │ │ │ │ ├── monitoring │ │ │ │ │ ├── backup-and-restore-info.js │ │ │ │ │ ├── backup-and-restore-operation-type.js │ │ │ │ │ ├── cluster-status.js │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── active-operation-input.js │ │ │ │ │ │ ├── active-operation-model.js │ │ │ │ │ │ ├── active-operations-input.js │ │ │ │ │ │ ├── active-operations-model.js │ │ │ │ │ │ ├── operation-group.js │ │ │ │ │ │ ├── operation-monitoring-constants.js │ │ │ │ │ │ ├── operation-status.js │ │ │ │ │ │ └── operation-type.js │ │ │ │ │ ├── query-and-update │ │ │ │ │ │ ├── monitoring-track-record-state.js │ │ │ │ │ │ ├── monitoring-track-record-type.js │ │ │ │ │ │ └── monitoring-track-record.js │ │ │ │ │ └── snapshot-option-info.js │ │ │ │ ├── namespaces │ │ │ │ │ ├── namespace.js │ │ │ │ │ └── namespaces-list.js │ │ │ │ ├── ontop │ │ │ │ │ ├── jdbc-driver-type.js │ │ │ │ │ ├── ontop-connection-information.js │ │ │ │ │ ├── ontop-driver-data.js │ │ │ │ │ ├── ontop-file-info.js │ │ │ │ │ ├── ontop-file-type.js │ │ │ │ │ └── ontop-repository-error.js │ │ │ │ ├── ontotext-yasgui │ │ │ │ │ ├── before-update-query-result.js │ │ │ │ │ ├── count-query-request-event.js │ │ │ │ │ ├── count-query-response-event.js │ │ │ │ │ ├── download-as-event.js │ │ │ │ │ ├── event-data-type.js │ │ │ │ │ ├── event-data.js │ │ │ │ │ ├── keyboard-shortcut-name.js │ │ │ │ │ ├── notification-message-event.js │ │ │ │ │ ├── notification-message-type.js │ │ │ │ │ ├── ongoing-requests-info.js │ │ │ │ │ ├── ontotext-yasgui-config.js │ │ │ │ │ ├── query-executed-event.js │ │ │ │ │ ├── query-mode.js │ │ │ │ │ ├── query-request-event.js │ │ │ │ │ ├── query-type.js │ │ │ │ │ ├── rendering-mode.js │ │ │ │ │ ├── request-aborted-event.js │ │ │ │ │ ├── save-query-opened.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── yasgui-orientation.js │ │ │ │ │ ├── yasgui-query-http-method.js │ │ │ │ │ ├── yasgui-reset-flags.js │ │ │ │ │ ├── yasqe-action-button-definition.js │ │ │ │ │ ├── yasqe-mode.js │ │ │ │ │ ├── yasr-before-update-query-result.js │ │ │ │ │ ├── yasr-plugin-name.js │ │ │ │ │ ├── yasr-query-response-status.js │ │ │ │ │ └── yasr-toolbar-plugin.js │ │ │ │ ├── prefix │ │ │ │ │ └── prefixes.js │ │ │ │ ├── product-info.js │ │ │ │ ├── repository │ │ │ │ │ ├── remote-location.model.js │ │ │ │ │ └── repository.js │ │ │ │ ├── resource │ │ │ │ │ ├── context-type.js │ │ │ │ │ ├── resource-details.js │ │ │ │ │ ├── resource-graph-response.js │ │ │ │ │ ├── resource-info.js │ │ │ │ │ └── role-type.js │ │ │ │ ├── security │ │ │ │ │ └── security.js │ │ │ │ ├── similarity │ │ │ │ │ ├── similarity-index-error.js │ │ │ │ │ ├── similarity-index-info.js │ │ │ │ │ ├── similarity-index-status.js │ │ │ │ │ ├── similarity-index-type.js │ │ │ │ │ ├── similarity-index.js │ │ │ │ │ ├── similarity-instance-type.js │ │ │ │ │ ├── similarity-query-type.js │ │ │ │ │ ├── similarity-result-type.js │ │ │ │ │ ├── similarity-search-type.js │ │ │ │ │ ├── similarity-search.js │ │ │ │ │ └── similarity-view-mode.js │ │ │ │ ├── sparql-template │ │ │ │ │ ├── sparql-template-error.js │ │ │ │ │ └── sparql-template-info.js │ │ │ │ ├── sparql │ │ │ │ │ ├── cancel-aborting-query.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── sparql-query-error-info.js │ │ │ │ │ └── tab-query-model.js │ │ │ │ ├── themes │ │ │ │ │ └── theme.js │ │ │ │ ├── ttyg │ │ │ │ │ ├── agent-form.js │ │ │ │ │ ├── agent-instructions-explain.js │ │ │ │ │ ├── agents.js │ │ │ │ │ ├── chat-answer.js │ │ │ │ │ ├── chat-item.js │ │ │ │ │ ├── chat-message.js │ │ │ │ │ ├── chats.js │ │ │ │ │ ├── explain-response.js │ │ │ │ │ └── token-usage-info.js │ │ │ │ └── yasgui-component.js │ │ │ ├── namespaces │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── directives.js │ │ │ │ └── plugin.js │ │ │ ├── plugin-registry.js │ │ │ ├── plugin.js │ │ │ ├── plugins │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ └── plugin.js │ │ │ ├── queries │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ └── plugin.js │ │ │ ├── rdfrank │ │ │ │ ├── app.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ └── filter-list.html │ │ │ ├── repositories │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── controllers │ │ │ │ │ └── manage-remote-location-dialog.controller.js │ │ │ │ ├── fedx-repo.directive.js │ │ │ │ ├── ontop-repo.directive.js │ │ │ │ ├── plugin.js │ │ │ │ ├── repository.constants.js │ │ │ │ └── templates │ │ │ │ │ ├── fedx-repo.html │ │ │ │ │ ├── manage-remote-location-dialog.template.html │ │ │ │ │ └── ontop-repo.html │ │ │ ├── resources │ │ │ │ ├── app.js │ │ │ │ ├── chart-models │ │ │ │ │ ├── chart-data.js │ │ │ │ │ ├── cluster-health │ │ │ │ │ │ └── cluster-health-chart.js │ │ │ │ │ ├── performance │ │ │ │ │ │ ├── connections-chart.js │ │ │ │ │ │ ├── epool-chart.js │ │ │ │ │ │ └── queries-chart.js │ │ │ │ │ └── resource │ │ │ │ │ │ ├── cpu-load-chart.js │ │ │ │ │ │ ├── disk-storage-chart.js │ │ │ │ │ │ ├── file-descriptors-chart.js │ │ │ │ │ │ ├── global-cache-chart.js │ │ │ │ │ │ ├── heap-memory-chart.js │ │ │ │ │ │ └── non-heap-memory-chart.js │ │ │ │ ├── controllers.js │ │ │ │ ├── directives.js │ │ │ │ └── plugin.js │ │ │ ├── rest │ │ │ │ ├── aclmanagement.rest.service.js │ │ │ │ ├── autocomplete.rest.service.js │ │ │ │ ├── cluster.rest.service.js │ │ │ │ ├── connectors.rest.service.js │ │ │ │ ├── explore.rest.service.js │ │ │ │ ├── export.rest.service.js │ │ │ │ ├── graph-config.rest.service.js │ │ │ │ ├── graph-data.rest.service.js │ │ │ │ ├── graphql.rest.service.js │ │ │ │ ├── guides.rest.service.js │ │ │ │ ├── import.rest.service.js │ │ │ │ ├── jdbc.rest.service.js │ │ │ │ ├── license.rest.service.js │ │ │ │ ├── locations.rest.service.js │ │ │ │ ├── mappers │ │ │ │ │ ├── aclmanagement-mapper.js │ │ │ │ │ ├── active-operations-mapper.js │ │ │ │ │ ├── autocomplete-mapper.js │ │ │ │ │ ├── connectors-mapper.js │ │ │ │ │ ├── dynamic-form-fied-mapper.js │ │ │ │ │ ├── graph-list-mapper.js │ │ │ │ │ ├── graphs-config-mapper.js │ │ │ │ │ ├── import-mapper.js │ │ │ │ │ ├── monitor-backup-and-restore-mapper.js │ │ │ │ │ ├── namespaces-mapper.js │ │ │ │ │ ├── repositories-mapper.js │ │ │ │ │ ├── saved-query-mapper.js │ │ │ │ │ └── similarity-index-mapper.js │ │ │ │ ├── mock-backend │ │ │ │ │ └── graphql-rest-service-mock.js │ │ │ │ ├── monitoring.rest.service.js │ │ │ │ ├── plugins.rest.service.js │ │ │ │ ├── rdf4j.repositories.rest.service.js │ │ │ │ ├── rdfrank.rest.service.js │ │ │ │ ├── repositories.rest.service.js │ │ │ │ ├── saved-graphs.rest.service.js │ │ │ │ ├── security.rest.service.js │ │ │ │ ├── similarity.rest.service.js │ │ │ │ ├── sparql-templates.rest.service.js │ │ │ │ ├── sparql.rest.service.js │ │ │ │ ├── ttyg.rest.service.fake.backend.js │ │ │ │ ├── ttyg.rest.service.js │ │ │ │ └── upload.rest.service.js │ │ │ ├── security │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── controllers │ │ │ │ │ └── user-settings.controller.js │ │ │ │ ├── directives │ │ │ │ │ └── custom-prefix-tags-input.directive.js │ │ │ │ ├── plugin.js │ │ │ │ ├── services │ │ │ │ │ └── constants.js │ │ │ │ └── templates │ │ │ │ │ ├── modal │ │ │ │ │ └── default-authorities.html │ │ │ │ │ ├── roles.html │ │ │ │ │ ├── user.html │ │ │ │ │ └── users.html │ │ │ ├── settings │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── modal │ │ │ │ │ ├── location-settings.html │ │ │ │ │ └── validate-license.html │ │ │ │ └── plugin.js │ │ │ ├── similarity │ │ │ │ ├── app.js │ │ │ │ ├── controllers │ │ │ │ │ ├── create-index.controller.js │ │ │ │ │ └── similarity-list.controller.js │ │ │ │ └── plugin.js │ │ │ ├── sparql-editor │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ ├── plugin.js │ │ │ │ └── share-query-link.service.js │ │ │ ├── sparql-template │ │ │ │ ├── app.js │ │ │ │ ├── controllers.js │ │ │ │ └── plugin.js │ │ │ ├── stats │ │ │ │ ├── app.js │ │ │ │ └── plugin.js │ │ │ ├── templates │ │ │ │ ├── graphdb-small.svg │ │ │ │ ├── loader │ │ │ │ │ └── ot-loader.svg │ │ │ │ ├── modal │ │ │ │ │ ├── add-fedx-remote-repo.html │ │ │ │ │ ├── add-location.html │ │ │ │ │ ├── edit-location.html │ │ │ │ │ ├── editRepoFile.html │ │ │ │ │ └── upload-repository-config.html │ │ │ │ ├── pageInfoTooltip.html │ │ │ │ ├── repositorySize.html │ │ │ │ └── titlePopoverTemplate.html │ │ │ ├── treeview │ │ │ │ └── ng-tree.js │ │ │ ├── ttyg │ │ │ │ ├── app.js │ │ │ │ ├── controllers │ │ │ │ │ ├── agent-instructions-explain-modal.controller.js │ │ │ │ │ ├── agent-settings-modal.controller.js │ │ │ │ │ ├── external-integration-configuration-modal.controller.js │ │ │ │ │ └── ttyg-view.controller.js │ │ │ │ ├── directives │ │ │ │ │ ├── agent-list.directive.js │ │ │ │ │ ├── agent-select-menu.directive.js │ │ │ │ │ ├── chat-item-detail.directive.js │ │ │ │ │ ├── chat-list.directive.js │ │ │ │ │ ├── chat-panel.directive.js │ │ │ │ │ ├── help-info-popover.directive.js │ │ │ │ │ ├── no-agents-view.directive.js │ │ │ │ │ └── show-tooltip-on-overflow.directive.js │ │ │ │ ├── model │ │ │ │ │ └── agent-settings-modal.js │ │ │ │ ├── plugin.js │ │ │ │ ├── services │ │ │ │ │ ├── agent-instruction-explain.mapper.js │ │ │ │ │ ├── agents.mapper.js │ │ │ │ │ ├── chat-message.mapper.js │ │ │ │ │ ├── chats.mapper.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── explain.mapper.js │ │ │ │ │ ├── externalIntegrationModal.service.js │ │ │ │ │ ├── similarity-indexes.mapper.js │ │ │ │ │ ├── ttyg-context.service.js │ │ │ │ │ ├── ttyg-storage.service.js │ │ │ │ │ └── ttyg.utils.js │ │ │ │ └── templates │ │ │ │ │ ├── agent-list.html │ │ │ │ │ ├── agent-select-menu.html │ │ │ │ │ ├── autocomplete-iri-discovery-search.html │ │ │ │ │ ├── chat-item-detail.html │ │ │ │ │ ├── chat-list.html │ │ │ │ │ ├── chat-panel.html │ │ │ │ │ ├── chatInfo.html │ │ │ │ │ ├── iri-discovery-search.html │ │ │ │ │ ├── modal │ │ │ │ │ ├── agent-instructions-explain-modal.html │ │ │ │ │ ├── agent-settings-modal.html │ │ │ │ │ ├── external-integration-configuration-modal.html │ │ │ │ │ ├── helpInfoExternalLink.html │ │ │ │ │ ├── helpInfoPopoverTemplate.html │ │ │ │ │ └── similarity-extraction-method-tooltip.html │ │ │ │ │ ├── no-agents-view.html │ │ │ │ │ └── ttyg.html │ │ │ └── utils │ │ │ │ ├── date-utils.js │ │ │ │ ├── documentation-url-resolver.js │ │ │ │ ├── error-utils.js │ │ │ │ ├── event-constants.js │ │ │ │ ├── file-types.js │ │ │ │ ├── file-utils.js │ │ │ │ ├── hash-utils.js │ │ │ │ ├── html-util.js │ │ │ │ ├── http-utils.js │ │ │ │ ├── local-storage-adapter.js │ │ │ │ ├── map-object.js │ │ │ │ ├── notifications.js │ │ │ │ ├── number-utils.js │ │ │ │ ├── object-utils.js │ │ │ │ ├── role-name-prefix-utils.js │ │ │ │ ├── route-constants.js │ │ │ │ ├── sequence-generator-util.js │ │ │ │ ├── size-util.js │ │ │ │ ├── string-utils.js │ │ │ │ ├── uri-utils.js │ │ │ │ ├── url-utils.js │ │ │ │ ├── user-utils.js │ │ │ │ ├── yasgui-utils.js │ │ │ │ └── yasr-utils.js │ │ └── lib │ │ │ ├── FileSaver-patch.js │ │ │ ├── angucomplete-alt │ │ │ ├── angucomplete-alt-onto.min.js │ │ │ ├── angucomplete-alt.css │ │ │ └── angucomplete-alt.js │ │ │ ├── angularjs │ │ │ └── 1.3.8 │ │ │ │ └── angular.js │ │ │ ├── awesome_me │ │ │ ├── css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── custom-icons.min.css │ │ │ │ ├── duotone.min.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── light.min.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── sharp-duotone-solid.min.css │ │ │ │ ├── sharp-light.min.css │ │ │ │ ├── sharp-regular.min.css │ │ │ │ ├── sharp-solid.min.css │ │ │ │ ├── sharp-thin.min.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── thin.min.css │ │ │ │ ├── v4-font-face.min.css │ │ │ │ ├── v4-shims.min.css │ │ │ │ └── v5-font-face.min.css │ │ │ └── webfonts │ │ │ │ ├── custom-icons.ttf │ │ │ │ ├── custom-icons.woff2 │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-duotone-900.ttf │ │ │ │ ├── fa-duotone-900.woff2 │ │ │ │ ├── fa-light-300.ttf │ │ │ │ ├── fa-light-300.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-sharp-duotone-solid-900.ttf │ │ │ │ ├── fa-sharp-duotone-solid-900.woff2 │ │ │ │ ├── fa-sharp-light-300.ttf │ │ │ │ ├── fa-sharp-light-300.woff2 │ │ │ │ ├── fa-sharp-regular-400.ttf │ │ │ │ ├── fa-sharp-regular-400.woff2 │ │ │ │ ├── fa-sharp-solid-900.ttf │ │ │ │ ├── fa-sharp-solid-900.woff2 │ │ │ │ ├── fa-sharp-thin-100.ttf │ │ │ │ ├── fa-sharp-thin-100.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-thin-100.ttf │ │ │ │ ├── fa-thin-100.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── bootstrap │ │ │ └── bootstrap.min.js │ │ │ ├── common │ │ │ ├── circle-packing.js │ │ │ ├── d3-utils.js │ │ │ └── svg-export.js │ │ │ ├── d3-ONTO-chord-patch.js │ │ │ ├── d3-tip │ │ │ ├── d3-tip-patch.js │ │ │ └── d3-tip.css │ │ │ └── d3.patch.js │ │ ├── less │ │ ├── core.less │ │ └── owlim-workbench.less │ │ ├── main.js │ │ ├── pages │ │ ├── accessdenied.html │ │ ├── aclmanagement.html │ │ ├── autocomplete.html │ │ ├── choose-repository-type.html │ │ ├── cluster-management │ │ │ └── clusterInfo.html │ │ ├── connectorProgress.html │ │ ├── connectorsInfo.html │ │ ├── create-index.html │ │ ├── createConnector.html │ │ ├── dependencies.html │ │ ├── domainRangeInfo.html │ │ ├── edit.html │ │ ├── explore.html │ │ ├── export.html │ │ ├── find.html │ │ ├── graph-config │ │ │ └── saveGraphConfig.html │ │ ├── graphs-visualizations.html │ │ ├── guides.html │ │ ├── home.html │ │ ├── import.html │ │ ├── info.html │ │ ├── jdbc-create.html │ │ ├── jdbc.html │ │ ├── licenseInfo.html │ │ ├── monitor │ │ │ ├── backup-and-restore.html │ │ │ ├── queries.html │ │ │ └── resources.html │ │ ├── namespaces.html │ │ ├── not_found.html │ │ ├── plugins.html │ │ ├── rdfClassHierarchyInfo.html │ │ ├── rdfrank.html │ │ ├── registerLicenseInfo.html │ │ ├── repositories.html │ │ ├── repository.html │ │ ├── similarity-indexes.html │ │ ├── sparql-editor.html │ │ ├── sparql-template-create.html │ │ ├── sparql-templates.html │ │ ├── ux-test1.html │ │ ├── ux-test2.html │ │ ├── viewQuery.html │ │ └── webapi.html │ │ ├── res │ │ ├── graphexplore │ │ │ └── keyboard-shortcuts.html │ │ ├── modal.html │ │ ├── sparql │ │ │ └── keyboard-shortcuts.html │ │ └── swagger5 │ │ │ ├── README.md │ │ │ ├── css │ │ │ ├── onto-theme.css │ │ │ ├── print.css │ │ │ ├── reset.css │ │ │ └── screen.css │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── fonts │ │ │ ├── DroidSans-Bold.ttf │ │ │ ├── DroidSans.ttf │ │ │ ├── rubik-italic.woff │ │ │ ├── rubik-italic.woff2 │ │ │ ├── rubik-light.woff │ │ │ ├── rubik-light.woff2 │ │ │ ├── rubik-lightitalic.woff │ │ │ ├── rubik-lightitalic.woff2 │ │ │ ├── rubik-medium.woff │ │ │ ├── rubik-medium.woff2 │ │ │ ├── rubik-mediumitalic.woff │ │ │ ├── rubik-mediumitalic.woff2 │ │ │ ├── rubik-regular.woff │ │ │ └── rubik-regular.woff2 │ │ │ ├── images │ │ │ ├── explorer_icons.png │ │ │ └── throbber.gif │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── oauth2-redirect.html │ │ │ ├── swagger-initializer.js │ │ │ ├── swagger-ui-bundle.js │ │ │ ├── swagger-ui-bundle.js.map │ │ │ ├── swagger-ui-es-bundle-core.js │ │ │ ├── swagger-ui-es-bundle-core.js.map │ │ │ ├── swagger-ui-es-bundle.js │ │ │ ├── swagger-ui-es-bundle.js.map │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ ├── swagger-ui-standalone-preset.js.map │ │ │ ├── swagger-ui.css │ │ │ ├── swagger-ui.css.map │ │ │ ├── swagger-ui.js │ │ │ └── swagger-ui.js.map │ │ ├── single-spa-angularjs.js │ │ ├── template.html │ │ ├── templates │ │ └── addConnectorData.html │ │ └── vendor.js ├── root-config │ ├── .gitignore │ ├── babel.config.json │ ├── eslint.config.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ └── validate-translations.js │ ├── src │ │ ├── assets │ │ │ ├── graphdb-splash.svg │ │ │ ├── i18n │ │ │ │ └── language-config.json │ │ │ └── images │ │ │ │ └── favicon.png │ │ ├── bootstrap │ │ │ ├── autocomplete │ │ │ │ └── autocomplete.js │ │ │ ├── bootstrap.js │ │ │ ├── configuration │ │ │ │ └── configuration-bootstrap.js │ │ │ ├── interceptors │ │ │ │ └── interceptors-registration.js │ │ │ ├── language │ │ │ │ └── language-bootstrap.js │ │ │ ├── license │ │ │ │ └── license-bootstrap.js │ │ │ ├── plugins │ │ │ │ └── plugins-bootstrap.js │ │ │ ├── product-info │ │ │ │ └── product-info-bootstrap.js │ │ │ ├── repository │ │ │ │ └── repository-bootstrap.js │ │ │ ├── security │ │ │ │ └── security-bootstrap.js │ │ │ └── theme │ │ │ │ └── theme-bootstrap.js │ │ ├── index.ejs │ │ ├── microfrontend-layout.json │ │ ├── onto-vendor.js │ │ ├── ontotext-root-config.js │ │ ├── services │ │ │ └── logger-provider.js │ │ ├── styles │ │ │ ├── css │ │ │ │ ├── charteditor-custom.css │ │ │ │ └── splash-screen.css │ │ │ ├── fonts │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.svg │ │ │ │ ├── icons.ttf │ │ │ │ ├── icons.woff │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-600.woff │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-600.woff2 │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-600italic.woff │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-600italic.woff2 │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ │ ├── jetbrains-mono-v12-vietnamese_latin-ext_latin_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2 │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2 │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2 │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff2 │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ │ ├── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ │ └── roboto-v30-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ │ ├── main.scss │ │ │ ├── onto-stylesheet.scss │ │ │ └── partials │ │ │ │ ├── _core.scss │ │ │ │ ├── alert │ │ │ │ └── _alert.scss │ │ │ │ ├── anchor │ │ │ │ └── _anchor.scss │ │ │ │ ├── animations │ │ │ │ └── _fade-button.scss │ │ │ │ ├── button │ │ │ │ └── _button.scss │ │ │ │ └── responsive │ │ │ │ └── _responsive.scss │ │ └── vendor │ │ │ ├── bootstrap.min.css │ │ │ ├── common.css │ │ │ ├── fonts.css │ │ │ ├── icons.css │ │ │ └── variables.css │ └── test │ │ ├── fixtures │ │ └── packages │ │ │ ├── pkg-conflict │ │ │ └── src │ │ │ │ └── i18n │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ │ ├── pkg-invalid │ │ │ └── src │ │ │ │ └── i18n │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ │ ├── pkg-locale │ │ │ └── src │ │ │ │ └── i18n │ │ │ │ ├── de.json │ │ │ │ └── en.json │ │ │ └── pkg-valid │ │ │ └── src │ │ │ └── i18n │ │ │ ├── en.json │ │ │ └── fr.json │ │ ├── validate-translations.test.js │ │ └── validate-utils.test.js ├── shared-components │ ├── .editorconfig │ ├── .env │ ├── .gitignore │ ├── LICENSE │ ├── __mocks__ │ │ └── @ontotext │ │ │ └── workbench-api.ts │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ ├── cookie-consent │ │ │ │ └── cookie-consent.cy.js │ │ │ ├── dropdown │ │ │ │ └── dropdown.cy.js │ │ │ ├── footer │ │ │ │ └── footer.cy.js │ │ │ ├── header │ │ │ │ └── header.cy.js │ │ │ ├── language-selector │ │ │ │ └── language-selector.cy.js │ │ │ ├── layout │ │ │ │ └── layout.cy.js │ │ │ ├── license-alert │ │ │ │ └── license-alert.cy.js │ │ │ ├── navbar │ │ │ │ └── navbar.cy.js │ │ │ ├── notification │ │ │ │ └── notification.cy.js │ │ │ ├── operations-notification │ │ │ │ └── operations-notification.cy.js │ │ │ ├── rdf-search │ │ │ │ └── rdf-search.cy.js │ │ │ ├── repository-selector │ │ │ │ └── repository-selector.cy.js │ │ │ ├── toastr │ │ │ │ └── toastr.cy.js │ │ │ ├── tooltip │ │ │ │ └── tooltip.cy.js │ │ │ └── user-menu │ │ │ │ └── user-menu.cy.js │ │ ├── fixtures │ │ │ ├── example.json │ │ │ └── repositories │ │ │ │ └── get-all-repositories.json │ │ ├── steps │ │ │ ├── base-steps.js │ │ │ ├── cookie-consent │ │ │ │ └── cookie-consent.steps.js │ │ │ ├── dropdown │ │ │ │ └── dropdown-steps.js │ │ │ ├── footer │ │ │ │ └── footer-steps.js │ │ │ ├── header │ │ │ │ ├── header-steps.js │ │ │ │ └── repository-selector-steps.js │ │ │ ├── language-selector │ │ │ │ └── language-selector-steps.js │ │ │ ├── layout │ │ │ │ └── layout-steps.js │ │ │ ├── license-alert │ │ │ │ └── license-alert-steps.js │ │ │ ├── navbar │ │ │ │ └── navbar-steps.js │ │ │ ├── notification │ │ │ │ └── notification-steps.js │ │ │ ├── operations-notification │ │ │ │ └── operations-notification.steps.js │ │ │ ├── rdf-search │ │ │ │ └── rdf-search-steps.js │ │ │ ├── toastr │ │ │ │ └── toastr-steps.js │ │ │ ├── tooltip-steps.js │ │ │ └── user-menu │ │ │ │ └── user-menu-steps.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── docker-compose.yaml │ ├── eslint.config.js │ ├── global.d.ts │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── sonar-project.js │ ├── sonar-run.sh │ ├── src │ │ ├── assets │ │ │ ├── graphdb-logo-sq.svg │ │ │ ├── graphdb-logo.svg │ │ │ └── i18n │ │ │ │ ├── en.json │ │ │ │ └── fr.json │ │ ├── components.d.ts │ │ ├── components │ │ │ ├── dialogs │ │ │ │ ├── onto-cookie-policy-dialog │ │ │ │ │ ├── onto-cookie-policy-dialog.scss │ │ │ │ │ ├── onto-cookie-policy-dialog.tsx │ │ │ │ │ └── readme.md │ │ │ │ ├── onto-dialog.scss │ │ │ │ ├── onto-dialog.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-cookie-consent │ │ │ │ ├── onto-cookie-consent.scss │ │ │ │ ├── onto-cookie-consent.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-dropdown │ │ │ │ ├── onto-dropdown.scss │ │ │ │ ├── onto-dropdown.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-footer │ │ │ │ ├── onto-footer.scss │ │ │ │ ├── onto-footer.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-header │ │ │ │ ├── onto-header.scss │ │ │ │ ├── onto-header.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-language-selector │ │ │ │ ├── onto-language-selector.scss │ │ │ │ ├── onto-language-selector.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-layout │ │ │ │ ├── onto-layout.scss │ │ │ │ ├── onto-layout.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-license-alert │ │ │ │ ├── onto-license-alert.scss │ │ │ │ ├── onto-license-alert.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-navbar │ │ │ │ ├── external-menu-model.ts │ │ │ │ ├── navbar-model.ts │ │ │ │ ├── navbar-service.ts │ │ │ │ ├── navbar-toggled-event.ts │ │ │ │ ├── onto-navbar.scss │ │ │ │ ├── onto-navbar.tsx │ │ │ │ ├── readme.md │ │ │ │ └── test │ │ │ │ │ ├── navbar-model.spec.tsx │ │ │ │ │ └── navbar-service.spec.tsx │ │ │ ├── onto-operations-notification │ │ │ │ ├── onto-operations-notification.scss │ │ │ │ ├── onto-operations-notification.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-permission-banner │ │ │ │ ├── onto-permission-banner.scss │ │ │ │ ├── onto-permission-banner.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-rdf-search │ │ │ │ ├── onto-rdf-search.scss │ │ │ │ ├── onto-rdf-search.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-repository-selector │ │ │ │ ├── onto-repository-selector.scss │ │ │ │ ├── onto-repository-selector.tsx │ │ │ │ ├── readme.md │ │ │ │ ├── repository-selection.tsx │ │ │ │ └── selector-item.tsx │ │ │ ├── onto-search-icon │ │ │ │ ├── onto-search-icon.scss │ │ │ │ ├── onto-search-icon.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-search-resource-input │ │ │ │ ├── onto-search-resource-input.scss │ │ │ │ ├── onto-search-resource-input.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-test-context │ │ │ │ ├── onto-test-context.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-toastr │ │ │ │ ├── onto-toastr.scss │ │ │ │ ├── onto-toastr.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-toggle-switch │ │ │ │ ├── onto-toggle-switch.scss │ │ │ │ ├── onto-toggle-switch.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-tooltip │ │ │ │ ├── models │ │ │ │ │ ├── html-element-with-tooltip.ts │ │ │ │ │ ├── onto-tooltip-configuration.ts │ │ │ │ │ └── onto-tooltip-placement.ts │ │ │ │ ├── onto-tooltip.scss │ │ │ │ ├── onto-tooltip.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-user-login │ │ │ │ ├── onto-user-login.scss │ │ │ │ ├── onto-user-login.tsx │ │ │ │ └── readme.md │ │ │ ├── onto-user-menu │ │ │ │ ├── onto-user-menu.scss │ │ │ │ ├── onto-user-menu.tsx │ │ │ │ └── readme.md │ │ │ └── translate-label │ │ │ │ ├── readme.md │ │ │ │ ├── translate-label.scss │ │ │ │ └── translate-label.tsx │ │ ├── index.html │ │ ├── index.ts │ │ ├── models │ │ │ ├── component-event.ts │ │ │ ├── constants.ts │ │ │ ├── dialog │ │ │ │ ├── dialog-handler.ts │ │ │ │ └── onto-dialog.ts │ │ │ ├── dropdown │ │ │ │ ├── dropdown-item-alignment.ts │ │ │ │ └── dropdown-item.ts │ │ │ ├── plugin │ │ │ │ └── plugin-registry.ts │ │ │ ├── resource-search │ │ │ │ └── resource-search-constants.ts │ │ │ ├── toggle-switch │ │ │ │ └── toggle-event-payload.ts │ │ │ └── translation │ │ │ │ └── translation-observer.ts │ │ ├── pages │ │ │ ├── cookie-consent │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ ├── dropdown │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── fake-server.js │ │ │ ├── footer │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── header │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── js │ │ │ │ └── main.js │ │ │ ├── language-selector │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── layout │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── license-alert │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── navbar │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── notification │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── operations-notification │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── rdf-search │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── repository-selector │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── toastr │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── toggle-switch │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ ├── tooltip │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ │ └── user-menu │ │ │ │ ├── index.html │ │ │ │ └── main.js │ │ ├── services │ │ │ ├── logger-provider.ts │ │ │ └── translation.service.ts │ │ └── utils │ │ │ ├── function-utils.ts │ │ │ ├── html-util.ts │ │ │ ├── html-utils.ts │ │ │ ├── tooltip-util.spec.ts │ │ │ ├── tooltip-util.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ ├── stencil.config.ts │ ├── stylelint.config.cjs │ └── tsconfig.json ├── styleguide │ ├── .gitignore │ ├── README.md │ ├── babel.config.json │ ├── eslint.config.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ └── purge-css.js │ ├── src │ │ ├── css-purger │ │ │ ├── CSS-variable-purger.js │ │ │ ├── css-purger-default-config.js │ │ │ ├── purge-css-vars.js │ │ │ └── purge-css-vars.test.js │ │ ├── css │ │ │ ├── dark-mode.css │ │ │ └── light-mode.css │ │ └── ontotext-styleguide.js │ ├── stylelint.config.cjs │ └── webpack.config.js └── workbench │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── eslint.config.js │ ├── extra-webpack.config.js │ ├── jest.config.ts │ ├── package-lock.json │ ├── package.json │ ├── public │ └── favicon.ico │ ├── sonar-project.js │ ├── sonar-run.sh │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── bootstrap │ │ │ ├── bootstrap.ts │ │ │ └── transloco │ │ │ │ └── transloco-bootstrap.ts │ │ ├── directives │ │ │ ├── restrict-access.directive.spec.ts │ │ │ └── restrict-access.directive.ts │ │ ├── empty-route │ │ │ └── empty-route.component.ts │ │ ├── new-view │ │ │ ├── new-view.component.html │ │ │ ├── new-view.component.spec.ts │ │ │ └── new-view.component.ts │ │ ├── pages │ │ │ └── login │ │ │ │ ├── login-page.component.html │ │ │ │ ├── login-page.component.scss │ │ │ │ └── login-page.component.ts │ │ ├── services │ │ │ └── logger-provider.ts │ │ └── sparql │ │ │ ├── sparql.component.html │ │ │ ├── sparql.component.spec.ts │ │ │ └── sparql.component.ts │ ├── assets │ │ └── i18n │ │ │ ├── en.json │ │ │ └── fr.json │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.single-spa.ts │ ├── single-spa │ │ ├── asset-url.ts │ │ └── single-spa-props.ts │ ├── styles.scss │ └── testing-utils │ │ └── transloco-utils.ts │ ├── stylelint.config.cjs │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── release.Jenkinsfile ├── scripts ├── build.sh ├── clean-locks.sh ├── clean.sh ├── copy-plugins.sh ├── docker-rootfs │ ├── etc │ │ └── nginx │ │ │ └── conf.d │ │ │ └── default.conf │ └── usr │ │ └── local │ │ └── bin │ │ └── start-workbench.sh ├── error-handling.sh ├── install-local.sh ├── install.sh ├── lint.sh ├── postinstall.sh ├── sonar.sh ├── test-coverage.sh ├── test.sh └── validate.sh ├── sonar-project.js ├── stylelint.config.base.cjs ├── webpack.config.common.js ├── webpack.config.dev.js ├── webpack.config.prod.js ├── webpack ├── merge-i18n-plugin.js └── merge-json-plugin.js └── workbench.Dockerfile /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/.env -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.17.0 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:22-alpine 2 | 3 | WORKDIR /app 4 | 5 | ENTRYPOINT ["npm"] 6 | -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/README.md -------------------------------------------------------------------------------- /accessibilty-audit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/accessibilty-audit/README.md -------------------------------------------------------------------------------- /accessibilty-audit/generate-lighthouse-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/accessibilty-audit/generate-lighthouse-report.js -------------------------------------------------------------------------------- /accessibilty-audit/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/accessibilty-audit/package-lock.json -------------------------------------------------------------------------------- /accessibilty-audit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/accessibilty-audit/package.json -------------------------------------------------------------------------------- /accessibilty-audit/repo-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/accessibilty-audit/repo-template.json -------------------------------------------------------------------------------- /accessibilty-audit/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/accessibilty-audit/urls.txt -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/configuration.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/assets/configuration.default.json -------------------------------------------------------------------------------- /assets/env.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/assets/env.template.json -------------------------------------------------------------------------------- /coverage.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/coverage.Jenkinsfile -------------------------------------------------------------------------------- /docker-compose-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/docker-compose-coverage.yaml -------------------------------------------------------------------------------- /docker-compose-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/docker-compose-test.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/developers-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/docs/developers-guide.md -------------------------------------------------------------------------------- /e2e-tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/.editorconfig -------------------------------------------------------------------------------- /e2e-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/.gitignore -------------------------------------------------------------------------------- /e2e-tests/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/.nycrc -------------------------------------------------------------------------------- /e2e-tests/cypress-flaky.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/cypress-flaky.config.js -------------------------------------------------------------------------------- /e2e-tests/cypress-legacy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/cypress-legacy.config.js -------------------------------------------------------------------------------- /e2e-tests/cypress-reporter-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/cypress-reporter-config.json -------------------------------------------------------------------------------- /e2e-tests/cypress-security.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/cypress-security.config.js -------------------------------------------------------------------------------- /e2e-tests/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/cypress.config.js -------------------------------------------------------------------------------- /e2e-tests/e2e-flaky/explore/visual.graph.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-flaky/explore/visual.graph.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-flaky/import/import-user-data-url.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-flaky/import/import-user-data-url.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-flaky/import/import.server.files.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-flaky/import/import.server.files.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-flaky/setup/sparql-template-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-flaky/setup/sparql-template-create.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/cluster/cluster-legend.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/cluster/cluster-legend.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/cluster/cluster-states.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/cluster/cluster-states.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/graphql/graphql-playground.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/graphql/graphql-playground.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/home/cookie-policy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/home/cookie-policy.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/home/create-repository.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/home/create-repository.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/home/documentation-link.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/home/documentation-link.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/home/google-analytics.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/home/google-analytics.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/home/language-change.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/home/language-change.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/home/rdf-resource-search.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/home/rdf-resource-search.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/import/import-server-files.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/import/import-server-files.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/import/import-user-data-url.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/import/import-user-data-url.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/import/import-user-data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/import/import-user-data.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/import/import-view.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/import/import-view.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/license/license.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/license/license.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/not-found/not-found.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/not-found/not-found.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/repository/ontop-repository.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/repository/ontop-repository.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/repository/repositories.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/repository/repositories.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/resource/resource.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/resource/resource.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/aclmanagement/scopes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/aclmanagement/scopes.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/connectors-lucene.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/connectors-lucene.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/jdbc/jdbc-create.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/jdbc/jdbc-create.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/jdbc/jdbc.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/jdbc/jdbc.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/namespaces/namespaces.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/namespaces/namespaces.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/plugins/plugins.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/plugins/plugins.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/rdf-rank/rdf-rank.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/rdf-rank/rdf-rank.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/setup/settings/my-settings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/setup/settings/my-settings.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/sparql-editor/sparql-editor.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/sparql-editor/sparql-editor.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/sparql-editor/yasgui-tabs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/sparql-editor/yasgui-tabs.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/sparql-editor/yasqe-themes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/sparql-editor/yasqe-themes.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/agent-list.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/agent-list.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/agent-select-menu.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/agent-select-menu.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/chat-list.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/chat-list.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/chat-panel.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/chat-panel.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/clone-agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/clone-agent.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/create-agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/create-agent.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/create-chat.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/create-chat.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/delete-agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/delete-agent.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/edit-agent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/edit-agent.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/ttyg-permission.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/ttyg-permission.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-legacy/ttyg/ttyg-view.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-legacy/ttyg/ttyg-view.spec.js -------------------------------------------------------------------------------- /e2e-tests/e2e-security/setup/home/cookie-policy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/e2e-security/setup/home/cookie-policy.spec.js -------------------------------------------------------------------------------- /e2e-tests/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/eslint.config.js -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/3-nodes-cluster-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/cluster/3-nodes-cluster-created.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/cluster-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/cluster/cluster-config.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/cluster-node-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/cluster/cluster-node-status.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/delete-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/cluster/delete-cluster.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/no-cluster-group-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/cluster/no-cluster-group-status.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/no-cluster-node-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/cluster/no-cluster-node-status.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/cluster/replace-nodes.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/connectors/get-connectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/connectors/get-connectors.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/connectors/get-retrieval-connector-0.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/graph/rdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graph/rdf.txt -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/200-row-allianz.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/200-row-allianz.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/bnodes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/bnodes.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/more-files/rdfxml.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/more-files/rdfxml.rdf -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/people.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/people.zip -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/resource-test-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/resource-test-data.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/sample-jsonld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/sample-jsonld.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/swapi-dataset.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/swapi-dataset.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/test-trigstar.trigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/test-trigstar.trigs -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/test_turtlestar.ttls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/test_turtlestar.ttls -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/turtlestar-data.ttls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/turtlestar-data.ttls -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphdb-import/wine.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphdb-import/wine.rdf -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphql/endpoints/no-graphql-endpoints-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "endpoints": [] 3 | } 4 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphql/soml/swapi-schema-broken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphql/soml/swapi-schema-broken.yaml -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphql/soml/swapi-schema-broken.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphql/soml/swapi-schema-broken.zip -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphql/soml/swapi-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphql/soml/swapi-schema.yaml -------------------------------------------------------------------------------- /e2e-tests/fixtures/graphql/soml/swapi-schemas.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/graphql/soml/swapi-schemas.zip -------------------------------------------------------------------------------- /e2e-tests/fixtures/guides/guides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/guides/guides.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/guides/movies.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/guides/movies.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/guides/starwars.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/guides/starwars.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/monitoring/backup-and-restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/monitoring/backup-and-restore.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/monitoring/no-operations.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/ontop/config.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ontop/config.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/ontop/university-complete.obda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ontop/university-complete.obda -------------------------------------------------------------------------------- /e2e-tests/fixtures/ontop/university-complete.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ontop/university-complete.properties -------------------------------------------------------------------------------- /e2e-tests/fixtures/ontop/university-complete.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ontop/university-complete.ttl -------------------------------------------------------------------------------- /e2e-tests/fixtures/queries/add-statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/queries/add-statement.txt -------------------------------------------------------------------------------- /e2e-tests/fixtures/queries/construct-query.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/queries/construct-query.sparql -------------------------------------------------------------------------------- /e2e-tests/fixtures/queries/default-query-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/queries/default-query-response.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/queries/empty-query-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/queries/empty-query-response.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/queries/prefix-query.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/queries/prefix-query.sparql -------------------------------------------------------------------------------- /e2e-tests/fixtures/remote-location/add-remote-location: -------------------------------------------------------------------------------- 1 | Successfully connected new GraphDB location. 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/remote-location/get-no-remote-locations.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/remote-location/remote-location-check: -------------------------------------------------------------------------------- 1 | pc-desktop:7301 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/repo-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/repo-template.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/repositories/builtin_Rules.pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/repositories/builtin_Rules.pie -------------------------------------------------------------------------------- /e2e-tests/fixtures/repositories/free-access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/repositories/free-access.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/repositories/get-locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/repositories/get-locations.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/repositories/get-repositories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/repositories/get-repositories.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/security/get-admin-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/security/get-admin-user.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/setup/aclmanagement/get-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/setup/aclmanagement/get-rules.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/similarity/get-similarity-indexes-0.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/snippet-import-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/snippet-import-template.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/sparql/history-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/sparql/history-response.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/agent/create-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/agent/create-agent.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/agent/get-agent-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/agent/get-agent-defaults.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/agent/get-agent-list-0.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/agent/get-agent-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/agent/get-agent-list.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/agent/get-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/agent/get-agent.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/autocomplete-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/autocomplete-response.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/ask-question-cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/ask-question-cancel.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/ask-question.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/ask-question.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/deleted-chat.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "thread_jdQBvbkaU6JPoO48oFbC54dD" 3 | } 4 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/explain-response-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/explain-response-1.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/explain-response-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/explain-response-2.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/export-chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/export-chat.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/get-chat-list-0.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/get-chat-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/get-chat-list.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/get-chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/get-chat.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/ttyg/chats/renamed-chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/ttyg/chats/renamed-chat.json -------------------------------------------------------------------------------- /e2e-tests/fixtures/url-import-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/fixtures/url-import-template.json -------------------------------------------------------------------------------- /e2e-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/package-lock.json -------------------------------------------------------------------------------- /e2e-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/package.json -------------------------------------------------------------------------------- /e2e-tests/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/plugins/index.js -------------------------------------------------------------------------------- /e2e-tests/steps/alert-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/alert-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/application-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/application-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/base-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/base-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/class-views-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/class-views-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/cluster/cluster-configuration-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/cluster/cluster-configuration-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/cluster/cluster-page-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/cluster/cluster-page-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/cluster/cluster-view-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/cluster/cluster-view-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/cluster/delete-cluster-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/cluster/delete-cluster-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/error-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/error-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/explore/class-relationships-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/explore/class-relationships-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/explore/graphs-overview-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/explore/graphs-overview-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/explore/similarity-index-create-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/explore/similarity-index-create-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/explore/similarity-indexes-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/explore/similarity-indexes-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/graphql/create-graphql-endpoint-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/graphql/create-graphql-endpoint-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/graphql/edit-graphql-endpoint-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/graphql/edit-graphql-endpoint-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/graphql/generation-report-modal-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/graphql/generation-report-modal-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/graphql/graphiql-editor-tools-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/graphql/graphiql-editor-tools-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/graphql/graphiql-playground-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/graphql/graphiql-playground-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/graphql/graphql-playground-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/graphql/graphql-playground-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/guides/guide-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/guides/guide-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/guides/guide-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/guides/guide-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/guides/movies-guide-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/guides/movies-guide-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/guides/star-wars-guide-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/guides/star-wars-guide-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/home-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/home-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/import/file-overwrite-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/import/file-overwrite-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/import/import-resource-message-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/import/import-resource-message-dialog.js -------------------------------------------------------------------------------- /e2e-tests/steps/import/import-server-files-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/import/import-server-files-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/import/import-settings-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/import/import-settings-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/import/import-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/import/import-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/import/import-test-constants.js: -------------------------------------------------------------------------------- 1 | export const SERVER_FILES_COUNT = 20; 2 | -------------------------------------------------------------------------------- /e2e-tests/steps/import/import-user-data-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/import/import-user-data-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/json-ld-modal-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/json-ld-modal-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/language-selector-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/language-selector-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/license-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/license-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/loader-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/loader-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/login-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/login-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/lucene-connector-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/lucene-connector-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/main-menu-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/main-menu-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/modal-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/modal-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/monitoring/backup-and-restore-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/monitoring/backup-and-restore-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/monitoring/queries-and-updates-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/monitoring/queries-and-updates-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/monitoring/system-monitoring-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/monitoring/system-monitoring-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/not-found/not-found-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/not-found/not-found-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/ontop-repository-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/ontop-repository-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/operations-statuses-component-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/operations-statuses-component-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/rdf-resource-search-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/rdf-resource-search-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/repositories/attach-repository-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/repositories/attach-repository-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/repository-selector-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/repository-selector-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/repository-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/repository-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/resource/resource-edit-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/resource/resource-edit-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/resource/resource-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/resource/resource-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/rest-api-documentation-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/rest-api-documentation-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/acl-management-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/acl-management-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/autocomplete-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/autocomplete-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/connectors-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/connectors-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/jdbc-create-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/jdbc-create-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/jdbc-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/jdbc-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/namespace-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/namespace-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/plugins-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/plugins-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/rdf-rank-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/rdf-rank-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/settings-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/settings-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/sparql-create-update-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/sparql-create-update-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/sparql-templates-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/sparql-templates-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/setup/user-and-access-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/setup/user-and-access-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/sparql-editor-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/sparql-editor-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/sparql-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/sparql-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/system-information-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/system-information-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/toaster-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/toaster-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/ttyg/chat-panel-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/ttyg/chat-panel-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/ttyg/ttyg-agent-settings-modal.steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/ttyg/ttyg-agent-settings-modal.steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/ttyg/ttyg-view-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/ttyg/ttyg-view-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/visual-graph-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/visual-graph-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/widgets/license-widget-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/widgets/license-widget-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/window-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/window-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/confirmation-dialog-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/confirmation-dialog-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/pagination-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/pagination-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/plugin/error-plugin-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/plugin/error-plugin-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/save-query-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/save-query-dialog.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/saved-queries-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/saved-queries-dialog.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/saved-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/saved-query.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/share-saved-query-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/share-saved-query-dialog.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/table-plugin-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/table-plugin-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/yasgui-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/yasgui-loader.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/yasgui-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/yasgui-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/yasqe-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/yasqe-steps.js -------------------------------------------------------------------------------- /e2e-tests/steps/yasgui/yasr-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/steps/yasgui/yasr-steps.js -------------------------------------------------------------------------------- /e2e-tests/stubs/autocomplete/autocomplete-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/autocomplete/autocomplete-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/backup-and-restore-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/backup-and-restore-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/browser-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/browser-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/cluster/cluster-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/cluster/cluster-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/cluster/remote-location-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/cluster/remote-location-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/connector-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/connector-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/environment-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/environment-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/global-operations-statuses-stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/global-operations-statuses-stub.js -------------------------------------------------------------------------------- /e2e-tests/stubs/graphql/graphql-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/graphql/graphql-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/jdbc/jdbc-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/jdbc/jdbc-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/license-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/license-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/namespace-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/namespace-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/query-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/query-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/repositories/repositories-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/repositories/repositories-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/saved-queries-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/saved-queries-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/security-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/security-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/setup/plugins-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/setup/plugins-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/similarity-index-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/similarity-index-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/ttyg/ttyg-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/ttyg/ttyg-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/yasgui/connectors-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/yasgui/connectors-stubs.js -------------------------------------------------------------------------------- /e2e-tests/stubs/yasgui/query-stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/stubs/yasgui/query-stubs.js -------------------------------------------------------------------------------- /e2e-tests/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/commands.js -------------------------------------------------------------------------------- /e2e-tests/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/e2e.js -------------------------------------------------------------------------------- /e2e-tests/support/import-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/import-commands.js -------------------------------------------------------------------------------- /e2e-tests/support/repository-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/repository-commands.js -------------------------------------------------------------------------------- /e2e-tests/support/security-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/security-command.js -------------------------------------------------------------------------------- /e2e-tests/support/settings-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/settings-commands.js -------------------------------------------------------------------------------- /e2e-tests/support/sparql-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/sparql-commands.js -------------------------------------------------------------------------------- /e2e-tests/support/user-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/user-commands.js -------------------------------------------------------------------------------- /e2e-tests/support/visual-graph-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/support/visual-graph-commands.js -------------------------------------------------------------------------------- /e2e-tests/utils/html-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/e2e-tests/utils/html-util.js -------------------------------------------------------------------------------- /eslint.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/eslint.config.base.js -------------------------------------------------------------------------------- /license-checker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/license-checker/README -------------------------------------------------------------------------------- /license-checker/license-checker-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/license-checker/license-checker-format.json -------------------------------------------------------------------------------- /license-checker/license-checker-static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/license-checker/license-checker-static.json -------------------------------------------------------------------------------- /licenses/D3_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/licenses/D3_LICENSE.txt -------------------------------------------------------------------------------- /licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/licenses/LICENSE -------------------------------------------------------------------------------- /licenses/REQUIREJS_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/licenses/REQUIREJS_LICENSE.txt -------------------------------------------------------------------------------- /licenses/THIRDPARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/licenses/THIRDPARTY_LICENSES.txt -------------------------------------------------------------------------------- /licenses/YASGUI_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/licenses/YASGUI_LICENSE.txt -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/package.json -------------------------------------------------------------------------------- /packages/api/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/.babelrc -------------------------------------------------------------------------------- /packages/api/.env.test: -------------------------------------------------------------------------------- 1 | BABEL_ENV=test 2 | -------------------------------------------------------------------------------- /packages/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/.gitignore -------------------------------------------------------------------------------- /packages/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/README.md -------------------------------------------------------------------------------- /packages/api/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/eslint.config.js -------------------------------------------------------------------------------- /packages/api/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/global.d.ts -------------------------------------------------------------------------------- /packages/api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/jest.config.js -------------------------------------------------------------------------------- /packages/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/package-lock.json -------------------------------------------------------------------------------- /packages/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/package.json -------------------------------------------------------------------------------- /packages/api/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/declarations.d.ts -------------------------------------------------------------------------------- /packages/api/src/emitters/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/emitters/emitter.ts -------------------------------------------------------------------------------- /packages/api/src/emitters/event.emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/emitters/event.emitter.ts -------------------------------------------------------------------------------- /packages/api/src/error/error-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/error/error-base.ts -------------------------------------------------------------------------------- /packages/api/src/error/index.ts: -------------------------------------------------------------------------------- 1 | export * from './error-base'; 2 | -------------------------------------------------------------------------------- /packages/api/src/interceptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/interceptor/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/app-lifecycle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/app-lifecycle/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/app-lifecycle/lifecycle-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/app-lifecycle/lifecycle-state.ts -------------------------------------------------------------------------------- /packages/api/src/models/application-settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './application-settings'; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/common/awaitable.ts: -------------------------------------------------------------------------------- 1 | export type Awaitable = () => Promise; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/common/copyable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/copyable.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/id-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/id-model.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/model-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/model-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/model.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/subscription-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/subscription-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/subscription.ts: -------------------------------------------------------------------------------- 1 | export type Subscription = () => void; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/common/test/model-list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/test/model-list.spec.ts -------------------------------------------------------------------------------- /packages/api/src/models/common/test/model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/common/test/model.spec.ts -------------------------------------------------------------------------------- /packages/api/src/models/configuration/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/configuration/configuration.ts -------------------------------------------------------------------------------- /packages/api/src/models/configuration/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/configuration/environment.ts -------------------------------------------------------------------------------- /packages/api/src/models/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/configuration/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/context/update-context-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/context/update-context-method.ts -------------------------------------------------------------------------------- /packages/api/src/models/context/value-change-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/context/value-change-callback.ts -------------------------------------------------------------------------------- /packages/api/src/models/context/value-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/context/value-context.ts -------------------------------------------------------------------------------- /packages/api/src/models/cookie/cookie-consent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/cookie/cookie-consent.ts -------------------------------------------------------------------------------- /packages/api/src/models/cookie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/cookie/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/data-structures/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/data-structures/queue.ts -------------------------------------------------------------------------------- /packages/api/src/models/events/auth/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/events/auth/login.ts -------------------------------------------------------------------------------- /packages/api/src/models/events/auth/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/events/auth/logout.ts -------------------------------------------------------------------------------- /packages/api/src/models/events/event-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/events/event-name.ts -------------------------------------------------------------------------------- /packages/api/src/models/events/event-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/events/event-observer.ts -------------------------------------------------------------------------------- /packages/api/src/models/events/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/events/event.ts -------------------------------------------------------------------------------- /packages/api/src/models/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/events/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/http-error-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/http-error-response.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/http-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/http-options.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/http-request-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/http-request-config.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/http-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/http-request.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/http-response-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/http-response-base.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/http-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/http-response.ts -------------------------------------------------------------------------------- /packages/api/src/models/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/http/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/interceptor/http-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/interceptor/http-interceptor.ts -------------------------------------------------------------------------------- /packages/api/src/models/interceptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/interceptor/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/language/available-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/language/available-language.ts -------------------------------------------------------------------------------- /packages/api/src/models/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/language/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/language/language-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/language/language-config.ts -------------------------------------------------------------------------------- /packages/api/src/models/language/translation-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/language/translation-bundle.ts -------------------------------------------------------------------------------- /packages/api/src/models/license/capability-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/license/capability-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/license/capability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/license/capability.ts -------------------------------------------------------------------------------- /packages/api/src/models/license/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/license/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/license/license.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/license/license.ts -------------------------------------------------------------------------------- /packages/api/src/models/license/product-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/license/product-type.ts -------------------------------------------------------------------------------- /packages/api/src/models/license/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/license/product.ts -------------------------------------------------------------------------------- /packages/api/src/models/logging/log-level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/logging/log-level.ts -------------------------------------------------------------------------------- /packages/api/src/models/logging/logger-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/logging/logger-config.ts -------------------------------------------------------------------------------- /packages/api/src/models/logging/logger-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/logging/logger-definitions.ts -------------------------------------------------------------------------------- /packages/api/src/models/logging/logger-type.ts: -------------------------------------------------------------------------------- 1 | export enum LoggerType { 2 | CONSOLE = 'console', 3 | } 4 | -------------------------------------------------------------------------------- /packages/api/src/models/logging/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/logging/logger.ts -------------------------------------------------------------------------------- /packages/api/src/models/monitoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/monitoring/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/monitoring/operation-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/monitoring/operation-group.ts -------------------------------------------------------------------------------- /packages/api/src/models/monitoring/operation-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/monitoring/operation-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/monitoring/operation-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/monitoring/operation-status.ts -------------------------------------------------------------------------------- /packages/api/src/models/monitoring/operation-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/monitoring/operation-type.ts -------------------------------------------------------------------------------- /packages/api/src/models/monitoring/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/monitoring/operation.ts -------------------------------------------------------------------------------- /packages/api/src/models/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/notification/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/notification/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/notification/notification.ts -------------------------------------------------------------------------------- /packages/api/src/models/plugins/extension-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/plugins/extension-point.ts -------------------------------------------------------------------------------- /packages/api/src/models/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/plugins/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/plugins/plugin-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/plugins/plugin-definition.ts -------------------------------------------------------------------------------- /packages/api/src/models/plugins/plugin-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/plugins/plugin-module.ts -------------------------------------------------------------------------------- /packages/api/src/models/plugins/plugin-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/plugins/plugin-registry.ts -------------------------------------------------------------------------------- /packages/api/src/models/plugins/plugins-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/plugins/plugins-manifest.ts -------------------------------------------------------------------------------- /packages/api/src/models/product-info/index.ts: -------------------------------------------------------------------------------- 1 | export * from './product-info'; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/product-info/product-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/product-info/product-info.ts -------------------------------------------------------------------------------- /packages/api/src/models/rdf-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/rdf-search/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/rdf-search/search-button-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/rdf-search/search-button-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/rdf-search/search-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/rdf-search/search-button.ts -------------------------------------------------------------------------------- /packages/api/src/models/rdf-search/suggestion-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/rdf-search/suggestion-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/rdf-search/suggestion-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/rdf-search/suggestion-type.ts -------------------------------------------------------------------------------- /packages/api/src/models/rdf-search/suggestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/rdf-search/suggestion.ts -------------------------------------------------------------------------------- /packages/api/src/models/repositories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/repositories/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/repositories/repository-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/repositories/repository-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/repositories/repository-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/repositories/repository-state.ts -------------------------------------------------------------------------------- /packages/api/src/models/repositories/repository-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/repositories/repository-type.ts -------------------------------------------------------------------------------- /packages/api/src/models/repositories/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/repositories/repository.ts -------------------------------------------------------------------------------- /packages/api/src/models/repository-location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/repository-location/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/routing/route-item-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/routing/route-item-model.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/auth-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/auth-settings.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/authenticated-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/authenticated-user.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/authentication-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/authentication-type.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/authentication/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/response-models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth-settings-response-model'; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/security/restricted-pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/restricted-pages.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/rights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/rights.ts -------------------------------------------------------------------------------- /packages/api/src/models/security/security-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/security/security-config.ts -------------------------------------------------------------------------------- /packages/api/src/models/single-spa/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/single-spa/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/single-spa/single-spa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/single-spa/single-spa.ts -------------------------------------------------------------------------------- /packages/api/src/models/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/storage/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/storage/storage-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/storage/storage-data.ts -------------------------------------------------------------------------------- /packages/api/src/models/storage/storage-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/storage/storage-key.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toast-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/toast-config.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toast-message-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/toast-message-list.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toast-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/toast-message.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toast-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/toast-type.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toastr-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/toastr-config.ts -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toastr-constants.ts: -------------------------------------------------------------------------------- 1 | export const CREATE_TOAST_EVENT = 'create-toast-event'; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/toastr/toastr-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/toastr/toastr-position.ts -------------------------------------------------------------------------------- /packages/api/src/models/translation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/translation/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/url/index.ts: -------------------------------------------------------------------------------- 1 | export * from './url-path-params'; 2 | -------------------------------------------------------------------------------- /packages/api/src/models/url/url-path-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/url/url-path-params.ts -------------------------------------------------------------------------------- /packages/api/src/models/users/app-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/users/app-settings.ts -------------------------------------------------------------------------------- /packages/api/src/models/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/users/index.ts -------------------------------------------------------------------------------- /packages/api/src/models/users/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/models/users/user.ts -------------------------------------------------------------------------------- /packages/api/src/ontotext-workbench-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/ontotext-workbench-api.ts -------------------------------------------------------------------------------- /packages/api/src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/index.ts -------------------------------------------------------------------------------- /packages/api/src/providers/mapper/mapper.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/mapper/mapper.provider.ts -------------------------------------------------------------------------------- /packages/api/src/providers/mapper/mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/mapper/mapper.ts -------------------------------------------------------------------------------- /packages/api/src/providers/service/lifecycle-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/service/lifecycle-hooks.ts -------------------------------------------------------------------------------- /packages/api/src/providers/service/service-inject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/service/service-inject.ts -------------------------------------------------------------------------------- /packages/api/src/providers/service/service.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/service/service.provider.ts -------------------------------------------------------------------------------- /packages/api/src/providers/service/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/providers/service/service.ts -------------------------------------------------------------------------------- /packages/api/src/services/app-lifecycle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/app-lifecycle/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/application-settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './application-settings-storage.service'; 2 | -------------------------------------------------------------------------------- /packages/api/src/services/autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/autocomplete/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/configuration/env.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/configuration/env.default.json -------------------------------------------------------------------------------- /packages/api/src/services/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/configuration/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/context/context.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/context/context.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/context/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/cookie/cookie.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/cookie/cookie.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/cookie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/cookie/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/event-service/event.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/event-service/event.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/event-service/index.ts: -------------------------------------------------------------------------------- 1 | export * from './event.service'; 2 | -------------------------------------------------------------------------------- /packages/api/src/services/http/http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/http/http.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/http/test/http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/http/test/http.service.spec.ts -------------------------------------------------------------------------------- /packages/api/src/services/http/test/response-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/http/test/response-mock.ts -------------------------------------------------------------------------------- /packages/api/src/services/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/language/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/language/language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/language/language.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/license/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/license/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/license/license.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/license/license.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/logging/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/logging/logger-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/logging/logger-provider.ts -------------------------------------------------------------------------------- /packages/api/src/services/logging/logger-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/logging/logger-service.ts -------------------------------------------------------------------------------- /packages/api/src/services/logging/loggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/logging/loggers.ts -------------------------------------------------------------------------------- /packages/api/src/services/logging/test/loggers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/logging/test/loggers.spec.ts -------------------------------------------------------------------------------- /packages/api/src/services/monitoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/monitoring/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/namespace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/namespace/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/navigation/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/notification/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/plugins/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/plugins/plugins.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/plugins/plugins.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/product-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/product-info/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/rdf-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/rdf-search/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/repository-location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/repository-location/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/repository/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/routing/routing.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/routing/routing.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/security/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/security/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/security/openid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/security/openid/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/security/security.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/security/security.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/storage/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/storage/persistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/storage/persistence.ts -------------------------------------------------------------------------------- /packages/api/src/services/theme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './theme.service'; 2 | -------------------------------------------------------------------------------- /packages/api/src/services/theme/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/theme/theme.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/toastr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/toastr/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/toastr/onto-toastr.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/toastr/onto-toastr.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/users/index.ts: -------------------------------------------------------------------------------- 1 | export * from './users.service'; 2 | -------------------------------------------------------------------------------- /packages/api/src/services/users/user-request.mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/users/user-request.mapper.ts -------------------------------------------------------------------------------- /packages/api/src/services/users/user-response.mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/users/user-response.mapper.ts -------------------------------------------------------------------------------- /packages/api/src/services/users/users-rest.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/users/users-rest.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/users/users.service.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/build-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/build-util.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/fibonacci-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/fibonacci-generator.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/generator-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/generator-utils.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/object-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/object-util.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/routing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/routing-utils.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/test/object-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/test/object-util.spec.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/test/test-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/test/test-util.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/test/uri-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/test/uri-util.spec.ts -------------------------------------------------------------------------------- /packages/api/src/services/utils/uri-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/utils/uri-util.ts -------------------------------------------------------------------------------- /packages/api/src/services/window/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/window/index.ts -------------------------------------------------------------------------------- /packages/api/src/services/window/window.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/src/services/window/window.service.ts -------------------------------------------------------------------------------- /packages/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/tsconfig.json -------------------------------------------------------------------------------- /packages/api/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/api/webpack.config.js -------------------------------------------------------------------------------- /packages/legacy-workbench/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/.babelrc -------------------------------------------------------------------------------- /packages/legacy-workbench/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/.dockerignore -------------------------------------------------------------------------------- /packages/legacy-workbench/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/.editorconfig -------------------------------------------------------------------------------- /packages/legacy-workbench/.env: -------------------------------------------------------------------------------- 1 | GDB_VERSION=11.1.0-TR11 2 | -------------------------------------------------------------------------------- /packages/legacy-workbench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/.gitignore -------------------------------------------------------------------------------- /packages/legacy-workbench/.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/legacy-workbench/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/Dockerfile -------------------------------------------------------------------------------- /packages/legacy-workbench/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/Jenkinsfile -------------------------------------------------------------------------------- /packages/legacy-workbench/JenkinsfileRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/JenkinsfileRelease -------------------------------------------------------------------------------- /packages/legacy-workbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/README.md -------------------------------------------------------------------------------- /packages/legacy-workbench/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/docker-compose.yml -------------------------------------------------------------------------------- /packages/legacy-workbench/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/eslint.config.cjs -------------------------------------------------------------------------------- /packages/legacy-workbench/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/package-lock.json -------------------------------------------------------------------------------- /packages/legacy-workbench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/package.json -------------------------------------------------------------------------------- /packages/legacy-workbench/scripts/copyfiles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/legacy-workbench/scripts/license-report.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/legacy-workbench/scripts/run-cypress-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/scripts/run-cypress-tests.sh -------------------------------------------------------------------------------- /packages/legacy-workbench/sonar-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/sonar-project.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/aclmanagement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/aclmanagement.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/angular-tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/angular-tooltips.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/autocomplete.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/backup-and-restore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/backup-and-restore.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/clustermanagement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/clustermanagement.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/cookie-policy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/cookie-policy.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/dependencies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/dependencies.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/domain-range-graph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/domain-range-graph.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/dynamic-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/dynamic-form.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/editable-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/editable-content.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/explore.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/export.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/find.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/find.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/graphs-config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/graphs-config.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/guides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/guides.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/home.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/expand.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/labels-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/labels-size.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/node.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/predicates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/predicates.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/query.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/search.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/images/side-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/images/side-panel.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/import.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/jdbc-create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/jdbc-create.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/jmx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/jmx.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/lib/swagger-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/lib/swagger-ui.min.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/markdown-content.css: -------------------------------------------------------------------------------- 1 | markdown-content { 2 | overflow-wrap: break-word; 3 | } 4 | -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/multiselect-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/multiselect-search.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/plugins.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/rdfrank.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/rdfrank.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/repositories.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/repositories.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/repository.create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/repository.create.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/search-resource-input.css: -------------------------------------------------------------------------------- 1 | .autocomplete-hint { 2 | font-size: 12px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/shepherd-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/shepherd-custom.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/similarity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/similarity.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/sparql-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/sparql-editor.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/sparql-templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/sparql-templates.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/swagger.custom.css: -------------------------------------------------------------------------------- 1 | .api-infos { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/ttyg/agent-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/ttyg/agent-list.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/ttyg/chat-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/ttyg/chat-list.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/ttyg/chat-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/ttyg/chat-panel.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/ttyg/ttyg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/ttyg/ttyg.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/user.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/ux-test1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/ux-test1.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/wizard.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/css/workbench-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/css/workbench-custom.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/font/OpenSans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/font/OpenSans/LICENSE.txt -------------------------------------------------------------------------------- /packages/legacy-workbench/src/i18n/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/i18n/languages.json -------------------------------------------------------------------------------- /packages/legacy-workbench/src/i18n/locale-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/i18n/locale-en.json -------------------------------------------------------------------------------- /packages/legacy-workbench/src/i18n/locale-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/i18n/locale-fr.json -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/FEBD255B684CDFDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/FEBD255B684CDFDF.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/ajax-loader.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/forest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/forest.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/graphdb-logo-sq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/graphdb-logo-sq.svg -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/graphdb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/graphdb-logo.svg -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/graphdb-splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/graphdb-splash.svg -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/loading.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/loading2.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/ontotext-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/ontotext-logo.png -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank0.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank1.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank10.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank2.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank3.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank4.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank5.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank6.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank7.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank8.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/img/rank9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/img/rank9.gif -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/controllers.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/explore/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/explore/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/export/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/export/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/graphql/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/graphql/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/guides/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/guides/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/import/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/import/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/jdbc/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/jdbc/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/jdbc/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/jdbc/plugin.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/models/sparql/cancel-aborting-query.js: -------------------------------------------------------------------------------- 1 | export class CancelAbortingQuery extends Error {} 2 | -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/models/sparql/constants.js: -------------------------------------------------------------------------------- 1 | export const VIEW_SPARQL_EDITOR = 'graphdb-workbench-sparql-editor'; 2 | -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/plugin.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/plugins/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/plugins/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/queries/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/queries/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/rdfrank/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/rdfrank/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/stats/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/stats/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/angular/ttyg/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/angular/ttyg/app.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/lib/d3-tip/d3-tip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/lib/d3-tip/d3-tip.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/js/lib/d3.patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/js/lib/d3.patch.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/less/core.less -------------------------------------------------------------------------------- /packages/legacy-workbench/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/main.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/accessdenied.html: -------------------------------------------------------------------------------- 1 | 2 |

{{'access.to.url.restricted' | translate}}

3 | -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/aclmanagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/aclmanagement.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/autocomplete.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/create-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/create-index.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/dependencies.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/edit.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/explore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/explore.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/export.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/find.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/guides.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/home.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/import.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/info.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/jdbc-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/jdbc-create.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/jdbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/jdbc.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/licenseInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/licenseInfo.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/namespaces.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/not_found.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/plugins.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/rdfrank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/rdfrank.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/repositories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/repositories.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/repository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/repository.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/sparql-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/sparql-editor.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/ux-test1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/ux-test1.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/ux-test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/ux-test2.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/viewQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/viewQuery.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/pages/webapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/pages/webapi.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/res/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/res/modal.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/res/swagger5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/res/swagger5/README.md -------------------------------------------------------------------------------- /packages/legacy-workbench/src/res/swagger5/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/res/swagger5/index.css -------------------------------------------------------------------------------- /packages/legacy-workbench/src/res/swagger5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/res/swagger5/index.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/single-spa-angularjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/single-spa-angularjs.js -------------------------------------------------------------------------------- /packages/legacy-workbench/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/template.html -------------------------------------------------------------------------------- /packages/legacy-workbench/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/legacy-workbench/src/vendor.js -------------------------------------------------------------------------------- /packages/root-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/.gitignore -------------------------------------------------------------------------------- /packages/root-config/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/babel.config.json -------------------------------------------------------------------------------- /packages/root-config/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/eslint.config.js -------------------------------------------------------------------------------- /packages/root-config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/jest.config.js -------------------------------------------------------------------------------- /packages/root-config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/package-lock.json -------------------------------------------------------------------------------- /packages/root-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/package.json -------------------------------------------------------------------------------- /packages/root-config/scripts/validate-translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/scripts/validate-translations.js -------------------------------------------------------------------------------- /packages/root-config/src/assets/graphdb-splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/assets/graphdb-splash.svg -------------------------------------------------------------------------------- /packages/root-config/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/assets/images/favicon.png -------------------------------------------------------------------------------- /packages/root-config/src/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /packages/root-config/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/index.ejs -------------------------------------------------------------------------------- /packages/root-config/src/microfrontend-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/microfrontend-layout.json -------------------------------------------------------------------------------- /packages/root-config/src/onto-vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/onto-vendor.js -------------------------------------------------------------------------------- /packages/root-config/src/ontotext-root-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/ontotext-root-config.js -------------------------------------------------------------------------------- /packages/root-config/src/services/logger-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/services/logger-provider.js -------------------------------------------------------------------------------- /packages/root-config/src/styles/css/splash-screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/css/splash-screen.css -------------------------------------------------------------------------------- /packages/root-config/src/styles/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/fonts/icons.eot -------------------------------------------------------------------------------- /packages/root-config/src/styles/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/fonts/icons.svg -------------------------------------------------------------------------------- /packages/root-config/src/styles/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/fonts/icons.ttf -------------------------------------------------------------------------------- /packages/root-config/src/styles/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/fonts/icons.woff -------------------------------------------------------------------------------- /packages/root-config/src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/main.scss -------------------------------------------------------------------------------- /packages/root-config/src/styles/onto-stylesheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/onto-stylesheet.scss -------------------------------------------------------------------------------- /packages/root-config/src/styles/partials/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/styles/partials/_core.scss -------------------------------------------------------------------------------- /packages/root-config/src/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /packages/root-config/src/vendor/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/vendor/common.css -------------------------------------------------------------------------------- /packages/root-config/src/vendor/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/vendor/fonts.css -------------------------------------------------------------------------------- /packages/root-config/src/vendor/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/vendor/icons.css -------------------------------------------------------------------------------- /packages/root-config/src/vendor/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/src/vendor/variables.css -------------------------------------------------------------------------------- /packages/root-config/test/fixtures/packages/pkg-conflict/src/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "Bonjour" 3 | } 4 | -------------------------------------------------------------------------------- /packages/root-config/test/fixtures/packages/pkg-invalid/src/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "key1": "Value1" 3 | } 4 | -------------------------------------------------------------------------------- /packages/root-config/test/fixtures/packages/pkg-locale/src/i18n/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "Grüß Gott" 3 | } 4 | -------------------------------------------------------------------------------- /packages/root-config/test/fixtures/packages/pkg-valid/src/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "Bonjour" 3 | } 4 | -------------------------------------------------------------------------------- /packages/root-config/test/validate-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/root-config/test/validate-utils.test.js -------------------------------------------------------------------------------- /packages/shared-components/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/.editorconfig -------------------------------------------------------------------------------- /packages/shared-components/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/.env -------------------------------------------------------------------------------- /packages/shared-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/.gitignore -------------------------------------------------------------------------------- /packages/shared-components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/LICENSE -------------------------------------------------------------------------------- /packages/shared-components/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/cypress.config.js -------------------------------------------------------------------------------- /packages/shared-components/cypress/steps/base-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/cypress/steps/base-steps.js -------------------------------------------------------------------------------- /packages/shared-components/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/cypress/support/commands.js -------------------------------------------------------------------------------- /packages/shared-components/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/cypress/support/e2e.js -------------------------------------------------------------------------------- /packages/shared-components/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/docker-compose.yaml -------------------------------------------------------------------------------- /packages/shared-components/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/eslint.config.js -------------------------------------------------------------------------------- /packages/shared-components/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/global.d.ts -------------------------------------------------------------------------------- /packages/shared-components/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/jest.config.js -------------------------------------------------------------------------------- /packages/shared-components/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/package-lock.json -------------------------------------------------------------------------------- /packages/shared-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/package.json -------------------------------------------------------------------------------- /packages/shared-components/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/readme.md -------------------------------------------------------------------------------- /packages/shared-components/sonar-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/sonar-project.js -------------------------------------------------------------------------------- /packages/shared-components/sonar-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/sonar-run.sh -------------------------------------------------------------------------------- /packages/shared-components/src/assets/graphdb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/assets/graphdb-logo.svg -------------------------------------------------------------------------------- /packages/shared-components/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/assets/i18n/en.json -------------------------------------------------------------------------------- /packages/shared-components/src/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/assets/i18n/fr.json -------------------------------------------------------------------------------- /packages/shared-components/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/components.d.ts -------------------------------------------------------------------------------- /packages/shared-components/src/components/translate-label/translate-label.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /packages/shared-components/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/index.html -------------------------------------------------------------------------------- /packages/shared-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/index.ts -------------------------------------------------------------------------------- /packages/shared-components/src/models/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/models/constants.ts -------------------------------------------------------------------------------- /packages/shared-components/src/pages/dropdown/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/dropdown/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/fake-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/fake-server.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/footer/index.html -------------------------------------------------------------------------------- /packages/shared-components/src/pages/footer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/footer/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/header/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/header/index.html -------------------------------------------------------------------------------- /packages/shared-components/src/pages/header/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/header/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/js/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/layout/index.html -------------------------------------------------------------------------------- /packages/shared-components/src/pages/layout/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/layout/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/navbar/index.html -------------------------------------------------------------------------------- /packages/shared-components/src/pages/navbar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/navbar/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/operations-notification/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/shared-components/src/pages/toastr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/toastr/index.html -------------------------------------------------------------------------------- /packages/shared-components/src/pages/toastr/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/toastr/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/tooltip/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/tooltip/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/pages/user-menu/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/pages/user-menu/main.js -------------------------------------------------------------------------------- /packages/shared-components/src/utils/function-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/utils/function-utils.ts -------------------------------------------------------------------------------- /packages/shared-components/src/utils/html-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/utils/html-util.ts -------------------------------------------------------------------------------- /packages/shared-components/src/utils/html-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/utils/html-utils.ts -------------------------------------------------------------------------------- /packages/shared-components/src/utils/tooltip-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/utils/tooltip-util.ts -------------------------------------------------------------------------------- /packages/shared-components/src/utils/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/utils/utils.spec.ts -------------------------------------------------------------------------------- /packages/shared-components/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/src/utils/utils.ts -------------------------------------------------------------------------------- /packages/shared-components/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/stencil.config.ts -------------------------------------------------------------------------------- /packages/shared-components/stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/stylelint.config.cjs -------------------------------------------------------------------------------- /packages/shared-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/shared-components/tsconfig.json -------------------------------------------------------------------------------- /packages/styleguide/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/.gitignore -------------------------------------------------------------------------------- /packages/styleguide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/README.md -------------------------------------------------------------------------------- /packages/styleguide/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/babel.config.json -------------------------------------------------------------------------------- /packages/styleguide/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/eslint.config.js -------------------------------------------------------------------------------- /packages/styleguide/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/jest.config.js -------------------------------------------------------------------------------- /packages/styleguide/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/package-lock.json -------------------------------------------------------------------------------- /packages/styleguide/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/package.json -------------------------------------------------------------------------------- /packages/styleguide/scripts/purge-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/scripts/purge-css.js -------------------------------------------------------------------------------- /packages/styleguide/src/css-purger/purge-css-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/src/css-purger/purge-css-vars.js -------------------------------------------------------------------------------- /packages/styleguide/src/css/dark-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/src/css/dark-mode.css -------------------------------------------------------------------------------- /packages/styleguide/src/css/light-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/src/css/light-mode.css -------------------------------------------------------------------------------- /packages/styleguide/src/ontotext-styleguide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/src/ontotext-styleguide.js -------------------------------------------------------------------------------- /packages/styleguide/stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/stylelint.config.cjs -------------------------------------------------------------------------------- /packages/styleguide/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/styleguide/webpack.config.js -------------------------------------------------------------------------------- /packages/workbench/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/.editorconfig -------------------------------------------------------------------------------- /packages/workbench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/.gitignore -------------------------------------------------------------------------------- /packages/workbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/README.md -------------------------------------------------------------------------------- /packages/workbench/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/angular.json -------------------------------------------------------------------------------- /packages/workbench/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/eslint.config.js -------------------------------------------------------------------------------- /packages/workbench/extra-webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/extra-webpack.config.js -------------------------------------------------------------------------------- /packages/workbench/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/jest.config.ts -------------------------------------------------------------------------------- /packages/workbench/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/package-lock.json -------------------------------------------------------------------------------- /packages/workbench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/package.json -------------------------------------------------------------------------------- /packages/workbench/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/public/favicon.ico -------------------------------------------------------------------------------- /packages/workbench/sonar-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/sonar-project.js -------------------------------------------------------------------------------- /packages/workbench/sonar-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/sonar-run.sh -------------------------------------------------------------------------------- /packages/workbench/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/app.component.html -------------------------------------------------------------------------------- /packages/workbench/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/app.component.scss -------------------------------------------------------------------------------- /packages/workbench/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /packages/workbench/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/app.component.ts -------------------------------------------------------------------------------- /packages/workbench/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/app.config.ts -------------------------------------------------------------------------------- /packages/workbench/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/app.routes.ts -------------------------------------------------------------------------------- /packages/workbench/src/app/bootstrap/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/bootstrap/bootstrap.ts -------------------------------------------------------------------------------- /packages/workbench/src/app/new-view/new-view.component.html: -------------------------------------------------------------------------------- 1 |

{{'new-view' | transloco}}

2 | -------------------------------------------------------------------------------- /packages/workbench/src/app/services/logger-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/services/logger-provider.ts -------------------------------------------------------------------------------- /packages/workbench/src/app/sparql/sparql.component.html: -------------------------------------------------------------------------------- 1 |

sparql works!

2 | -------------------------------------------------------------------------------- /packages/workbench/src/app/sparql/sparql.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/app/sparql/sparql.component.ts -------------------------------------------------------------------------------- /packages/workbench/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/assets/i18n/en.json -------------------------------------------------------------------------------- /packages/workbench/src/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/assets/i18n/fr.json -------------------------------------------------------------------------------- /packages/workbench/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/workbench/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/workbench/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/index.html -------------------------------------------------------------------------------- /packages/workbench/src/main.single-spa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/main.single-spa.ts -------------------------------------------------------------------------------- /packages/workbench/src/single-spa/asset-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/single-spa/asset-url.ts -------------------------------------------------------------------------------- /packages/workbench/src/single-spa/single-spa-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/single-spa/single-spa-props.ts -------------------------------------------------------------------------------- /packages/workbench/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/src/styles.scss -------------------------------------------------------------------------------- /packages/workbench/stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/stylelint.config.cjs -------------------------------------------------------------------------------- /packages/workbench/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/tsconfig.app.json -------------------------------------------------------------------------------- /packages/workbench/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/tsconfig.json -------------------------------------------------------------------------------- /packages/workbench/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/packages/workbench/tsconfig.spec.json -------------------------------------------------------------------------------- /release.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/release.Jenkinsfile -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/clean-locks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/clean-locks.sh -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/copy-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/copy-plugins.sh -------------------------------------------------------------------------------- /scripts/docker-rootfs/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/docker-rootfs/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /scripts/docker-rootfs/usr/local/bin/start-workbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/docker-rootfs/usr/local/bin/start-workbench.sh -------------------------------------------------------------------------------- /scripts/error-handling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/error-handling.sh -------------------------------------------------------------------------------- /scripts/install-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/install-local.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/postinstall.sh -------------------------------------------------------------------------------- /scripts/sonar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/sonar.sh -------------------------------------------------------------------------------- /scripts/test-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/test-coverage.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/scripts/validate.sh -------------------------------------------------------------------------------- /sonar-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/sonar-project.js -------------------------------------------------------------------------------- /stylelint.config.base.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/stylelint.config.base.cjs -------------------------------------------------------------------------------- /webpack.config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/webpack.config.common.js -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/webpack.config.prod.js -------------------------------------------------------------------------------- /webpack/merge-i18n-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/webpack/merge-i18n-plugin.js -------------------------------------------------------------------------------- /webpack/merge-json-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/webpack/merge-json-plugin.js -------------------------------------------------------------------------------- /workbench.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ontotext-AD/graphdb-workbench/HEAD/workbench.Dockerfile --------------------------------------------------------------------------------