├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ ├── documentation.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── .reuse └── dep5 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES └── EPL-2.0.txt ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── cli ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── eclipse │ │ └── dirigible │ │ └── cli │ │ ├── DirigibleCLIApplication.java │ │ ├── DirigibleServerException.java │ │ ├── ProjectCommands.java │ │ ├── project │ │ └── ProjectGenerator.java │ │ ├── server │ │ ├── DirigibleServer.java │ │ └── DirigibleServerConfig.java │ │ └── util │ │ ├── ProcessException.java │ │ ├── ProcessManager.java │ │ └── SleepUtil.java │ └── resources │ └── application.properties ├── components ├── api │ ├── api-bpm │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── bpm │ │ │ └── BpmFacade.java │ ├── api-cache │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── cache │ │ │ │ └── CacheFacade.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── cache │ │ │ └── CacheFacadeTest.java │ ├── api-cms │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── cms │ │ │ └── CmisFacade.java │ ├── api-component │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── component │ │ │ ├── ComponentContextHolder.java │ │ │ └── ComponentFacade.java │ ├── api-core │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── core │ │ │ │ ├── ContextFacade.java │ │ │ │ ├── DestinationsFacade.java │ │ │ │ ├── EnvFacade.java │ │ │ │ └── GlobalsFacade.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── core │ │ │ │ └── CoreSuiteTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ ├── core-test-suite.js │ │ │ └── core-tests │ │ │ ├── configurations-get-test.js │ │ │ ├── context-get-test.js │ │ │ ├── destinations-get-test.js │ │ │ ├── env-get-test.js │ │ │ ├── env-list-test.js │ │ │ ├── globals-get-test.js │ │ │ ├── globals-list-test.js │ │ │ └── project.json │ ├── api-database │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── db │ │ │ │ ├── DataStoreFacade.java │ │ │ │ └── DatabaseFacade.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── db │ │ │ │ ├── DatabaseSuiteTest.java │ │ │ │ ├── SqlParserTest.java │ │ │ │ └── TestConfig.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ ├── db-tests │ │ │ │ ├── database-get-connection.js │ │ │ │ ├── database-get-datasources.js │ │ │ │ ├── database-get-metadata.js │ │ │ │ ├── query-execute.js │ │ │ │ ├── sequence-nextval.js │ │ │ │ └── update-execute.js │ │ │ │ └── test │ │ │ │ └── ApiDB.datasource │ │ │ └── quartz.properties │ ├── api-etcd │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── etcd │ │ │ │ └── EtcdFacade.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── componenets │ │ │ └── api │ │ │ └── etcd │ │ │ └── EtcdFacadeTest.java │ ├── api-extensions │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── extensions │ │ │ │ └── ExtensionsFacade.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── extensions │ │ │ │ └── ExtensionsSuiteTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── extensions-tests │ │ │ ├── extensions-get-extension-points.js │ │ │ └── extensions-get-extensions.js │ ├── api-git │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── git │ │ │ │ └── GitFacade.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── git │ │ │ │ ├── GitFacadeTest.java │ │ │ │ └── GitSuiteTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── git-tests │ │ │ └── git-local.js │ ├── api-http │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── http │ │ │ │ ├── HttpClientAsyncFacade.java │ │ │ │ ├── HttpClientFacade.java │ │ │ │ ├── HttpRequestFacade.java │ │ │ │ ├── HttpResponseFacade.java │ │ │ │ ├── HttpSessionFacade.java │ │ │ │ ├── HttpUploadFacade.java │ │ │ │ └── client │ │ │ │ ├── HttpClientFile.java │ │ │ │ ├── HttpClientHeader.java │ │ │ │ ├── HttpClientParam.java │ │ │ │ ├── HttpClientProxyUtils.java │ │ │ │ ├── HttpClientRequestOptions.java │ │ │ │ └── HttpClientResponse.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── componenets │ │ │ │ └── api │ │ │ │ └── http │ │ │ │ └── HttpSuiteTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── http-tests │ │ │ ├── client-get-binary.js │ │ │ ├── client-get.js │ │ │ ├── project.json │ │ │ ├── request-get-attribute.js │ │ │ ├── request-get-auth-type.js │ │ │ ├── request-get-header-names.js │ │ │ ├── request-get-header.js │ │ │ ├── request-get-method.js │ │ │ ├── request-get-path-info.js │ │ │ ├── request-get-path-translated.js │ │ │ ├── request-get-remote-user.js │ │ │ ├── request-get-server-name.js │ │ │ ├── request-is-user-in-role.js │ │ │ ├── request-is-valid.js │ │ │ ├── response-get-header-names.js │ │ │ ├── session-get-attribute-names.js │ │ │ ├── upload.html │ │ │ └── upload.js │ ├── api-indexing │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── api │ │ │ │ │ └── indexing │ │ │ │ │ ├── IndexingFacade.java │ │ │ │ │ └── service │ │ │ │ │ └── IndexingService.java │ │ │ └── resources │ │ │ │ └── dirigible-indexing.properties │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── indexing │ │ │ │ ├── IndexingSuiteTest.java │ │ │ │ └── service │ │ │ │ └── IndexingServiceTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── indexing-tests │ │ │ ├── searcher-between.js │ │ │ ├── searcher-search.js │ │ │ └── writer-add.js │ ├── api-io │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── io │ │ │ │ ├── BytesFacade.java │ │ │ │ ├── FTPFacade.java │ │ │ │ ├── FileObject.java │ │ │ │ ├── FilesFacade.java │ │ │ │ ├── FolderObject.java │ │ │ │ ├── ImageFacade.java │ │ │ │ ├── StreamsFacade.java │ │ │ │ ├── ZipFacade.java │ │ │ │ └── ZipProcessor.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── componenets │ │ │ │ └── api │ │ │ │ └── io │ │ │ │ ├── FilesFacadeTest.java │ │ │ │ ├── IOSuiteTest.java │ │ │ │ └── ImageFacadeTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── io-tests │ │ │ │ ├── files-create-temp-file.js │ │ │ │ ├── files-file-streams.js │ │ │ │ ├── ftp-get-file.js │ │ │ │ ├── project.json │ │ │ │ ├── streams-copy.js │ │ │ │ └── streams-text.js │ │ │ └── dirigible.png │ ├── api-job │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── job │ │ │ │ └── JobFacade.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── job │ │ │ └── templates │ │ │ ├── template-disable.txt │ │ │ ├── template-enable.txt │ │ │ ├── template-error.txt │ │ │ └── template-normal.txt │ ├── api-junit │ │ └── pom.xml │ ├── api-kafka │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── kafka │ │ │ ├── KafkaConsumerRunner.java │ │ │ └── KafkaFacade.java │ ├── api-log │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── log │ │ │ └── LogFacade.java │ ├── api-mail │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── mail │ │ │ ├── ConnectivitySocks5ProxySocket.java │ │ │ ├── EnvMailConfigProvider.java │ │ │ ├── MailClient.java │ │ │ ├── MailConfigurationProvider.java │ │ │ └── MailFacade.java │ ├── api-messaging │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── api │ │ │ │ │ └── messaging │ │ │ │ │ ├── MessagingAPIException.java │ │ │ │ │ ├── MessagingFacade.java │ │ │ │ │ └── TimeoutException.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── dirigible │ │ │ │ └── messaging │ │ │ │ └── wrappers │ │ │ │ ├── onError.js │ │ │ │ └── onMessage.js │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── messaging │ │ │ ├── MessagingFacadeNotInitializedTest.java │ │ │ └── MessagingFacadeTest.java │ ├── api-modules-javascript │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── modules │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build-source.bat │ │ │ ├── build-source.ps1 │ │ │ ├── build-source.sh │ │ │ ├── build.js │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── bpm │ │ │ │ ├── deployer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── process.sample │ │ │ │ ├── process.ts │ │ │ │ ├── tasks.ts │ │ │ │ └── values.ts │ │ │ ├── cache │ │ │ │ ├── cache.sample │ │ │ │ ├── cache.ts │ │ │ │ └── index.ts │ │ │ ├── cms │ │ │ │ ├── cmis.sample │ │ │ │ ├── cmis.ts │ │ │ │ └── index.ts │ │ │ ├── component │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ └── index.ts │ │ │ ├── core │ │ │ │ ├── configurations.sample │ │ │ │ ├── configurations.ts │ │ │ │ ├── context.sample │ │ │ │ ├── context.ts │ │ │ │ ├── env.sample │ │ │ │ ├── env.ts │ │ │ │ ├── globals.sample │ │ │ │ ├── globals.ts │ │ │ │ └── index.ts │ │ │ ├── db │ │ │ │ ├── dao.sample │ │ │ │ ├── dao.ts │ │ │ │ ├── database.sample │ │ │ │ ├── database.ts │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insert.sample │ │ │ │ ├── insert.ts │ │ │ │ ├── orm.ts │ │ │ │ ├── ormstatements.ts │ │ │ │ ├── procedure.sample │ │ │ │ ├── procedure.ts │ │ │ │ ├── query.sample │ │ │ │ ├── query.ts │ │ │ │ ├── repository.ts │ │ │ │ ├── sequence.sample │ │ │ │ ├── sequence.ts │ │ │ │ ├── sql.sample │ │ │ │ ├── sql.ts │ │ │ │ ├── store.sample │ │ │ │ ├── store.ts │ │ │ │ ├── translator.ts │ │ │ │ ├── update.sample │ │ │ │ └── update.ts │ │ │ ├── etcd │ │ │ │ ├── client.sample │ │ │ │ ├── client.ts │ │ │ │ └── index.ts │ │ │ ├── extensions │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ ├── extensions.ts │ │ │ │ └── index.ts │ │ │ ├── git │ │ │ │ ├── client.sample │ │ │ │ ├── client.ts │ │ │ │ └── index.ts │ │ │ ├── http │ │ │ │ ├── client-async.sample │ │ │ │ ├── client-async.ts │ │ │ │ ├── client.sample │ │ │ │ ├── client.ts │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── errors │ │ │ │ │ ├── ForbiddenError.ts │ │ │ │ │ └── ValidationError.ts │ │ │ │ ├── index.ts │ │ │ │ ├── path-to-regexp │ │ │ │ │ └── 6.2.1 │ │ │ │ │ │ └── index.js │ │ │ │ ├── request.sample │ │ │ │ ├── request.ts │ │ │ │ ├── response.sample │ │ │ │ ├── response.ts │ │ │ │ ├── rs.sample │ │ │ │ ├── rs.ts │ │ │ │ ├── rs │ │ │ │ │ ├── resource-common.ts │ │ │ │ │ ├── resource-http-controller.ts │ │ │ │ │ ├── resource-mappings.ts │ │ │ │ │ ├── resource-method.ts │ │ │ │ │ └── resource.ts │ │ │ │ ├── session.sample │ │ │ │ ├── session.ts │ │ │ │ ├── upload.sample │ │ │ │ ├── upload.ts │ │ │ │ └── utils.ts │ │ │ ├── index.ts │ │ │ ├── indexing │ │ │ │ ├── index.ts │ │ │ │ ├── searcher.sample │ │ │ │ ├── searcher.ts │ │ │ │ ├── writer.sample │ │ │ │ └── writer.ts │ │ │ ├── integrations │ │ │ │ ├── index.ts │ │ │ │ └── integrations.ts │ │ │ ├── io │ │ │ │ ├── bytes.sample │ │ │ │ ├── bytes.ts │ │ │ │ ├── files.sample │ │ │ │ ├── files.ts │ │ │ │ ├── image.ts │ │ │ │ ├── index.ts │ │ │ │ ├── streams.ts │ │ │ │ └── zip.ts │ │ │ ├── job │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ ├── index.ts │ │ │ │ ├── scheduler.sample │ │ │ │ └── scheduler.ts │ │ │ ├── junit │ │ │ │ ├── index.ts │ │ │ │ └── junit.ts │ │ │ ├── kafka │ │ │ │ ├── consumer.sample │ │ │ │ ├── consumer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── producer.sample │ │ │ │ └── producer.ts │ │ │ ├── log │ │ │ │ ├── index.ts │ │ │ │ ├── logging.sample │ │ │ │ └── logging.ts │ │ │ ├── mail │ │ │ │ ├── client.sample │ │ │ │ ├── client.ts │ │ │ │ └── index.ts │ │ │ ├── messaging │ │ │ │ ├── consumer.sample │ │ │ │ ├── consumer.ts │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ ├── index.ts │ │ │ │ ├── producer.sample │ │ │ │ └── producer.ts │ │ │ ├── mongodb │ │ │ │ ├── client.sample │ │ │ │ ├── client.ts │ │ │ │ ├── dao.sample │ │ │ │ ├── dao.ts │ │ │ │ └── index.ts │ │ │ ├── net │ │ │ │ ├── decorators.sample │ │ │ │ ├── decorators.ts │ │ │ │ ├── index.ts │ │ │ │ ├── soap.sample │ │ │ │ ├── soap.ts │ │ │ │ ├── websockets.sample │ │ │ │ ├── websockets.ts │ │ │ │ └── wrappers │ │ │ │ │ ├── onClose.ts │ │ │ │ │ ├── onError.ts │ │ │ │ │ ├── onMessage.ts │ │ │ │ │ └── onOpen.ts │ │ │ ├── pdf │ │ │ │ ├── index.ts │ │ │ │ ├── pdf.sample │ │ │ │ └── pdf.ts │ │ │ ├── platform │ │ │ │ ├── command.sample │ │ │ │ ├── command.ts │ │ │ │ ├── engines.sample │ │ │ │ ├── engines.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lifecycle.sample │ │ │ │ ├── lifecycle.ts │ │ │ │ ├── os.sample │ │ │ │ ├── os.ts │ │ │ │ ├── problems.sample │ │ │ │ ├── problems.ts │ │ │ │ ├── registry.sample │ │ │ │ ├── registry.ts │ │ │ │ ├── repository.sample │ │ │ │ ├── repository.ts │ │ │ │ ├── workspace.sample │ │ │ │ └── workspace.ts │ │ │ ├── qldb │ │ │ │ ├── index.ts │ │ │ │ ├── qldb.sample │ │ │ │ └── qldb.ts │ │ │ ├── rabbitmq │ │ │ │ ├── consumer.sample │ │ │ │ ├── consumer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── producer.sample │ │ │ │ └── producer.ts │ │ │ ├── redis │ │ │ │ ├── client.sample │ │ │ │ ├── client.ts │ │ │ │ └── index.ts │ │ │ ├── security │ │ │ │ ├── decorators.ts │ │ │ │ ├── index.ts │ │ │ │ ├── oauth.ts │ │ │ │ ├── user.sample │ │ │ │ └── user.ts │ │ │ ├── template │ │ │ │ ├── engines.sample │ │ │ │ ├── engines.ts │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ ├── alphanumeric.sample │ │ │ │ ├── alphanumeric.ts │ │ │ │ ├── base64.sample │ │ │ │ ├── base64.ts │ │ │ │ ├── converter.ts │ │ │ │ ├── digest.sample │ │ │ │ ├── digest.ts │ │ │ │ ├── escape.sample │ │ │ │ ├── escape.ts │ │ │ │ ├── hex.sample │ │ │ │ ├── hex.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jsonpath.sample │ │ │ │ ├── jsonpath.ts │ │ │ │ ├── qrcode.sample │ │ │ │ ├── qrcode.ts │ │ │ │ ├── url.sample │ │ │ │ ├── url.ts │ │ │ │ ├── utf8.sample │ │ │ │ ├── utf8.ts │ │ │ │ ├── uuid.sample │ │ │ │ ├── uuid.ts │ │ │ │ ├── xml.sample │ │ │ │ └── xml.ts │ │ │ ├── tsconfig.json │ │ │ └── types.d.ts │ ├── api-modules-python │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── python-modules │ │ │ └── sdk │ │ │ ├── __init__.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── configurations.py │ │ │ ├── context.py │ │ │ ├── env.py │ │ │ └── globals.py │ │ │ └── http │ │ │ ├── __init__.py │ │ │ ├── request.py │ │ │ └── response.py │ ├── api-mongodb │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── mongodb │ │ │ └── MongoDBFacade.java │ ├── api-net │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── websockets │ │ │ │ ├── ClientStompSessionHandler.java │ │ │ │ ├── Message.java │ │ │ │ ├── WebsocketClient.java │ │ │ │ └── WebsocketsFacade.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── net │ │ │ └── wrappers │ │ │ ├── onClose.js │ │ │ ├── onError.js │ │ │ ├── onMessage.js │ │ │ └── onOpen.js │ ├── api-pdf │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── api │ │ │ │ │ └── pdf │ │ │ │ │ ├── PDFException.java │ │ │ │ │ └── PDFFacade.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── dirigible │ │ │ │ └── pdf │ │ │ │ └── templates │ │ │ │ └── table.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── pdf │ │ │ │ └── PDFFacadeTest.java │ │ │ └── resources │ │ │ ├── data.xml │ │ │ ├── data2.xml │ │ │ └── template.xsl │ ├── api-platform │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── platform │ │ │ │ ├── CommandFacade.java │ │ │ │ ├── EnginesFacade.java │ │ │ │ ├── LifecycleFacade.java │ │ │ │ ├── ProblemsFacade.java │ │ │ │ ├── RegistryFacade.java │ │ │ │ ├── RepositoryFacade.java │ │ │ │ └── WorkspaceFacade.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── platform │ │ │ │ ├── PlatformSuiteTest.java │ │ │ │ └── TestConfig.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── platform-tests │ │ │ ├── command-execute.js │ │ │ ├── engines-get-types.js │ │ │ ├── lifecycle-publish-project.js │ │ │ ├── repository-create-file.js │ │ │ └── workspace-create-workspace.js │ ├── api-qldb │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── qldb │ │ │ │ ├── QLDBRepository.java │ │ │ │ └── QLDBRepositoryException.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── qldb │ │ │ ├── QLDBRepository.js │ │ │ ├── QLDBRepository.mjs │ │ │ └── extensions │ │ │ ├── modules.js │ │ │ ├── modules.json │ │ │ └── qldb.d.ts │ ├── api-qunit │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── qunit │ │ │ ├── extensions │ │ │ ├── modules.js │ │ │ ├── modules.json │ │ │ ├── qunit.d.ts │ │ │ └── qunit.extension │ │ │ ├── project.json │ │ │ ├── qunit.js │ │ │ ├── reporters │ │ │ ├── console-reporter.js │ │ │ ├── reporter-junit.js │ │ │ └── svc-reporter.js │ │ │ ├── runner.js │ │ │ └── samples │ │ │ └── tests.js │ ├── api-rabbitmq │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── rabbitmq │ │ │ │ ├── RabbitMQFacade.java │ │ │ │ └── RabbitMQReceiverRunner.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── rabbitmq │ │ │ └── RabbitMQFacadeTest.java │ ├── api-redis │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── redis │ │ │ │ └── RedisFacade.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── redis │ │ │ └── RedisFacadeTest.java │ ├── api-s3 │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── s3 │ │ │ │ ├── S3Facade.java │ │ │ │ └── TenantPathResolved.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── s3 │ │ │ └── S3FacadeTest.java │ ├── api-security │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── security │ │ │ └── UserFacade.java │ ├── api-template │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── templates │ │ │ └── TemplateEnginesFacade.java │ ├── api-test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── dirigible │ │ │ │ └── test │ │ │ │ ├── assert.js │ │ │ │ ├── extensions │ │ │ │ ├── modules.js │ │ │ │ ├── modules.json │ │ │ │ ├── test.d.ts │ │ │ │ └── test.extension │ │ │ │ ├── lib │ │ │ │ ├── IPv6.js │ │ │ │ ├── SecondLevelDomains.js │ │ │ │ ├── URI.js │ │ │ │ └── punycode.js │ │ │ │ ├── modules.js │ │ │ │ ├── project.json │ │ │ │ ├── runner.js │ │ │ │ └── ui │ │ │ │ └── dashboard.html │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── api │ │ │ │ └── test │ │ │ │ ├── APIAssertTest.java │ │ │ │ └── ForbiddenTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── test │ │ │ ├── failed.js │ │ │ └── successful.js │ └── api-utils │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── utils │ │ │ ├── Base64Facade.java │ │ │ ├── DigestFacade.java │ │ │ ├── EscapeFacade.java │ │ │ ├── HexFacade.java │ │ │ ├── QRCodeFacade.java │ │ │ ├── UTF8Facade.java │ │ │ ├── UrlFacade.java │ │ │ ├── UuidFacade.java │ │ │ └── Xml2JsonFacade.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── api │ │ │ └── utils │ │ │ └── UtilsSuiteTest.java │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── utils-tests │ │ ├── base64-decode.js │ │ ├── base64-encode.js │ │ ├── digest-md5.js │ │ ├── digest-md5Hex.js │ │ ├── digest-sha1.js │ │ ├── digest-sha1Hex.js │ │ ├── digest-sha256.js │ │ ├── digest-sha384.js │ │ ├── digest-sha512.js │ │ ├── escape-csv.js │ │ ├── escape-html3.js │ │ ├── escape-html4.js │ │ ├── escape-java.js │ │ ├── escape-javascript.js │ │ ├── escape-json.js │ │ ├── escape-xml.js │ │ ├── hex-decode.js │ │ ├── hex-encode.js │ │ ├── project.json │ │ ├── qrcode-generate.js │ │ ├── unescape-csv.js │ │ ├── unescape-html3.js │ │ ├── unescape-html4.js │ │ ├── unescape-java.js │ │ ├── unescape-javascript.js │ │ ├── unescape-json.js │ │ ├── unescape-xml.js │ │ ├── url-decode.js │ │ ├── url-encode.js │ │ ├── url-escape-form.js │ │ ├── url-escape-path.js │ │ └── url-escape.js ├── core │ ├── core-base │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── base │ │ │ │ ├── ApplicationListenersOrder.java │ │ │ │ ├── artefact │ │ │ │ ├── Artefact.java │ │ │ │ ├── ArtefactLifecycle.java │ │ │ │ ├── ArtefactPhase.java │ │ │ │ ├── ArtefactRepository.java │ │ │ │ ├── ArtefactService.java │ │ │ │ ├── Auditable.java │ │ │ │ ├── AuditorAwareHandler.java │ │ │ │ ├── BaseArtefactService.java │ │ │ │ ├── Engine.java │ │ │ │ └── topology │ │ │ │ │ ├── TopologicalDepleter.java │ │ │ │ │ ├── TopologicalSorter.java │ │ │ │ │ ├── TopologicalSorterNode.java │ │ │ │ │ ├── TopologicallyDepletable.java │ │ │ │ │ ├── TopologicallySortable.java │ │ │ │ │ ├── TopologyFactory.java │ │ │ │ │ └── TopologyWrapper.java │ │ │ │ ├── callable │ │ │ │ ├── CallableNoResultAndException.java │ │ │ │ ├── CallableNoResultAndNoException.java │ │ │ │ ├── CallableResultAndException.java │ │ │ │ └── CallableResultAndNoException.java │ │ │ │ ├── context │ │ │ │ ├── ContextException.java │ │ │ │ ├── InvalidStateException.java │ │ │ │ └── ThreadContextFacade.java │ │ │ │ ├── converters │ │ │ │ ├── ArrayOfStringsToCsvConverter.java │ │ │ │ ├── ListOfStringsToCsvConverter.java │ │ │ │ └── SetOfStringsToCsvConverter.java │ │ │ │ ├── encryption │ │ │ │ ├── Decrypter.java │ │ │ │ ├── Encrypted.java │ │ │ │ ├── Encrypter.java │ │ │ │ ├── EncryptionBeanPostProcessor.java │ │ │ │ ├── EncryptionListener.java │ │ │ │ ├── EncryptionUtils.java │ │ │ │ ├── FieldDecrypter.java │ │ │ │ └── FieldEncrypter.java │ │ │ │ ├── endpoint │ │ │ │ ├── BaseEndpoint.java │ │ │ │ ├── HttpContextFilter.java │ │ │ │ └── HttpContextFilterConfig.java │ │ │ │ ├── helpers │ │ │ │ ├── JsonHelper.java │ │ │ │ └── logging │ │ │ │ │ └── LoggingOutputStream.java │ │ │ │ ├── home │ │ │ │ └── HomeRedirectEndpoint.java │ │ │ │ ├── http │ │ │ │ ├── access │ │ │ │ │ ├── CorsConfigurationSourceProvider.java │ │ │ │ │ ├── CustomSecurityConfigurator.java │ │ │ │ │ ├── HttpSecurityURIConfigurator.java │ │ │ │ │ ├── UserAccessVerifier.java │ │ │ │ │ ├── UserRequestVerifier.java │ │ │ │ │ └── UserResponseVerifier.java │ │ │ │ └── roles │ │ │ │ │ └── Roles.java │ │ │ │ ├── logging │ │ │ │ ├── LoggingExecutor.java │ │ │ │ └── TenantConverter.java │ │ │ │ ├── persistence │ │ │ │ └── PersistenceConfig.java │ │ │ │ ├── publisher │ │ │ │ └── PublisherHandler.java │ │ │ │ ├── spring │ │ │ │ └── BeanProvider.java │ │ │ │ ├── synchronizer │ │ │ │ ├── BaseSynchronizer.java │ │ │ │ ├── MultitenantBaseSynchronizer.java │ │ │ │ ├── Synchronizer.java │ │ │ │ ├── SynchronizerCallback.java │ │ │ │ └── SynchronizersOrder.java │ │ │ │ ├── tenant │ │ │ │ ├── DefaultTenant.java │ │ │ │ ├── Tenant.java │ │ │ │ ├── TenantContext.java │ │ │ │ ├── TenantNotFoundException.java │ │ │ │ ├── TenantPostProvisioningStep.java │ │ │ │ ├── TenantProvisioningException.java │ │ │ │ ├── TenantProvisioningStep.java │ │ │ │ └── TenantResult.java │ │ │ │ └── util │ │ │ │ └── AuthoritiesUtil.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── base │ │ │ └── artefact │ │ │ └── topology │ │ │ ├── TopologicalDepleterTest.java │ │ │ └── TopologicalSorterTest.java │ ├── core-configurations │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── configurations │ │ │ │ ├── endpoint │ │ │ │ └── ConfigurationsEndpoint.java │ │ │ │ └── service │ │ │ │ └── ConfigurationsService.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── configurations │ │ │ └── endpoint │ │ │ └── ConfigurationsEndpointTest.java │ ├── core-database │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── database │ │ │ │ ├── ConnectionEnhancer.java │ │ │ │ ├── DataSourceSystemConfig.java │ │ │ │ ├── DatabaseConfigurator.java │ │ │ │ ├── DatabaseNameNormalizer.java │ │ │ │ ├── DatabaseParameters.java │ │ │ │ ├── DatabaseSystem.java │ │ │ │ ├── DatabaseSystemAware.java │ │ │ │ ├── DatabaseSystemDeterminer.java │ │ │ │ ├── DirigibleConnection.java │ │ │ │ ├── DirigibleDataSource.java │ │ │ │ ├── NamedParameterStatement.java │ │ │ │ ├── ParameterizedByIndex.java │ │ │ │ ├── ParameterizedByName.java │ │ │ │ └── ParameterizedStatement.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── database │ │ │ └── DatabaseSystemDeterminerTest.java │ ├── core-extensions │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── extensions │ │ │ │ ├── domain │ │ │ │ ├── Extension.java │ │ │ │ └── ExtensionPoint.java │ │ │ │ ├── endpoint │ │ │ │ ├── ExtensionEndpoint.java │ │ │ │ └── ExtensionPointEndpoint.java │ │ │ │ ├── parser │ │ │ │ ├── ExtensionMetadata.java │ │ │ │ └── ExtensionParser.java │ │ │ │ ├── repository │ │ │ │ ├── ExtensionPointRepository.java │ │ │ │ └── ExtensionRepository.java │ │ │ │ ├── service │ │ │ │ ├── ExtensionPointService.java │ │ │ │ └── ExtensionService.java │ │ │ │ └── synchronizer │ │ │ │ ├── ExtensionPointsSynchronizer.java │ │ │ │ └── ExtensionsSynchronizer.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── extensions │ │ │ │ ├── endpoint │ │ │ │ └── ExtensionPointEndpointTest.java │ │ │ │ ├── repository │ │ │ │ ├── ExtensionPointRepositoryTest.java │ │ │ │ └── ExtensionRepositoryTest.java │ │ │ │ └── synchronizer │ │ │ │ └── ExtensionPointsSynchronizerTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── test │ │ │ ├── test.extension │ │ │ └── test.extensionpoint │ ├── core-healthcheck │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── base │ │ │ └── healthcheck │ │ │ ├── config │ │ │ └── HealthCheckFilterConfig.java │ │ │ ├── endpoint │ │ │ └── HealthCheckEndpoint.java │ │ │ ├── filter │ │ │ └── HealthCheckFilter.java │ │ │ └── status │ │ │ └── HealthCheckStatus.java │ ├── core-initializers │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── initializers │ │ │ │ ├── SynchronousSpringEventsConfig.java │ │ │ │ ├── classpath │ │ │ │ └── ClasspathExpander.java │ │ │ │ ├── definition │ │ │ │ ├── Definition.java │ │ │ │ ├── DefinitionRepository.java │ │ │ │ ├── DefinitionService.java │ │ │ │ └── DefinitionState.java │ │ │ │ └── synchronizer │ │ │ │ ├── SynchronizationInitializer.java │ │ │ │ ├── SynchronizationJob.java │ │ │ │ ├── SynchronizationJobService.java │ │ │ │ ├── SynchronizationProcessor.java │ │ │ │ ├── SynchronizationWalker.java │ │ │ │ ├── SynchronizationWalkerCallback.java │ │ │ │ ├── SynchronizationWatcher.java │ │ │ │ ├── SynchronizationWatcherPublisherHandler.java │ │ │ │ └── tenants │ │ │ │ └── RetriggerSynchronizersTenantPostProvisioningStep.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── initializers │ │ │ │ ├── TestConfig.java │ │ │ │ ├── definition │ │ │ │ └── DefinitionRepositoryTest.java │ │ │ │ └── synchronizer │ │ │ │ ├── CheckArtefactUtils.java │ │ │ │ ├── CheckDefinitionUtils.java │ │ │ │ ├── SynchronizationInitializerBrokenTest.java │ │ │ │ ├── SynchronizationInitializerDeletedTest.java │ │ │ │ └── SynchronizationInitializerTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── test │ │ │ │ ├── test.extension │ │ │ │ ├── test.extension_modified │ │ │ │ ├── test.extensionpoint │ │ │ │ ├── test.table │ │ │ │ ├── test_broken.extension │ │ │ │ ├── test_broken.extension_recovered │ │ │ │ └── test_deleted.extension │ │ │ └── quartz.properties │ ├── core-project │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ ├── command │ │ │ ├── Command.java │ │ │ ├── CommandDescriptor.java │ │ │ └── CommandOS.java │ │ │ └── project │ │ │ ├── ProjectAction.java │ │ │ ├── ProjectMetadata.java │ │ │ ├── ProjectMetadataDependency.java │ │ │ ├── ProjectMetadataLicense.java │ │ │ └── ProjectMetadataUtils.java │ ├── core-registry │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── registry │ │ │ │ ├── accessor │ │ │ │ └── RegistryAccessor.java │ │ │ │ ├── endpoint │ │ │ │ └── RegistryEndpoint.java │ │ │ │ ├── service │ │ │ │ └── RegistryService.java │ │ │ │ └── watcher │ │ │ │ ├── ExternalRegistryWatcher.java │ │ │ │ └── RecursiveFolderWatcher.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── registry │ │ │ └── endpoint │ │ │ └── RegistryEndpointTest.java │ ├── core-repository │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── repository │ │ │ ├── RepositoryConfig.java │ │ │ ├── domain │ │ │ ├── Collection.java │ │ │ ├── Registry.java │ │ │ ├── Repository.java │ │ │ ├── RepositoryJsonHelper.java │ │ │ └── Resource.java │ │ │ ├── endpoint │ │ │ └── RepositoryEndpoint.java │ │ │ └── service │ │ │ └── RepositoryService.java │ ├── core-spring │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── spring │ │ │ └── SpringBeanProvider.java │ ├── core-tenants │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── tenants │ │ │ ├── domain │ │ │ ├── Tenant.java │ │ │ ├── TenantStatus.java │ │ │ ├── User.java │ │ │ └── UserRoleAssignment.java │ │ │ ├── endpoint │ │ │ ├── TenantEndpoint.java │ │ │ ├── TenantParameter.java │ │ │ ├── UserParameter.java │ │ │ └── UsersEndpoint.java │ │ │ ├── exceptions │ │ │ ├── TenantNotFoundException.java │ │ │ └── UserNotFoundException.java │ │ │ ├── init │ │ │ ├── AdminUserInitializer.java │ │ │ └── DefaultTenantInitializer.java │ │ │ ├── provisioning │ │ │ ├── TenantProvisioningJob.java │ │ │ ├── TenantsInitializer.java │ │ │ └── TenantsProvisioner.java │ │ │ ├── security │ │ │ ├── BasicSecurityConfig.java │ │ │ └── CustomUserDetailsService.java │ │ │ ├── service │ │ │ ├── TenantRepository.java │ │ │ ├── TenantService.java │ │ │ ├── UserRepository.java │ │ │ ├── UserRoleAssignmentRepository.java │ │ │ └── UserService.java │ │ │ └── tenant │ │ │ ├── TenantConfig.java │ │ │ ├── TenantContextImpl.java │ │ │ ├── TenantContextInitFilter.java │ │ │ ├── TenantExtractor.java │ │ │ ├── TenantFactory.java │ │ │ ├── TenantImpl.java │ │ │ └── TenantResultImpl.java │ ├── core-tracing │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── tracing │ │ │ │ ├── TaskState.java │ │ │ │ ├── TaskStateEndpoint.java │ │ │ │ ├── TaskStateRepository.java │ │ │ │ ├── TaskStateService.java │ │ │ │ ├── TaskStateUtil.java │ │ │ │ ├── TaskStatus.java │ │ │ │ ├── TaskType.java │ │ │ │ └── TracingFacade.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── tracing │ │ │ ├── TaskStateEndpointTest.java │ │ │ ├── TaskStateRepositoryTest.java │ │ │ └── TaskStateServiceTest.java │ └── core-version │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── version │ │ │ ├── domain │ │ │ └── Version.java │ │ │ ├── endpoint │ │ │ └── VersionEndpoint.java │ │ │ └── service │ │ │ └── VersionService.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── version │ │ │ ├── endpoint │ │ │ └── VersionEndpointTest.java │ │ │ └── service │ │ │ └── VersionServiceTest.java │ │ └── resources │ │ └── dirigible.properties ├── data │ ├── data-anonymize │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── data │ │ │ └── anonymize │ │ │ ├── domain │ │ │ ├── DataAnonymizeParameters.java │ │ │ └── DataAnonymizeType.java │ │ │ ├── endpoint │ │ │ └── DataAnonymizeEndpoint.java │ │ │ └── service │ │ │ └── DataAnonymizeService.java │ ├── data-core │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── database │ │ │ ├── domain │ │ │ ├── ColumnMetadata.java │ │ │ ├── DatabaseMetadata.java │ │ │ ├── DatabaseStructureTypes.java │ │ │ ├── ForeignKeyMetadata.java │ │ │ ├── FunctionMetadata.java │ │ │ ├── IndexMetadata.java │ │ │ ├── NoSQLColumnMetadata.java │ │ │ ├── NoSQLTableMetadata.java │ │ │ ├── ParameterColumnMetadata.java │ │ │ ├── ProcedureMetadata.java │ │ │ ├── SchemaMetadata.java │ │ │ ├── SequenceMetadata.java │ │ │ └── TableMetadata.java │ │ │ ├── format │ │ │ ├── AbstractResultSetWriter.java │ │ │ ├── ColumnDescriptor.java │ │ │ ├── HeaderFormatter.java │ │ │ ├── ResultSetCsvWriter.java │ │ │ ├── ResultSetJsonWriter.java │ │ │ ├── ResultSetMonospacedWriter.java │ │ │ ├── ResultSetWriter.java │ │ │ ├── RowFormatter.java │ │ │ ├── StringHeaderFormatter.java │ │ │ └── StringRowFormatter.java │ │ │ ├── helpers │ │ │ ├── DatabaseErrorHelper.java │ │ │ ├── DatabaseMetadataHelper.java │ │ │ ├── DatabaseQueryHelper.java │ │ │ ├── DatabaseResultSetHelper.java │ │ │ └── FormattingParameters.java │ │ │ ├── params │ │ │ ├── ArrayParamSetter.java │ │ │ ├── BaseParamSetter.java │ │ │ ├── BigDecimalParamSetter.java │ │ │ ├── BigIntParamSetter.java │ │ │ ├── BlobParamSetter.java │ │ │ ├── BooleanParamSetter.java │ │ │ ├── DateParamSetter.java │ │ │ ├── DoubleParamSetter.java │ │ │ ├── IndexedParamJsonObject.java │ │ │ ├── IntegerParamSetter.java │ │ │ ├── NamedParamJsonObject.java │ │ │ ├── ParamSetter.java │ │ │ ├── ParametersSetter.java │ │ │ ├── ParametersSetterException.java │ │ │ ├── RealParamSetter.java │ │ │ ├── SmallIntParamSetter.java │ │ │ ├── TextParamSetter.java │ │ │ ├── TimeParamSetter.java │ │ │ ├── TimestampParamSetter.java │ │ │ └── TinyIntParamSetter.java │ │ │ └── sql │ │ │ ├── SqlParseException.java │ │ │ └── SqlParser.java │ ├── data-csvim │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── data │ │ │ └── csvim │ │ │ ├── domain │ │ │ ├── CsvFile.java │ │ │ ├── CsvRecord.java │ │ │ └── Csvim.java │ │ │ ├── processor │ │ │ ├── CsvProcessor.java │ │ │ └── CsvimProcessor.java │ │ │ ├── repository │ │ │ ├── CsvFileRepository.java │ │ │ └── CsvimRepository.java │ │ │ ├── service │ │ │ ├── CsvFileService.java │ │ │ └── CsvimService.java │ │ │ ├── synchronizer │ │ │ ├── CsvimProcessingException.java │ │ │ └── CsvimSynchronizer.java │ │ │ └── utils │ │ │ └── CsvimUtils.java │ ├── data-export │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── export │ │ │ │ ├── domain │ │ │ │ ├── Export.java │ │ │ │ └── ExportStatus.java │ │ │ │ ├── endpoint │ │ │ │ ├── DataAsyncExportEndpoint.java │ │ │ │ ├── DataExportEndpoint.java │ │ │ │ └── DatabaseExportEndpoint.java │ │ │ │ ├── repository │ │ │ │ └── ExportRepository.java │ │ │ │ └── service │ │ │ │ ├── DataExportService.java │ │ │ │ ├── DatabaseExportService.java │ │ │ │ └── ExportService.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── data │ │ │ └── export │ │ │ ├── TestConfig.java │ │ │ ├── endpoint │ │ │ ├── DataAsyncExportEndpointTest.java │ │ │ └── DataExportEndpointTest.java │ │ │ └── service │ │ │ └── DataExportServiceTest.java │ ├── data-import │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── data │ │ │ └── export │ │ │ ├── endpoint │ │ │ ├── DataImportEndpoint.java │ │ │ └── DataSQLEndpoint.java │ │ │ └── service │ │ │ ├── DataImportService.java │ │ │ ├── ImportConfig.java │ │ │ └── ImportConfigBuilder.java │ ├── data-management │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── management │ │ │ │ ├── config │ │ │ │ ├── DatabaseMetadataCache.java │ │ │ │ └── DatabaseMetadataCacheConfig.java │ │ │ │ ├── endpoint │ │ │ │ ├── DatabaseDefinitionEndpoint.java │ │ │ │ ├── DatabaseExecutionEndpoint.java │ │ │ │ └── DatabaseMetadataEndpoint.java │ │ │ │ ├── load │ │ │ │ └── DataSourceMetadataLoader.java │ │ │ │ └── service │ │ │ │ ├── DatabaseDefinitionService.java │ │ │ │ ├── DatabaseExecutionService.java │ │ │ │ └── DatabaseMetadataService.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── data │ │ │ └── management │ │ │ ├── TestConfig.java │ │ │ └── endpoint │ │ │ └── DatabaseMetadataEndpointTest.java │ ├── data-processes │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── processes │ │ │ │ └── schema │ │ │ │ ├── export │ │ │ │ ├── ExportFilesHelper.java │ │ │ │ ├── ExportSchemaProcess.java │ │ │ │ ├── ExportSchemaProcessParams.java │ │ │ │ ├── ExportSchemaProcessTrigger.java │ │ │ │ ├── InvalidProcessParameterException.java │ │ │ │ ├── endpoint │ │ │ │ │ ├── ExportSchemaParamsDTO.java │ │ │ │ │ ├── ExportSchemaProcessDTO.java │ │ │ │ │ └── SchemaExportEndpoint.java │ │ │ │ └── tasks │ │ │ │ │ ├── BaseExportTask.java │ │ │ │ │ ├── BuildExportTopologyTask.java │ │ │ │ │ ├── ExportProcessContext.java │ │ │ │ │ ├── ExportTableDataTask.java │ │ │ │ │ ├── ExportTableDefinitionTask.java │ │ │ │ │ ├── SaveExportTopologyTask.java │ │ │ │ │ └── SchemaExportException.java │ │ │ │ └── imp │ │ │ │ ├── ImportSchemaProcess.java │ │ │ │ ├── ImportSchemaProcessParams.java │ │ │ │ ├── ImportSchemaProcessTrigger.java │ │ │ │ ├── endpoint │ │ │ │ ├── ImportSchemaParamsDTO.java │ │ │ │ ├── ImportSchemaProcessDTO.java │ │ │ │ └── SchemaImportEndpoint.java │ │ │ │ └── tasks │ │ │ │ ├── BaseImportTask.java │ │ │ │ ├── CreateTableTask.java │ │ │ │ ├── ImportProcessContext.java │ │ │ │ ├── ImportTableDataTask.java │ │ │ │ ├── LoadTopologyTask.java │ │ │ │ └── SchemaImportException.java │ │ │ └── resources │ │ │ └── system-processes │ │ │ ├── export-schema.bpmn │ │ │ └── import-schema.bpmn │ ├── data-source-snowpark │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── data │ │ │ └── source │ │ │ └── snowpark │ │ │ ├── SnowflakeConnectionEnhancer.java │ │ │ └── SnowflakeDatabaseConfigurator.java │ ├── data-sources │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── zaxxer │ │ │ │ │ │ └── hikari │ │ │ │ │ │ └── pool │ │ │ │ │ │ ├── InUseConnectionEntry.java │ │ │ │ │ │ └── LeakedConnectionsDoctor.java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── data │ │ │ │ │ └── sources │ │ │ │ │ ├── config │ │ │ │ │ ├── DataSourceConfig.java │ │ │ │ │ ├── DefaultDataSourceName.java │ │ │ │ │ ├── SystemDataSourceName.java │ │ │ │ │ ├── TransactionExecutionException.java │ │ │ │ │ └── TransactionExecutor.java │ │ │ │ │ ├── domain │ │ │ │ │ ├── DataSource.java │ │ │ │ │ └── DataSourceProperty.java │ │ │ │ │ ├── endpoint │ │ │ │ │ ├── DataSourceEndpoint.java │ │ │ │ │ └── DataSourceParameter.java │ │ │ │ │ ├── manager │ │ │ │ │ ├── DataSourceInitializer.java │ │ │ │ │ ├── DataSourcesManager.java │ │ │ │ │ ├── DirigibleConnectionImpl.java │ │ │ │ │ ├── DirigibleDataSourceFactory.java │ │ │ │ │ ├── DirigibleDataSourceImpl.java │ │ │ │ │ ├── InitializerDataSourceLifecycleListener.java │ │ │ │ │ ├── LeakedConnectionsRemediationInitializer.java │ │ │ │ │ └── TenantDataSourceNameManager.java │ │ │ │ │ ├── provisioning │ │ │ │ │ ├── DefaultDataSourceProvisioning.java │ │ │ │ │ └── PasswordGenerator.java │ │ │ │ │ ├── repository │ │ │ │ │ ├── DataSourcePropertyRepository.java │ │ │ │ │ └── DataSourceRepository.java │ │ │ │ │ ├── service │ │ │ │ │ ├── CustomDataSourcesService.java │ │ │ │ │ ├── DataSourceLifecycleListener.java │ │ │ │ │ └── DataSourceService.java │ │ │ │ │ └── synchronizer │ │ │ │ │ └── DataSourcesSynchronizer.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── dirigible │ │ │ │ └── datasources │ │ │ │ ├── DefaultDB.datasource │ │ │ │ └── SystemDB.datasource │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── sources │ │ │ │ ├── TestConfig.java │ │ │ │ ├── endpoint │ │ │ │ └── DataSourceEndpointTest.java │ │ │ │ ├── repository │ │ │ │ └── DataSourceRepositoryTest.java │ │ │ │ └── synchronizer │ │ │ │ └── DataSourcesSynchronizerTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── test │ │ │ └── TestDB.datasource │ ├── data-store │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── store │ │ │ │ ├── DataStore.java │ │ │ │ ├── DynamicCriteriaFinder.java │ │ │ │ ├── DynamicQueryFilter.java │ │ │ │ ├── EntityTransformer.java │ │ │ │ ├── JsonTypeConverter.java │ │ │ │ ├── ParameterizedByIndexQuery.java │ │ │ │ ├── ParameterizedByNameQuery.java │ │ │ │ ├── config │ │ │ │ ├── CurrentTenantIdentifierResolverImpl.java │ │ │ │ └── MultiTenantConnectionProviderImpl.java │ │ │ │ ├── domain │ │ │ │ └── Entity.java │ │ │ │ ├── endpoint │ │ │ │ └── EntityEndpoint.java │ │ │ │ ├── hbm │ │ │ │ ├── EntityToHbmMapper.java │ │ │ │ └── HbmXmlDescriptor.java │ │ │ │ ├── model │ │ │ │ ├── EntityFieldMetadata.java │ │ │ │ └── EntityMetadata.java │ │ │ │ ├── parser │ │ │ │ └── EntityParser.java │ │ │ │ ├── repository │ │ │ │ └── EntityRepository.java │ │ │ │ ├── service │ │ │ │ └── EntityService.java │ │ │ │ └── synchronizer │ │ │ │ └── EntitySynchronizer.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── store │ │ │ │ ├── DataStoreTest.java │ │ │ │ ├── DatabaseMetadataEndpointTest.java │ │ │ │ └── TypeScriptClassParserTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── test │ │ │ │ ├── DefaultDB.datasource │ │ │ │ └── StoreDB.datasource │ │ │ ├── quartz.properties │ │ │ └── typescript │ │ │ ├── CarEntity.ts │ │ │ ├── CustomerAddressEntity.ts │ │ │ ├── CustomerEntity.ts │ │ │ ├── OrderEntity.ts │ │ │ └── OrderItemEntity.ts │ ├── data-structures │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── structures │ │ │ │ ├── domain │ │ │ │ ├── Schema.java │ │ │ │ ├── Table.java │ │ │ │ ├── TableColumn.java │ │ │ │ ├── TableConstraint.java │ │ │ │ ├── TableConstraintCheck.java │ │ │ │ ├── TableConstraintForeignKey.java │ │ │ │ ├── TableConstraintPrimaryKey.java │ │ │ │ ├── TableConstraintUnique.java │ │ │ │ ├── TableConstraints.java │ │ │ │ ├── TableIndex.java │ │ │ │ └── View.java │ │ │ │ ├── endpoint │ │ │ │ ├── SchemaEndpoint.java │ │ │ │ ├── TableEndpoint.java │ │ │ │ └── ViewEndpoint.java │ │ │ │ ├── repository │ │ │ │ ├── SchemaRepository.java │ │ │ │ ├── TableColumnRepository.java │ │ │ │ ├── TableIndexRepository.java │ │ │ │ ├── TableRepository.java │ │ │ │ └── ViewRepository.java │ │ │ │ ├── service │ │ │ │ ├── SchemaService.java │ │ │ │ ├── TableService.java │ │ │ │ └── ViewService.java │ │ │ │ └── synchronizer │ │ │ │ ├── SchemasSynchronizer.java │ │ │ │ ├── TablesSynchronizer.java │ │ │ │ ├── ViewsSynchronizer.java │ │ │ │ ├── schema │ │ │ │ ├── SchemaCreateProcessor.java │ │ │ │ ├── SchemaDropProcessor.java │ │ │ │ └── SchemaUpdateProcessor.java │ │ │ │ ├── table │ │ │ │ ├── TableAlterProcessor.java │ │ │ │ ├── TableCreateProcessor.java │ │ │ │ ├── TableDropProcessor.java │ │ │ │ ├── TableForeignKeysCreateProcessor.java │ │ │ │ └── TableForeignKeysDropProcessor.java │ │ │ │ └── view │ │ │ │ ├── ViewCreateProcessor.java │ │ │ │ └── ViewDropProcessor.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── data │ │ │ │ └── structures │ │ │ │ ├── TestConfig.java │ │ │ │ ├── repository │ │ │ │ ├── TableRepositoryTest.java │ │ │ │ └── ViewRepositoryTest.java │ │ │ │ └── synchronizer │ │ │ │ └── TablesSynchronizerTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── test │ │ │ ├── addresses.table │ │ │ ├── orders.table │ │ │ ├── orders.view │ │ │ ├── persons.table │ │ │ └── test.schema │ └── data-transfer │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── dirigible │ │ └── components │ │ └── data │ │ └── transfer │ │ ├── callback │ │ ├── DataTransferCallbackHandler.java │ │ ├── DummyDataTransferCallbackHandler.java │ │ └── WriterDataTransferCallbackHandler.java │ │ ├── domain │ │ ├── DataTransfer.java │ │ └── DataTransferConfiguration.java │ │ ├── endpoint │ │ ├── DataTransferWebsocketConfig.java │ │ └── DataTransferWebsocketHandler.java │ │ └── service │ │ ├── DataTransferReverseTableProcessor.java │ │ ├── DataTransferSchemaTopologyService.java │ │ ├── DataTransferService.java │ │ └── DataTransferSortableTableWrapper.java ├── engine │ ├── engine-bpm-flowable │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── bpm │ │ │ │ └── flowable │ │ │ │ ├── BpmFlowableEngine.java │ │ │ │ ├── TaskService.java │ │ │ │ ├── config │ │ │ │ ├── BpmFlowableConfig.java │ │ │ │ ├── BpmProviderFlowable.java │ │ │ │ ├── FlowableArtefactsValidator.java │ │ │ │ ├── SimpleCollection.java │ │ │ │ ├── SimpleCollectionVariableType.java │ │ │ │ └── TaskServiceImpl.java │ │ │ │ ├── delegate │ │ │ │ ├── BPMTask.java │ │ │ │ ├── DirigibleCallDelegate.java │ │ │ │ ├── InvalidVariableException.java │ │ │ │ ├── JsonProcessVariablesBuilder.java │ │ │ │ ├── TaskExecution.java │ │ │ │ ├── TypesUtil.java │ │ │ │ └── VariableValueSerializer.java │ │ │ │ ├── diagram │ │ │ │ ├── DirigibleProcessDiagramCanvas.java │ │ │ │ └── DirigibleProcessDiagramGenerator.java │ │ │ │ ├── domain │ │ │ │ └── Bpmn.java │ │ │ │ ├── dto │ │ │ │ ├── ActionData.java │ │ │ │ ├── ActivityStatusData.java │ │ │ │ ├── ProcessDefinitionData.java │ │ │ │ ├── ProcessInstanceData.java │ │ │ │ ├── StartProcessInstanceData.java │ │ │ │ ├── TaskActionData.java │ │ │ │ ├── TaskDTO.java │ │ │ │ ├── TaskData.java │ │ │ │ └── VariableData.java │ │ │ │ ├── endpoint │ │ │ │ ├── BpmFlowableEndpoint.java │ │ │ │ ├── BpmInboxEndpoint.java │ │ │ │ └── TaskVariablesDTO.java │ │ │ │ ├── init │ │ │ │ └── FlowableProcessesInitializer.java │ │ │ │ ├── open │ │ │ │ └── telemetry │ │ │ │ │ └── FlowableMetricsConfigurator.java │ │ │ │ ├── repository │ │ │ │ └── BpmnRepository.java │ │ │ │ ├── service │ │ │ │ ├── BpmService.java │ │ │ │ ├── BpmnService.java │ │ │ │ └── PrincipalType.java │ │ │ │ └── synchronizer │ │ │ │ └── BpmnSynchronizer.java │ │ │ └── resources │ │ │ ├── org │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── bpm │ │ │ │ └── icons │ │ │ │ ├── business-rule.png │ │ │ │ ├── camel.png │ │ │ │ ├── cancel-end.png │ │ │ │ ├── case.png │ │ │ │ ├── compensate-throw.png │ │ │ │ ├── compensate.png │ │ │ │ ├── conditional.png │ │ │ │ ├── decision.png │ │ │ │ ├── error-throw.png │ │ │ │ ├── error.png │ │ │ │ ├── escalation-throw.png │ │ │ │ ├── escalation.png │ │ │ │ ├── http.png │ │ │ │ ├── manual.png │ │ │ │ ├── message-throw.png │ │ │ │ ├── message.png │ │ │ │ ├── mule.png │ │ │ │ ├── receive.png │ │ │ │ ├── script.png │ │ │ │ ├── send.png │ │ │ │ ├── service.png │ │ │ │ ├── shell.png │ │ │ │ ├── signal-throw.png │ │ │ │ ├── signal.png │ │ │ │ ├── terminate-end.png │ │ │ │ ├── timer.png │ │ │ │ └── user.png │ │ │ └── stencilset_bpmn.json │ ├── engine-bpm │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── bpm │ │ │ ├── BpmProvider.java │ │ │ └── SystemBpmProcess.java │ ├── engine-camel │ │ ├── pom.xml │ │ └── src │ │ │ ├── generated │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── engine │ │ │ │ │ └── camel │ │ │ │ │ └── components │ │ │ │ │ ├── DirigibleJavaScriptComponentConfigurer.java │ │ │ │ │ ├── DirigibleJavaScriptEndpointConfigurer.java │ │ │ │ │ └── DirigibleJavaScriptEndpointUriFactory.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── org │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── engine │ │ │ │ │ └── camel │ │ │ │ │ └── components │ │ │ │ │ └── dirigible-java-script.json │ │ │ │ └── services │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── camel │ │ │ │ ├── component │ │ │ │ └── dirigible-java-script │ │ │ │ ├── configurer │ │ │ │ ├── dirigible-java-script-component │ │ │ │ └── dirigible-java-script-endpoint │ │ │ │ └── urifactory │ │ │ │ └── dirigible-java-script-endpoint │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── camel │ │ │ │ ├── components │ │ │ │ ├── DirigibleJavaScriptComponent.java │ │ │ │ ├── DirigibleJavaScriptEndpoint.java │ │ │ │ ├── DirigibleJavaScriptException.java │ │ │ │ ├── DirigibleJavaScriptInvoker.java │ │ │ │ ├── DirigibleJavaScriptProcessor.java │ │ │ │ └── DirigibleJavaScriptProducer.java │ │ │ │ ├── config │ │ │ │ ├── CamelDirigibleConfiguration.java │ │ │ │ └── CamelEngine.java │ │ │ │ ├── domain │ │ │ │ └── Camel.java │ │ │ │ ├── invoke │ │ │ │ ├── DirigibleJavaScriptInvokerImpl.java │ │ │ │ ├── IntegrationMessage.java │ │ │ │ └── Invoker.java │ │ │ │ ├── processor │ │ │ │ ├── CamelDirigibleRequestHandlerMapping.java │ │ │ │ ├── CamelProcessor.java │ │ │ │ ├── CamelProcessorException.java │ │ │ │ └── DirigibleHttpEndpointModel.java │ │ │ │ ├── repository │ │ │ │ └── CamelRepository.java │ │ │ │ ├── service │ │ │ │ ├── CamelDataSourceLifecycleListener.java │ │ │ │ └── CamelService.java │ │ │ │ └── synchronizer │ │ │ │ └── CamelSynchronizer.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── camel │ │ │ └── config │ │ │ ├── CamelDirigibleConfigurationTest.java │ │ │ └── DirigibleHttpEndpointModelTest.java │ ├── engine-cms-internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── cms │ │ │ └── internal │ │ │ ├── CmsProviderInternalFactory.java │ │ │ ├── config │ │ │ └── CmsInternalEngine.java │ │ │ ├── provider │ │ │ └── CmsProviderInternal.java │ │ │ └── repository │ │ │ ├── CmisInternalContentStream.java │ │ │ ├── CmisInternalDocument.java │ │ │ ├── CmisInternalFolder.java │ │ │ ├── CmisInternalObject.java │ │ │ ├── CmisInternalObjectFactory.java │ │ │ ├── CmisInternalRepository.java │ │ │ ├── CmisInternalRepositoryInfo.java │ │ │ ├── CmisInternalSession.java │ │ │ ├── CmisRepository.java │ │ │ └── CmisRepositoryFactory.java │ ├── engine-cms-s3 │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── cms │ │ │ │ └── s3 │ │ │ │ ├── config │ │ │ │ └── CmsS3Engine.java │ │ │ │ ├── provider │ │ │ │ ├── CmsProviderS3.java │ │ │ │ └── CmsProviderS3Factory.java │ │ │ │ └── repository │ │ │ │ ├── CmisRepository.java │ │ │ │ ├── CmisS3ContentStream.java │ │ │ │ ├── CmisS3Document.java │ │ │ │ ├── CmisS3Folder.java │ │ │ │ ├── CmisS3Object.java │ │ │ │ ├── CmisS3ObjectFactory.java │ │ │ │ ├── CmisS3RepositoryInfo.java │ │ │ │ ├── CmisS3Session.java │ │ │ │ ├── CmisS3Utils.java │ │ │ │ └── S3ObjectUtil.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── cms │ │ │ └── s3 │ │ │ └── repository │ │ │ └── S3ObjectUtilTest.java │ ├── engine-cms │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── cms │ │ │ ├── CmisConstants.java │ │ │ ├── CmisContentStream.java │ │ │ ├── CmisDocument.java │ │ │ ├── CmisFolder.java │ │ │ ├── CmisObject.java │ │ │ ├── CmisObjectFactory.java │ │ │ ├── CmisRepositoryInfo.java │ │ │ ├── CmisSession.java │ │ │ ├── CmisSessionFactory.java │ │ │ ├── CmsProvider.java │ │ │ ├── CmsProviderFactory.java │ │ │ ├── CmsProviderInitializationException.java │ │ │ ├── ObjectType.java │ │ │ ├── config │ │ │ └── CmsEngine.java │ │ │ ├── endpoint │ │ │ └── CmsEndpoint.java │ │ │ ├── filter │ │ │ └── CmsClientSideRoutingFilter.java │ │ │ └── service │ │ │ └── CmsService.java │ ├── engine-command │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── command │ │ │ ├── config │ │ │ └── CommandEngine.java │ │ │ ├── endpoint │ │ │ └── CommandEndpoint.java │ │ │ └── service │ │ │ └── CommandService.java │ ├── engine-di │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── di │ │ │ │ ├── config │ │ │ │ └── DependencyInjectionEngine.java │ │ │ │ ├── domain │ │ │ │ └── Component.java │ │ │ │ ├── parser │ │ │ │ ├── ComponentContext.java │ │ │ │ ├── ComponentContextRegistry.java │ │ │ │ ├── ComponentMetadata.java │ │ │ │ ├── ComponentMetadataRegistry.java │ │ │ │ ├── ComponentParser.java │ │ │ │ └── ComponentRegister.java │ │ │ │ ├── repository │ │ │ │ └── ComponentRepository.java │ │ │ │ ├── service │ │ │ │ └── ComponentService.java │ │ │ │ └── synchronizer │ │ │ │ └── ComponentSynchronizer.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── javascript │ │ │ │ └── endpoint │ │ │ │ ├── JavascriptEndpointDITest.java │ │ │ │ └── TestConfig.java │ │ │ └── resources │ │ │ └── quartz.properties │ ├── engine-ftp │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── ftp │ │ │ │ ├── config │ │ │ │ ├── FtpEngine.java │ │ │ │ ├── FtpServerConfiguration.java │ │ │ │ ├── FtpUserManager.java │ │ │ │ └── IntegrationConfiguration.java │ │ │ │ ├── domain │ │ │ │ └── FtpUser.java │ │ │ │ └── repository │ │ │ │ └── FtpUserRepository.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── ftp │ │ │ └── repository │ │ │ └── FtpRepositoryTest.java │ ├── engine-javascript │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── javascript │ │ │ │ ├── config │ │ │ │ └── JavaScriptEngine.java │ │ │ │ ├── endpoint │ │ │ │ └── JavascriptEndpoint.java │ │ │ │ └── service │ │ │ │ ├── JavascriptHandler.java │ │ │ │ └── JavascriptService.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── javascript │ │ │ └── endpoint │ │ │ └── JavascriptEndpointTest.java │ ├── engine-jobs │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── jobs │ │ │ │ ├── DirigibleJob.java │ │ │ │ ├── SystemJob.java │ │ │ │ ├── config │ │ │ │ ├── AutoWiringSpringBeanJobFactory.java │ │ │ │ ├── CustomConnectionProvider.java │ │ │ │ ├── JobsEngine.java │ │ │ │ └── QuartzConfig.java │ │ │ │ ├── domain │ │ │ │ ├── Job.java │ │ │ │ ├── JobEmail.java │ │ │ │ ├── JobLifecycle.java │ │ │ │ ├── JobLog.java │ │ │ │ ├── JobParameter.java │ │ │ │ └── JobStatus.java │ │ │ │ ├── email │ │ │ │ └── JobEmailProcessor.java │ │ │ │ ├── endpoint │ │ │ │ └── JobEndpoint.java │ │ │ │ ├── handler │ │ │ │ ├── JobExecutionService.java │ │ │ │ ├── JobHandler.java │ │ │ │ └── MissingTenantException.java │ │ │ │ ├── init │ │ │ │ └── JobsInitializer.java │ │ │ │ ├── manager │ │ │ │ └── JobsManager.java │ │ │ │ ├── parser │ │ │ │ ├── ScheduledMetadata.java │ │ │ │ └── ScheduledParser.java │ │ │ │ ├── repository │ │ │ │ ├── JobEmailRepository.java │ │ │ │ ├── JobLogRepository.java │ │ │ │ ├── JobParameterRepository.java │ │ │ │ └── JobRepository.java │ │ │ │ ├── service │ │ │ │ ├── JobEmailService.java │ │ │ │ ├── JobLogService.java │ │ │ │ └── JobService.java │ │ │ │ ├── synchronizer │ │ │ │ └── JobSynchronizer.java │ │ │ │ ├── telemetry │ │ │ │ ├── JobExecutionsCountListener.java │ │ │ │ ├── JobExecutionsDurationListener.java │ │ │ │ ├── JobFailuresCountListener.java │ │ │ │ ├── OpenTelemetryListener.java │ │ │ │ ├── QuartzMetricConstants.java │ │ │ │ └── RunningJobsCountMetricsConfigurator.java │ │ │ │ └── tenant │ │ │ │ └── JobNameCreator.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── jobs │ │ │ │ ├── TestConfig.java │ │ │ │ ├── endpoint │ │ │ │ └── JobEndpointTest.java │ │ │ │ ├── repository │ │ │ │ ├── JobEmailRepositoryTest.java │ │ │ │ ├── JobLogRepositoryTest.java │ │ │ │ └── JobRepositoryTest.java │ │ │ │ └── synchronizer │ │ │ │ └── JobSynchronizerTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── test │ │ │ │ ├── control.job │ │ │ │ └── handler.js │ │ │ └── quartz.properties │ ├── engine-listeners │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── listeners │ │ │ │ ├── config │ │ │ │ ├── ActiveMQConnectionArtifactsFactory.java │ │ │ │ ├── CloseActiveMQResourcesApplicationListener.java │ │ │ │ ├── ListenersEngine.java │ │ │ │ ├── LoggingExceptionListener.java │ │ │ │ └── MessagingConfig.java │ │ │ │ ├── domain │ │ │ │ ├── Listener.java │ │ │ │ ├── ListenerKind.java │ │ │ │ └── ListenerKindConverter.java │ │ │ │ ├── endpoint │ │ │ │ └── ListenerEndpoint.java │ │ │ │ ├── parser │ │ │ │ ├── ListenerMetadata.java │ │ │ │ └── ListenerParser.java │ │ │ │ ├── repository │ │ │ │ └── ListenerRepository.java │ │ │ │ ├── service │ │ │ │ ├── AsynchronousMessageListener.java │ │ │ │ ├── AsynchronousMessageListenerFactory.java │ │ │ │ ├── ConnectionArtifacts.java │ │ │ │ ├── DestinationNameManager.java │ │ │ │ ├── ListenerCreator.java │ │ │ │ ├── ListenerDescriptor.java │ │ │ │ ├── ListenerExceptionHandler.java │ │ │ │ ├── ListenerManager.java │ │ │ │ ├── ListenerManagerFactory.java │ │ │ │ ├── ListenerService.java │ │ │ │ ├── ListenerType.java │ │ │ │ ├── ListenersManager.java │ │ │ │ ├── MessageConsumer.java │ │ │ │ ├── MessageProducer.java │ │ │ │ ├── TenantPropertyManager.java │ │ │ │ └── TimeoutException.java │ │ │ │ └── synchronizer │ │ │ │ └── ListenerSynchronizer.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── listeners │ │ │ ├── config │ │ │ ├── ActiveMQConnectionArtifactsFactoryTest.java │ │ │ ├── CloseActiveMQResourcesApplicationListenerTest.java │ │ │ └── LoggingExceptionListenerTest.java │ │ │ ├── endpoint │ │ │ └── ListenerEndpointTest.java │ │ │ ├── repository │ │ │ └── ListenerRepositoryTest.java │ │ │ ├── service │ │ │ ├── AsynchronousMessageListenerTest.java │ │ │ ├── ConnectionArtifactsTest.java │ │ │ ├── ListenerExceptionHandlerTest.java │ │ │ ├── ListenerManagerFactoryTest.java │ │ │ ├── ListenerManagerTest.java │ │ │ ├── ListenersManagerTest.java │ │ │ ├── MessageConsumerTest.java │ │ │ ├── MessageProducerTest.java │ │ │ └── TestTenantContext.java │ │ │ ├── synchronizer │ │ │ └── ListenerSynchronizerTest.java │ │ │ └── util │ │ │ ├── InMemoryAppender.java │ │ │ └── LogsAsserter.java │ ├── engine-odata │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── components │ │ │ │ │ └── odata │ │ │ │ │ ├── api │ │ │ │ │ ├── ODataAssociation.java │ │ │ │ │ ├── ODataAssociationEnd.java │ │ │ │ │ ├── ODataEntity.java │ │ │ │ │ ├── ODataHandler.java │ │ │ │ │ ├── ODataHandlerMethods.java │ │ │ │ │ ├── ODataHandlerTypes.java │ │ │ │ │ ├── ODataManyToManyMappingTable.java │ │ │ │ │ ├── ODataNavigation.java │ │ │ │ │ ├── ODataParameter.java │ │ │ │ │ ├── ODataProperty.java │ │ │ │ │ └── TableMetadataProvider.java │ │ │ │ │ ├── config │ │ │ │ │ ├── ODataConfig.java │ │ │ │ │ └── ODataEngine.java │ │ │ │ │ ├── domain │ │ │ │ │ ├── OData.java │ │ │ │ │ ├── ODataContainer.java │ │ │ │ │ ├── ODataHandler.java │ │ │ │ │ ├── ODataMapping.java │ │ │ │ │ └── ODataSchema.java │ │ │ │ │ ├── factory │ │ │ │ │ ├── DirigibleODataServiceFactory.java │ │ │ │ │ └── ODataEdmTableMappingProvider.java │ │ │ │ │ ├── handler │ │ │ │ │ └── ScriptingOData2EventHandler.java │ │ │ │ │ ├── repository │ │ │ │ │ ├── ODataContainerRepository.java │ │ │ │ │ ├── ODataHandlerRepository.java │ │ │ │ │ ├── ODataMappingRepository.java │ │ │ │ │ ├── ODataRepository.java │ │ │ │ │ └── ODataSchemaRepository.java │ │ │ │ │ ├── service │ │ │ │ │ ├── ODataContainerService.java │ │ │ │ │ ├── ODataHandlerService.java │ │ │ │ │ ├── ODataMappingService.java │ │ │ │ │ ├── ODataMetadataService.java │ │ │ │ │ ├── ODataSchemaService.java │ │ │ │ │ └── ODataService.java │ │ │ │ │ ├── synchronizer │ │ │ │ │ └── ODataSynchronizer.java │ │ │ │ │ └── transformers │ │ │ │ │ ├── DefaultPropertyNameEscaper.java │ │ │ │ │ ├── DefaultTableMetadataProvider.java │ │ │ │ │ ├── OData2ODataHTransformer.java │ │ │ │ │ ├── OData2ODataMTransformer.java │ │ │ │ │ ├── OData2ODataXTransformer.java │ │ │ │ │ ├── OData2TransformerException.java │ │ │ │ │ ├── ODataDatabaseMetadataUtil.java │ │ │ │ │ ├── ODataMetadataUtil.java │ │ │ │ │ └── ODataPropertyNameEscaper.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── dirigible │ │ │ │ └── odata │ │ │ │ │ └── wrappers │ │ │ │ │ └── onEvent.js │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.engine.odata2.sql.api.OData2EventHandler │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── odata │ │ │ │ ├── TestConfig.java │ │ │ │ ├── factory │ │ │ │ └── ODataDefinitionFactoryTest.java │ │ │ │ └── transformers │ │ │ │ ├── DefaultPropertyNameEscaperTest.java │ │ │ │ ├── OData2ODataHTransformerTest.java │ │ │ │ ├── OData2ODataMTransformerTest.java │ │ │ │ ├── OData2ODataTransformerTestUtil.java │ │ │ │ ├── OData2ODataXTransformerTest.java │ │ │ │ └── ODataDatabaseMetadataUtilTest.java │ │ │ └── resources │ │ │ ├── cars │ │ │ ├── Car.odatam │ │ │ ├── Cars.dsm │ │ │ ├── Cars.odata │ │ │ ├── Cars.odatax │ │ │ ├── Cars.schema │ │ │ └── Manufacturer.odatam │ │ │ ├── customer │ │ │ └── Customer.odata │ │ │ ├── def │ │ │ └── OData1.odata │ │ │ ├── employee │ │ │ ├── address.table │ │ │ ├── emp.odata │ │ │ ├── employee.table │ │ │ └── phone.table │ │ │ ├── entityproperty │ │ │ ├── Entities.odata │ │ │ └── Entities.schema │ │ │ ├── orders │ │ │ ├── Orders.dsm │ │ │ ├── Orders.odata │ │ │ └── Orders.schema │ │ │ ├── orderscs │ │ │ ├── Orders.odata │ │ │ └── Orders.schema │ │ │ ├── transformers │ │ │ ├── Employee.odata │ │ │ ├── EmployeeCompositePrimaryKey.odata │ │ │ ├── EmployeeCompositePrimaryKeyWithoutEntity.odata │ │ │ ├── EmployeeSynonym.odata │ │ │ ├── EmployeeView.odata │ │ │ ├── EmployeeWithHandlers.odata │ │ │ ├── EmployeeWithParameters.odata │ │ │ ├── EmployeeWithProp.odata │ │ │ ├── EmployeeWithWrongAssProps.odata │ │ │ ├── EmployeeWithWrongHandler.odata │ │ │ └── EmployeeWithWrongMultiplicity.odata │ │ │ ├── users │ │ │ └── Users.odata │ │ │ └── view │ │ │ └── View.odata │ ├── engine-open-telemetry │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── open │ │ │ │ └── telemetry │ │ │ │ ├── OpenTelemetryConfiguration.java │ │ │ │ └── OpenTelemetryProvider.java │ │ │ └── resources │ │ │ └── application-open-telemetry.properties │ ├── engine-openapi │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── openapi │ │ │ │ ├── config │ │ │ │ └── OpenAPIEngine.java │ │ │ │ ├── domain │ │ │ │ └── OpenAPI.java │ │ │ │ ├── endpoint │ │ │ │ └── OpenAPIEndpoint.java │ │ │ │ ├── generator │ │ │ │ ├── OpenApiGenerator.java │ │ │ │ ├── OpenApiParser.java │ │ │ │ └── OpenApiSerializer.java │ │ │ │ ├── repository │ │ │ │ └── OpenAPIRepository.java │ │ │ │ ├── service │ │ │ │ └── OpenAPIService.java │ │ │ │ └── synchronizer │ │ │ │ └── OpenAPISynchronizer.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── openapi │ │ │ │ ├── endpoint │ │ │ │ └── OpenAPIEndpointTest.java │ │ │ │ ├── repository │ │ │ │ └── OpenAPIRepositoryTest.java │ │ │ │ ├── service │ │ │ │ └── OpenAPIServiceTest.java │ │ │ │ └── synchronizer │ │ │ │ └── OpenAPISynchronizerTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── test │ │ │ │ └── test.openapi │ │ │ ├── dirigible.properties │ │ │ └── quartz.properties │ ├── engine-proxy │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── proxy │ │ │ ├── ProxyDispatcher.java │ │ │ ├── ProxyFilter.java │ │ │ ├── ProxyRegistry.java │ │ │ ├── ProxyRouterConfig.java │ │ │ ├── domain │ │ │ └── Proxy.java │ │ │ ├── repository │ │ │ └── ProxyRepository.java │ │ │ ├── service │ │ │ └── ProxyService.java │ │ │ └── synchronizer │ │ │ └── ProxySynchronizer.java │ ├── engine-python │ │ ├── pom.xml │ │ ├── sample.py │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── python │ │ │ │ ├── PythonEndpoint.java │ │ │ │ └── graalium │ │ │ │ ├── GraalPyCodeRunner.java │ │ │ │ └── GraalPyFileSystem.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.dirigible.graalium.core.python.PythonCodeRunner │ ├── engine-security │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── security │ │ │ │ ├── config │ │ │ │ ├── Config.java │ │ │ │ ├── SecurityEngine.java │ │ │ │ └── SecurityFilterConfig.java │ │ │ │ ├── domain │ │ │ │ ├── Access.java │ │ │ │ ├── Constraint.java │ │ │ │ ├── Constraints.java │ │ │ │ └── Role.java │ │ │ │ ├── endpoint │ │ │ │ ├── AccessEndpoint.java │ │ │ │ └── RoleEndpoint.java │ │ │ │ ├── filter │ │ │ │ └── SecurityFilter.java │ │ │ │ ├── init │ │ │ │ └── SystemRolesInitializer.java │ │ │ │ ├── repository │ │ │ │ ├── AccessRepository.java │ │ │ │ └── RoleRepository.java │ │ │ │ ├── service │ │ │ │ ├── AccessService.java │ │ │ │ └── RoleService.java │ │ │ │ ├── synchronizer │ │ │ │ ├── AccessSynchronizer.java │ │ │ │ └── RolesSynchronizer.java │ │ │ │ └── verifier │ │ │ │ └── AccessVerifier.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── security │ │ │ │ ├── endpoint │ │ │ │ ├── AccessEndpointTest.java │ │ │ │ └── RoleEndpointTest.java │ │ │ │ ├── repository │ │ │ │ ├── AccessRepositoryTest.java │ │ │ │ └── RoleRepositoryTest.java │ │ │ │ ├── service │ │ │ │ ├── AccessServiceTest.java │ │ │ │ └── RoleServiceTest.java │ │ │ │ ├── synchronizer │ │ │ │ ├── AccessSynchronizerTest.java │ │ │ │ └── SecurityRolesSynchronizerTest.java │ │ │ │ └── verifier │ │ │ │ └── AccessVerifierTest.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── test │ │ │ ├── test.access │ │ │ └── test.roles │ ├── engine-sftp │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── sftp │ │ │ └── config │ │ │ ├── SftpEngine.java │ │ │ └── SftpServerConfiguration.java │ ├── engine-template-javascript │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── template │ │ │ └── javascript │ │ │ ├── JavascriptGenerationEngine.java │ │ │ └── JavascriptTemplateEngine.java │ ├── engine-template-mustache │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── template │ │ │ │ └── mustache │ │ │ │ ├── MustacheGenerationEngine.java │ │ │ │ └── MustacheTemplateEngine.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── template │ │ │ └── mustache │ │ │ └── MustacheGeneratorTest.java │ ├── engine-template-velocity │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── template │ │ │ │ └── velocity │ │ │ │ ├── VelocityGenerationEngine.java │ │ │ │ └── VelocityTemplateEngine.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── template │ │ │ └── velocity │ │ │ └── VelocityGeneratorTest.java │ ├── engine-template │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── template │ │ │ ├── GenerationException.java │ │ │ ├── TemplateEngine.java │ │ │ └── TemplateEnginesManager.java │ ├── engine-typescript │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── typescript │ │ │ ├── TypeScriptEndpoint.java │ │ │ ├── TypeScriptException.java │ │ │ ├── TypeScriptService.java │ │ │ └── transpilation │ │ │ ├── TscWatcherService.java │ │ │ └── TscWatcherServicePublisherHandler.java │ ├── engine-web │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── web │ │ │ │ ├── config │ │ │ │ └── WebEngine.java │ │ │ │ ├── domain │ │ │ │ └── Expose.java │ │ │ │ ├── endpoint │ │ │ │ ├── ExposeEndpoint.java │ │ │ │ └── WebEndpoint.java │ │ │ │ ├── exposure │ │ │ │ └── ExposeManager.java │ │ │ │ ├── filter │ │ │ │ └── WebClientSideRoutingFilter.java │ │ │ │ ├── repository │ │ │ │ └── ExposeRepository.java │ │ │ │ ├── service │ │ │ │ ├── ExposeService.java │ │ │ │ └── WebService.java │ │ │ │ └── synchronizer │ │ │ │ └── ExposesSynchronizer.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── engine │ │ │ │ └── web │ │ │ │ ├── TestConfig.java │ │ │ │ └── endpoint │ │ │ │ └── WebEndpointTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── test │ │ │ │ ├── js │ │ │ │ └── index.js │ │ │ │ ├── project.json │ │ │ │ ├── ui │ │ │ │ └── index.html │ │ │ │ └── web.json │ │ │ └── quartz.properties │ ├── engine-websockets │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── websockets │ │ │ │ ├── config │ │ │ │ ├── WebSocketsEngine.java │ │ │ │ └── WebsocketConfig.java │ │ │ │ ├── domain │ │ │ │ └── Websocket.java │ │ │ │ ├── endpoint │ │ │ │ ├── WebsocketController.java │ │ │ │ └── WebsocketEndpoint.java │ │ │ │ ├── message │ │ │ │ ├── InputMessage.java │ │ │ │ └── OutputMessage.java │ │ │ │ ├── parser │ │ │ │ ├── WebsocketMetadata.java │ │ │ │ └── WebsocketParser.java │ │ │ │ ├── repository │ │ │ │ └── WebsocketRepository.java │ │ │ │ ├── service │ │ │ │ ├── WebsocketProcessor.java │ │ │ │ └── WebsocketService.java │ │ │ │ └── synchronizer │ │ │ │ └── WebsocketsSynchronizer.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── websockets │ │ │ ├── TestConfig.java │ │ │ ├── endpoint │ │ │ └── WebsocketEndpointTest.java │ │ │ ├── repository │ │ │ └── WebsocketRepositoryTest.java │ │ │ └── synchronizer │ │ │ └── WebsocketsSynchronizerTest.java │ └── engine-wiki │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── wiki │ │ │ ├── config │ │ │ └── WikiEngine.java │ │ │ ├── domain │ │ │ ├── Confluence.java │ │ │ └── Markdown.java │ │ │ ├── endpoint │ │ │ └── WikiEndpoint.java │ │ │ ├── repository │ │ │ ├── ConfluenceRepository.java │ │ │ └── MarkdownRepository.java │ │ │ ├── service │ │ │ ├── ConfluenceService.java │ │ │ ├── MarkdownService.java │ │ │ └── WikiService.java │ │ │ └── synchronizer │ │ │ ├── ConfluenceSynchronizer.java │ │ │ └── MarkdownSynchronizer.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── engine │ │ │ └── wiki │ │ │ └── endpoint │ │ │ ├── TestConfig.java │ │ │ └── WikiEndpointTest.java │ │ └── resources │ │ └── quartz.properties ├── group │ ├── group-api-core │ │ ├── about.html │ │ └── pom.xml │ ├── group-api-platform │ │ ├── about.html │ │ └── pom.xml │ ├── group-api │ │ ├── about.html │ │ └── pom.xml │ ├── group-core │ │ ├── about.html │ │ └── pom.xml │ ├── group-database │ │ ├── about.html │ │ └── pom.xml │ ├── group-engines-core │ │ ├── about.html │ │ └── pom.xml │ ├── group-engines │ │ ├── about.html │ │ └── pom.xml │ ├── group-ide │ │ ├── about.html │ │ └── pom.xml │ ├── group-resources │ │ ├── about.html │ │ └── pom.xml │ ├── group-templates │ │ ├── about.html │ │ └── pom.xml │ └── group-ui │ │ ├── about.html │ │ └── pom.xml ├── ide │ ├── ide-git │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── ide │ │ │ │ └── git │ │ │ │ ├── command │ │ │ │ ├── CheckoutCommand.java │ │ │ │ ├── CloneCommand.java │ │ │ │ ├── CommitCommand.java │ │ │ │ ├── GitCommandService.java │ │ │ │ ├── InitCommand.java │ │ │ │ ├── PullCommand.java │ │ │ │ ├── PushCommand.java │ │ │ │ ├── ResetCommand.java │ │ │ │ ├── ShareCommand.java │ │ │ │ ├── StatusCommand.java │ │ │ │ └── UpdateDependenciesCommand.java │ │ │ │ ├── config │ │ │ │ └── GitConfig.java │ │ │ │ ├── domain │ │ │ │ ├── GitBranch.java │ │ │ │ ├── GitChangeType.java │ │ │ │ ├── GitChangedFile.java │ │ │ │ ├── GitCommitInfo.java │ │ │ │ ├── GitConnector.java │ │ │ │ ├── GitConnectorException.java │ │ │ │ ├── GitConnectorFactory.java │ │ │ │ ├── GitProjectStatusProvider.java │ │ │ │ ├── GitUrlInput.java │ │ │ │ ├── GitUrlOutput.java │ │ │ │ └── IGitConnector.java │ │ │ │ ├── endpoint │ │ │ │ └── GitEndpoint.java │ │ │ │ ├── model │ │ │ │ ├── BaseGitModel.java │ │ │ │ ├── BaseGitProjectModel.java │ │ │ │ ├── GitCheckoutModel.java │ │ │ │ ├── GitCloneModel.java │ │ │ │ ├── GitDiffModel.java │ │ │ │ ├── GitProjectChangedFiles.java │ │ │ │ ├── GitProjectLocalBranches.java │ │ │ │ ├── GitProjectRemoteBranches.java │ │ │ │ ├── GitPullModel.java │ │ │ │ ├── GitPushModel.java │ │ │ │ ├── GitResetModel.java │ │ │ │ ├── GitShareModel.java │ │ │ │ └── GitUpdateDependenciesModel.java │ │ │ │ ├── project │ │ │ │ ├── ProjectOriginUrls.java │ │ │ │ └── ProjectPropertiesVerifier.java │ │ │ │ ├── service │ │ │ │ └── GitService.java │ │ │ │ └── utils │ │ │ │ ├── GitFileUtils.java │ │ │ │ ├── RemoteUrl.java │ │ │ │ └── RepositoryFileUtils.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── ide │ │ │ └── git │ │ │ └── command │ │ │ ├── CloneComandTest.java │ │ │ ├── GitConnectorTest.java │ │ │ ├── InitCommandTest.java │ │ │ ├── PullComandTest.java │ │ │ ├── PushComandTest.java │ │ │ ├── ResetComandTest.java │ │ │ ├── ShareComandTest.java │ │ │ └── UpdateDepenedenciesComandTest.java │ ├── ide-logs │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── ide │ │ │ └── logs │ │ │ ├── dto │ │ │ └── LogInfo.java │ │ │ ├── endpoint │ │ │ ├── LogsConfigurationsEndpoint.java │ │ │ └── LogsEndpoint.java │ │ │ └── service │ │ │ └── LogsService.java │ ├── ide-problems │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── ide │ │ │ │ └── problems │ │ │ │ ├── domain │ │ │ │ ├── Problem.java │ │ │ │ └── Problems.java │ │ │ │ ├── endpoint │ │ │ │ └── ProblemEndpoint.java │ │ │ │ ├── repository │ │ │ │ └── ProblemRepository.java │ │ │ │ └── service │ │ │ │ └── ProblemService.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── ide │ │ │ └── problems │ │ │ └── endpoint │ │ │ └── ProblemsEndpointTest.java │ ├── ide-template │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── ide │ │ │ └── template │ │ │ ├── domain │ │ │ ├── GenerationTemplateMetadata.java │ │ │ ├── GenerationTemplateMetadataParameter.java │ │ │ ├── GenerationTemplateMetadataSource.java │ │ │ ├── GenerationTemplateModelParameters.java │ │ │ └── GenerationTemplateParameters.java │ │ │ ├── endpoint │ │ │ └── GenerationEndpoint.java │ │ │ └── service │ │ │ ├── GenerationParameters.java │ │ │ └── GenerationService.java │ ├── ide-terminal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── terminal │ │ │ ├── client │ │ │ └── TerminalWebsocketClientEndpoint.java │ │ │ └── endpoint │ │ │ ├── ProcessRunnable.java │ │ │ ├── TerminalWebsocketConfig.java │ │ │ └── TerminalWebsocketHandler.java │ └── ide-workspace │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── ide │ │ │ │ └── workspace │ │ │ │ ├── domain │ │ │ │ ├── File.java │ │ │ │ ├── Folder.java │ │ │ │ ├── Project.java │ │ │ │ ├── ProjectStatus.java │ │ │ │ ├── ProjectStatusProvider.java │ │ │ │ ├── Status.java │ │ │ │ ├── Workspace.java │ │ │ │ ├── WorkspaceFromToPair.java │ │ │ │ ├── WorkspaceSelectionTargetPair.java │ │ │ │ └── WorkspaceSourceTargetPair.java │ │ │ │ ├── endpoint │ │ │ │ ├── PublisherEndpoint.java │ │ │ │ ├── TransportEndpoint.java │ │ │ │ ├── WorkspaceActionsEndpoint.java │ │ │ │ ├── WorkspaceEndpoint.java │ │ │ │ ├── WorkspaceFindEndpoint.java │ │ │ │ ├── WorkspaceSearchEndpoint.java │ │ │ │ └── WorkspacesEndpoint.java │ │ │ │ ├── handlers │ │ │ │ └── ExtensionsPublisherHandler.java │ │ │ │ ├── json │ │ │ │ ├── FileDescriptor.java │ │ │ │ ├── FolderDescriptor.java │ │ │ │ ├── ProjectDescriptor.java │ │ │ │ ├── WorkspaceDescriptor.java │ │ │ │ ├── WorkspaceGitHelper.java │ │ │ │ └── WorkspaceJsonHelper.java │ │ │ │ ├── project │ │ │ │ ├── ProjectActionsPublisherHandler.java │ │ │ │ └── ProjectMetadataManager.java │ │ │ │ └── service │ │ │ │ ├── ActionsService.java │ │ │ │ ├── PublisherService.java │ │ │ │ ├── TransportService.java │ │ │ │ └── WorkspaceService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── dirigible │ │ │ │ └── ide-workspace │ │ │ │ ├── ide-workspace-after-publish.extensionpoint │ │ │ │ ├── ide-workspace-after-unpublish.extensionpoint │ │ │ │ ├── ide-workspace-before-publish.extensionpoint │ │ │ │ ├── ide-workspace-before-unpublish.extensionpoint │ │ │ │ └── ide-workspace-on-save.extensionpoint │ │ │ └── project.json_ │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── dirigible │ │ └── components │ │ └── ide │ │ └── workspace │ │ ├── endpoint │ │ ├── DummyProjectStatusProvider.java │ │ ├── WorkspaceEndpointTest.java │ │ ├── WorkspaceFindEndpointTest.java │ │ ├── WorkspaceSearchEndpointTest.java │ │ └── WorkspacesEndpointTest.java │ │ └── service │ │ ├── ActionsServiceTest.java │ │ ├── ProjectTest.java │ │ ├── WorkspaceTest.java │ │ └── WorkspacesServiceTest.java ├── pom.xml ├── resources │ ├── platform-branding │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── platform-branding │ │ │ ├── branding.js │ │ │ ├── branding.mjs │ │ │ ├── images │ │ │ ├── dirigible-flag.png │ │ │ ├── dirigible-square.png │ │ │ ├── dirigible-symbolic.svg │ │ │ ├── dirigible.png │ │ │ ├── dirigible.svg │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ └── favicon.ico │ │ │ └── project.json │ ├── platform-core │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── platform-core │ │ │ ├── extension-points │ │ │ ├── editor.extensionpoint │ │ │ ├── locale.extensionpoint │ │ │ ├── menu.extensionpoint │ │ │ ├── perspective.extensionpoint │ │ │ ├── settings.extensionpoint │ │ │ ├── shell.extensionpoint │ │ │ ├── subview.extensionpoint │ │ │ ├── template.extensionpoint │ │ │ ├── theme.extensionpoint │ │ │ ├── view.extensionpoint │ │ │ └── window.extensionpoint │ │ │ ├── extension-services │ │ │ ├── editors.js │ │ │ ├── locales.js │ │ │ ├── menus.js │ │ │ ├── modules │ │ │ │ ├── perspectives.mjs │ │ │ │ ├── shells.mjs │ │ │ │ ├── views.mjs │ │ │ │ └── window-menu.mjs │ │ │ ├── perspectives.js │ │ │ ├── shells.js │ │ │ ├── templates.js │ │ │ ├── themes.js │ │ │ └── views.js │ │ │ ├── platform-core.access │ │ │ ├── project.json │ │ │ ├── services │ │ │ ├── clear-cache.js │ │ │ ├── loader.js │ │ │ └── user-name.js │ │ │ ├── ui │ │ │ ├── blimpkit │ │ │ │ ├── avatar.js │ │ │ │ ├── badge.js │ │ │ │ ├── bar.js │ │ │ │ ├── blimpkit.js │ │ │ │ ├── breadcrumb.js │ │ │ │ ├── busy-indicator.js │ │ │ │ ├── button.js │ │ │ │ ├── card.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── combobox.js │ │ │ │ ├── dialog.js │ │ │ │ ├── forms.js │ │ │ │ ├── icon-tab-bar.js │ │ │ │ ├── input.js │ │ │ │ ├── link.js │ │ │ │ ├── list.js │ │ │ │ ├── loader.js │ │ │ │ ├── menu.js │ │ │ │ ├── message-box.js │ │ │ │ ├── message-page.js │ │ │ │ ├── message-strip.js │ │ │ │ ├── notification.js │ │ │ │ ├── object-status.js │ │ │ │ ├── pagination.js │ │ │ │ ├── panel.js │ │ │ │ ├── popover.js │ │ │ │ ├── product-switch.js │ │ │ │ ├── progress-indicator.js │ │ │ │ ├── radio.js │ │ │ │ ├── scrollbar.js │ │ │ │ ├── select.js │ │ │ │ ├── shellbar.js │ │ │ │ ├── step-input.js │ │ │ │ ├── switch.js │ │ │ │ ├── table.js │ │ │ │ ├── textarea.js │ │ │ │ ├── tile.js │ │ │ │ ├── title.js │ │ │ │ ├── token.js │ │ │ │ ├── tokenizer.js │ │ │ │ ├── tool-header.js │ │ │ │ ├── toolbar.js │ │ │ │ ├── upload-collection.js │ │ │ │ ├── vertical-navigation.js │ │ │ │ └── wizard.js │ │ │ ├── jstree │ │ │ │ └── indicator.plugin.js │ │ │ ├── platform │ │ │ │ ├── contextmenu-hub.js │ │ │ │ ├── contextmenu.js │ │ │ │ ├── dialog-hub.js │ │ │ │ ├── dialogs.js │ │ │ │ ├── editors.js │ │ │ │ ├── extensions.js │ │ │ │ ├── layout-hub.js │ │ │ │ ├── layout.js │ │ │ │ ├── locale.js │ │ │ │ ├── message-hub.js │ │ │ │ ├── notification-hub.js │ │ │ │ ├── shell-hub.js │ │ │ │ ├── shell.js │ │ │ │ ├── shortcuts.js │ │ │ │ ├── split.js │ │ │ │ ├── status-bar-hub.js │ │ │ │ ├── theming-hub.js │ │ │ │ ├── theming.js │ │ │ │ ├── user.js │ │ │ │ └── view.js │ │ │ ├── styles │ │ │ │ ├── blimpkit.css │ │ │ │ ├── fonts.css │ │ │ │ ├── jstree.css │ │ │ │ ├── layout.css │ │ │ │ ├── shell.css │ │ │ │ └── split.css │ │ │ └── templates │ │ │ │ ├── dialogs.html │ │ │ │ ├── header.html │ │ │ │ ├── layout.html │ │ │ │ └── splitted-tabs.html │ │ │ ├── utilities │ │ │ └── view.js │ │ │ └── ws │ │ │ ├── sockjs-0.3.4.js │ │ │ └── stomp.js │ ├── resources-dashboard │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── dashboard │ │ │ ├── configs │ │ │ ├── bg-BG.js │ │ │ ├── dashboard-perspective.js │ │ │ ├── dashboard.js │ │ │ ├── general.js │ │ │ ├── reports-perspective.js │ │ │ └── settings-perspective.js │ │ │ ├── extension-points │ │ │ ├── dashboard-widgets.extensionpoint │ │ │ ├── locale.extensionpoint │ │ │ ├── menu.extensionpoint │ │ │ ├── perspective.extensionpoint │ │ │ ├── reports.extensionpoint │ │ │ ├── settings.extensionpoint │ │ │ ├── shell.extensionpoint │ │ │ ├── subview.extensionpoint │ │ │ ├── theme.extensionpoint │ │ │ ├── tile.extensionpoint │ │ │ ├── view.extensionpoint │ │ │ └── window.extensionpoint │ │ │ ├── extensions │ │ │ ├── bg-BG.extension │ │ │ ├── dashboard-perspective.extension │ │ │ ├── dashboard.extension │ │ │ ├── general.extension │ │ │ ├── reports-perspective.extension │ │ │ └── settings-perspective.extension │ │ │ ├── images │ │ │ ├── dashboard.svg │ │ │ ├── reports.svg │ │ │ └── settings.svg │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── dashboard-controller.js │ │ │ ├── reports-controller.js │ │ │ └── settings-controller.js │ │ │ ├── perspectives │ │ │ ├── dashboard.html │ │ │ ├── reports.html │ │ │ └── settings.html │ │ │ ├── project.json │ │ │ ├── services │ │ │ └── entity.js │ │ │ ├── settings │ │ │ ├── general.html │ │ │ └── js │ │ │ │ └── general.js │ │ │ └── translations │ │ │ ├── bg-BG │ │ │ ├── common.json │ │ │ └── translation.json │ │ │ └── en-US │ │ │ └── translation.json │ ├── resources-dev-tools │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ ├── .skip │ │ │ └── dev-tools │ │ │ ├── Images │ │ │ ├── accelerometer-back.svg │ │ │ ├── accelerometer-bottom.png │ │ │ ├── accelerometer-front.svg │ │ │ ├── accelerometer-left.png │ │ │ ├── accelerometer-right.png │ │ │ ├── accelerometer-top.png │ │ │ ├── breakpoint-conditional-disabled.svg │ │ │ ├── breakpoint-conditional.svg │ │ │ ├── breakpoint-disabled.svg │ │ │ ├── breakpoint.svg │ │ │ ├── checkboxCheckmark.svg │ │ │ ├── checker.png │ │ │ ├── chevrons.svg │ │ │ ├── chromeDisabledSelect.png │ │ │ ├── chromeDisabledSelect_2x.png │ │ │ ├── chromeLeft.png │ │ │ ├── chromeMiddle.png │ │ │ ├── chromeRight.png │ │ │ ├── chromeSelect.png │ │ │ ├── chromeSelect_2x.png │ │ │ ├── cssoverview_icons_2x.png │ │ │ ├── errorWave.svg │ │ │ ├── ic_info_black_18dp.svg │ │ │ ├── ic_warning_black_18dp.svg │ │ │ ├── largeIcons.svg │ │ │ ├── lighthouse_logo.svg │ │ │ ├── logpoint-disabled.svg │ │ │ ├── logpoint.svg │ │ │ ├── mediumIcons.svg │ │ │ ├── navigationControls.png │ │ │ ├── navigationControls_2x.png │ │ │ ├── nodeIcon.png │ │ │ ├── popoverArrows.png │ │ │ ├── profileGroupIcon.png │ │ │ ├── profileIcon.png │ │ │ ├── profileSmallIcon.png │ │ │ ├── radioDot-dark-theme.png │ │ │ ├── radioDot.png │ │ │ ├── readme.md │ │ │ ├── resizeDiagonal.png │ │ │ ├── resizeDiagonal_2x.png │ │ │ ├── resizeHorizontal.png │ │ │ ├── resizeHorizontal_2x.png │ │ │ ├── resizeVertical.png │ │ │ ├── resizeVertical_2x.png │ │ │ ├── resourceCSSIcon.png │ │ │ ├── resourceDocumentIcon.png │ │ │ ├── resourceDocumentIconSmall.png │ │ │ ├── resourceJSIcon.png │ │ │ ├── resourcePlainIcon.png │ │ │ ├── resourcePlainIconSmall.png │ │ │ ├── resourcesTimeGraphIcon.png │ │ │ ├── searchNext.png │ │ │ ├── searchPrev.png │ │ │ ├── securityIcons.svg │ │ │ ├── smallIcons.svg │ │ │ ├── speech.png │ │ │ ├── src │ │ │ │ ├── accelerometer-back.svg │ │ │ │ ├── accelerometer-front.svg │ │ │ │ ├── breakpoint-conditional-disabled.svg │ │ │ │ ├── breakpoint-conditional.svg │ │ │ │ ├── breakpoint-disabled.svg │ │ │ │ ├── breakpoint.svg │ │ │ │ ├── checkboxCheckmark.svg │ │ │ │ ├── chevrons.svg │ │ │ │ ├── errorWave.svg │ │ │ │ ├── largeIcons.svg │ │ │ │ ├── lighthouse_logo.svg │ │ │ │ ├── logpoint-disabled.svg │ │ │ │ ├── logpoint.svg │ │ │ │ ├── mediumIcons.svg │ │ │ │ ├── optimize_svg.hashes │ │ │ │ ├── securityIcons.svg │ │ │ │ ├── smallIcons.svg │ │ │ │ └── treeoutlineTriangles.svg │ │ │ ├── toolbarResizerVertical.png │ │ │ ├── touchCursor.png │ │ │ ├── touchCursor_2x.png │ │ │ ├── treeoutlineTriangles.svg │ │ │ └── whatsnew.png │ │ │ ├── OWNERS │ │ │ ├── RuntimeInstantiator.js │ │ │ ├── Tests.js │ │ │ ├── accessibility │ │ │ ├── ARIAAttributesView.js │ │ │ ├── ARIAMetadata.js │ │ │ ├── AXBreadcrumbsPane.js │ │ │ ├── AccessibilityModel.js │ │ │ ├── AccessibilityNodeView.js │ │ │ ├── AccessibilitySidebarView.js │ │ │ ├── AccessibilityStrings.js │ │ │ ├── AccessibilitySubPane.js │ │ │ ├── accessibility-legacy.js │ │ │ ├── accessibility.js │ │ │ ├── accessibilityNode.css │ │ │ ├── accessibilityProperties.css │ │ │ ├── accessibility_strings.grdp │ │ │ ├── axBreadcrumbs.css │ │ │ └── module.json │ │ │ ├── accessibility_test_runner │ │ │ ├── AccessibilityPaneTestRunner.js │ │ │ └── module.json │ │ │ ├── animation │ │ │ ├── AnimationGroupPreviewUI.js │ │ │ ├── AnimationModel.js │ │ │ ├── AnimationScreenshotPopover.js │ │ │ ├── AnimationTimeline.js │ │ │ ├── AnimationUI.js │ │ │ ├── animation-legacy.js │ │ │ ├── animation.js │ │ │ ├── animationScreenshotPopover.css │ │ │ ├── animationTimeline.css │ │ │ ├── animation_strings.grdp │ │ │ └── module.json │ │ │ ├── application_test_runner │ │ │ ├── AppcacheTestRunner.js │ │ │ ├── CacheStorageTestRunner.js │ │ │ ├── IndexedDBTestRunner.js │ │ │ ├── ResourceTreeTestRunner.js │ │ │ ├── ResourcesTestRunner.js │ │ │ ├── ServiceWorkersTestRunner.js │ │ │ └── module.json │ │ │ ├── axe_core_test_runner │ │ │ ├── AxeCoreTestRunner.js │ │ │ └── module.json │ │ │ ├── bindings │ │ │ ├── BUILD.gn │ │ │ ├── BlackboxManager.js │ │ │ ├── BreakpointManager.js │ │ │ ├── CSSWorkspaceBinding.js │ │ │ ├── CompilerScriptMapping.js │ │ │ ├── ContentProviderBasedProject.js │ │ │ ├── DebuggerLanguagePlugins.js │ │ │ ├── DebuggerWorkspaceBinding.js │ │ │ ├── DefaultScriptMapping.js │ │ │ ├── FileUtils.js │ │ │ ├── LiveLocation.js │ │ │ ├── NetworkProject.js │ │ │ ├── PresentationConsoleMessageHelper.js │ │ │ ├── ResourceMapping.js │ │ │ ├── ResourceScriptMapping.js │ │ │ ├── ResourceUtils.js │ │ │ ├── SASSSourceMapping.js │ │ │ ├── StylesSourceMapping.js │ │ │ ├── TempFile.js │ │ │ ├── bindings-legacy.js │ │ │ ├── bindings.js │ │ │ ├── bindings_strings.grdp │ │ │ ├── language_plugins │ │ │ │ └── CXXDWARFLanguagePlugin.js │ │ │ └── module.json │ │ │ ├── bindings_test_runner │ │ │ ├── AutomappingTestRunner.js │ │ │ ├── BindingsTestRunner.js │ │ │ ├── IsolatedFilesystemTestRunner.js │ │ │ ├── OverridesTestRunner.js │ │ │ ├── PersistenceTestRunner.js │ │ │ └── module.json │ │ │ ├── browser_debugger │ │ │ ├── DOMBreakpointsSidebarPane.js │ │ │ ├── EventListenerBreakpointsSidebarPane.js │ │ │ ├── ObjectEventListenersSidebarPane.js │ │ │ ├── XHRBreakpointsSidebarPane.js │ │ │ ├── browser_debugger-legacy.js │ │ │ ├── browser_debugger.js │ │ │ ├── browser_debugger_strings.grdp │ │ │ ├── domBreakpointsSidebarPane.css │ │ │ ├── eventListenerBreakpoints.css │ │ │ ├── module.json │ │ │ └── xhrBreakpointsSidebarPane.css │ │ │ ├── browser_sdk │ │ │ ├── LogManager.js │ │ │ ├── browser_sdk-legacy.js │ │ │ ├── browser_sdk.js │ │ │ ├── browser_sdk_strings.grdp │ │ │ └── module.json │ │ │ ├── changes │ │ │ ├── ChangesHighlighter.js │ │ │ ├── ChangesSidebar.js │ │ │ ├── ChangesTextEditor.js │ │ │ ├── ChangesView.js │ │ │ ├── changes-legacy.js │ │ │ ├── changes.js │ │ │ ├── changesSidebar.css │ │ │ ├── changesView.css │ │ │ ├── changes_strings.grdp │ │ │ └── module.json │ │ │ ├── cm │ │ │ ├── .clang-format │ │ │ ├── LICENSE │ │ │ ├── LICENSE_python │ │ │ ├── PRESUBMIT.py │ │ │ ├── README.md │ │ │ ├── active-line.js │ │ │ ├── brace-fold.js │ │ │ ├── closebrackets.js │ │ │ ├── cm.js │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── comment.js │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.js │ │ │ ├── mark-selection.js │ │ │ ├── matchbrackets.js │ │ │ ├── module.json │ │ │ ├── multiplex.js │ │ │ └── overlay.js │ │ │ ├── cm_headless │ │ │ ├── .clang-format │ │ │ ├── cm_headless.js │ │ │ ├── headlesscodemirror.js │ │ │ └── module.json │ │ │ ├── cm_modes │ │ │ ├── .clang-format │ │ │ ├── DefaultCodeMirrorMimeMode.js │ │ │ ├── LICENSE │ │ │ ├── PRESUBMIT.py │ │ │ ├── clike.js │ │ │ ├── clojure.js │ │ │ ├── cm_modes.js │ │ │ ├── coffeescript.js │ │ │ ├── jsx.js │ │ │ ├── livescript.js │ │ │ ├── markdown.js │ │ │ ├── module.json │ │ │ ├── php.js │ │ │ ├── python.js │ │ │ └── shell.js │ │ │ ├── cm_web_modes │ │ │ ├── .clang-format │ │ │ ├── cm_web_modes.js │ │ │ ├── cm_web_modes_cm.js │ │ │ ├── cm_web_modes_headless.js │ │ │ ├── css.js │ │ │ ├── htmlembedded.js │ │ │ ├── htmlmixed.js │ │ │ ├── javascript.js │ │ │ ├── module.json │ │ │ └── xml.js │ │ │ ├── color_picker │ │ │ ├── ContrastDetails.js │ │ │ ├── ContrastInfo.js │ │ │ ├── ContrastOverlay.js │ │ │ ├── Spectrum.js │ │ │ ├── color_picker-legacy.js │ │ │ ├── color_picker.js │ │ │ ├── color_picker_strings.grdp │ │ │ ├── module.json │ │ │ └── spectrum.css │ │ │ ├── common │ │ │ ├── App.js │ │ │ ├── AppProvider.js │ │ │ ├── BUILD.gn │ │ │ ├── CharacterIdMap.js │ │ │ ├── Color.js │ │ │ ├── Console.js │ │ │ ├── EventTarget.js │ │ │ ├── JavaScriptMetaData.js │ │ │ ├── Linkifier.js │ │ │ ├── Object.js │ │ │ ├── ParsedURL.js │ │ │ ├── Progress.js │ │ │ ├── QueryParamHandler.js │ │ │ ├── ResourceType.js │ │ │ ├── Revealer.js │ │ │ ├── Runnable.js │ │ │ ├── SegmentedRange.js │ │ │ ├── Settings.js │ │ │ ├── StringOutputStream.js │ │ │ ├── TextDictionary.js │ │ │ ├── Throttler.js │ │ │ ├── Trie.js │ │ │ ├── UIString.js │ │ │ ├── Worker.js │ │ │ ├── common-legacy.js │ │ │ ├── common.js │ │ │ ├── common_strings.grdp │ │ │ ├── ls.ts │ │ │ └── module.json │ │ │ ├── components │ │ │ ├── DockController.js │ │ │ ├── ImagePreview.js │ │ │ ├── JSPresentationUtils.js │ │ │ ├── Linkifier.js │ │ │ ├── Reload.js │ │ │ ├── TargetDetachedDialog.js │ │ │ ├── components-legacy.js │ │ │ ├── components.js │ │ │ ├── components_strings.grdp │ │ │ ├── imagePreview.css │ │ │ ├── jsUtils.css │ │ │ └── module.json │ │ │ ├── console │ │ │ ├── ConsoleContextSelector.js │ │ │ ├── ConsoleFilter.js │ │ │ ├── ConsolePanel.js │ │ │ ├── ConsolePinPane.js │ │ │ ├── ConsolePrompt.js │ │ │ ├── ConsoleSidebar.js │ │ │ ├── ConsoleView.js │ │ │ ├── ConsoleViewMessage.js │ │ │ ├── ConsoleViewport.js │ │ │ ├── console-legacy.js │ │ │ ├── console.js │ │ │ ├── consoleContextSelector.css │ │ │ ├── consolePinPane.css │ │ │ ├── consolePrompt.css │ │ │ ├── consoleSidebar.css │ │ │ ├── consoleView.css │ │ │ ├── console_strings.grdp │ │ │ └── module.json │ │ │ ├── console_counters │ │ │ ├── WarningErrorCounter.js │ │ │ ├── console_counters-legacy.js │ │ │ ├── console_counters.js │ │ │ ├── console_counters_strings.grdp │ │ │ ├── errorWarningCounter.css │ │ │ └── module.json │ │ │ ├── console_test_runner │ │ │ ├── ConsoleTestRunner.js │ │ │ └── module.json │ │ │ ├── cookie_table │ │ │ ├── CookiesTable.js │ │ │ ├── cookie_table-legacy.js │ │ │ ├── cookie_table.js │ │ │ ├── cookie_table_strings.grdp │ │ │ ├── cookiesTable.css │ │ │ └── module.json │ │ │ ├── coverage │ │ │ ├── CoverageDecorationManager.js │ │ │ ├── CoverageListView.js │ │ │ ├── CoverageModel.js │ │ │ ├── CoverageView.js │ │ │ ├── coverage-legacy.js │ │ │ ├── coverage.js │ │ │ ├── coverageListView.css │ │ │ ├── coverageView.css │ │ │ ├── coverage_strings.grdp │ │ │ └── module.json │ │ │ ├── coverage_test_runner │ │ │ ├── CoverageTestRunner.js │ │ │ └── module.json │ │ │ ├── cpu_profiler_test_runner │ │ │ ├── ProfilerTestRunner.js │ │ │ └── module.json │ │ │ ├── css_overview │ │ │ ├── CSSOverviewCompletedView.js │ │ │ ├── CSSOverviewController.js │ │ │ ├── CSSOverviewModel.js │ │ │ ├── CSSOverviewPanel.js │ │ │ ├── CSSOverviewProcessingView.js │ │ │ ├── CSSOverviewSidebarPanel.js │ │ │ ├── CSSOverviewStartView.js │ │ │ ├── CSSOverviewUnusedDeclarations.js │ │ │ ├── cssOverview.css │ │ │ ├── cssOverviewCompletedView.css │ │ │ ├── cssOverviewProcessingView.css │ │ │ ├── cssOverviewSidebarPanel.css │ │ │ ├── cssOverviewStartView.css │ │ │ ├── css_overview-legacy.js │ │ │ ├── css_overview.js │ │ │ ├── css_overview_strings.grdp │ │ │ └── module.json │ │ │ ├── dagre_layout │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dagre.js │ │ │ └── module.json │ │ │ ├── data_grid │ │ │ ├── DataGrid.js │ │ │ ├── ShowMoreDataGridNode.js │ │ │ ├── SortableDataGrid.js │ │ │ ├── ViewportDataGrid.js │ │ │ ├── dataGrid.css │ │ │ ├── data_grid-legacy.js │ │ │ ├── data_grid.js │ │ │ ├── data_grid_strings.grdp │ │ │ └── module.json │ │ │ ├── data_grid_test_runner │ │ │ ├── DataGridTestRunner.js │ │ │ └── module.json │ │ │ ├── device_mode_test_runner │ │ │ ├── DeviceModeTestRunner.js │ │ │ └── module.json │ │ │ ├── devices │ │ │ ├── DevicesView.js │ │ │ ├── devices_strings.grdp │ │ │ └── module.json │ │ │ ├── devtools_app.html │ │ │ ├── devtools_app.js │ │ │ ├── devtools_app.json │ │ │ ├── devtools_compatibility.js │ │ │ ├── diff │ │ │ ├── .clang-format │ │ │ ├── DiffWrapper.js │ │ │ ├── diff-legacy.js │ │ │ ├── diff.js │ │ │ ├── diff_match_patch.js │ │ │ └── module.json │ │ │ ├── dom_extension │ │ │ ├── DOMExtension.js │ │ │ ├── dom_extension.js │ │ │ └── module.json │ │ │ ├── elements │ │ │ ├── ClassesPaneWidget.js │ │ │ ├── ColorSwatchPopoverIcon.js │ │ │ ├── ComputedStyleModel.js │ │ │ ├── ComputedStyleWidget.js │ │ │ ├── DOMLinkifier.js │ │ │ ├── DOMPath.js │ │ │ ├── ElementStatePaneWidget.js │ │ │ ├── ElementsBreadcrumbs.js │ │ │ ├── ElementsPanel.js │ │ │ ├── ElementsSidebarPane.js │ │ │ ├── ElementsTreeElement.js │ │ │ ├── ElementsTreeElementHighlighter.js │ │ │ ├── ElementsTreeOutline.js │ │ │ ├── EventListenersWidget.js │ │ │ ├── InspectElementModeController.js │ │ │ ├── MarkerDecorator.js │ │ │ ├── MetricsSidebarPane.js │ │ │ ├── NodeStackTraceWidget.js │ │ │ ├── PlatformFontsWidget.js │ │ │ ├── PropertiesWidget.js │ │ │ ├── StylePropertyHighlighter.js │ │ │ ├── StylePropertyTreeElement.js │ │ │ ├── StylesSidebarPane.js │ │ │ ├── breadcrumbs.css │ │ │ ├── classesPaneWidget.css │ │ │ ├── computedStyleSidebarPane.css │ │ │ ├── computedStyleWidgetTree.css │ │ │ ├── domLinkifier.css │ │ │ ├── elementStatePaneWidget.css │ │ │ ├── elements-legacy.js │ │ │ ├── elements.js │ │ │ ├── elementsPanel.css │ │ │ ├── elementsTreeOutline.css │ │ │ ├── elements_strings.grdp │ │ │ ├── metricsSidebarPane.css │ │ │ ├── module.json │ │ │ ├── nodeStackTraceWidget.css │ │ │ ├── platformFontsWidget.css │ │ │ ├── propertiesWidget.css │ │ │ ├── stylesSectionTree.css │ │ │ └── stylesSidebarPane.css │ │ │ ├── elements_test_runner │ │ │ ├── EditDOMTestRunner.js │ │ │ ├── ElementsPanelShadowSelectionOnRefreshTestRunner.js │ │ │ ├── ElementsTestRunner.js │ │ │ ├── SetOuterHTMLTestRunner.js │ │ │ ├── StylesUpdateLinksTestRunner.js │ │ │ └── module.json │ │ │ ├── emulated_devices │ │ │ ├── MotoG4-landscape.svg │ │ │ ├── MotoG4-portrait.svg │ │ │ ├── Nexus5X-landscape.svg │ │ │ ├── Nexus5X-portrait.svg │ │ │ ├── Nexus6P-landscape.svg │ │ │ ├── Nexus6P-portrait.svg │ │ │ ├── emulated_devices_strings.grdp │ │ │ ├── google-nexus-5-horizontal-default-1x.png │ │ │ ├── google-nexus-5-horizontal-default-2x.png │ │ │ ├── google-nexus-5-horizontal-keyboard-1x.png │ │ │ ├── google-nexus-5-horizontal-keyboard-2x.png │ │ │ ├── google-nexus-5-horizontal-navigation-1x.png │ │ │ ├── google-nexus-5-horizontal-navigation-2x.png │ │ │ ├── google-nexus-5-vertical-default-1x.png │ │ │ ├── google-nexus-5-vertical-default-2x.png │ │ │ ├── google-nexus-5-vertical-keyboard-1x.png │ │ │ ├── google-nexus-5-vertical-keyboard-2x.png │ │ │ ├── google-nexus-5-vertical-navigation-1x.png │ │ │ ├── google-nexus-5-vertical-navigation-2x.png │ │ │ ├── google-nexus-5x-horizontal-default-1x.png │ │ │ ├── google-nexus-5x-horizontal-default-2x.png │ │ │ ├── google-nexus-5x-horizontal-keyboard-1x.png │ │ │ ├── google-nexus-5x-horizontal-keyboard-2x.png │ │ │ ├── google-nexus-5x-horizontal-navigation-1x.png │ │ │ ├── google-nexus-5x-horizontal-navigation-2x.png │ │ │ ├── google-nexus-5x-vertical-default-1x.png │ │ │ ├── google-nexus-5x-vertical-default-2x.png │ │ │ ├── google-nexus-5x-vertical-keyboard-1x.png │ │ │ ├── google-nexus-5x-vertical-keyboard-2x.png │ │ │ ├── google-nexus-5x-vertical-navigation-1x.png │ │ │ ├── google-nexus-5x-vertical-navigation-2x.png │ │ │ ├── iPad-landscape.svg │ │ │ ├── iPad-portrait.svg │ │ │ ├── iPhone5-landscape.svg │ │ │ ├── iPhone5-portrait.svg │ │ │ ├── iPhone6-landscape.svg │ │ │ ├── iPhone6-portrait.svg │ │ │ ├── iPhone6Plus-landscape.svg │ │ │ ├── iPhone6Plus-portrait.svg │ │ │ └── module.json │ │ │ ├── emulation │ │ │ ├── AdvancedApp.js │ │ │ ├── DeviceModeModel.js │ │ │ ├── DeviceModeToolbar.js │ │ │ ├── DeviceModeView.js │ │ │ ├── DeviceModeWrapper.js │ │ │ ├── DevicesSettingsTab.js │ │ │ ├── EmulatedDevices.js │ │ │ ├── InspectedPagePlaceholder.js │ │ │ ├── LocationsSettingsTab.js │ │ │ ├── MediaQueryInspector.js │ │ │ ├── SensorsView.js │ │ │ ├── deviceModeToolbar.css │ │ │ ├── deviceModeView.css │ │ │ ├── devicesSettingsTab.css │ │ │ ├── emulation-legacy.js │ │ │ ├── emulation.js │ │ │ ├── emulation_strings.grdp │ │ │ ├── inspectedPagePlaceholder.css │ │ │ ├── locationsSettingsTab.css │ │ │ ├── mediaQueryInspector.css │ │ │ ├── module.json │ │ │ └── sensors.css │ │ │ ├── event_listeners │ │ │ ├── EventListenersUtils.js │ │ │ ├── EventListenersView.js │ │ │ ├── eventListenersView.css │ │ │ ├── event_listeners-legacy.js │ │ │ ├── event_listeners.js │ │ │ ├── event_listeners_strings.grdp │ │ │ └── module.json │ │ │ ├── extensions │ │ │ ├── ExtensionAPI.js │ │ │ ├── ExtensionPanel.js │ │ │ ├── ExtensionServer.js │ │ │ ├── ExtensionTraceProvider.js │ │ │ ├── ExtensionView.js │ │ │ ├── extensions-legacy.js │ │ │ ├── extensions.js │ │ │ └── module.json │ │ │ ├── extensions_test_runner │ │ │ ├── ExtensionsNetworkTestRunner.js │ │ │ ├── ExtensionsTestRunner.js │ │ │ └── module.json │ │ │ ├── externs.js │ │ │ ├── formatter │ │ │ ├── FormatterWorkerPool.js │ │ │ ├── ScriptFormatter.js │ │ │ ├── SourceFormatter.js │ │ │ ├── formatter-legacy.js │ │ │ ├── formatter.js │ │ │ └── module.json │ │ │ ├── formatter_worker │ │ │ ├── AcornTokenizer.js │ │ │ ├── BUILD.gn │ │ │ ├── CSSFormatter.js │ │ │ ├── CSSRuleParser.js │ │ │ ├── ESTreeWalker.js │ │ │ ├── FormattedContentBuilder.js │ │ │ ├── FormatterWorker.js │ │ │ ├── HTMLFormatter.js │ │ │ ├── IdentityFormatter.js │ │ │ ├── JavaScriptFormatter.js │ │ │ ├── JavaScriptOutline.js │ │ │ ├── RelaxedJSONParser.js │ │ │ ├── acorn │ │ │ │ ├── .clang-format │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── acorn.js │ │ │ │ └── acorn_loose.js │ │ │ ├── formatter_worker-legacy.js │ │ │ ├── formatter_worker.js │ │ │ └── module.json │ │ │ ├── formatter_worker_entrypoint.js │ │ │ ├── formatter_worker_entrypoint.json │ │ │ ├── generated │ │ │ ├── ARIAProperties.js │ │ │ ├── BUILD.gn │ │ │ ├── InspectorBackendCommands.js │ │ │ ├── SupportedCSSProperties.js │ │ │ ├── protocol-mapping.d.ts │ │ │ ├── protocol-proxy-api.d.ts │ │ │ └── protocol.d.ts │ │ │ ├── har_importer │ │ │ ├── HARFormat.js │ │ │ ├── HARImporter.js │ │ │ ├── har_importer-legacy.js │ │ │ ├── har_importer.js │ │ │ └── module.json │ │ │ ├── heap_profiler_test_runner │ │ │ ├── HeapProfilerTestRunner.js │ │ │ └── module.json │ │ │ ├── heap_snapshot_model │ │ │ ├── HeapSnapshotModel.js │ │ │ ├── heap_snapshot_model-legacy.js │ │ │ ├── heap_snapshot_model.js │ │ │ └── module.json │ │ │ ├── heap_snapshot_worker │ │ │ ├── AllocationProfile.js │ │ │ ├── HeapSnapshot.js │ │ │ ├── HeapSnapshotLoader.js │ │ │ ├── HeapSnapshotWorker.js │ │ │ ├── HeapSnapshotWorkerDispatcher.js │ │ │ ├── heap_snapshot_worker-legacy.js │ │ │ ├── heap_snapshot_worker.js │ │ │ ├── heap_snapshot_worker_strings.grdp │ │ │ └── module.json │ │ │ ├── heap_snapshot_worker_entrypoint.js │ │ │ ├── heap_snapshot_worker_entrypoint.json │ │ │ ├── help │ │ │ ├── HelpImpl.js │ │ │ ├── ReleaseNoteText.js │ │ │ ├── ReleaseNoteView.js │ │ │ ├── help-legacy.js │ │ │ ├── help.js │ │ │ ├── help_strings.grdp │ │ │ ├── module.json │ │ │ └── releaseNote.css │ │ │ ├── host │ │ │ ├── BUILD.gn │ │ │ ├── InspectorFrontendHost.js │ │ │ ├── InspectorFrontendHostAPI.js │ │ │ ├── Platform.js │ │ │ ├── ResourceLoader.js │ │ │ ├── UserMetrics.js │ │ │ ├── host-legacy.js │ │ │ ├── host.js │ │ │ ├── host_strings.grdp │ │ │ └── module.json │ │ │ ├── inline_editor │ │ │ ├── BezierEditor.js │ │ │ ├── BezierUI.js │ │ │ ├── CSSShadowEditor.js │ │ │ ├── CSSShadowModel.js │ │ │ ├── ColorSwatch.js │ │ │ ├── SwatchPopoverHelper.js │ │ │ ├── bezierEditor.css │ │ │ ├── bezierSwatch.css │ │ │ ├── colorSwatch.css │ │ │ ├── cssShadowEditor.css │ │ │ ├── cssShadowSwatch.css │ │ │ ├── inline_editor-legacy.js │ │ │ ├── inline_editor.js │ │ │ ├── inline_editor_strings.grdp │ │ │ ├── module.json │ │ │ └── swatchPopover.css │ │ │ ├── input │ │ │ ├── InputModel.js │ │ │ ├── InputTimeline.js │ │ │ ├── input-legacy.js │ │ │ ├── input.js │ │ │ ├── inputTimeline.css │ │ │ ├── input_strings.grdp │ │ │ └── module.json │ │ │ ├── inspector.html │ │ │ ├── inspector.js │ │ │ ├── inspector.json │ │ │ ├── inspector_main │ │ │ ├── InspectorMain.js │ │ │ ├── RenderingOptions.js │ │ │ ├── inspector_main-legacy.js │ │ │ ├── inspector_main.js │ │ │ ├── inspector_main_strings.grdp │ │ │ ├── module.json │ │ │ ├── nodeIcon.css │ │ │ └── renderingOptions.css │ │ │ ├── integration_test_runner.html │ │ │ ├── integration_test_runner.js │ │ │ ├── integration_test_runner.json │ │ │ ├── issues │ │ │ ├── IssueRevealer.js │ │ │ ├── IssuesPane.js │ │ │ ├── issues-legacy.js │ │ │ ├── issues.js │ │ │ ├── issuesPane.css │ │ │ ├── issues_strings.grdp │ │ │ └── module.json │ │ │ ├── javascript_metadata │ │ │ ├── JavaScriptMetadata.js │ │ │ ├── NativeFunctions.js │ │ │ ├── javascript_metadata-legacy.js │ │ │ ├── javascript_metadata.js │ │ │ └── module.json │ │ │ ├── js_app.html │ │ │ ├── js_app.js │ │ │ ├── js_app.json │ │ │ ├── js_main │ │ │ ├── JsMain.js │ │ │ ├── js_main-legacy.js │ │ │ ├── js_main.js │ │ │ └── module.json │ │ │ ├── js_profiler │ │ │ ├── js_profiler_strings.grdp │ │ │ └── module.json │ │ │ ├── langpacks │ │ │ ├── devtools_ui_strings.grd │ │ │ └── shared_strings.grdp │ │ │ ├── layer_viewer │ │ │ ├── LayerDetailsView.js │ │ │ ├── LayerTreeOutline.js │ │ │ ├── LayerViewHost.js │ │ │ ├── Layers3DView.js │ │ │ ├── PaintProfilerView.js │ │ │ ├── TransformController.js │ │ │ ├── layerDetailsView.css │ │ │ ├── layer_viewer-legacy.js │ │ │ ├── layer_viewer.js │ │ │ ├── layer_viewer_strings.grdp │ │ │ ├── layers3DView.css │ │ │ ├── module.json │ │ │ └── paintProfiler.css │ │ │ ├── layers │ │ │ ├── LayerPaintProfilerView.js │ │ │ ├── LayerTreeModel.js │ │ │ ├── LayersPanel.js │ │ │ ├── layers-legacy.js │ │ │ ├── layers.js │ │ │ ├── layers_strings.grdp │ │ │ └── module.json │ │ │ ├── layers_test_runner │ │ │ ├── LayersTestRunner.js │ │ │ └── module.json │ │ │ ├── legacy │ │ │ └── legacy-defs.d.ts │ │ │ ├── lighthouse │ │ │ ├── LighthouseController.js │ │ │ ├── LighthousePanel.js │ │ │ ├── LighthouseProtocolService.js │ │ │ ├── LighthouseReportRenderer.js │ │ │ ├── LighthouseReportSelector.js │ │ │ ├── LighthouseStartView.js │ │ │ ├── LighthouseStatusView.js │ │ │ ├── OWNERS │ │ │ ├── RadioSetting.js │ │ │ ├── lighthouse-legacy.js │ │ │ ├── lighthouse.js │ │ │ ├── lighthouseDialog.css │ │ │ ├── lighthousePanel.css │ │ │ ├── lighthouseStartView.css │ │ │ ├── lighthouse_strings.grdp │ │ │ └── module.json │ │ │ ├── lighthouse_test_runner │ │ │ ├── LighthouseTestRunner.js │ │ │ ├── OWNERS │ │ │ └── module.json │ │ │ ├── lighthouse_worker.js │ │ │ ├── lighthouse_worker.json │ │ │ ├── lighthouse_worker │ │ │ ├── LighthouseService.js │ │ │ ├── OWNERS │ │ │ └── module.json │ │ │ ├── main │ │ │ ├── ExecutionContextSelector.js │ │ │ ├── MainImpl.js │ │ │ ├── SimpleApp.js │ │ │ ├── main-legacy.js │ │ │ ├── main.js │ │ │ ├── main_strings.grdp │ │ │ └── module.json │ │ │ ├── media │ │ │ ├── ChevronTabbedPanel.js │ │ │ ├── EventDisplayTable.js │ │ │ ├── MainView.js │ │ │ ├── MediaModel.js │ │ │ ├── PlayerDetailView.js │ │ │ ├── PlayerListView.js │ │ │ ├── PlayerPropertiesView.js │ │ │ ├── chevronTabbedPanel.css │ │ │ ├── eventDisplayTable.css │ │ │ ├── media-legacy.js │ │ │ ├── media.js │ │ │ ├── mediaView.css │ │ │ ├── media_strings.grdp │ │ │ ├── module.json │ │ │ ├── playerListView.css │ │ │ └── playerPropertiesView.css │ │ │ ├── mobile_throttling │ │ │ ├── MobileThrottlingSelector.js │ │ │ ├── NetworkPanelIndicator.js │ │ │ ├── NetworkThrottlingSelector.js │ │ │ ├── ThrottlingManager.js │ │ │ ├── ThrottlingPresets.js │ │ │ ├── ThrottlingSettingsTab.js │ │ │ ├── mobile_throttling-legacy.js │ │ │ ├── mobile_throttling.js │ │ │ ├── mobile_throttling_strings.grdp │ │ │ ├── module.json │ │ │ └── throttlingSettingsTab.css │ │ │ ├── ndb_app.html │ │ │ ├── ndb_app.js │ │ │ ├── ndb_app.json │ │ │ ├── network │ │ │ ├── BinaryResourceView.js │ │ │ ├── BlockedURLsPane.js │ │ │ ├── EventSourceMessagesView.js │ │ │ ├── HARWriter.js │ │ │ ├── NetworkConfigView.js │ │ │ ├── NetworkDataGridNode.js │ │ │ ├── NetworkFrameGrouper.js │ │ │ ├── NetworkItemView.js │ │ │ ├── NetworkLogView.js │ │ │ ├── NetworkLogViewColumns.js │ │ │ ├── NetworkManageCustomHeadersView.js │ │ │ ├── NetworkOverview.js │ │ │ ├── NetworkPanel.js │ │ │ ├── NetworkSearchScope.js │ │ │ ├── NetworkTimeCalculator.js │ │ │ ├── NetworkWaterfallColumn.js │ │ │ ├── RequestCookiesView.js │ │ │ ├── RequestHTMLView.js │ │ │ ├── RequestHeadersView.js │ │ │ ├── RequestInitiatorView.js │ │ │ ├── RequestPreviewView.js │ │ │ ├── RequestResponseView.js │ │ │ ├── RequestTimingView.js │ │ │ ├── SignedExchangeInfoView.js │ │ │ ├── binaryResourceView.css │ │ │ ├── blockedURLsPane.css │ │ │ ├── eventSourceMessagesView.css │ │ │ ├── module.json │ │ │ ├── network-legacy.js │ │ │ ├── network.js │ │ │ ├── networkConfigView.css │ │ │ ├── networkLogView.css │ │ │ ├── networkManageCustomHeadersView.css │ │ │ ├── networkPanel.css │ │ │ ├── networkTimingTable.css │ │ │ ├── networkWaterfallColumn.css │ │ │ ├── network_strings.grdp │ │ │ ├── requestCookiesView.css │ │ │ ├── requestHTMLView.css │ │ │ ├── requestHeadersTree.css │ │ │ ├── requestHeadersView.css │ │ │ ├── requestInitiatorView.css │ │ │ ├── signedExchangeInfoTree.css │ │ │ ├── signedExchangeInfoView.css │ │ │ └── webSocketFrameView.css │ │ │ ├── network_test_runner │ │ │ ├── NetworkTestRunner.js │ │ │ └── module.json │ │ │ ├── node_app.html │ │ │ ├── node_app.js │ │ │ ├── node_app.json │ │ │ ├── node_debugger │ │ │ ├── module.json │ │ │ └── node_debugger_strings.grdp │ │ │ ├── node_main │ │ │ ├── NodeConnectionsPanel.js │ │ │ ├── NodeMain.js │ │ │ ├── module.json │ │ │ ├── nodeConnectionsPanel.css │ │ │ ├── node_main-legacy.js │ │ │ ├── node_main.js │ │ │ └── node_main_strings.grdp │ │ │ ├── object_ui │ │ │ ├── CustomPreviewComponent.js │ │ │ ├── JavaScriptAutocomplete.js │ │ │ ├── JavaScriptREPL.js │ │ │ ├── ObjectPopoverHelper.js │ │ │ ├── ObjectPropertiesSection.js │ │ │ ├── RemoteObjectPreviewFormatter.js │ │ │ ├── customPreviewComponent.css │ │ │ ├── module.json │ │ │ ├── objectPopover.css │ │ │ ├── objectPropertiesSection.css │ │ │ ├── objectValue.css │ │ │ ├── object_ui-legacy.js │ │ │ ├── object_ui.js │ │ │ └── object_ui_strings.grdp │ │ │ ├── perf_ui │ │ │ ├── ChartViewport.js │ │ │ ├── FilmStripView.js │ │ │ ├── FlameChart.js │ │ │ ├── GCActionDelegate.js │ │ │ ├── LineLevelProfile.js │ │ │ ├── LiveHeapProfile.js │ │ │ ├── NetworkPriorities.js │ │ │ ├── OverviewGrid.js │ │ │ ├── PieChart.js │ │ │ ├── TimelineGrid.js │ │ │ ├── TimelineOverviewPane.js │ │ │ ├── chartViewport.css │ │ │ ├── filmStripView.css │ │ │ ├── flameChart.css │ │ │ ├── module.json │ │ │ ├── overviewGrid.css │ │ │ ├── perf_ui-legacy.js │ │ │ ├── perf_ui.js │ │ │ ├── perf_ui_strings.grdp │ │ │ ├── pieChart.css │ │ │ ├── timelineGrid.css │ │ │ └── timelineOverviewInfo.css │ │ │ ├── performance_monitor │ │ │ ├── PerformanceMonitor.js │ │ │ ├── module.json │ │ │ ├── performanceMonitor.css │ │ │ ├── performance_monitor-legacy.js │ │ │ ├── performance_monitor.js │ │ │ └── performance_monitor_strings.grdp │ │ │ ├── performance_test_runner │ │ │ ├── TimelineDataTestRunner.js │ │ │ ├── TimelineTestRunner.js │ │ │ └── module.json │ │ │ ├── persistence │ │ │ ├── Automapping.js │ │ │ ├── EditFileSystemView.js │ │ │ ├── FileSystemWorkspaceBinding.js │ │ │ ├── IsolatedFileSystem.js │ │ │ ├── IsolatedFileSystemManager.js │ │ │ ├── NetworkPersistenceManager.js │ │ │ ├── PersistenceActions.js │ │ │ ├── PersistenceImpl.js │ │ │ ├── PersistenceUtils.js │ │ │ ├── PlatformFileSystem.js │ │ │ ├── WorkspaceSettingsTab.js │ │ │ ├── editFileSystemView.css │ │ │ ├── module.json │ │ │ ├── persistence-legacy.js │ │ │ ├── persistence.js │ │ │ ├── persistence_strings.grdp │ │ │ └── workspaceSettingsTab.css │ │ │ ├── platform │ │ │ ├── BUILD.gn │ │ │ ├── array-utilities.js │ │ │ ├── module.json │ │ │ ├── number-utilities.js │ │ │ ├── platform.js │ │ │ ├── string-utilities.js │ │ │ └── utilities.js │ │ │ ├── profiler │ │ │ ├── BottomUpProfileDataGrid.js │ │ │ ├── CPUProfileFlameChart.js │ │ │ ├── CPUProfileView.js │ │ │ ├── ChildrenProvider.js │ │ │ ├── HeapProfileView.js │ │ │ ├── HeapProfilerPanel.js │ │ │ ├── HeapSnapshotDataGrids.js │ │ │ ├── HeapSnapshotGridNodes.js │ │ │ ├── HeapSnapshotProxy.js │ │ │ ├── HeapSnapshotView.js │ │ │ ├── HeapTimelineOverview.js │ │ │ ├── IsolateSelector.js │ │ │ ├── LiveHeapProfileView.js │ │ │ ├── ProfileDataGrid.js │ │ │ ├── ProfileHeader.js │ │ │ ├── ProfileLauncherView.js │ │ │ ├── ProfileSidebarTreeElement.js │ │ │ ├── ProfileTypeRegistry.js │ │ │ ├── ProfileView.js │ │ │ ├── ProfilesPanel.js │ │ │ ├── TopDownProfileDataGrid.js │ │ │ ├── heapProfiler.css │ │ │ ├── liveHeapProfile.css │ │ │ ├── module.json │ │ │ ├── profileLauncherView.css │ │ │ ├── profiler-legacy.js │ │ │ ├── profiler.js │ │ │ ├── profiler_strings.grdp │ │ │ ├── profilesPanel.css │ │ │ └── profilesSidebarTree.css │ │ │ ├── protocol_client │ │ │ ├── BUILD.gn │ │ │ ├── InspectorBackend.js │ │ │ ├── NodeURL.js │ │ │ ├── module.json │ │ │ ├── protocol_client-legacy.js │ │ │ └── protocol_client.js │ │ │ ├── protocol_monitor │ │ │ ├── ProtocolMonitor.js │ │ │ ├── module.json │ │ │ ├── protocolMonitor.css │ │ │ ├── protocol_monitor-legacy.js │ │ │ ├── protocol_monitor.js │ │ │ └── protocol_monitor_strings.grdp │ │ │ ├── quick_open │ │ │ ├── CommandMenu.js │ │ │ ├── FilteredListWidget.js │ │ │ ├── HelpQuickOpen.js │ │ │ ├── QuickOpen.js │ │ │ ├── filteredListWidget.css │ │ │ ├── module.json │ │ │ ├── quick_open-legacy.js │ │ │ ├── quick_open.js │ │ │ └── quick_open_strings.grdp │ │ │ ├── resources │ │ │ ├── AppManifestView.js │ │ │ ├── ApplicationCacheItemsView.js │ │ │ ├── ApplicationCacheModel.js │ │ │ ├── ApplicationPanelSidebar.js │ │ │ ├── BackgroundServiceModel.js │ │ │ ├── BackgroundServiceView.js │ │ │ ├── ClearStorageView.js │ │ │ ├── CookieItemsView.js │ │ │ ├── DOMStorageItemsView.js │ │ │ ├── DOMStorageModel.js │ │ │ ├── DatabaseModel.js │ │ │ ├── DatabaseQueryView.js │ │ │ ├── DatabaseTableView.js │ │ │ ├── IndexedDBModel.js │ │ │ ├── IndexedDBViews.js │ │ │ ├── ResourcesPanel.js │ │ │ ├── ServiceWorkerCacheViews.js │ │ │ ├── ServiceWorkersView.js │ │ │ ├── StorageItemsView.js │ │ │ ├── appManifestView.css │ │ │ ├── backgroundServiceView.css │ │ │ ├── clearStorageView.css │ │ │ ├── cookieItemsView.css │ │ │ ├── indexedDBViews.css │ │ │ ├── module.json │ │ │ ├── resources-legacy.js │ │ │ ├── resources.js │ │ │ ├── resourcesPanel.css │ │ │ ├── resourcesSidebar.css │ │ │ ├── resources_strings.grdp │ │ │ ├── serviceWorkerCacheViews.css │ │ │ └── serviceWorkersView.css │ │ │ ├── root.js │ │ │ ├── root │ │ │ ├── BUILD.gn │ │ │ ├── Runtime.js │ │ │ ├── module.json │ │ │ ├── root-legacy.js │ │ │ └── root.js │ │ │ ├── screencast │ │ │ ├── InputModel.js │ │ │ ├── ScreencastApp.js │ │ │ ├── ScreencastView.js │ │ │ ├── module.json │ │ │ ├── screencast-legacy.js │ │ │ ├── screencast.js │ │ │ ├── screencastView.css │ │ │ └── screencast_strings.grdp │ │ │ ├── sdk │ │ │ ├── BUILD.gn │ │ │ ├── CPUProfileDataModel.js │ │ │ ├── CPUProfilerModel.js │ │ │ ├── CSSMatchedStyles.js │ │ │ ├── CSSMedia.js │ │ │ ├── CSSMetadata.js │ │ │ ├── CSSModel.js │ │ │ ├── CSSProperty.js │ │ │ ├── CSSRule.js │ │ │ ├── CSSStyleDeclaration.js │ │ │ ├── CSSStyleSheetHeader.js │ │ │ ├── ChildTargetManager.js │ │ │ ├── CompilerSourceMappingContentProvider.js │ │ │ ├── Connections.js │ │ │ ├── ConsoleModel.js │ │ │ ├── Cookie.js │ │ │ ├── CookieModel.js │ │ │ ├── CookieParser.js │ │ │ ├── DOMDebuggerModel.js │ │ │ ├── DOMModel.js │ │ │ ├── DebuggerModel.js │ │ │ ├── EmulationModel.js │ │ │ ├── FilmStripModel.js │ │ │ ├── HARLog.js │ │ │ ├── HeapProfilerModel.js │ │ │ ├── IsolateManager.js │ │ │ ├── Issue.js │ │ │ ├── IssuesModel.js │ │ │ ├── LayerTreeBase.js │ │ │ ├── LogModel.js │ │ │ ├── NetworkLog.js │ │ │ ├── NetworkManager.js │ │ │ ├── NetworkRequest.js │ │ │ ├── OverlayModel.js │ │ │ ├── PaintProfiler.js │ │ │ ├── PerformanceMetricsModel.js │ │ │ ├── ProfileTreeModel.js │ │ │ ├── RelatedIssue.js │ │ │ ├── RemoteObject.js │ │ │ ├── Resource.js │ │ │ ├── ResourceTreeModel.js │ │ │ ├── RuntimeModel.js │ │ │ ├── SDKModel.js │ │ │ ├── ScreenCaptureModel.js │ │ │ ├── Script.js │ │ │ ├── SecurityOriginManager.js │ │ │ ├── ServerTiming.js │ │ │ ├── ServiceWorkerCacheModel.js │ │ │ ├── ServiceWorkerManager.js │ │ │ ├── SourceMap.js │ │ │ ├── SourceMapManager.js │ │ │ ├── TracingManager.js │ │ │ ├── TracingModel.js │ │ │ ├── module.json │ │ │ ├── sdk-legacy.js │ │ │ ├── sdk.js │ │ │ ├── sdk_strings.grdp │ │ │ └── wasm_source_map │ │ │ │ ├── .clang-format │ │ │ │ ├── Cargo.lock │ │ │ │ ├── Cargo.toml │ │ │ │ ├── LICENSES.deps │ │ │ │ ├── README │ │ │ │ ├── pkg │ │ │ │ ├── wasm_source_map.js │ │ │ │ └── wasm_source_map_bg.wasm │ │ │ │ ├── rustfmt.toml │ │ │ │ ├── src │ │ │ │ ├── lib.rs │ │ │ │ ├── location.rs │ │ │ │ ├── log.rs │ │ │ │ ├── path.rs │ │ │ │ └── wasm.rs │ │ │ │ └── types.js │ │ │ ├── sdk_test_runner │ │ │ ├── PageMockTestRunner.js │ │ │ └── module.json │ │ │ ├── search │ │ │ ├── SearchConfig.js │ │ │ ├── SearchResultsPane.js │ │ │ ├── SearchView.js │ │ │ ├── module.json │ │ │ ├── search-legacy.js │ │ │ ├── search.js │ │ │ ├── searchResultsPane.css │ │ │ ├── searchView.css │ │ │ └── search_strings.grdp │ │ │ ├── security │ │ │ ├── SecurityModel.js │ │ │ ├── SecurityPanel.js │ │ │ ├── lockIcon.css │ │ │ ├── mainView.css │ │ │ ├── module.json │ │ │ ├── originView.css │ │ │ ├── security-legacy.js │ │ │ ├── security.js │ │ │ ├── security_strings.grdp │ │ │ └── sidebar.css │ │ │ ├── security_test_runner │ │ │ ├── SecurityTestRunner.js │ │ │ └── module.json │ │ │ ├── services │ │ │ ├── ServiceManager.js │ │ │ ├── module.json │ │ │ ├── services-legacy.js │ │ │ └── services.js │ │ │ ├── settings │ │ │ ├── FrameworkBlackboxSettingsTab.js │ │ │ ├── KeybindsSettingsTab.js │ │ │ ├── SettingsScreen.js │ │ │ ├── frameworkBlackboxSettingsTab.css │ │ │ ├── keybindsSettingsTab.css │ │ │ ├── module.json │ │ │ ├── settings-legacy.js │ │ │ ├── settings.js │ │ │ ├── settingsScreen.css │ │ │ └── settings_strings.grdp │ │ │ ├── shell.js │ │ │ ├── shell.json │ │ │ ├── snippets │ │ │ ├── ScriptSnippetFileSystem.js │ │ │ ├── SnippetsQuickOpen.js │ │ │ ├── module.json │ │ │ ├── snippets-legacy.js │ │ │ ├── snippets.js │ │ │ └── snippets_strings.grdp │ │ │ ├── source_frame │ │ │ ├── BinaryResourceViewFactory.js │ │ │ ├── FontView.js │ │ │ ├── ImageView.js │ │ │ ├── JSONView.js │ │ │ ├── PreviewFactory.js │ │ │ ├── ResourceSourceFrame.js │ │ │ ├── SourceCodeDiff.js │ │ │ ├── SourceFrame.js │ │ │ ├── SourcesTextEditor.js │ │ │ ├── XMLView.js │ │ │ ├── fontView.css │ │ │ ├── imageView.css │ │ │ ├── jsonView.css │ │ │ ├── messagesPopover.css │ │ │ ├── module.json │ │ │ ├── resourceSourceFrame.css │ │ │ ├── source_frame-legacy.js │ │ │ ├── source_frame.js │ │ │ ├── source_frame_strings.grdp │ │ │ ├── xmlTree.css │ │ │ └── xmlView.css │ │ │ ├── sources │ │ │ ├── AddSourceMapURLDialog.js │ │ │ ├── BreakpointEditDialog.js │ │ │ ├── CSSPlugin.js │ │ │ ├── CallStackSidebarPane.js │ │ │ ├── CoveragePlugin.js │ │ │ ├── DebuggerPausedMessage.js │ │ │ ├── DebuggerPlugin.js │ │ │ ├── EditingLocationHistoryManager.js │ │ │ ├── FilePathScoreFunction.js │ │ │ ├── FilteredUISourceCodeListProvider.js │ │ │ ├── GoToLineQuickOpen.js │ │ │ ├── GutterDiffPlugin.js │ │ │ ├── InplaceFormatterEditorAction.js │ │ │ ├── JavaScriptBreakpointsSidebarPane.js │ │ │ ├── JavaScriptCompilerPlugin.js │ │ │ ├── NavigatorView.js │ │ │ ├── OpenFileQuickOpen.js │ │ │ ├── OutlineQuickOpen.js │ │ │ ├── Plugin.js │ │ │ ├── ScopeChainSidebarPane.js │ │ │ ├── ScriptFormatterEditorAction.js │ │ │ ├── ScriptOriginPlugin.js │ │ │ ├── SearchSourcesView.js │ │ │ ├── SimpleHistoryManager.js │ │ │ ├── SnippetsPlugin.js │ │ │ ├── SourceMapNamesResolver.js │ │ │ ├── SourcesNavigator.js │ │ │ ├── SourcesPanel.js │ │ │ ├── SourcesSearchScope.js │ │ │ ├── SourcesView.js │ │ │ ├── TabbedEditorContainer.js │ │ │ ├── ThreadsSidebarPane.js │ │ │ ├── UISourceCodeFrame.js │ │ │ ├── WatchExpressionsSidebarPane.js │ │ │ ├── breakpointEditDialog.css │ │ │ ├── callStackSidebarPane.css │ │ │ ├── debuggerPausedMessage.css │ │ │ ├── dialog.css │ │ │ ├── javaScriptBreakpointsSidebarPane.css │ │ │ ├── module.json │ │ │ ├── navigatorTree.css │ │ │ ├── navigatorView.css │ │ │ ├── scopeChainSidebarPane.css │ │ │ ├── serviceWorkersSidebar.css │ │ │ ├── sources-legacy.js │ │ │ ├── sources.js │ │ │ ├── sourcesPanel.css │ │ │ ├── sourcesView.css │ │ │ ├── sources_strings.grdp │ │ │ ├── threadsSidebarPane.css │ │ │ └── watchExpressionsSidebarPane.css │ │ │ ├── sources_test_runner │ │ │ ├── AutocompleteTestRunner.js │ │ │ ├── DebuggerTestRunner.js │ │ │ ├── EditorTestRunner.js │ │ │ ├── LiveEditTestRunner.js │ │ │ ├── SearchTestRunner.js │ │ │ ├── SourcesTestRunner.js │ │ │ └── module.json │ │ │ ├── test_runner │ │ │ ├── TestRunner.js │ │ │ ├── module.json │ │ │ └── test_runner.js │ │ │ ├── text_editor │ │ │ ├── CodeMirrorTextEditor.js │ │ │ ├── CodeMirrorUtils.js │ │ │ ├── TextEditorAutocompleteController.js │ │ │ ├── autocompleteTooltip.css │ │ │ ├── cmdevtools.css │ │ │ ├── module.json │ │ │ ├── text_editor-legacy.js │ │ │ ├── text_editor.js │ │ │ └── text_editor_strings.grdp │ │ │ ├── text_utils │ │ │ ├── BUILD.gn │ │ │ ├── ContentProvider.js │ │ │ ├── StaticContentProvider.js │ │ │ ├── Text.js │ │ │ ├── TextCursor.js │ │ │ ├── TextRange.js │ │ │ ├── TextUtils.js │ │ │ ├── module.json │ │ │ ├── text_utils-legacy.js │ │ │ └── text_utils.js │ │ │ ├── third_party │ │ │ ├── .clang-format │ │ │ ├── README.md │ │ │ ├── fabricjs │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.chromium │ │ │ │ ├── fabric.js │ │ │ │ └── module.json │ │ │ ├── lighthouse │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.chromium │ │ │ │ ├── lighthouse-dt-bundle.js │ │ │ │ ├── locales │ │ │ │ │ ├── ar-XB.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en-GB.json │ │ │ │ │ ├── en-US.json │ │ │ │ │ ├── en-XA.json │ │ │ │ │ ├── en-XL.json │ │ │ │ │ ├── es-419.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fil.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hi.json │ │ │ │ │ ├── hr.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── lt.json │ │ │ │ │ ├── lv.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── no.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-PT.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sk.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sr-Latn.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── ta.json │ │ │ │ │ ├── te.json │ │ │ │ │ ├── th.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-HK.json │ │ │ │ │ ├── zh-TW.json │ │ │ │ │ └── zh.json │ │ │ │ └── report-assets │ │ │ │ │ ├── report-generator.js │ │ │ │ │ ├── report.css │ │ │ │ │ ├── report.js │ │ │ │ │ ├── template.html │ │ │ │ │ └── templates.html │ │ │ ├── lit-html │ │ │ │ ├── BUILD.gn │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.chromium │ │ │ │ ├── lit-html-tsconfig.json │ │ │ │ └── package │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── directives │ │ │ │ │ ├── async-append.d.ts │ │ │ │ │ ├── async-append.d.ts.map │ │ │ │ │ ├── async-append.js │ │ │ │ │ ├── async-append.js.map │ │ │ │ │ ├── async-replace.d.ts │ │ │ │ │ ├── async-replace.d.ts.map │ │ │ │ │ ├── async-replace.js │ │ │ │ │ ├── async-replace.js.map │ │ │ │ │ ├── cache.d.ts │ │ │ │ │ ├── cache.d.ts.map │ │ │ │ │ ├── cache.js │ │ │ │ │ ├── cache.js.map │ │ │ │ │ ├── class-map.d.ts │ │ │ │ │ ├── class-map.d.ts.map │ │ │ │ │ ├── class-map.js │ │ │ │ │ ├── class-map.js.map │ │ │ │ │ ├── guard.d.ts │ │ │ │ │ ├── guard.d.ts.map │ │ │ │ │ ├── guard.js │ │ │ │ │ ├── guard.js.map │ │ │ │ │ ├── if-defined.d.ts │ │ │ │ │ ├── if-defined.d.ts.map │ │ │ │ │ ├── if-defined.js │ │ │ │ │ ├── if-defined.js.map │ │ │ │ │ ├── repeat.d.ts │ │ │ │ │ ├── repeat.d.ts.map │ │ │ │ │ ├── repeat.js │ │ │ │ │ ├── repeat.js.map │ │ │ │ │ ├── style-map.d.ts │ │ │ │ │ ├── style-map.d.ts.map │ │ │ │ │ ├── style-map.js │ │ │ │ │ ├── style-map.js.map │ │ │ │ │ ├── unsafe-html.d.ts │ │ │ │ │ ├── unsafe-html.d.ts.map │ │ │ │ │ ├── unsafe-html.js │ │ │ │ │ ├── unsafe-html.js.map │ │ │ │ │ ├── until.d.ts │ │ │ │ │ ├── until.d.ts.map │ │ │ │ │ ├── until.js │ │ │ │ │ └── until.js.map │ │ │ │ │ ├── lib │ │ │ │ │ ├── default-template-processor.d.ts │ │ │ │ │ ├── default-template-processor.d.ts.map │ │ │ │ │ ├── default-template-processor.js │ │ │ │ │ ├── default-template-processor.js.map │ │ │ │ │ ├── directive.d.ts │ │ │ │ │ ├── directive.d.ts.map │ │ │ │ │ ├── directive.js │ │ │ │ │ ├── directive.js.map │ │ │ │ │ ├── dom.d.ts │ │ │ │ │ ├── dom.d.ts.map │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── dom.js.map │ │ │ │ │ ├── modify-template.d.ts │ │ │ │ │ ├── modify-template.d.ts.map │ │ │ │ │ ├── modify-template.js │ │ │ │ │ ├── modify-template.js.map │ │ │ │ │ ├── part.d.ts │ │ │ │ │ ├── part.d.ts.map │ │ │ │ │ ├── part.js │ │ │ │ │ ├── part.js.map │ │ │ │ │ ├── parts.d.ts │ │ │ │ │ ├── parts.d.ts.map │ │ │ │ │ ├── parts.js │ │ │ │ │ ├── parts.js.map │ │ │ │ │ ├── render-options.d.ts │ │ │ │ │ ├── render-options.d.ts.map │ │ │ │ │ ├── render-options.js │ │ │ │ │ ├── render-options.js.map │ │ │ │ │ ├── render.d.ts │ │ │ │ │ ├── render.d.ts.map │ │ │ │ │ ├── render.js │ │ │ │ │ ├── render.js.map │ │ │ │ │ ├── shady-render.d.ts │ │ │ │ │ ├── shady-render.d.ts.map │ │ │ │ │ ├── shady-render.js │ │ │ │ │ ├── shady-render.js.map │ │ │ │ │ ├── template-factory.d.ts │ │ │ │ │ ├── template-factory.d.ts.map │ │ │ │ │ ├── template-factory.js │ │ │ │ │ ├── template-factory.js.map │ │ │ │ │ ├── template-instance.d.ts │ │ │ │ │ ├── template-instance.d.ts.map │ │ │ │ │ ├── template-instance.js │ │ │ │ │ ├── template-instance.js.map │ │ │ │ │ ├── template-processor.d.ts │ │ │ │ │ ├── template-processor.d.ts.map │ │ │ │ │ ├── template-processor.js │ │ │ │ │ ├── template-processor.js.map │ │ │ │ │ ├── template-result.d.ts │ │ │ │ │ ├── template-result.d.ts.map │ │ │ │ │ ├── template-result.js │ │ │ │ │ ├── template-result.js.map │ │ │ │ │ ├── template.d.ts │ │ │ │ │ ├── template.d.ts.map │ │ │ │ │ ├── template.js │ │ │ │ │ └── template.js.map │ │ │ │ │ ├── lit-html.d.ts │ │ │ │ │ ├── lit-html.d.ts.map │ │ │ │ │ ├── lit-html.js │ │ │ │ │ ├── lit-html.js.map │ │ │ │ │ ├── polyfills │ │ │ │ │ ├── template_polyfill.d.ts │ │ │ │ │ ├── template_polyfill.d.ts.map │ │ │ │ │ ├── template_polyfill.js │ │ │ │ │ └── template_polyfill.js.map │ │ │ │ │ └── src │ │ │ │ │ ├── directives │ │ │ │ │ ├── async-append.ts │ │ │ │ │ ├── async-replace.ts │ │ │ │ │ ├── cache.ts │ │ │ │ │ ├── class-map.ts │ │ │ │ │ ├── guard.ts │ │ │ │ │ ├── if-defined.ts │ │ │ │ │ ├── repeat.ts │ │ │ │ │ ├── style-map.ts │ │ │ │ │ ├── unsafe-html.ts │ │ │ │ │ └── until.ts │ │ │ │ │ ├── env.d.ts │ │ │ │ │ ├── lib │ │ │ │ │ ├── default-template-processor.ts │ │ │ │ │ ├── directive.ts │ │ │ │ │ ├── dom.ts │ │ │ │ │ ├── modify-template.ts │ │ │ │ │ ├── part.ts │ │ │ │ │ ├── parts.ts │ │ │ │ │ ├── render-options.ts │ │ │ │ │ ├── render.ts │ │ │ │ │ ├── shady-render.ts │ │ │ │ │ ├── template-factory.ts │ │ │ │ │ ├── template-instance.ts │ │ │ │ │ ├── template-processor.ts │ │ │ │ │ ├── template-result.ts │ │ │ │ │ └── template.ts │ │ │ │ │ ├── lit-html.ts │ │ │ │ │ └── polyfills │ │ │ │ │ └── template_polyfill.ts │ │ │ └── wasmparser │ │ │ │ ├── LICENSE │ │ │ │ ├── README.chromium │ │ │ │ ├── WasmDis.js │ │ │ │ ├── WasmParser.js │ │ │ │ └── module.json │ │ │ ├── timeline │ │ │ ├── CountersGraph.js │ │ │ ├── EventsTimelineTreeView.js │ │ │ ├── ExtensionTracingSession.js │ │ │ ├── PerformanceModel.js │ │ │ ├── TimelineController.js │ │ │ ├── TimelineDetailsView.js │ │ │ ├── TimelineEventOverview.js │ │ │ ├── TimelineFilters.js │ │ │ ├── TimelineFlameChartDataProvider.js │ │ │ ├── TimelineFlameChartNetworkDataProvider.js │ │ │ ├── TimelineFlameChartView.js │ │ │ ├── TimelineHistoryManager.js │ │ │ ├── TimelineLayersView.js │ │ │ ├── TimelineLoader.js │ │ │ ├── TimelinePaintProfilerView.js │ │ │ ├── TimelinePanel.js │ │ │ ├── TimelineTreeView.js │ │ │ ├── TimelineUIUtils.js │ │ │ ├── UIDevtoolsController.js │ │ │ ├── UIDevtoolsUtils.js │ │ │ ├── historyToolbarButton.css │ │ │ ├── invalidationsTree.css │ │ │ ├── module.json │ │ │ ├── timeline-legacy.js │ │ │ ├── timeline.js │ │ │ ├── timelineFlamechartPopover.css │ │ │ ├── timelineHistoryManager.css │ │ │ ├── timelinePaintProfiler.css │ │ │ ├── timelinePanel.css │ │ │ ├── timelineStatusDialog.css │ │ │ └── timeline_strings.grdp │ │ │ ├── timeline_model │ │ │ ├── TimelineFrameModel.js │ │ │ ├── TimelineIRModel.js │ │ │ ├── TimelineJSProfile.js │ │ │ ├── TimelineModel.js │ │ │ ├── TimelineModelFilter.js │ │ │ ├── TimelineProfileTree.js │ │ │ ├── TracingLayerTree.js │ │ │ ├── module.json │ │ │ ├── timeline_model-legacy.js │ │ │ ├── timeline_model.js │ │ │ └── timeline_model_strings.grdp │ │ │ ├── toolbox.html │ │ │ ├── toolbox.js │ │ │ ├── toolbox.json │ │ │ ├── toolbox_bootstrap │ │ │ ├── module.json │ │ │ └── toolbox_bootstrap.js │ │ │ ├── ui │ │ │ ├── ARIAUtils.js │ │ │ ├── Action.js │ │ │ ├── ActionDelegate.js │ │ │ ├── ActionRegistry.js │ │ │ ├── Context.js │ │ │ ├── ContextFlavorListener.js │ │ │ ├── ContextMenu.js │ │ │ ├── Dialog.js │ │ │ ├── DropTarget.js │ │ │ ├── EmptyWidget.js │ │ │ ├── FilterBar.js │ │ │ ├── FilterSuggestionBuilder.js │ │ │ ├── ForwardedInputEventHandler.js │ │ │ ├── Fragment.js │ │ │ ├── Geometry.js │ │ │ ├── GlassPane.js │ │ │ ├── HistoryInput.js │ │ │ ├── Icon.js │ │ │ ├── Infobar.js │ │ │ ├── InplaceEditor.js │ │ │ ├── InspectorView.js │ │ │ ├── KeyboardShortcut.js │ │ │ ├── ListControl.js │ │ │ ├── ListModel.js │ │ │ ├── ListWidget.js │ │ │ ├── Panel.js │ │ │ ├── PopoverHelper.js │ │ │ ├── ProgressIndicator.js │ │ │ ├── RemoteDebuggingTerminatedScreen.js │ │ │ ├── ReportView.js │ │ │ ├── ResizerWidget.js │ │ │ ├── RootView.js │ │ │ ├── SearchableView.js │ │ │ ├── SegmentedButton.js │ │ │ ├── SettingsUI.js │ │ │ ├── ShortcutRegistry.js │ │ │ ├── ShortcutsScreen.js │ │ │ ├── SoftContextMenu.js │ │ │ ├── SoftDropDown.js │ │ │ ├── SplitWidget.js │ │ │ ├── SuggestBox.js │ │ │ ├── SyntaxHighlighter.js │ │ │ ├── TabbedPane.js │ │ │ ├── TargetCrashedScreen.js │ │ │ ├── TextEditor.js │ │ │ ├── TextPrompt.js │ │ │ ├── ThrottledWidget.js │ │ │ ├── Toolbar.js │ │ │ ├── Tooltip.js │ │ │ ├── Treeoutline.js │ │ │ ├── UIUtils.js │ │ │ ├── View.js │ │ │ ├── ViewManager.js │ │ │ ├── Widget.js │ │ │ ├── XElement.js │ │ │ ├── XLink.js │ │ │ ├── XWidget.js │ │ │ ├── ZoomManager.js │ │ │ ├── checkboxTextLabel.css │ │ │ ├── closeButton.css │ │ │ ├── confirmDialog.css │ │ │ ├── dialog.css │ │ │ ├── dropTarget.css │ │ │ ├── emptyWidget.css │ │ │ ├── filter.css │ │ │ ├── glassPane.css │ │ │ ├── infobar.css │ │ │ ├── inlineButton.css │ │ │ ├── inspectorCommon.css │ │ │ ├── inspectorStyle.css │ │ │ ├── inspectorSyntaxHighlight.css │ │ │ ├── inspectorSyntaxHighlightDark.css │ │ │ ├── inspectorViewTabbedPane.css │ │ │ ├── listWidget.css │ │ │ ├── module.json │ │ │ ├── popover.css │ │ │ ├── progressIndicator.css │ │ │ ├── radioButton.css │ │ │ ├── remoteDebuggingTerminatedScreen.css │ │ │ ├── reportView.css │ │ │ ├── rootView.css │ │ │ ├── searchableView.css │ │ │ ├── segmentedButton.css │ │ │ ├── slider.css │ │ │ ├── smallBubble.css │ │ │ ├── softContextMenu.css │ │ │ ├── softDropDown.css │ │ │ ├── softDropDownButton.css │ │ │ ├── splitWidget.css │ │ │ ├── suggestBox.css │ │ │ ├── tabbedPane.css │ │ │ ├── targetCrashedScreen.css │ │ │ ├── textButton.css │ │ │ ├── textPrompt.css │ │ │ ├── toolbar.css │ │ │ ├── tooltip.css │ │ │ ├── treeoutline.css │ │ │ ├── ui-legacy.js │ │ │ ├── ui.js │ │ │ ├── ui_strings.grdp │ │ │ ├── utils │ │ │ │ ├── append-style.js │ │ │ │ ├── create-shadow-root-with-core-styles.js │ │ │ │ ├── focus-changed.js │ │ │ │ ├── inject-core-styles.js │ │ │ │ ├── measured-scrollbar-width.js │ │ │ │ ├── register-custom-element.js │ │ │ │ └── utils.js │ │ │ └── viewContainers.css │ │ │ ├── wasmparser_worker │ │ │ ├── WasmParserWorker.js │ │ │ ├── module.json │ │ │ └── wasmparser_worker.js │ │ │ ├── wasmparser_worker_entrypoint.js │ │ │ ├── wasmparser_worker_entrypoint.json │ │ │ ├── web_audio │ │ │ ├── AudioContextContentBuilder.js │ │ │ ├── AudioContextSelector.js │ │ │ ├── WebAudioModel.js │ │ │ ├── WebAudioView.js │ │ │ ├── audioContextSelector.css │ │ │ ├── graph_visualizer │ │ │ │ ├── EdgeView.js │ │ │ │ ├── GraphManager.js │ │ │ │ ├── GraphStyle.js │ │ │ │ ├── GraphView.js │ │ │ │ ├── NodeRendererUtility.js │ │ │ │ └── NodeView.js │ │ │ ├── module.json │ │ │ ├── webAudio.css │ │ │ ├── web_audio-legacy.js │ │ │ ├── web_audio.js │ │ │ └── web_audio_strings.grdp │ │ │ ├── worker_app.html │ │ │ ├── worker_app.js │ │ │ ├── worker_app.json │ │ │ ├── worker_main │ │ │ ├── WorkerMain.js │ │ │ ├── module.json │ │ │ ├── worker_main-legacy.js │ │ │ └── worker_main.js │ │ │ ├── worker_service │ │ │ ├── ServiceDispatcher.js │ │ │ ├── module.json │ │ │ └── worker_service.js │ │ │ ├── workspace │ │ │ ├── BUILD.gn │ │ │ ├── FileManager.js │ │ │ ├── UISourceCode.js │ │ │ ├── WorkspaceImpl.js │ │ │ ├── module.json │ │ │ ├── workspace-legacy.js │ │ │ ├── workspace.js │ │ │ └── workspace_strings.grdp │ │ │ └── workspace_diff │ │ │ ├── WorkspaceDiff.js │ │ │ ├── module.json │ │ │ ├── workspace_diff-legacy.js │ │ │ └── workspace_diff.js │ ├── resources-documents │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── documents │ │ │ ├── api │ │ │ ├── constraints.js │ │ │ ├── documents.js │ │ │ └── processors │ │ │ │ ├── constraintsProcessor.js │ │ │ │ ├── documentsProcessor.js │ │ │ │ └── imageProcessor.js │ │ │ ├── configs │ │ │ └── documents.js │ │ │ ├── extensions │ │ │ └── perspective-documents.extension │ │ │ ├── images │ │ │ └── documents.svg │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── documents.js │ │ │ ├── project.json │ │ │ ├── security │ │ │ ├── main.access │ │ │ ├── roles.access │ │ │ ├── synchronize.job │ │ │ └── synchronize.js │ │ │ ├── styles │ │ │ └── documents.css │ │ │ ├── translations │ │ │ ├── bg-BG │ │ │ │ └── translations.json │ │ │ └── en-US │ │ │ │ └── translations.json │ │ │ └── utils │ │ │ ├── cmis │ │ │ ├── document.js │ │ │ ├── folder.js │ │ │ ├── image.js │ │ │ ├── object.js │ │ │ └── zip.js │ │ │ ├── content-type-handler.js │ │ │ ├── extensions │ │ │ └── content-type.extensionpoint │ │ │ └── string.js │ ├── resources-flowable-libs │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ ├── .skip │ │ │ └── editor-bpm │ │ │ ├── editor-app │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── editor │ │ │ │ ├── css │ │ │ │ │ └── editor.css │ │ │ │ ├── i18n │ │ │ │ │ ├── translation_de.js │ │ │ │ │ ├── translation_en_us.js │ │ │ │ │ ├── translation_signavio_de.js │ │ │ │ │ └── translation_signavio_en_us.js │ │ │ │ └── oryx.debug.js │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── activiti-admin-webfont.eot │ │ │ │ ├── activiti-admin-webfont.svg │ │ │ │ ├── activiti-admin-webfont.ttf │ │ │ │ ├── activiti-admin-webfont.woff │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── images │ │ │ │ ├── bpmn-error.png │ │ │ │ ├── bpmn-warning.png │ │ │ │ ├── datadefinition.png │ │ │ │ ├── delete.png │ │ │ │ ├── loading.gif │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ ├── pencil.png │ │ │ │ ├── report_edit.png │ │ │ │ ├── se-handle-dark.gif │ │ │ │ ├── shapemenu_highlight.png │ │ │ │ └── wrench.png │ │ │ ├── img-kis │ │ │ │ ├── add-bendpoint-hover.png │ │ │ │ ├── add-bendpoint.png │ │ │ │ ├── grid.gif │ │ │ │ ├── icon-add-bendpoint-selected.png │ │ │ │ ├── icon-add-bendpoint.png │ │ │ │ ├── icon-align-horizontal-selected.png │ │ │ │ ├── icon-align-horizontal.png │ │ │ │ ├── icon-align-vertical-selected.png │ │ │ │ ├── icon-align-vertical.png │ │ │ │ ├── icon-remove-bendpoint-selected.png │ │ │ │ ├── icon-remove-bendpoint.png │ │ │ │ ├── icon-same-size-selected.png │ │ │ │ ├── icon-same-size.png │ │ │ │ ├── icon-zoom-actual-selected.png │ │ │ │ ├── icon-zoom-actual.png │ │ │ │ ├── icon-zoom-fit-selected.png │ │ │ │ ├── icon-zoom-fit.png │ │ │ │ ├── kis_logo.png │ │ │ │ ├── remove-bendpoint-hover.png │ │ │ │ └── remove-bendpoint.png │ │ │ ├── libs │ │ │ │ ├── mousetrap │ │ │ │ │ └── 1.6.0 │ │ │ │ │ │ ├── mousetrap-record.js │ │ │ │ │ │ ├── mousetrap.js │ │ │ │ │ │ └── mousetrap.min.js │ │ │ │ ├── path_parser.js │ │ │ │ ├── prototype-1.6.1.js │ │ │ │ ├── prototype-1.7.3.js │ │ │ │ ├── ui-utils.min-0.2.1.js │ │ │ │ └── update-helper.js │ │ │ └── stencilsets │ │ │ │ └── bpmn2.0 │ │ │ │ └── icons │ │ │ │ ├── activity │ │ │ │ ├── adhoc.subprocess.png │ │ │ │ ├── event.subprocess.collapsed.png │ │ │ │ ├── event.subprocess.png │ │ │ │ ├── expanded.subprocess.png │ │ │ │ ├── list │ │ │ │ │ ├── type.business.rule.png │ │ │ │ │ ├── type.camel.png │ │ │ │ │ ├── type.decision.png │ │ │ │ │ ├── type.http.png │ │ │ │ │ ├── type.manual.png │ │ │ │ │ ├── type.mule.png │ │ │ │ │ ├── type.receive.png │ │ │ │ │ ├── type.script.png │ │ │ │ │ ├── type.send.png │ │ │ │ │ ├── type.service.png │ │ │ │ │ ├── type.shell.png │ │ │ │ │ └── type.user.png │ │ │ │ ├── subprocess.png │ │ │ │ └── task.png │ │ │ │ ├── artifact │ │ │ │ └── text.annotation.png │ │ │ │ ├── catching │ │ │ │ ├── cancel.png │ │ │ │ ├── compensation.png │ │ │ │ ├── error.png │ │ │ │ ├── message.png │ │ │ │ ├── signal.png │ │ │ │ └── timer.png │ │ │ │ ├── connector │ │ │ │ ├── association.undirected.png │ │ │ │ ├── association.unidirectional.png │ │ │ │ ├── messageflow.png │ │ │ │ └── sequenceflow.png │ │ │ │ ├── dataobject │ │ │ │ └── data.store.png │ │ │ │ ├── diagram.png │ │ │ │ ├── endevent │ │ │ │ ├── cancel.png │ │ │ │ ├── error.png │ │ │ │ ├── none.png │ │ │ │ └── terminate.png │ │ │ │ ├── gateway │ │ │ │ ├── eventbased.png │ │ │ │ ├── exclusive.databased.png │ │ │ │ ├── inclusive.png │ │ │ │ └── parallel.png │ │ │ │ ├── startevent │ │ │ │ ├── error.png │ │ │ │ ├── message.png │ │ │ │ ├── none.png │ │ │ │ ├── signal.png │ │ │ │ └── timer.png │ │ │ │ ├── swimlane │ │ │ │ ├── lane.png │ │ │ │ └── pool.png │ │ │ │ └── throwing │ │ │ │ ├── none.png │ │ │ │ └── signal.png │ │ │ ├── fonts │ │ │ ├── TitilliumWeb-Bold.ttf │ │ │ ├── TitilliumWeb-Regular.ttf │ │ │ ├── cherokee-webfont.eot │ │ │ ├── cherokee-webfont.svg │ │ │ ├── cherokee-webfont.ttf │ │ │ ├── cherokee-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── lato-bold-webfont.eot │ │ │ ├── lato-bold-webfont.svg │ │ │ ├── lato-bold-webfont.ttf │ │ │ ├── lato-bold-webfont.woff │ │ │ ├── lato-regular-webfont.eot │ │ │ ├── lato-regular-webfont.svg │ │ │ ├── lato-regular-webfont.ttf │ │ │ └── lato-regular-webfont.woff │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ └── pt-BR.json │ │ │ ├── images │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-384x384.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── flowable-logo.png │ │ │ ├── flowable-logo@2x.png │ │ │ ├── form-builder │ │ │ │ ├── amountfield-icon.png │ │ │ │ ├── booleanfield-icon.png │ │ │ │ ├── choicefield-icon.png │ │ │ │ ├── datefield-icon.png │ │ │ │ ├── decimalfield-icon.png │ │ │ │ ├── dropdownfield-icon.png │ │ │ │ ├── dynamic-table-icon.png │ │ │ │ ├── group-icon.png │ │ │ │ ├── hyperlink-icon.png │ │ │ │ ├── multi-line-textfield-icon.png │ │ │ │ ├── numberfield-icon.png │ │ │ │ ├── peoplefield-icon.png │ │ │ │ ├── readonly-icon.png │ │ │ │ ├── readonly-text-icon.png │ │ │ │ ├── textfield-icon.png │ │ │ │ └── uploadfield-icon.png │ │ │ ├── glasspane.png │ │ │ ├── line-1px.png │ │ │ ├── line.png │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── tour │ │ │ │ ├── open-group.gif │ │ │ │ ├── sequenceflow-bendpoint.gif │ │ │ │ └── tour-dnd.gif │ │ │ ├── libs │ │ │ ├── angular-drag-and-drop-lists_1.2.0 │ │ │ │ └── angular-drag-and-drop-lists.min.js │ │ │ ├── angular-dragdrop_1.0.11 │ │ │ │ └── angular-dragdrop.min.js │ │ │ ├── angular-scroll_0.5.7 │ │ │ │ └── angular-scroll.min.js │ │ │ ├── angular-spectrum-colorpicker_1.0.13 │ │ │ │ ├── angular-spectrum-colorpicker.min.js │ │ │ │ ├── spectrum.css │ │ │ │ └── spectrum.js │ │ │ ├── angular-strap_2.1.6 │ │ │ │ ├── angular-strap.js │ │ │ │ ├── angular-strap.min.js │ │ │ │ ├── angular-strap.min.js.map │ │ │ │ ├── angular-strap.tpl.js │ │ │ │ └── angular-strap.tpl.min.js │ │ │ ├── angular-translate-loader-static-files │ │ │ │ ├── .bower.json │ │ │ │ ├── angular-translate-loader-static-files.js │ │ │ │ └── angular-translate-loader-static-files.min.js │ │ │ ├── angular-translate-storage-cookie │ │ │ │ ├── .bower.json │ │ │ │ ├── angular-translate-storage-cookie.js │ │ │ │ └── angular-translate-storage-cookie.min.js │ │ │ ├── angular-translate_2.15.1 │ │ │ │ └── angular-translate.min.js │ │ │ ├── angular │ │ │ │ └── 1.4.7 │ │ │ │ │ ├── angular-animate.min.js │ │ │ │ │ ├── angular-animate.min.js.map │ │ │ │ │ ├── angular-aria.min.js │ │ │ │ │ ├── angular-aria.min.js.map │ │ │ │ │ ├── angular-cookies.min.js │ │ │ │ │ ├── angular-cookies.min.js.map │ │ │ │ │ ├── angular-csp.css │ │ │ │ │ ├── angular-loader.min.js │ │ │ │ │ ├── angular-loader.min.js.map │ │ │ │ │ ├── angular-message-format.min.js │ │ │ │ │ ├── angular-message-format.min.js.map │ │ │ │ │ ├── angular-messages.min.js │ │ │ │ │ ├── angular-messages.min.js.map │ │ │ │ │ ├── angular-mocks.js │ │ │ │ │ ├── angular-resource.min.js │ │ │ │ │ ├── angular-resource.min.js.map │ │ │ │ │ ├── angular-route.min.js │ │ │ │ │ ├── angular-route.min.js.map │ │ │ │ │ ├── angular-sanitize.min.js │ │ │ │ │ ├── angular-sanitize.min.js.map │ │ │ │ │ ├── angular-scenario.js │ │ │ │ │ ├── angular-touch.min.js │ │ │ │ │ ├── angular-touch.min.js.map │ │ │ │ │ ├── angular.js │ │ │ │ │ ├── angular.min.js │ │ │ │ │ ├── angular.min.js.map │ │ │ │ │ ├── errors.json │ │ │ │ │ ├── version.json │ │ │ │ │ └── version.txt │ │ │ ├── bootstrap_3.1.1 │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── handsontable_0.31.2 │ │ │ │ ├── handsontable.full.min.css │ │ │ │ └── handsontable.full.min.js │ │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ │ ├── momentjs_2.18.1 │ │ │ │ └── momentjs.min.js │ │ │ ├── ng-file-upload │ │ │ │ ├── FileAPI.flash.swf │ │ │ │ ├── FileAPI.js │ │ │ │ ├── FileAPI.min.js │ │ │ │ ├── ng-file-upload-all.js │ │ │ │ ├── ng-file-upload-all.min.js │ │ │ │ ├── ng-file-upload-shim.js │ │ │ │ ├── ng-file-upload-shim.min.js │ │ │ │ ├── ng-file-upload.js │ │ │ │ └── ng-file-upload.min.js │ │ │ ├── ng-handsontable_0.13 │ │ │ │ ├── ngHandsontable.js │ │ │ │ └── ngHandsontable.min.js │ │ │ └── ui-grid_3.0.0 │ │ │ │ ├── ui-grid.css │ │ │ │ ├── ui-grid.eot │ │ │ │ ├── ui-grid.js │ │ │ │ ├── ui-grid.min.css │ │ │ │ ├── ui-grid.min.js │ │ │ │ ├── ui-grid.svg │ │ │ │ ├── ui-grid.ttf │ │ │ │ └── ui-grid.woff │ │ │ └── styles │ │ │ ├── common │ │ │ ├── bootstrap.min.css │ │ │ ├── style-retina.css │ │ │ └── style.css │ │ │ └── style-editor.css │ ├── resources-inbox │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── inbox │ │ │ ├── configs │ │ │ └── inbox.js │ │ │ ├── extensions │ │ │ └── inbox.extension │ │ │ ├── images │ │ │ └── inbox.svg │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── inbox.js │ │ │ ├── project.json │ │ │ └── translations │ │ │ ├── bg-BG │ │ │ └── translations.json │ │ │ └── en-US │ │ │ └── translations.json │ ├── resources-karavan-libs │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ ├── .skip │ │ │ └── ide-integrations │ │ │ └── designer │ │ │ ├── asset-manifest.json │ │ │ ├── components │ │ │ ├── components.json │ │ │ └── components.properties │ │ │ ├── example │ │ │ ├── aws-cloudwatch-sink.kamelet.yaml │ │ │ ├── aws-s3-cdc-source.kamelet.yaml │ │ │ ├── aws-s3-source.kamelet.yaml │ │ │ ├── demo.camel.yaml │ │ │ └── postgresql-source.kamelet.yaml │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── kamelets │ │ │ ├── kamelets.properties │ │ │ └── kamelets.yaml │ │ │ ├── manifest.json │ │ │ ├── robots.txt │ │ │ ├── snippets │ │ │ ├── org.apache.camel.AggregationStrategy │ │ │ └── org.apache.camel.Processor │ │ │ └── static │ │ │ ├── css │ │ │ ├── main.cad1c473.css │ │ │ └── main.cad1c473.css.map │ │ │ ├── js │ │ │ ├── main.0447b661.js │ │ │ ├── main.0447b661.js.LICENSE.txt │ │ │ └── main.0447b661.js.map │ │ │ └── media │ │ │ ├── RedHatDisplay-Bold.d8d66dd2281610675aca.woff2 │ │ │ ├── RedHatDisplay-BoldItalic.b01a8365f7214919a9c3.woff2 │ │ │ ├── RedHatDisplay-Medium.66ac08a9a7d29ae51581.woff2 │ │ │ ├── RedHatDisplay-MediumItalic.ed292ec87cce0d76fd3c.woff2 │ │ │ ├── RedHatDisplayVF-Italic.813182e673c38ef5ee4b.woff2 │ │ │ ├── RedHatDisplayVF.18ca482120faaa701d8b.woff2 │ │ │ ├── RedHatMono-Italic.841cdd0ebb3d9038a7e7.woff2 │ │ │ ├── RedHatMono-Regular.57234ce675330fa60781.woff2 │ │ │ ├── RedHatMonoVF-Italic.6e3027616d8de472723c.woff2 │ │ │ ├── RedHatMonoVF.e4faf134e53e0f37296b.woff2 │ │ │ ├── RedHatText-Italic.aa07940756a803076b34.woff2 │ │ │ ├── RedHatText-Medium.9c02e9a1e10fbc86466d.woff2 │ │ │ ├── RedHatText-MediumItalic.e0f30d27bec7c8dbb6fc.woff2 │ │ │ ├── RedHatText-Regular.b36d694117bf12672d49.woff2 │ │ │ ├── RedHatTextVF-Italic.078865af129336cde269.woff2 │ │ │ ├── RedHatTextVF.c33624692c8b41e36780.woff2 │ │ │ ├── fa-solid-900.c2b7c03209f0d3558e85.woff2 │ │ │ └── pf-v5-pficon.c06f4d6490c387fd1d92.woff2 │ ├── resources-locale │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── resources-locale │ │ │ ├── configs │ │ │ └── en-US.js │ │ │ ├── extensions │ │ │ └── en-US.extension │ │ │ ├── project.json │ │ │ └── translations │ │ │ └── en-US │ │ │ └── common.json │ ├── resources-mxgraph │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ ├── .skip │ │ │ └── resources │ │ │ └── mxgraph │ │ │ ├── 3.9.1 │ │ │ ├── images │ │ │ │ ├── connector.gif │ │ │ │ ├── dot.gif │ │ │ │ ├── green-dot.gif │ │ │ │ ├── loading.gif │ │ │ │ └── spacer.gif │ │ │ └── src │ │ │ │ ├── css │ │ │ │ ├── common.css │ │ │ │ └── explorer.css │ │ │ │ ├── images │ │ │ │ ├── close.gif │ │ │ │ ├── collapsed.gif │ │ │ │ ├── error.gif │ │ │ │ ├── expanded.gif │ │ │ │ ├── maximize.gif │ │ │ │ ├── minimize.gif │ │ │ │ ├── normalize.gif │ │ │ │ ├── point.gif │ │ │ │ ├── resize.gif │ │ │ │ ├── separator.gif │ │ │ │ ├── submenu.gif │ │ │ │ ├── transparent.gif │ │ │ │ ├── warning.gif │ │ │ │ └── warning.png │ │ │ │ ├── js │ │ │ │ ├── editor │ │ │ │ │ ├── mxDefaultKeyHandler.js │ │ │ │ │ ├── mxDefaultPopupMenu.js │ │ │ │ │ ├── mxDefaultToolbar.js │ │ │ │ │ └── mxEditor.js │ │ │ │ ├── handler │ │ │ │ │ ├── mxCellHighlight.js │ │ │ │ │ ├── mxCellMarker.js │ │ │ │ │ ├── mxCellTracker.js │ │ │ │ │ ├── mxConnectionHandler.js │ │ │ │ │ ├── mxConstraintHandler.js │ │ │ │ │ ├── mxEdgeHandler.js │ │ │ │ │ ├── mxEdgeSegmentHandler.js │ │ │ │ │ ├── mxElbowEdgeHandler.js │ │ │ │ │ ├── mxGraphHandler.js │ │ │ │ │ ├── mxHandle.js │ │ │ │ │ ├── mxKeyHandler.js │ │ │ │ │ ├── mxPanningHandler.js │ │ │ │ │ ├── mxPopupMenuHandler.js │ │ │ │ │ ├── mxRubberband.js │ │ │ │ │ ├── mxSelectionCellsHandler.js │ │ │ │ │ ├── mxTooltipHandler.js │ │ │ │ │ └── mxVertexHandler.js │ │ │ │ ├── index.txt │ │ │ │ ├── io │ │ │ │ │ ├── mxCellCodec.js │ │ │ │ │ ├── mxChildChangeCodec.js │ │ │ │ │ ├── mxCodec.js │ │ │ │ │ ├── mxCodecRegistry.js │ │ │ │ │ ├── mxDefaultKeyHandlerCodec.js │ │ │ │ │ ├── mxDefaultPopupMenuCodec.js │ │ │ │ │ ├── mxDefaultToolbarCodec.js │ │ │ │ │ ├── mxEditorCodec.js │ │ │ │ │ ├── mxGenericChangeCodec.js │ │ │ │ │ ├── mxGraphCodec.js │ │ │ │ │ ├── mxGraphViewCodec.js │ │ │ │ │ ├── mxModelCodec.js │ │ │ │ │ ├── mxObjectCodec.js │ │ │ │ │ ├── mxRootChangeCodec.js │ │ │ │ │ ├── mxStylesheetCodec.js │ │ │ │ │ └── mxTerminalChangeCodec.js │ │ │ │ ├── layout │ │ │ │ │ ├── hierarchical │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── mxGraphAbstractHierarchyCell.js │ │ │ │ │ │ │ ├── mxGraphHierarchyEdge.js │ │ │ │ │ │ │ ├── mxGraphHierarchyModel.js │ │ │ │ │ │ │ ├── mxGraphHierarchyNode.js │ │ │ │ │ │ │ └── mxSwimlaneModel.js │ │ │ │ │ │ ├── mxHierarchicalLayout.js │ │ │ │ │ │ ├── mxSwimlaneLayout.js │ │ │ │ │ │ └── stage │ │ │ │ │ │ │ ├── mxCoordinateAssignment.js │ │ │ │ │ │ │ ├── mxHierarchicalLayoutStage.js │ │ │ │ │ │ │ ├── mxMedianHybridCrossingReduction.js │ │ │ │ │ │ │ ├── mxMinimumCycleRemover.js │ │ │ │ │ │ │ └── mxSwimlaneOrdering.js │ │ │ │ │ ├── mxCircleLayout.js │ │ │ │ │ ├── mxCompactTreeLayout.js │ │ │ │ │ ├── mxCompositeLayout.js │ │ │ │ │ ├── mxEdgeLabelLayout.js │ │ │ │ │ ├── mxFastOrganicLayout.js │ │ │ │ │ ├── mxGraphLayout.js │ │ │ │ │ ├── mxParallelEdgeLayout.js │ │ │ │ │ ├── mxPartitionLayout.js │ │ │ │ │ ├── mxRadialTreeLayout.js │ │ │ │ │ └── mxStackLayout.js │ │ │ │ ├── model │ │ │ │ │ ├── mxCell.js │ │ │ │ │ ├── mxCellPath.js │ │ │ │ │ ├── mxGeometry.js │ │ │ │ │ └── mxGraphModel.js │ │ │ │ ├── mxClient.js │ │ │ │ ├── shape │ │ │ │ │ ├── mxActor.js │ │ │ │ │ ├── mxArrow.js │ │ │ │ │ ├── mxArrowConnector.js │ │ │ │ │ ├── mxCloud.js │ │ │ │ │ ├── mxConnector.js │ │ │ │ │ ├── mxCylinder.js │ │ │ │ │ ├── mxDoubleEllipse.js │ │ │ │ │ ├── mxEllipse.js │ │ │ │ │ ├── mxHexagon.js │ │ │ │ │ ├── mxImageShape.js │ │ │ │ │ ├── mxLabel.js │ │ │ │ │ ├── mxLine.js │ │ │ │ │ ├── mxMarker.js │ │ │ │ │ ├── mxPolyline.js │ │ │ │ │ ├── mxRectangleShape.js │ │ │ │ │ ├── mxRhombus.js │ │ │ │ │ ├── mxShape.js │ │ │ │ │ ├── mxStencil.js │ │ │ │ │ ├── mxStencilRegistry.js │ │ │ │ │ ├── mxSwimlane.js │ │ │ │ │ ├── mxText.js │ │ │ │ │ └── mxTriangle.js │ │ │ │ ├── util │ │ │ │ │ ├── mxAbstractCanvas2D.js │ │ │ │ │ ├── mxAnimation.js │ │ │ │ │ ├── mxAutoSaveManager.js │ │ │ │ │ ├── mxClipboard.js │ │ │ │ │ ├── mxConstants.js │ │ │ │ │ ├── mxDictionary.js │ │ │ │ │ ├── mxDivResizer.js │ │ │ │ │ ├── mxDragSource.js │ │ │ │ │ ├── mxEffects.js │ │ │ │ │ ├── mxEvent.js │ │ │ │ │ ├── mxEventObject.js │ │ │ │ │ ├── mxEventSource.js │ │ │ │ │ ├── mxForm.js │ │ │ │ │ ├── mxGuide.js │ │ │ │ │ ├── mxImage.js │ │ │ │ │ ├── mxImageBundle.js │ │ │ │ │ ├── mxImageExport.js │ │ │ │ │ ├── mxLog.js │ │ │ │ │ ├── mxMorphing.js │ │ │ │ │ ├── mxMouseEvent.js │ │ │ │ │ ├── mxObjectIdentity.js │ │ │ │ │ ├── mxPanningManager.js │ │ │ │ │ ├── mxPoint.js │ │ │ │ │ ├── mxPopupMenu.js │ │ │ │ │ ├── mxRectangle.js │ │ │ │ │ ├── mxResources.js │ │ │ │ │ ├── mxSvgCanvas2D.js │ │ │ │ │ ├── mxToolbar.js │ │ │ │ │ ├── mxUndoManager.js │ │ │ │ │ ├── mxUndoableEdit.js │ │ │ │ │ ├── mxUrlConverter.js │ │ │ │ │ ├── mxUtils.js │ │ │ │ │ ├── mxVmlCanvas2D.js │ │ │ │ │ ├── mxWindow.js │ │ │ │ │ ├── mxXmlCanvas2D.js │ │ │ │ │ └── mxXmlRequest.js │ │ │ │ └── view │ │ │ │ │ ├── mxCellEditor.js │ │ │ │ │ ├── mxCellOverlay.js │ │ │ │ │ ├── mxCellRenderer.js │ │ │ │ │ ├── mxCellState.js │ │ │ │ │ ├── mxCellStatePreview.js │ │ │ │ │ ├── mxConnectionConstraint.js │ │ │ │ │ ├── mxEdgeStyle.js │ │ │ │ │ ├── mxGraph.js │ │ │ │ │ ├── mxGraphSelectionModel.js │ │ │ │ │ ├── mxGraphView.js │ │ │ │ │ ├── mxLayoutManager.js │ │ │ │ │ ├── mxMultiplicity.js │ │ │ │ │ ├── mxOutline.js │ │ │ │ │ ├── mxPerimeter.js │ │ │ │ │ ├── mxPrintPreview.js │ │ │ │ │ ├── mxStyleRegistry.js │ │ │ │ │ ├── mxStylesheet.js │ │ │ │ │ ├── mxSwimlaneManager.js │ │ │ │ │ └── mxTemporaryCellStates.js │ │ │ │ └── resources │ │ │ │ ├── editor.txt │ │ │ │ ├── editor_de.txt │ │ │ │ ├── editor_zh.txt │ │ │ │ ├── graph.txt │ │ │ │ ├── graph_de.txt │ │ │ │ └── graph_zh.txt │ │ │ └── 4.2.2 │ │ │ └── src │ │ │ ├── css │ │ │ ├── common.css │ │ │ └── explorer.css │ │ │ ├── images │ │ │ ├── button.gif │ │ │ ├── close.gif │ │ │ ├── collapsed.gif │ │ │ ├── error.gif │ │ │ ├── expanded.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── normalize.gif │ │ │ ├── point.gif │ │ │ ├── resize.gif │ │ │ ├── separator.gif │ │ │ ├── submenu.gif │ │ │ ├── transparent.gif │ │ │ ├── warning.gif │ │ │ ├── warning.png │ │ │ ├── window-title.gif │ │ │ └── window.gif │ │ │ ├── js │ │ │ ├── editor │ │ │ │ ├── mxDefaultKeyHandler.js │ │ │ │ ├── mxDefaultPopupMenu.js │ │ │ │ ├── mxDefaultToolbar.js │ │ │ │ └── mxEditor.js │ │ │ ├── handler │ │ │ │ ├── mxCellHighlight.js │ │ │ │ ├── mxCellMarker.js │ │ │ │ ├── mxCellTracker.js │ │ │ │ ├── mxConnectionHandler.js │ │ │ │ ├── mxConstraintHandler.js │ │ │ │ ├── mxEdgeHandler.js │ │ │ │ ├── mxEdgeSegmentHandler.js │ │ │ │ ├── mxElbowEdgeHandler.js │ │ │ │ ├── mxGraphHandler.js │ │ │ │ ├── mxHandle.js │ │ │ │ ├── mxKeyHandler.js │ │ │ │ ├── mxPanningHandler.js │ │ │ │ ├── mxPopupMenuHandler.js │ │ │ │ ├── mxRubberband.js │ │ │ │ ├── mxSelectionCellsHandler.js │ │ │ │ ├── mxTooltipHandler.js │ │ │ │ └── mxVertexHandler.js │ │ │ ├── index.txt │ │ │ ├── io │ │ │ │ ├── mxCellCodec.js │ │ │ │ ├── mxChildChangeCodec.js │ │ │ │ ├── mxCodec.js │ │ │ │ ├── mxCodecRegistry.js │ │ │ │ ├── mxDefaultKeyHandlerCodec.js │ │ │ │ ├── mxDefaultPopupMenuCodec.js │ │ │ │ ├── mxDefaultToolbarCodec.js │ │ │ │ ├── mxEditorCodec.js │ │ │ │ ├── mxGenericChangeCodec.js │ │ │ │ ├── mxGraphCodec.js │ │ │ │ ├── mxGraphViewCodec.js │ │ │ │ ├── mxModelCodec.js │ │ │ │ ├── mxObjectCodec.js │ │ │ │ ├── mxRootChangeCodec.js │ │ │ │ ├── mxStylesheetCodec.js │ │ │ │ └── mxTerminalChangeCodec.js │ │ │ ├── layout │ │ │ │ ├── hierarchical │ │ │ │ │ ├── model │ │ │ │ │ │ ├── mxGraphAbstractHierarchyCell.js │ │ │ │ │ │ ├── mxGraphHierarchyEdge.js │ │ │ │ │ │ ├── mxGraphHierarchyModel.js │ │ │ │ │ │ ├── mxGraphHierarchyNode.js │ │ │ │ │ │ └── mxSwimlaneModel.js │ │ │ │ │ ├── mxHierarchicalLayout.js │ │ │ │ │ ├── mxSwimlaneLayout.js │ │ │ │ │ └── stage │ │ │ │ │ │ ├── mxCoordinateAssignment.js │ │ │ │ │ │ ├── mxHierarchicalLayoutStage.js │ │ │ │ │ │ ├── mxMedianHybridCrossingReduction.js │ │ │ │ │ │ ├── mxMinimumCycleRemover.js │ │ │ │ │ │ └── mxSwimlaneOrdering.js │ │ │ │ ├── mxCircleLayout.js │ │ │ │ ├── mxCompactTreeLayout.js │ │ │ │ ├── mxCompositeLayout.js │ │ │ │ ├── mxEdgeLabelLayout.js │ │ │ │ ├── mxFastOrganicLayout.js │ │ │ │ ├── mxGraphLayout.js │ │ │ │ ├── mxParallelEdgeLayout.js │ │ │ │ ├── mxPartitionLayout.js │ │ │ │ ├── mxRadialTreeLayout.js │ │ │ │ └── mxStackLayout.js │ │ │ ├── model │ │ │ │ ├── mxCell.js │ │ │ │ ├── mxCellPath.js │ │ │ │ ├── mxGeometry.js │ │ │ │ └── mxGraphModel.js │ │ │ ├── mxClient.js │ │ │ ├── shape │ │ │ │ ├── mxActor.js │ │ │ │ ├── mxArrow.js │ │ │ │ ├── mxArrowConnector.js │ │ │ │ ├── mxCloud.js │ │ │ │ ├── mxConnector.js │ │ │ │ ├── mxCylinder.js │ │ │ │ ├── mxDoubleEllipse.js │ │ │ │ ├── mxEllipse.js │ │ │ │ ├── mxHexagon.js │ │ │ │ ├── mxImageShape.js │ │ │ │ ├── mxLabel.js │ │ │ │ ├── mxLine.js │ │ │ │ ├── mxMarker.js │ │ │ │ ├── mxPolyline.js │ │ │ │ ├── mxRectangleShape.js │ │ │ │ ├── mxRhombus.js │ │ │ │ ├── mxShape.js │ │ │ │ ├── mxStencil.js │ │ │ │ ├── mxStencilRegistry.js │ │ │ │ ├── mxSwimlane.js │ │ │ │ ├── mxText.js │ │ │ │ └── mxTriangle.js │ │ │ ├── util │ │ │ │ ├── mxAbstractCanvas2D.js │ │ │ │ ├── mxAnimation.js │ │ │ │ ├── mxAutoSaveManager.js │ │ │ │ ├── mxClipboard.js │ │ │ │ ├── mxConstants.js │ │ │ │ ├── mxDictionary.js │ │ │ │ ├── mxDivResizer.js │ │ │ │ ├── mxDragSource.js │ │ │ │ ├── mxEffects.js │ │ │ │ ├── mxEvent.js │ │ │ │ ├── mxEventObject.js │ │ │ │ ├── mxEventSource.js │ │ │ │ ├── mxForm.js │ │ │ │ ├── mxGuide.js │ │ │ │ ├── mxImage.js │ │ │ │ ├── mxImageBundle.js │ │ │ │ ├── mxImageExport.js │ │ │ │ ├── mxLog.js │ │ │ │ ├── mxMorphing.js │ │ │ │ ├── mxMouseEvent.js │ │ │ │ ├── mxObjectIdentity.js │ │ │ │ ├── mxPanningManager.js │ │ │ │ ├── mxPoint.js │ │ │ │ ├── mxPopupMenu.js │ │ │ │ ├── mxRectangle.js │ │ │ │ ├── mxResources.js │ │ │ │ ├── mxSvgCanvas2D.js │ │ │ │ ├── mxToolbar.js │ │ │ │ ├── mxUndoManager.js │ │ │ │ ├── mxUndoableEdit.js │ │ │ │ ├── mxUrlConverter.js │ │ │ │ ├── mxUtils.js │ │ │ │ ├── mxVmlCanvas2D.js │ │ │ │ ├── mxWindow.js │ │ │ │ ├── mxXmlCanvas2D.js │ │ │ │ └── mxXmlRequest.js │ │ │ └── view │ │ │ │ ├── mxCellEditor.js │ │ │ │ ├── mxCellOverlay.js │ │ │ │ ├── mxCellRenderer.js │ │ │ │ ├── mxCellState.js │ │ │ │ ├── mxCellStatePreview.js │ │ │ │ ├── mxConnectionConstraint.js │ │ │ │ ├── mxEdgeStyle.js │ │ │ │ ├── mxGraph.js │ │ │ │ ├── mxGraphSelectionModel.js │ │ │ │ ├── mxGraphView.js │ │ │ │ ├── mxLayoutManager.js │ │ │ │ ├── mxMultiplicity.js │ │ │ │ ├── mxOutline.js │ │ │ │ ├── mxPerimeter.js │ │ │ │ ├── mxPrintPreview.js │ │ │ │ ├── mxStyleRegistry.js │ │ │ │ ├── mxStylesheet.js │ │ │ │ ├── mxSwimlaneManager.js │ │ │ │ └── mxTemporaryCellStates.js │ │ │ └── resources │ │ │ ├── editor.txt │ │ │ ├── editor_de.txt │ │ │ ├── editor_zh.txt │ │ │ ├── graph.txt │ │ │ ├── graph_de.txt │ │ │ └── graph_zh.txt │ ├── resources-resources │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ ├── .skip │ │ │ └── resources │ │ │ ├── images │ │ │ ├── actual-size.svg │ │ │ ├── close.svg │ │ │ ├── dirigible.svg │ │ │ ├── jstree │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-tristate.svg │ │ │ │ ├── checkbox-unchecked.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── git.svg │ │ │ │ ├── loading.svg │ │ │ │ ├── menu-arrow-right.svg │ │ │ │ └── project.svg │ │ │ └── unknown.svg │ │ │ ├── project.json │ │ │ ├── resources.access │ │ │ └── unicons │ │ │ ├── 0-plus.svg │ │ │ ├── 10-plus.svg │ │ │ ├── 12-plus.svg │ │ │ ├── 13-plus.svg │ │ │ ├── 16-plus.svg │ │ │ ├── 17-plus.svg │ │ │ ├── 18-plus.svg │ │ │ ├── 21-plus.svg │ │ │ ├── 3-plus.svg │ │ │ ├── 500px.svg │ │ │ ├── 6-plus.svg │ │ │ ├── abacus.svg │ │ │ ├── accessible-icon-alt.svg │ │ │ ├── adjust-alt.svg │ │ │ ├── adjust-circle.svg │ │ │ ├── adjust-half.svg │ │ │ ├── adjust.svg │ │ │ ├── adobe-alt.svg │ │ │ ├── adobe.svg │ │ │ ├── airplay.svg │ │ │ ├── align-alt.svg │ │ │ ├── align-center-alt.svg │ │ │ ├── align-center-h.svg │ │ │ ├── align-center-justify.svg │ │ │ ├── align-center-v.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-letter-right.svg │ │ │ ├── align-right-justify.svg │ │ │ ├── align-right.svg │ │ │ ├── align.svg │ │ │ ├── amazon.svg │ │ │ ├── ambulance.svg │ │ │ ├── analysis.svg │ │ │ ├── analytics.svg │ │ │ ├── anchor.svg │ │ │ ├── android-alt.svg │ │ │ ├── android-phone-slash.svg │ │ │ ├── android.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left-b.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right-b.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── annoyed-alt.svg │ │ │ ├── annoyed.svg │ │ │ ├── apple-alt.svg │ │ │ ├── apple.svg │ │ │ ├── apps.svg │ │ │ ├── archive-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-break.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-compress-h.svg │ │ │ ├── arrow-down-left.svg │ │ │ ├── arrow-down-right.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-from-right.svg │ │ │ ├── arrow-from-top.svg │ │ │ ├── arrow-growth.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-random.svg │ │ │ ├── arrow-resize-diagonal.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-to-bottom.svg │ │ │ ├── arrow-to-right.svg │ │ │ ├── arrow-up-left.svg │ │ │ ├── arrow-up-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── arrows-h-alt.svg │ │ │ ├── arrows-h.svg │ │ │ ├── arrows-left-down.svg │ │ │ ├── arrows-maximize.svg │ │ │ ├── arrows-merge.svg │ │ │ ├── arrows-resize-h.svg │ │ │ ├── arrows-resize-v.svg │ │ │ ├── arrows-resize.svg │ │ │ ├── arrows-right-down.svg │ │ │ ├── arrows-shrink-h.svg │ │ │ ├── arrows-shrink-v.svg │ │ │ ├── arrows-up-right.svg │ │ │ ├── arrows-v-alt.svg │ │ │ ├── arrows-v.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atom.svg │ │ │ ├── auto-flash.svg │ │ │ ├── award-alt.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── backpack.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bag-alt.svg │ │ │ ├── bag-slash.svg │ │ │ ├── bag.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-hoop.svg │ │ │ ├── basketball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-bolt.svg │ │ │ ├── battery-empty.svg │ │ │ ├── bed-double.svg │ │ │ ├── bed.svg │ │ │ ├── behance-alt.svg │ │ │ ├── behance.svg │ │ │ ├── bell-school.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bill.svg │ │ │ ├── bing.svg │ │ │ ├── bitcoin-alt.svg │ │ │ ├── bitcoin-circle.svg │ │ │ ├── bitcoin-sign.svg │ │ │ ├── bitcoin.svg │ │ │ ├── black-berry.svg │ │ │ ├── blogger-alt.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bold.svg │ │ │ ├── bolt-alt.svg │ │ │ ├── bolt-slash.svg │ │ │ ├── bolt.svg │ │ │ ├── book-alt.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-full.svg │ │ │ ├── bookmark.svg │ │ │ ├── books.svg │ │ │ ├── boombox.svg │ │ │ ├── border-alt.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-clear.svg │ │ │ ├── border-horizontal.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-out.svg │ │ │ ├── border-right.svg │ │ │ ├── border-top.svg │ │ │ ├── border-vertical.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box.svg │ │ │ ├── brackets-curly.svg │ │ │ ├── brain.svg │ │ │ ├── briefcase-alt.svg │ │ │ ├── briefcase.svg │ │ │ ├── bright.svg │ │ │ ├── brightness-empty.svg │ │ │ ├── brightness-half.svg │ │ │ ├── brightness-low.svg │ │ │ ├── brightness-minus.svg │ │ │ ├── brightness-plus.svg │ │ │ ├── brightness.svg │ │ │ ├── bring-bottom.svg │ │ │ ├── bring-front.svg │ │ │ ├── browser.svg │ │ │ ├── brush-alt.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullseye.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus-school.svg │ │ │ ├── bus.svg │ │ │ ├── calculator-alt.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-slash.svg │ │ │ ├── calender.svg │ │ │ ├── calling.svg │ │ │ ├── camera-change.svg │ │ │ ├── camera-plus.svg │ │ │ ├── camera-slash.svg │ │ │ ├── camera.svg │ │ │ ├── cancel.svg │ │ │ ├── capsule.svg │ │ │ ├── capture.svg │ │ │ ├── car-sideview.svg │ │ │ ├── car-slash.svg │ │ │ ├── car-wash.svg │ │ │ ├── car.svg │ │ │ ├── card-atm.svg │ │ │ ├── caret-right.svg │ │ │ ├── cell.svg │ │ │ ├── celsius.svg │ │ │ ├── channel-add.svg │ │ │ ├── channel.svg │ │ │ ├── chart-bar-alt.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-down.svg │ │ │ ├── chart-growth-alt.svg │ │ │ ├── chart-growth.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie-alt.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart.svg │ │ │ ├── chat-bubble-user.svg │ │ │ ├── chat-info.svg │ │ │ ├── chat.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── circle-layer.svg │ │ │ ├── circle.svg │ │ │ ├── circuit.svg │ │ │ ├── clapper-board.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-alt.svg │ │ │ ├── clipboard-blank.svg │ │ │ ├── clipboard-notes.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-eight.svg │ │ │ ├── clock-five.svg │ │ │ ├── clock-nine.svg │ │ │ ├── clock-seven.svg │ │ │ ├── clock-ten.svg │ │ │ ├── clock-three.svg │ │ │ ├── clock-two.svg │ │ │ ├── clock.svg │ │ │ ├── closed-captioning-slash.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-block.svg │ │ │ ├── cloud-bookmark.svg │ │ │ ├── cloud-check.svg │ │ │ ├── cloud-computing.svg │ │ │ ├── cloud-data-connection.svg │ │ │ ├── cloud-database-tree.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-exclamation.svg │ │ │ ├── cloud-hail.svg │ │ │ ├── cloud-heart.svg │ │ │ ├── cloud-info.svg │ │ │ ├── cloud-lock.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-hail.svg │ │ │ ├── cloud-moon-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon-showers.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-question.svg │ │ │ ├── cloud-rain-sun.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-redo.svg │ │ │ ├── cloud-share.svg │ │ │ ├── cloud-shield.svg │ │ │ ├── cloud-showers-alt.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-showers.svg │ │ │ ├── cloud-slash.svg │ │ │ ├── cloud-sun-hail.svg │ │ │ ├── cloud-sun-meatball.svg │ │ │ ├── cloud-sun-rain-alt.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun-tear.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-times.svg │ │ │ ├── cloud-unlock.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud-wifi.svg │ │ │ ├── cloud-wind.svg │ │ │ ├── cloud.svg │ │ │ ├── clouds.svg │ │ │ ├── club.svg │ │ │ ├── code-branch.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-add.svg │ │ │ ├── comment-alt-block.svg │ │ │ ├── comment-alt-chart-lines.svg │ │ │ ├── comment-alt-check.svg │ │ │ ├── comment-alt-dots.svg │ │ │ ├── comment-alt-download.svg │ │ │ ├── comment-alt-edit.svg │ │ │ ├── comment-alt-exclamation.svg │ │ │ ├── comment-alt-heart.svg │ │ │ ├── comment-alt-image.svg │ │ │ ├── comment-alt-info.svg │ │ │ ├── comment-alt-lines.svg │ │ │ ├── comment-alt-lock.svg │ │ │ ├── comment-alt-medical.svg │ │ │ ├── comment-alt-message.svg │ │ │ ├── comment-alt-notes.svg │ │ │ ├── comment-alt-plus.svg │ │ │ ├── comment-alt-question.svg │ │ │ ├── comment-alt-redo.svg │ │ │ ├── comment-alt-search.svg │ │ │ ├── comment-alt-share.svg │ │ │ ├── comment-alt-shield.svg │ │ │ ├── comment-alt-slash.svg │ │ │ ├── comment-alt-upload.svg │ │ │ ├── comment-alt-verify.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-block.svg │ │ │ ├── comment-chart-line.svg │ │ │ ├── comment-check.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-download.svg │ │ │ ├── comment-edit.svg │ │ │ ├── comment-exclamation.svg │ │ │ ├── comment-heart.svg │ │ │ ├── comment-image.svg │ │ │ ├── comment-info-alt.svg │ │ │ ├── comment-info.svg │ │ │ ├── comment-lines.svg │ │ │ ├── comment-lock.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-message.svg │ │ │ ├── comment-notes.svg │ │ │ ├── comment-plus.svg │ │ │ ├── comment-question.svg │ │ │ ├── comment-redo.svg │ │ │ ├── comment-search.svg │ │ │ ├── comment-share.svg │ │ │ ├── comment-shield.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment-upload.svg │ │ │ ├── comment-verify.svg │ │ │ ├── comment.svg │ │ │ ├── comments-alt.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── comparison.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt-left.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows.svg │ │ │ ├── compress-lines.svg │ │ │ ├── compress-point.svg │ │ │ ├── compress-v.svg │ │ │ ├── compress.svg │ │ │ ├── confused.svg │ │ │ ├── constructor.svg │ │ │ ├── copy-alt.svg │ │ │ ├── copy-landscape.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── corner-down-left.svg │ │ │ ├── corner-down-right-alt.svg │ │ │ ├── corner-down-right.svg │ │ │ ├── corner-left-down.svg │ │ │ ├── corner-right-down.svg │ │ │ ├── corner-up-left-alt.svg │ │ │ ├── corner-up-left.svg │ │ │ ├── corner-up-right-alt.svg │ │ │ ├── corner-up-right.svg │ │ │ ├── coronavirus.svg │ │ │ ├── create-dashboard.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── credit-card-search.svg │ │ │ ├── credit-card.svg │ │ │ ├── crockery.svg │ │ │ ├── crop-alt-rotate-left.svg │ │ │ ├── crop-alt-rotate-right.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crosshair-alt.svg │ │ │ ├── crosshair.svg │ │ │ ├── crosshairs.svg │ │ │ ├── css3-simple.svg │ │ │ ├── cube.svg │ │ │ ├── dashboard.svg │ │ │ ├── data-sharing.svg │ │ │ ├── database-alt.svg │ │ │ ├── database.svg │ │ │ ├── desert.svg │ │ │ ├── desktop-alt-slash.svg │ │ │ ├── desktop-alt.svg │ │ │ ├── desktop-cloud-alt.svg │ │ │ ├── desktop-slash.svg │ │ │ ├── desktop.svg │ │ │ ├── dialpad-alt.svg │ │ │ ├── dialpad.svg │ │ │ ├── diamond.svg │ │ │ ├── diary-alt.svg │ │ │ ├── diary.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── direction.svg │ │ │ ├── directions.svg │ │ │ ├── discord.svg │ │ │ ├── dizzy-meh.svg │ │ │ ├── dna.svg │ │ │ ├── docker.svg │ │ │ ├── document-info.svg │ │ │ ├── document-layout-center.svg │ │ │ ├── document-layout-left.svg │ │ │ ├── document-layout-right.svg │ │ │ ├── dollar-alt.svg │ │ │ ├── dollar-sign-alt.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── download-alt.svg │ │ │ ├── draggabledots.svg │ │ │ ├── dribbble.svg │ │ │ ├── drill.svg │ │ │ ├── dropbox.svg │ │ │ ├── dumbbell.svg │ │ │ ├── ear.svg │ │ │ ├── edit-alt.svg │ │ │ ├── edit.svg │ │ │ ├── elipsis-double-v-alt.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── emoji.svg │ │ │ ├── english-to-chinese.svg │ │ │ ├── enter.svg │ │ │ ├── envelope-add.svg │ │ │ ├── envelope-alt.svg │ │ │ ├── envelope-block.svg │ │ │ ├── envelope-bookmark.svg │ │ │ ├── envelope-check.svg │ │ │ ├── envelope-download-alt.svg │ │ │ ├── envelope-download.svg │ │ │ ├── envelope-edit.svg │ │ │ ├── envelope-exclamation.svg │ │ │ ├── envelope-heart.svg │ │ │ ├── envelope-info.svg │ │ │ ├── envelope-lock.svg │ │ │ ├── envelope-minus.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-question.svg │ │ │ ├── envelope-receive.svg │ │ │ ├── envelope-redo.svg │ │ │ ├── envelope-search.svg │ │ │ ├── envelope-send.svg │ │ │ ├── envelope-share.svg │ │ │ ├── envelope-shield.svg │ │ │ ├── envelope-star.svg │ │ │ ├── envelope-times.svg │ │ │ ├── envelope-upload-alt.svg │ │ │ ├── envelope-upload.svg │ │ │ ├── envelope.svg │ │ │ ├── envelopes.svg │ │ │ ├── equal-circle.svg │ │ │ ├── estate.svg │ │ │ ├── euro-circle.svg │ │ │ ├── euro.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exchange.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-octagon.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── exclude.svg │ │ │ ├── exit.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand-arrows.svg │ │ │ ├── expand-from-corner.svg │ │ │ ├── expand-left.svg │ │ │ ├── expand-right.svg │ │ │ ├── export.svg │ │ │ ├── exposure-alt.svg │ │ │ ├── exposure-increase.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger-alt.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook.svg │ │ │ ├── fahrenheit.svg │ │ │ ├── fast-mail-alt.svg │ │ │ ├── fast-mail.svg │ │ │ ├── favorite.svg │ │ │ ├── feedback.svg │ │ │ ├── fidget-spinner.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-blank.svg │ │ │ ├── file-block-alt.svg │ │ │ ├── file-bookmark-alt.svg │ │ │ ├── file-check-alt.svg │ │ │ ├── file-check.svg │ │ │ ├── file-contract-dollar.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-copy-alt.svg │ │ │ ├── file-download-alt.svg │ │ │ ├── file-download.svg │ │ │ ├── file-edit-alt.svg │ │ │ ├── file-exclamation-alt.svg │ │ │ ├── file-exclamation.svg │ │ │ ├── file-export.svg │ │ │ ├── file-graph.svg │ │ │ ├── file-heart.svg │ │ │ ├── file-import.svg │ │ │ ├── file-info-alt.svg │ │ │ ├── file-landscape-alt.svg │ │ │ ├── file-landscape.svg │ │ │ ├── file-lanscape-slash.svg │ │ │ ├── file-lock-alt.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus-alt.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-network.svg │ │ │ ├── file-plus-alt.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-question-alt.svg │ │ │ ├── file-question.svg │ │ │ ├── file-redo-alt.svg │ │ │ ├── file-search-alt.svg │ │ │ ├── file-share-alt.svg │ │ │ ├── file-shield-alt.svg │ │ │ ├── file-slash.svg │ │ │ ├── file-times-alt.svg │ │ │ ├── file-times.svg │ │ │ ├── file-upload-alt.svg │ │ │ ├── file-upload.svg │ │ │ ├── file.svg │ │ │ ├── files-landscapes-alt.svg │ │ │ ├── files-landscapes.svg │ │ │ ├── film.svg │ │ │ ├── filter-slash.svg │ │ │ ├── filter.svg │ │ │ ├── fire.svg │ │ │ ├── flask-potion.svg │ │ │ ├── flask.svg │ │ │ ├── flip-h-alt.svg │ │ │ ├── flip-h.svg │ │ │ ├── flip-v-alt.svg │ │ │ ├── flip-v.svg │ │ │ ├── flower.svg │ │ │ ├── focus-add.svg │ │ │ ├── focus-target.svg │ │ │ ├── focus.svg │ │ │ ├── folder-check.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-exclamation.svg │ │ │ ├── folder-heart.svg │ │ │ ├── folder-info.svg │ │ │ ├── folder-lock.svg │ │ │ ├── folder-medical.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-network.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-question.svg │ │ │ ├── folder-slash.svg │ │ │ ├── folder-times.svg │ │ │ ├── folder-upload.svg │ │ │ ├── folder.svg │ │ │ ├── font.svg │ │ │ ├── football-american.svg │ │ │ ├── football-ball.svg │ │ │ ├── football.svg │ │ │ ├── forecastcloud-moon-tear.svg │ │ │ ├── forwaded-call.svg │ │ │ ├── forward.svg │ │ │ ├── frown.svg │ │ │ ├── game-structure.svg │ │ │ ├── gift.svg │ │ │ ├── github-alt.svg │ │ │ ├── github.svg │ │ │ ├── gitlab.svg │ │ │ ├── glass-martini-alt-slash.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-tea.svg │ │ │ ├── glass.svg │ │ │ ├── globe.svg │ │ │ ├── gold.svg │ │ │ ├── golf-ball.svg │ │ │ ├── google-drive-alt.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-hangouts-alt.svg │ │ │ ├── google-hangouts.svg │ │ │ ├── google-play.svg │ │ │ ├── google.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── graph-bar.svg │ │ │ ├── grid.svg │ │ │ ├── grids.svg │ │ │ ├── grin-tongue-wink-alt.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal-line.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side.svg │ │ │ ├── headphone-slash.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── heart-alt.svg │ │ │ ├── heart-break.svg │ │ │ ├── heart-medical.svg │ │ │ ├── heart-rate.svg │ │ │ ├── heart-sign.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── hindi-to-chinese.svg │ │ │ ├── hipchat.svg │ │ │ ├── history-alt.svg │ │ │ ├── history.svg │ │ │ ├── home-alt.svg │ │ │ ├── home.svg │ │ │ ├── horizontal-align-center.svg │ │ │ ├── horizontal-align-left.svg │ │ │ ├── horizontal-align-right.svg │ │ │ ├── horizontal-distribution-center.svg │ │ │ ├── horizontal-distribution-left.svg │ │ │ ├── horizontal-distribution-right.svg │ │ │ ├── hospital-square-sign.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-user.svg │ │ │ ├── html3-alt.svg │ │ │ ├── html3.svg │ │ │ ├── html5-alt.svg │ │ │ ├── html5.svg │ │ │ ├── hunting.svg │ │ │ ├── icons.svg │ │ │ ├── illustration.svg │ │ │ ├── image-alt-slash.svg │ │ │ ├── image-block.svg │ │ │ ├── image-broken.svg │ │ │ ├── image-check.svg │ │ │ ├── image-download.svg │ │ │ ├── image-edit.svg │ │ │ ├── image-lock.svg │ │ │ ├── image-minus.svg │ │ │ ├── image-plus.svg │ │ │ ├── image-question.svg │ │ │ ├── image-redo.svg │ │ │ ├── image-resize-landscape.svg │ │ │ ├── image-resize-square.svg │ │ │ ├── image-search.svg │ │ │ ├── image-share.svg │ │ │ ├── image-shield.svg │ │ │ ├── image-slash.svg │ │ │ ├── image-times.svg │ │ │ ├── image-upload.svg │ │ │ ├── image-v.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── import.svg │ │ │ ├── inbox.svg │ │ │ ├── incoming-call.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── instagram-alt.svg │ │ │ ├── instagram.svg │ │ │ ├── intercom-alt.svg │ │ │ ├── intercom.svg │ │ │ ├── invoice.svg │ │ │ ├── italic.svg │ │ │ ├── jackhammer.svg │ │ │ ├── java-script.svg │ │ │ ├── kayak.svg │ │ │ ├── key-skeleton-alt.svg │ │ │ ├── key-skeleton.svg │ │ │ ├── keyboard-alt.svg │ │ │ ├── keyboard-hide.svg │ │ │ ├── keyboard-show.svg │ │ │ ├── keyboard.svg │ │ │ ├── keyhole-circle.svg │ │ │ ├── keyhole-square-full.svg │ │ │ ├── keyhole-square.svg │ │ │ ├── kid.svg │ │ │ ├── label-alt.svg │ │ │ ├── label.svg │ │ │ ├── lamp.svg │ │ │ ├── language.svg │ │ │ ├── laptop-cloud.svg │ │ │ ├── laptop-connection.svg │ │ │ ├── laptop.svg │ │ │ ├── laughing.svg │ │ │ ├── layer-group-slash.svg │ │ │ ├── layer-group.svg │ │ │ ├── layers-alt.svg │ │ │ ├── layers-slash.svg │ │ │ ├── layers.svg │ │ │ ├── left-arrow-from-left.svg │ │ │ ├── left-arrow-to-left.svg │ │ │ ├── left-indent-alt.svg │ │ │ ├── left-indent.svg │ │ │ ├── left-to-right-text-direction.svg │ │ │ ├── letter-chinese-a.svg │ │ │ ├── letter-english-a.svg │ │ │ ├── letter-hindi-a.svg │ │ │ ├── letter-japanese-a.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb-alt.svg │ │ │ ├── lightbulb.svg │ │ │ ├── line-alt.svg │ │ │ ├── line-spacing.svg │ │ │ ├── line.svg │ │ │ ├── link-add.svg │ │ │ ├── link-alt.svg │ │ │ ├── link-broken.svg │ │ │ ├── link-h.svg │ │ │ ├── link.svg │ │ │ ├── linkedin-alt.svg │ │ │ ├── linkedin.svg │ │ │ ├── linux.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-ol-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ui-alt.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.json │ │ │ ├── location-arrow-alt.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-pin-alt.svg │ │ │ ├── location-point.svg │ │ │ ├── lock-access.svg │ │ │ ├── lock-alt.svg │ │ │ ├── lock-open-alt.svg │ │ │ ├── lock-slash.svg │ │ │ ├── lock.svg │ │ │ ├── lottiefiles-alt.svg │ │ │ ├── lottiefiles.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── mailbox-alt.svg │ │ │ ├── mailbox.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker-edit.svg │ │ │ ├── map-marker-info.svg │ │ │ ├── map-marker-minus.svg │ │ │ ├── map-marker-plus.svg │ │ │ ├── map-marker-question.svg │ │ │ ├── map-marker-shield.svg │ │ │ ├── map-marker-slash.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin-alt.svg │ │ │ ├── map-pin.svg │ │ │ ├── map.svg │ │ │ ├── mars.svg │ │ │ ├── master-card.svg │ │ │ ├── maximize-left.svg │ │ │ ├── medal.svg │ │ │ ├── medical-drip.svg │ │ │ ├── medical-square-full.svg │ │ │ ├── medical-square.svg │ │ │ ├── medium-m.svg │ │ │ ├── medkit.svg │ │ │ ├── meeting-board.svg │ │ │ ├── megaphone.svg │ │ │ ├── meh-alt.svg │ │ │ ├── meh-closed-eye.svg │ │ │ ├── meh.svg │ │ │ ├── message.svg │ │ │ ├── metro.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── microsoft.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-path.svg │ │ │ ├── minus-square-full.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── missed-call.svg │ │ │ ├── mobile-android-alt.svg │ │ │ ├── mobile-android.svg │ │ │ ├── mobile-vibrate.svg │ │ │ ├── modem.svg │ │ │ ├── money-bill-slash.svg │ │ │ ├── money-bill-stack.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-insert.svg │ │ │ ├── money-stack.svg │ │ │ ├── money-withdraw.svg │ │ │ ├── money-withdrawal.svg │ │ │ ├── moneybag-alt.svg │ │ │ ├── moneybag.svg │ │ │ ├── monitor-heart-rate.svg │ │ │ ├── monitor.svg │ │ │ ├── moon-eclipse.svg │ │ │ ├── moon.svg │ │ │ ├── moonset.svg │ │ │ ├── mountains-sun.svg │ │ │ ├── mountains.svg │ │ │ ├── mouse-alt-2.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse.svg │ │ │ ├── multiply.svg │ │ │ ├── music-note.svg │ │ │ ├── music-tune-slash.svg │ │ │ ├── music.svg │ │ │ ├── n-a.svg │ │ │ ├── navigator.svg │ │ │ ├── nerd.svg │ │ │ ├── newspaper.svg │ │ │ ├── ninja.svg │ │ │ ├── no-entry.svg │ │ │ ├── notebooks.svg │ │ │ ├── notes.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── octagon.svg │ │ │ ├── okta.svg │ │ │ ├── opera-alt.svg │ │ │ ├── opera.svg │ │ │ ├── outgoing-call.svg │ │ │ ├── package.svg │ │ │ ├── padlock.svg │ │ │ ├── pagelines.svg │ │ │ ├── pagerduty.svg │ │ │ ├── paint-tool.svg │ │ │ ├── palette.svg │ │ │ ├── panel-add.svg │ │ │ ├── panorama-h-alt.svg │ │ │ ├── panorama-h.svg │ │ │ ├── panorama-v.svg │ │ │ ├── paperclip.svg │ │ │ ├── paragraph.svg │ │ │ ├── parcel.svg │ │ │ ├── parking-circle.svg │ │ │ ├── parking-square.svg │ │ │ ├── pathfinder-unite.svg │ │ │ ├── pathfinder.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pen.svg │ │ │ ├── pentagon.svg │ │ │ ├── percentage.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-pause.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-times.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── picture.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-fly.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podium.svg │ │ │ ├── polygon.svg │ │ │ ├── post-stamp.svg │ │ │ ├── postcard.svg │ │ │ ├── pound-circle.svg │ │ │ ├── pound.svg │ │ │ ├── power.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── presentation-check.svg │ │ │ ├── presentation-edit.svg │ │ │ ├── presentation-line.svg │ │ │ ├── presentation-lines-alt.svg │ │ │ ├── presentation-minus.svg │ │ │ ├── presentation-play.svg │ │ │ ├── presentation-plus.svg │ │ │ ├── presentation-times.svg │ │ │ ├── presentation.svg │ │ │ ├── previous.svg │ │ │ ├── pricetag-alt.svg │ │ │ ├── print-slash.svg │ │ │ ├── print.svg │ │ │ ├── process.svg │ │ │ ├── processor.svg │ │ │ ├── programming-language.svg │ │ │ ├── pump.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode-scan.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── rainbow.svg │ │ │ ├── raindrops-alt.svg │ │ │ ├── raindrops.svg │ │ │ ├── react.svg │ │ │ ├── receipt-alt.svg │ │ │ ├── receipt.svg │ │ │ ├── record-audio.svg │ │ │ ├── reddit-alien-alt.svg │ │ │ ├── redo.svg │ │ │ ├── refresh.svg │ │ │ ├── registered.svg │ │ │ ├── repeat.svg │ │ │ ├── restaurant.svg │ │ │ ├── right-indent-alt.svg │ │ │ ├── right-to-left-text-direction.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── rope-way.svg │ │ │ ├── rotate-360.svg │ │ │ ├── rss-alt.svg │ │ │ ├── rss-interface.svg │ │ │ ├── rss.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-crying.svg │ │ │ ├── sad-dizzy.svg │ │ │ ├── sad-squint.svg │ │ │ ├── sad.svg │ │ │ ├── sanitizer-alt.svg │ │ │ ├── sanitizer.svg │ │ │ ├── save.svg │ │ │ ├── scaling-left.svg │ │ │ ├── scaling-right.svg │ │ │ ├── scenery.svg │ │ │ ├── schedule.svg │ │ │ ├── screw.svg │ │ │ ├── scroll-h.svg │ │ │ ├── scroll.svg │ │ │ ├── search-alt.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── selfie.svg │ │ │ ├── server-alt.svg │ │ │ ├── server-connection.svg │ │ │ ├── server-network-alt.svg │ │ │ ├── server-network.svg │ │ │ ├── server.svg │ │ │ ├── servers.svg │ │ │ ├── servicemark.svg │ │ │ ├── setting.svg │ │ │ ├── share-alt.svg │ │ │ ├── share.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-exclamation.svg │ │ │ ├── shield-plus.svg │ │ │ ├── shield-question.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart-alt.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shovel.svg │ │ │ ├── shrink.svg │ │ │ ├── shuffle.svg │ │ │ ├── shutter-alt.svg │ │ │ ├── shutter.svg │ │ │ ├── sick.svg │ │ │ ├── sigma.svg │ │ │ ├── sign-alt.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-left.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign-right.svg │ │ │ ├── signal-alt-3.svg │ │ │ ├── signal-alt.svg │ │ │ ├── signal.svg │ │ │ ├── signin.svg │ │ │ ├── signout.svg │ │ │ ├── silence.svg │ │ │ ├── silent-squint.svg │ │ │ ├── sim-card.svg │ │ │ ├── sitemap.svg │ │ │ ├── skip-forward-alt.svg │ │ │ ├── skip-forward-circle.svg │ │ │ ├── skip-forward.svg │ │ │ ├── skype-alt.svg │ │ │ ├── skype.svg │ │ │ ├── slack-alt.svg │ │ │ ├── slack.svg │ │ │ ├── slider-h-range.svg │ │ │ ├── slider-h.svg │ │ │ ├── sliders-v-alt.svg │ │ │ ├── sliders-v.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-dizzy.svg │ │ │ ├── smile-squint-wink-alt.svg │ │ │ ├── smile-squint-wink.svg │ │ │ ├── smile-wink-alt.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snapchat-alt.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snow-flake.svg │ │ │ ├── snowflake-alt.svg │ │ │ ├── snowflake.svg │ │ │ ├── social-distancing.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort.svg │ │ │ ├── sorting.svg │ │ │ ├── space-key.svg │ │ │ ├── spade.svg │ │ │ ├── sperms.svg │ │ │ ├── spin.svg │ │ │ ├── spinner-alt.svg │ │ │ ├── spinner.svg │ │ │ ├── square-full.svg │ │ │ ├── square-shape.svg │ │ │ ├── square.svg │ │ │ ├── squint.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star.svg │ │ │ ├── step-backward-alt.svg │ │ │ ├── step-backward-circle.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope-alt.svg │ │ │ ├── stethoscope.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stopwatch-slash.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── streering.svg │ │ │ ├── stretcher.svg │ │ │ ├── subject.svg │ │ │ ├── subway-alt.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-alt.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── sunset.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swiggy.svg │ │ │ ├── swimmer.svg │ │ │ ├── sync-exclamation.svg │ │ │ ├── sync-slash.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-fast-alt.svg │ │ │ ├── tachometer-fast.svg │ │ │ ├── tag-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tape.svg │ │ │ ├── taxi.svg │ │ │ ├── tear.svg │ │ │ ├── telegram-alt.svg │ │ │ ├── telegram.svg │ │ │ ├── telescope.svg │ │ │ ├── temperature-empty.svg │ │ │ ├── temperature-half.svg │ │ │ ├── temperature-minus.svg │ │ │ ├── temperature-plus.svg │ │ │ ├── temperature-quarter.svg │ │ │ ├── temperature-three-quarter.svg │ │ │ ├── temperature.svg │ │ │ ├── tennis-ball.svg │ │ │ ├── text-fields.svg │ │ │ ├── text-size.svg │ │ │ ├── text-strike-through.svg │ │ │ ├── text.svg │ │ │ ├── th-large.svg │ │ │ ├── th-slash.svg │ │ │ ├── th.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thunderstorm-moon.svg │ │ │ ├── thunderstorm-sun.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── ticket.svg │ │ │ ├── times-circle.svg │ │ │ ├── times-square.svg │ │ │ ├── times.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── top-arrow-from-top.svg │ │ │ ├── top-arrow-to-top.svg │ │ │ ├── tornado.svg │ │ │ ├── trademark-circle.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-barrier.svg │ │ │ ├── traffic-light.svg │ │ │ ├── transaction.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash.svg │ │ │ ├── trees.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy.svg │ │ │ ├── trowel.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck.svg │ │ │ ├── tumblr-alt.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── tv-retro-slash.svg │ │ │ ├── tv-retro.svg │ │ │ ├── twitter-alt.svg │ │ │ ├── twitter.svg │ │ │ ├── umbrella.svg │ │ │ ├── unamused.svg │ │ │ ├── underline.svg │ │ │ ├── university.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload-alt.svg │ │ │ ├── upload.svg │ │ │ ├── usd-circle.svg │ │ │ ├── usd-square.svg │ │ │ ├── user-arrows.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-exclamation.svg │ │ │ ├── user-location.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-square.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-alt.svg │ │ │ ├── utensils-alt.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square-alt.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus.svg │ │ │ ├── vertical-align-bottom.svg │ │ │ ├── vertical-align-center.svg │ │ │ ├── vertical-align-top.svg │ │ │ ├── vertical-distribute-bottom.svg │ │ │ ├── vertical-distribution-center.svg │ │ │ ├── vertical-distribution-top.svg │ │ │ ├── video-question.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── virus-slash.svg │ │ │ ├── visual-studio.svg │ │ │ ├── vk-alt.svg │ │ │ ├── vk.svg │ │ │ ├── voicemail-rectangle.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── volume.svg │ │ │ ├── vuejs-alt.svg │ │ │ ├── vuejs.svg │ │ │ ├── wall.svg │ │ │ ├── wallet.svg │ │ │ ├── watch-alt.svg │ │ │ ├── watch.svg │ │ │ ├── water-drop-slash.svg │ │ │ ├── water-glass.svg │ │ │ ├── water.svg │ │ │ ├── web-grid-alt.svg │ │ │ ├── web-grid.svg │ │ │ ├── web-section-alt.svg │ │ │ ├── web-section.svg │ │ │ ├── webcam.svg │ │ │ ├── weight.svg │ │ │ ├── whatsapp-alt.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wheel-barrow.svg │ │ │ ├── wheelchair-alt.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi-router.svg │ │ │ ├── wifi-slash.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-moon.svg │ │ │ ├── wind-sun.svg │ │ │ ├── wind.svg │ │ │ ├── window-grid.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-section.svg │ │ │ ├── window.svg │ │ │ ├── windows.svg │ │ │ ├── windsock.svg │ │ │ ├── windy.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wrap-text.svg │ │ │ ├── wrench.svg │ │ │ ├── x-add.svg │ │ │ ├── x.svg │ │ │ ├── yen-circle.svg │ │ │ ├── yen.svg │ │ │ ├── yin-yang.svg │ │ │ └── youtube.svg │ ├── resources-theme-blimpkit │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── theme-blimpkit │ │ │ ├── css │ │ │ ├── blimpkit-auto.css │ │ │ ├── blimpkit-dark-variables.css │ │ │ ├── blimpkit-dark.css │ │ │ ├── blimpkit-light-variables.css │ │ │ └── blimpkit-light.css │ │ │ ├── extensions │ │ │ ├── theme-auto.extension │ │ │ ├── theme-auto.js │ │ │ ├── theme-dark.extension │ │ │ ├── theme-dark.js │ │ │ ├── theme-light.extension │ │ │ └── theme-light.js │ │ │ └── project.json │ ├── resources-theme-classic │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── theme-classic │ │ │ ├── css │ │ │ ├── classic-auto.css │ │ │ ├── classic-dark-variables.css │ │ │ ├── classic-dark.css │ │ │ ├── classic-light-variables.css │ │ │ └── classic-light.css │ │ │ ├── extensions │ │ │ ├── theme-auto.extension │ │ │ ├── theme-auto.js │ │ │ ├── theme-dark.extension │ │ │ ├── theme-dark.js │ │ │ ├── theme-light.extension │ │ │ └── theme-light.js │ │ │ └── project.json │ ├── resources-theme-high-contrast │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── theme-high-contrast │ │ │ ├── extensions │ │ │ ├── theme-dark.extension │ │ │ ├── theme-dark.js │ │ │ ├── theme-light.extension │ │ │ └── theme-light.js │ │ │ └── project.json │ └── resources-theme-mystic │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── theme-mystic │ │ ├── css │ │ ├── mystic-light-variables.css │ │ └── mystic-light.css │ │ ├── extensions │ │ ├── theme-light.extension │ │ └── theme-light.js │ │ └── project.json ├── security │ ├── security-basic │ │ ├── about.html │ │ └── pom.xml │ ├── security-client-registration │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── security │ │ │ └── oauth │ │ │ ├── client │ │ │ ├── CognitoDefaultTenantProperties.java │ │ │ └── KeycloakDefaultTenantProperties.java │ │ │ ├── domain │ │ │ └── ClientRegistration.java │ │ │ ├── endpoint │ │ │ ├── ClientRegistrationEndpoint.java │ │ │ └── ClientRegistrationParameter.java │ │ │ └── service │ │ │ ├── ClientRegistrationRepository.java │ │ │ ├── ClientRegistrationService.java │ │ │ └── DynamicClientRegistrationRepository.java │ ├── security-cognito │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── security │ │ │ │ └── cognito │ │ │ │ ├── CognitoLoginController.java │ │ │ │ ├── CognitoSecurityConfiguration.java │ │ │ │ └── CognitoTenantFilter.java │ │ │ └── resources │ │ │ └── application-cognito.properties │ ├── security-keycloak │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── components │ │ │ │ └── security │ │ │ │ └── keycloak │ │ │ │ ├── KeycloakLoginController.java │ │ │ │ ├── KeycloakSecurityConfiguration.java │ │ │ │ └── KeycloakTenantFilter.java │ │ │ └── resources │ │ │ ├── application-keycloak.properties │ │ │ └── static │ │ │ ├── home.html │ │ │ ├── index-busy.html │ │ │ ├── index.html │ │ │ └── logout.html │ ├── security-oauth2 │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── security │ │ │ └── oauth2 │ │ │ └── OAuth2SecurityConfiguration.java │ └── security-snowflake │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── components │ │ │ └── security │ │ │ └── snowflake │ │ │ ├── InvalidSecurityContextException.java │ │ │ ├── SnowflakeAdminUserInitializer.java │ │ │ ├── SnowflakeAuthFilter.java │ │ │ ├── SnowflakeLogoutHandler.java │ │ │ ├── SnowflakeSecurityConfig.java │ │ │ ├── SnowflakeUserDetailsService.java │ │ │ └── SnowflakeUserManager.java │ │ └── resources │ │ └── application-snowflake.properties ├── template │ ├── generation-header.txt │ ├── template-application-angular │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-angular │ │ │ ├── project.json │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-dao │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-dao │ │ │ ├── dao │ │ │ ├── entity.extensionpoint.template │ │ │ ├── entity.ts.template │ │ │ ├── reportEntity.ts.template │ │ │ ├── reportFileEntity.ts.template │ │ │ └── utils │ │ │ │ └── EntityUtils.ts.template │ │ │ ├── project.json │ │ │ ├── project.json.mjs │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-data │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-data │ │ │ ├── project.json │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-feed │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-feed │ │ │ ├── feed │ │ │ ├── entityFeed.job.template │ │ │ └── entityFeedSynchronizer.js.template │ │ │ ├── project.json │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-odata │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-odata │ │ │ ├── odata │ │ │ └── application.odata.template │ │ │ ├── project.json │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-rest │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-rest │ │ │ ├── api │ │ │ ├── api.openapi.template │ │ │ ├── entity.ts.template │ │ │ ├── reportEntity.ts.template │ │ │ ├── reportFileEntity.ts.template │ │ │ └── utils │ │ │ │ ├── ForbiddenError.ts.template │ │ │ │ ├── HttpUtils.ts.template │ │ │ │ └── ValidationError.ts.template │ │ │ ├── project.json │ │ │ ├── project.json.mjs │ │ │ ├── roles │ │ │ └── default-roles.roles.template │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-schema │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-schema │ │ │ ├── data │ │ │ └── application.schema.template │ │ │ ├── project.json │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-application-ui-angular │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-application-ui-angular │ │ │ ├── project.json │ │ │ ├── template │ │ │ ├── template-report-file.extension │ │ │ ├── template-report-file.js │ │ │ ├── template.extension │ │ │ ├── template.js │ │ │ └── ui │ │ │ │ ├── list.js │ │ │ │ ├── manage.js │ │ │ │ ├── masterDetailsList.js │ │ │ │ ├── masterDetailsManage.js │ │ │ │ ├── navigation.js │ │ │ │ ├── perspective.js │ │ │ │ ├── report.js │ │ │ │ ├── reportChart.js │ │ │ │ ├── reportFile.js │ │ │ │ ├── reportTable.js │ │ │ │ ├── setting.js │ │ │ │ └── template.js │ │ │ └── ui │ │ │ ├── navigation │ │ │ ├── perspective-group.extension.template │ │ │ └── perspective-group.js.template │ │ │ ├── perspective │ │ │ ├── index.html.template │ │ │ ├── list │ │ │ │ ├── controller.js.template │ │ │ │ ├── dialog-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-window │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── manage │ │ │ │ ├── controller.js.template │ │ │ │ ├── dialog-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-window │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── master-list │ │ │ │ ├── controller.js.template │ │ │ │ ├── detail │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── dialog-filter │ │ │ │ │ │ ├── controller.js.template │ │ │ │ │ │ ├── index.html.template │ │ │ │ │ │ ├── view.extension.template │ │ │ │ │ │ └── view.js.template │ │ │ │ │ ├── dialog-window │ │ │ │ │ │ ├── controller.js.template │ │ │ │ │ │ ├── index.html.template │ │ │ │ │ │ ├── view.extension.template │ │ │ │ │ │ └── view.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-window │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── main-details │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── master-manage │ │ │ │ ├── controller.js.template │ │ │ │ ├── detail │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── dialog-filter │ │ │ │ │ │ ├── controller.js.template │ │ │ │ │ │ ├── index.html.template │ │ │ │ │ │ ├── view.extension.template │ │ │ │ │ │ └── view.js.template │ │ │ │ │ ├── dialog-window │ │ │ │ │ │ ├── controller.js.template │ │ │ │ │ │ ├── index.html.template │ │ │ │ │ │ ├── view.extension.template │ │ │ │ │ │ └── view.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-window │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── main-details │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── perspective.extension.template │ │ │ ├── perspective.js.template │ │ │ ├── report-chart │ │ │ │ ├── controller.js.template │ │ │ │ ├── dialog-window-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── report-file │ │ │ │ ├── controller.js.template │ │ │ │ ├── dialog-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-print │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── print.extension.template │ │ │ │ │ └── print.js.template │ │ │ │ ├── dialog-window │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── report-table │ │ │ │ ├── controller.js.template │ │ │ │ ├── dialog-window-filter │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-window │ │ │ │ │ ├── controller.js.template │ │ │ │ │ ├── index.html.template │ │ │ │ │ ├── view.extension.template │ │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ └── report │ │ │ │ ├── controller.js.template │ │ │ │ ├── dialog-filter │ │ │ │ ├── controller.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ │ ├── dialog-print │ │ │ │ ├── controller.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── print.extension.template │ │ │ │ └── print.js.template │ │ │ │ ├── dialog-window │ │ │ │ ├── controller.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ │ ├── index.html.template │ │ │ │ ├── view.extension.template │ │ │ │ └── view.js.template │ │ │ ├── translations-report.json.template │ │ │ └── translations.json.template │ ├── template-bpm │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-bpm │ │ │ ├── api │ │ │ └── ProcessService.ts.template │ │ │ ├── process.bpmn.template │ │ │ ├── project.json │ │ │ ├── tasks │ │ │ └── my-service-task.ts │ │ │ ├── template.extension │ │ │ ├── template.js │ │ │ ├── trigger-new-process.form.template │ │ │ └── trigger-new-process.gen.template │ ├── template-camel-cron-route │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-camel-cron-route │ │ │ ├── cron-route.camel.template │ │ │ ├── handler.ts.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-camel-http-route │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-camel-http-route │ │ │ ├── handler.ts.template │ │ │ ├── http-route.camel.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-camel │ │ └── pom.xml │ ├── template-database-access │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-database-access │ │ │ ├── project.json │ │ │ ├── service.mjs.template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-database-table │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-database-table │ │ │ ├── database.table.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-database-view │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-database-view │ │ │ ├── database.view.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-editor │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-editor │ │ │ ├── configs │ │ │ └── editor.js.template │ │ │ ├── extensions │ │ │ └── editor.extension.template │ │ │ ├── index.html.template │ │ │ ├── js │ │ │ └── editor.js.template │ │ │ ├── project.json │ │ │ ├── template-image │ │ │ └── template.svg │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-form-builder-angularjs │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-form-builder-angularjs │ │ │ ├── project.json │ │ │ ├── template │ │ │ ├── template.extension │ │ │ └── template.js │ │ │ └── ui │ │ │ ├── controller.js.template │ │ │ ├── index.html.template │ │ │ ├── translations.json.template │ │ │ └── view.js.template │ ├── template-form │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-form │ │ │ ├── form │ │ │ ├── order.form.template │ │ │ ├── orders.ts.template │ │ │ ├── products.ts.template │ │ │ ├── project.json.template │ │ │ └── shippingOptions.json.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-hello-world │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-hello-world │ │ │ ├── project.json │ │ │ ├── service.mjs.template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-html │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-html │ │ │ ├── index.html.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-http-client │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-http-client │ │ │ ├── project.json │ │ │ ├── service.mjs.template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-job │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-job │ │ │ ├── handler.js.template │ │ │ ├── job.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-listener │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-listener │ │ │ ├── handler.js.template │ │ │ ├── listener.template │ │ │ ├── project.json │ │ │ ├── template.extension │ │ │ ├── template.js │ │ │ └── trigger.js.template │ ├── template-mapping-javascript │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-mapping-javascript │ │ │ ├── mapper.ts.template │ │ │ ├── project.json │ │ │ └── template │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-perspective │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-perspective │ │ │ ├── configs │ │ │ ├── perspective-menu.js.template │ │ │ └── perspective.js.template │ │ │ ├── extensions │ │ │ ├── perspective-menu.extension.template │ │ │ └── perspective.extension.template │ │ │ ├── images │ │ │ └── perspective.svg │ │ │ ├── index.html.template │ │ │ ├── js │ │ │ └── perspective.js.template │ │ │ ├── project.json │ │ │ ├── template-image │ │ │ └── perspective.svg │ │ │ ├── template.extension │ │ │ └── template.js │ ├── template-react │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-react │ │ │ ├── .gitignore.template │ │ │ ├── app.tsx.template │ │ │ ├── index.html.template │ │ │ ├── index.tsx.template │ │ │ ├── project.json │ │ │ ├── project.json.template │ │ │ ├── template.extension │ │ │ ├── template.js │ │ │ └── template.svg │ ├── template-typescript │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-typescript │ │ │ ├── project.json │ │ │ ├── project.json.template │ │ │ ├── service.ts.template │ │ │ ├── template.extension │ │ │ ├── template.js │ │ │ └── template.svg │ ├── template-view │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── dirigible │ │ │ └── template-view │ │ │ ├── configs │ │ │ └── view.js.template │ │ │ ├── extensions │ │ │ └── view.extension.template │ │ │ ├── index.html.template │ │ │ ├── js │ │ │ └── view.js.template │ │ │ ├── project.json │ │ │ ├── template-image │ │ │ └── view.svg │ │ │ ├── template.extension │ │ │ └── template.js │ └── template-websocket │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── template-websocket │ │ ├── client-handler.js.template │ │ ├── client.js.template │ │ ├── project.json │ │ ├── service-handler.js.template │ │ ├── template.extension │ │ ├── template.js │ │ └── websocket.template └── ui │ ├── editor-bpm │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-bpm │ │ ├── configs │ │ └── flowable-editor.js │ │ ├── editor-app │ │ ├── configuration │ │ │ ├── flowable-header-custom.js │ │ │ ├── flowable-toolbar-custom-actions.js │ │ │ ├── properties-assignment-controller.js │ │ │ ├── properties-case-reference-controller.js │ │ │ ├── properties-condition-expression-controller.js │ │ │ ├── properties-custom-controllers.js │ │ │ ├── properties-data-properties-controller.js │ │ │ ├── properties-decisiontable-reference-controller.js │ │ │ ├── properties-default-controllers.js │ │ │ ├── properties-duedate-controller.js │ │ │ ├── properties-event-listeners-controller.js │ │ │ ├── properties-execution-listeners-controller.js │ │ │ ├── properties-fields-controller.js │ │ │ ├── properties-form-properties-controller.js │ │ │ ├── properties-form-reference-controller.js │ │ │ ├── properties-in-parameters-controller.js │ │ │ ├── properties-message-definitions-controller.js │ │ │ ├── properties-message-scope-controller.js │ │ │ ├── properties-multiinstance-controller.js │ │ │ ├── properties-ordering-controller.js │ │ │ ├── properties-out-parameters-controller.js │ │ │ ├── properties-planitem-dropdown-controller.js │ │ │ ├── properties-process-reference-controller.js │ │ │ ├── properties-sequenceflow-order-controller.js │ │ │ ├── properties-signal-definitions-controller.js │ │ │ ├── properties-signal-scope-controller.js │ │ │ ├── properties-task-listeners-controller.js │ │ │ ├── properties-transition-event-controller.js │ │ │ ├── properties.js │ │ │ ├── properties │ │ │ │ ├── assignment-display-template.html │ │ │ │ ├── assignment-popup.html │ │ │ │ ├── assignment-write-template.html │ │ │ │ ├── boolean-property-template.html │ │ │ │ ├── case-reference-display-template.html │ │ │ │ ├── case-reference-popup.html │ │ │ │ ├── case-reference-write-template.html │ │ │ │ ├── condition-expression-display-template.html │ │ │ │ ├── condition-expression-popup.html │ │ │ │ ├── condition-expression-write-template.html │ │ │ │ ├── data-properties-display-template.html │ │ │ │ ├── data-properties-popup.html │ │ │ │ ├── data-properties-write-template.html │ │ │ │ ├── decisiontable-reference-display-template.html │ │ │ │ ├── decisiontable-reference-popup.html │ │ │ │ ├── decisiontable-reference-write-template.html │ │ │ │ ├── default-value-display-template.html │ │ │ │ ├── duedate-display-template.html │ │ │ │ ├── duedate-popup.html │ │ │ │ ├── duedate-write-template.html │ │ │ │ ├── errorgrid-critical.html │ │ │ │ ├── event-listeners-display-template.html │ │ │ │ ├── event-listeners-popup.html │ │ │ │ ├── event-listeners-write-template.html │ │ │ │ ├── execution-listeners-display-template.html │ │ │ │ ├── execution-listeners-popup.html │ │ │ │ ├── execution-listeners-write-template.html │ │ │ │ ├── feedback-popup.html │ │ │ │ ├── fields-display-template.html │ │ │ │ ├── fields-popup.html │ │ │ │ ├── fields-write-template.html │ │ │ │ ├── form-properties-display-template.html │ │ │ │ ├── form-properties-popup.html │ │ │ │ ├── form-properties-write-template.html │ │ │ │ ├── form-reference-display-template.html │ │ │ │ ├── form-reference-popup.html │ │ │ │ ├── form-reference-write-template.html │ │ │ │ ├── in-parameters-display-template.html │ │ │ │ ├── in-parameters-popup.html │ │ │ │ ├── in-parameters-write-template.html │ │ │ │ ├── message-definitions-display-template.html │ │ │ │ ├── message-definitions-popup.html │ │ │ │ ├── message-definitions-write-template.html │ │ │ │ ├── message-property-write-template.html │ │ │ │ ├── multiinstance-property-write-template.html │ │ │ │ ├── ordering-property-write-template.html │ │ │ │ ├── out-parameters-display-template.html │ │ │ │ ├── out-parameters-popup.html │ │ │ │ ├── out-parameters-write-template.html │ │ │ │ ├── planitem-dropdown-read-template.html │ │ │ │ ├── planitem-dropdown-write-template.html │ │ │ │ ├── process-reference-display-template.html │ │ │ │ ├── process-reference-popup.html │ │ │ │ ├── process-reference-write-template.html │ │ │ │ ├── sequenceflow-order-display-template.html │ │ │ │ ├── sequenceflow-order-popup.html │ │ │ │ ├── sequenceflow-order-write-template.html │ │ │ │ ├── signal-definitions-display-template.html │ │ │ │ ├── signal-definitions-popup.html │ │ │ │ ├── signal-definitions-write-template.html │ │ │ │ ├── signal-property-write-template.html │ │ │ │ ├── string-property-write-mode-template.html │ │ │ │ ├── task-listeners-display-template.html │ │ │ │ ├── task-listeners-popup.html │ │ │ │ ├── task-listeners-write-template.html │ │ │ │ ├── text-popup.html │ │ │ │ ├── text-property-write-template.html │ │ │ │ └── transition-event-write-template.html │ │ │ ├── toolbar-custom-actions.js │ │ │ ├── toolbar-default-actions.js │ │ │ ├── toolbar.js │ │ │ └── url-config.js │ │ ├── define-data-controller.js │ │ ├── editor-config.js │ │ ├── editor-controller.js │ │ ├── editor-utils.js │ │ ├── editor.html │ │ ├── editormanager.js │ │ ├── eventbus.js │ │ ├── header-controller.js │ │ ├── partials │ │ │ ├── process-tree-list.html │ │ │ ├── root-stencil-item-template.html │ │ │ └── stencil-item-template.html │ │ ├── plugins.xml │ │ ├── popups │ │ │ ├── define-data.html │ │ │ ├── icon-template.html │ │ │ ├── save-model.html │ │ │ ├── select-shape.html │ │ │ ├── unsaved-changes.html │ │ │ └── validate-model.html │ │ ├── process-navigator-controller.js │ │ ├── select-shape-controller.js │ │ ├── stencil-controller.js │ │ ├── theme │ │ │ ├── stencils.css │ │ │ └── style.css │ │ └── toolbar-controller.js │ │ ├── extensions │ │ └── flowable.extension │ │ ├── index.html │ │ ├── project.json │ │ ├── scripts │ │ ├── app-cfg.js │ │ ├── app.js │ │ ├── common │ │ │ ├── controllers │ │ │ │ └── about.js │ │ │ ├── directives.js │ │ │ ├── providers-config.js │ │ │ └── services │ │ │ │ ├── recursion-helper.js │ │ │ │ └── resource-service.js │ │ ├── configuration │ │ │ ├── app-definition-toolbar-default-actions.js │ │ │ ├── app-definition-toolbar.js │ │ │ ├── decision-table-toolbar-default-actions.js │ │ │ ├── decision-table-toolbar.js │ │ │ ├── form-builder-toolbar-default-actions.js │ │ │ ├── form-builder-toolbar.js │ │ │ └── url-config.js │ │ ├── controllers │ │ │ ├── app-definition-builder.js │ │ │ ├── app-definition-toolbar-controller.js │ │ │ ├── app-definition.js │ │ │ ├── app-definitions.js │ │ │ ├── casemodel.js │ │ │ ├── casemodels.js │ │ │ ├── decision-table-editor.js │ │ │ ├── decision-table-toolbar-controller.js │ │ │ ├── decision-table.js │ │ │ ├── decision-tables.js │ │ │ ├── form-builder.js │ │ │ ├── form-readonly-view.js │ │ │ ├── form-toolbar-controller.js │ │ │ ├── form.js │ │ │ ├── forms.js │ │ │ ├── model-common-actions.js │ │ │ ├── process.js │ │ │ └── processes.js │ │ ├── editor-directives.js │ │ ├── jquery-2.0.3.min.js │ │ ├── resource-loader.js │ │ └── services │ │ │ ├── decision-table-service.js │ │ │ ├── form-services.js │ │ │ ├── identity-services.js │ │ │ └── util-services.js │ │ └── views │ │ ├── app-definition-builder.html │ │ ├── app-definition.html │ │ ├── app-definitions.html │ │ ├── casemodel.html │ │ ├── casemodels.html │ │ ├── decision-table-editor.html │ │ ├── decision-table.html │ │ ├── decision-tables.html │ │ ├── form-builder.html │ │ ├── form.html │ │ ├── forms.html │ │ ├── popover │ │ ├── formfield-edit-popover.html │ │ ├── history.html │ │ ├── select-app-icon.html │ │ ├── select-app-theme.html │ │ └── select-group-popover.html │ │ ├── popup │ │ ├── app-definition-create.html │ │ ├── app-definition-delete.html │ │ ├── app-definition-duplicate.html │ │ ├── app-definition-import.html │ │ ├── app-definition-models-included.html │ │ ├── app-definition-publish.html │ │ ├── app-definition-save-model.html │ │ ├── app-definitions-import.html │ │ ├── casemodel-create.html │ │ ├── casemodel-duplicate.html │ │ ├── casemodel-import.html │ │ ├── decision-table-create.html │ │ ├── decision-table-duplicate.html │ │ ├── decision-table-edit-hit-policy.html │ │ ├── decision-table-edit-input-expression.html │ │ ├── decision-table-edit-output-expression.html │ │ ├── decision-table-import.html │ │ ├── decision-table-save-model.html │ │ ├── form-create.html │ │ ├── form-duplicate.html │ │ ├── form-save-model.html │ │ ├── model-delete.html │ │ ├── model-edit.html │ │ ├── model-use-as-new-version.html │ │ ├── process-create.html │ │ ├── process-duplicate.html │ │ ├── process-import.html │ │ └── subprocess-create.html │ │ ├── process.html │ │ ├── processes.html │ │ └── templates │ │ ├── decision-table-header-template.html │ │ ├── decision-table-headercell-template.html │ │ └── form-builder-element-template.html │ ├── editor-csv │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-csv │ │ ├── configs │ │ └── csv-editor.js │ │ ├── css │ │ └── csv.css │ │ ├── editor.html │ │ ├── extensions │ │ └── csv-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-csvim │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-csvim │ │ ├── configs │ │ └── csvim-editor.js │ │ ├── editor.html │ │ ├── extensions │ │ └── csvim-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-data-structures │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-data-structures │ │ ├── configs │ │ ├── table-editor.js │ │ └── view-editor.js │ │ ├── editors │ │ ├── table │ │ │ ├── editor.html │ │ │ └── editor.js │ │ └── view │ │ │ ├── editor.html │ │ │ └── editor.js │ │ ├── extensions │ │ ├── table-editor.extension │ │ └── view-editor.extension │ │ └── project.json │ ├── editor-entity │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-entity │ │ ├── configs │ │ ├── details-window.js │ │ ├── entity-editor.js │ │ ├── nav-details-window.js │ │ └── reference-window.js │ │ ├── css │ │ └── styles.css │ │ ├── dialogs │ │ ├── details.html │ │ ├── js │ │ │ ├── details.js │ │ │ ├── nav-details.js │ │ │ └── reference.js │ │ ├── nav-details.html │ │ └── reference.html │ │ ├── editors │ │ └── config │ │ │ └── keyhandler-minimal.xml │ │ ├── extensions │ │ ├── details-window.extension │ │ ├── entity.extension │ │ ├── nav-details-window.extension │ │ ├── reference-window.extension │ │ ├── transformer.extension │ │ └── workspace-on-save.extension │ │ ├── images │ │ ├── connector.gif │ │ ├── dot.gif │ │ ├── green-dot.gif │ │ ├── loading.gif │ │ └── spacer.gif │ │ ├── js │ │ ├── clipboard.js │ │ ├── dialogs.js │ │ ├── editor.js │ │ ├── model.js │ │ ├── serializer.js │ │ ├── underscore.js │ │ └── widgets.js │ │ ├── modeler.html │ │ ├── project.json │ │ └── template │ │ ├── transform-edm.js │ │ ├── transformer-on-save.js │ │ └── transformer-template.js │ ├── editor-extensions │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-extensions │ │ ├── configs │ │ ├── extension-editor.js │ │ └── extensionpoint-editor.js │ │ ├── editors │ │ ├── extension │ │ │ ├── editor.html │ │ │ └── editor.js │ │ └── extensionpoint │ │ │ ├── editor.html │ │ │ └── editor.js │ │ ├── extensions │ │ ├── extension-editor.extension │ │ └── extensionpoint-editor.extension │ │ └── project.json │ ├── editor-form-builder │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-form-builder │ │ ├── configs │ │ └── editor.js │ │ ├── css │ │ └── editor.css │ │ ├── editor.html │ │ ├── extensions │ │ └── editor.extension │ │ ├── images │ │ ├── combobox.svg │ │ └── select.svg │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-image │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-image │ │ ├── configs │ │ └── image-editor.js │ │ ├── editor.html │ │ ├── extensions │ │ └── image-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-integrations │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-integrations │ │ ├── configs │ │ └── integrations-editor.js │ │ ├── css │ │ └── theme.css │ │ ├── designer │ │ ├── asset-manifest.json │ │ ├── components │ │ │ ├── components.json │ │ │ └── components.properties │ │ ├── example │ │ │ ├── aws-cloudwatch-sink.kamelet.yaml │ │ │ ├── aws-s3-cdc-source.kamelet.yaml │ │ │ ├── aws-s3-source.kamelet.yaml │ │ │ ├── demo.camel.yaml │ │ │ └── postgresql-source.kamelet.yaml │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── kamelets │ │ │ ├── kamelets.properties │ │ │ └── kamelets.yaml │ │ ├── manifest.json │ │ ├── robots.txt │ │ ├── snippets │ │ │ ├── org.apache.camel.AggregationStrategy │ │ │ └── org.apache.camel.Processor │ │ └── static │ │ │ ├── css │ │ │ ├── main.cad1c473.css │ │ │ └── main.cad1c473.css.map │ │ │ ├── js │ │ │ ├── main.0447b661.js │ │ │ ├── main.0447b661.js.LICENSE.txt │ │ │ └── main.0447b661.js.map │ │ │ └── media │ │ │ ├── RedHatDisplay-Bold.d8d66dd2281610675aca.woff2 │ │ │ ├── RedHatDisplay-BoldItalic.b01a8365f7214919a9c3.woff2 │ │ │ ├── RedHatDisplay-Medium.66ac08a9a7d29ae51581.woff2 │ │ │ ├── RedHatDisplay-MediumItalic.ed292ec87cce0d76fd3c.woff2 │ │ │ ├── RedHatDisplayVF-Italic.813182e673c38ef5ee4b.woff2 │ │ │ ├── RedHatDisplayVF.18ca482120faaa701d8b.woff2 │ │ │ ├── RedHatMono-Italic.841cdd0ebb3d9038a7e7.woff2 │ │ │ ├── RedHatMono-Regular.57234ce675330fa60781.woff2 │ │ │ ├── RedHatMonoVF-Italic.6e3027616d8de472723c.woff2 │ │ │ ├── RedHatMonoVF.e4faf134e53e0f37296b.woff2 │ │ │ ├── RedHatText-Italic.aa07940756a803076b34.woff2 │ │ │ ├── RedHatText-Medium.9c02e9a1e10fbc86466d.woff2 │ │ │ ├── RedHatText-MediumItalic.e0f30d27bec7c8dbb6fc.woff2 │ │ │ ├── RedHatText-Regular.b36d694117bf12672d49.woff2 │ │ │ ├── RedHatTextVF-Italic.078865af129336cde269.woff2 │ │ │ ├── RedHatTextVF.c33624692c8b41e36780.woff2 │ │ │ ├── fa-solid-900.c2b7c03209f0d3558e85.woff2 │ │ │ └── pf-v5-pficon.c06f4d6490c387fd1d92.woff2 │ │ ├── editor.html │ │ ├── extensions │ │ └── integrations-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-jobs │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-jobs │ │ ├── configs │ │ └── job-editor.js │ │ ├── editor.html │ │ ├── extensions │ │ └── job-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-listeners │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-listeners │ │ ├── configs │ │ └── listener-editor.js │ │ ├── editor.html │ │ ├── extensions │ │ └── listener-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-mapping │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-mapping │ │ ├── configs │ │ └── mapping-editor.js │ │ ├── css │ │ └── styles.css │ │ ├── editors │ │ └── config │ │ │ └── keyhandler-minimal.xml │ │ ├── extensions │ │ └── mapping.extension │ │ ├── images │ │ ├── connector.gif │ │ ├── dot.gif │ │ ├── green-dot.gif │ │ ├── loading.gif │ │ └── spacer.gif │ │ ├── js │ │ ├── editor.js │ │ ├── model.js │ │ ├── serializer.js │ │ └── underscore.js │ │ ├── modeler.html │ │ └── project.json │ ├── editor-monaco-extensions │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-monaco-extensions │ │ ├── api │ │ ├── dts.js │ │ ├── java-dts-data.js │ │ ├── modules.js │ │ ├── suggestions.js │ │ └── utils │ │ │ ├── dtsParser.js │ │ │ ├── moduleInfoCache.js │ │ │ ├── modulesParser.js │ │ │ └── suggestionsParser.js │ │ ├── extensions │ │ └── api.extensionpoint │ │ └── project.json │ ├── editor-monaco │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-monaco │ │ ├── acorn.js │ │ ├── api │ │ ├── extensions │ │ │ ├── core.js │ │ │ ├── coreFileTypes.extension │ │ │ └── fileTypes.extensionpoint │ │ └── fileTypes.js │ │ ├── configs │ │ ├── diff-view.js │ │ ├── editor-settings.js │ │ └── editor-view.js │ │ ├── css │ │ ├── editor.css │ │ └── embeddable.css │ │ ├── diff-view.html │ │ ├── editor.html │ │ ├── embeddable │ │ └── editor.js │ │ ├── extensions │ │ ├── code-editor.extension │ │ ├── diff-view.extension │ │ └── editor-settings.extension │ │ ├── js │ │ ├── assignmentsParser.js │ │ ├── editor.js │ │ ├── parser │ │ │ └── acorn-loose.js │ │ └── workers │ │ │ └── computeDiff.js │ │ ├── project.json │ │ └── settings │ │ └── editor.html │ ├── editor-report │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-report │ │ ├── configs │ │ ├── menu-template-report.js │ │ └── report-editor.js │ │ ├── editor.html │ │ ├── extensions │ │ ├── menu-template-report.extension │ │ └── report-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── editor-schema │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-schema │ │ ├── configs │ │ └── schema-editor.js │ │ ├── css │ │ └── styles.css │ │ ├── editors │ │ └── config │ │ │ └── keyhandler-minimal.xml │ │ ├── extensions │ │ └── schema.extension │ │ ├── images │ │ ├── connector.gif │ │ ├── dot.gif │ │ ├── green-dot.gif │ │ ├── loading.gif │ │ └── spacer.gif │ │ ├── js │ │ ├── clipboard.js │ │ ├── editor.js │ │ ├── model.js │ │ ├── serializer.js │ │ ├── sql.js │ │ └── widgets.js │ │ ├── modeler.html │ │ └── project.json │ ├── editor-security │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-security │ │ ├── configs │ │ ├── access-editor.js │ │ └── roles-editor.js │ │ ├── editors │ │ ├── access │ │ │ ├── editor.html │ │ │ └── editor.js │ │ └── roles │ │ │ ├── editor.html │ │ │ └── editor.js │ │ ├── extensions │ │ ├── access-editor.extension │ │ └── roles-editor.extension │ │ └── project.json │ ├── editor-websockets │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── editor-websockets │ │ ├── configs │ │ └── websocket-editor.js │ │ ├── editor.html │ │ ├── extensions │ │ └── websocket-editor.extension │ │ ├── js │ │ └── editor.js │ │ └── project.json │ ├── ext-documents-content-type-ms │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── ext-documents-content-type-ms │ │ ├── extensions │ │ ├── content-type.extension │ │ └── content-type.js │ │ └── project.json │ ├── menu-bpm │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-bpm │ │ ├── extensions │ │ └── menu-bpm.extension │ │ ├── project.json │ │ └── templates │ │ └── bpm.js │ ├── menu-camel │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-integration │ │ ├── extensions │ │ ├── menu-integration-route-definition.extension │ │ └── menu-integration-route-step-handler.extension │ │ ├── project.json │ │ └── templates │ │ ├── integration-route-definition.js │ │ └── integration-route-step-handler.js │ ├── menu-csv │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-csv │ │ ├── extensions │ │ ├── menu-csv.extension │ │ └── menu-csvim.extension │ │ ├── project.json │ │ └── templates │ │ ├── menu-csv.js │ │ └── menu-csvim.js │ ├── menu-database │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-database │ │ ├── extensions │ │ ├── menu-table.extension │ │ └── menu-view.extension │ │ ├── project.json │ │ └── templates │ │ ├── table.js │ │ └── view.js │ ├── menu-entity │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-entity │ │ ├── extensions │ │ └── menu-edm.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-edm.js │ ├── menu-extensions │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-extensions │ │ ├── extensions │ │ ├── menu-extension.extension │ │ └── menu-extensionpoint.extension │ │ ├── project.json │ │ └── templates │ │ ├── menu-extension.js │ │ └── menu-extensionpoint.js │ ├── menu-form-builder │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-form-builder │ │ ├── extensions │ │ └── menu-form.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-form.js │ ├── menu-help │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-help │ │ ├── configs │ │ └── help.js │ │ ├── extensions │ │ ├── menu-help-dashboard.extension │ │ └── menu-help.extension │ │ ├── project.json │ │ └── translations │ │ ├── bg-BG │ │ └── translation.json │ │ └── en-US │ │ └── translation.json │ ├── menu-jobs │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-jobs │ │ ├── extensions │ │ └── menu-job.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-job.js │ ├── menu-listeners │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-listeners │ │ ├── extensions │ │ └── menu-listener.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-listener.js │ ├── menu-mapping │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-mapping │ │ ├── extensions │ │ └── menu-dmm.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-dmm.js │ ├── menu-projects │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-projects │ │ ├── extensions │ │ ├── menu-html.extension │ │ ├── menu-mjs.extension │ │ └── menu-ts.extension │ │ ├── project.json │ │ └── templates │ │ ├── menu-html.js │ │ ├── menu-mjs.js │ │ └── menu-ts.js │ ├── menu-schema │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-schema │ │ ├── extensions │ │ └── menu-dsm.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-dsm.js │ ├── menu-security │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-security │ │ ├── extensions │ │ ├── menu-access.extension │ │ └── menu-roles.extension │ │ ├── project.json │ │ └── templates │ │ ├── menu-access.js │ │ └── menu-roles.js │ ├── menu-websockets │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── menu-websockets │ │ ├── extensions │ │ └── menu-websocket.extension │ │ ├── project.json │ │ └── templates │ │ └── menu-websocket.js │ ├── perspective-database │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-database │ │ ├── configs │ │ ├── database-perspective.js │ │ └── menu │ │ │ └── database-menu.js │ │ ├── extensions │ │ ├── database-menu.extension │ │ └── database-perspective.extension │ │ ├── images │ │ └── database.svg │ │ ├── index.html │ │ └── project.json │ ├── perspective-documents │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-documents │ │ ├── configs │ │ └── documents.js │ │ ├── extensions │ │ ├── perspective-documents.extension │ │ └── view-documents.extension │ │ └── project.json │ ├── perspective-git │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-git │ │ ├── configs │ │ └── git-perspective.js │ │ ├── extensions │ │ └── git-perspective.extension │ │ ├── images │ │ └── git.svg │ │ ├── index.html │ │ ├── project.json │ │ └── services │ │ └── env.js │ ├── perspective-jobs │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-jobs │ │ ├── configs │ │ ├── jobs.js │ │ └── perspective-menu.js │ │ ├── extensions │ │ ├── jobs-perspective.extension │ │ └── perspective-menu.extension │ │ ├── images │ │ └── jobs.svg │ │ ├── index.html │ │ └── project.json │ ├── perspective-operations │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-operations │ │ ├── api │ │ └── artefacts │ │ │ ├── Utils.mjs │ │ │ ├── artefacts.extensionpoint │ │ │ ├── artefacts.mjs │ │ │ ├── bpmn │ │ │ ├── artefacts-bpmn.extension │ │ │ └── artefacts-bpmn.mjs │ │ │ ├── camel │ │ │ ├── artefacts-camel.extension │ │ │ └── artefacts-camel.mjs │ │ │ ├── confluence │ │ │ ├── artefacts-confluence.extension │ │ │ └── artefacts-confluence.mjs │ │ │ ├── csv-file │ │ │ ├── artefacts-csv-file.extension │ │ │ └── artefacts-csv-file.mjs │ │ │ ├── csv │ │ │ ├── artefacts-csv.extension │ │ │ └── artefacts-csv.mjs │ │ │ ├── csvim │ │ │ ├── artefacts-csvim.extension │ │ │ └── artefacts-csvim.mjs │ │ │ ├── data-schemas │ │ │ ├── artefacts-data-schemas.extension │ │ │ └── artefacts-data-schemas.mjs │ │ │ ├── data-sources │ │ │ ├── artefacts-data-sources.extension │ │ │ └── artefacts-data-sources.mjs │ │ │ ├── data-tables │ │ │ ├── artefacts-data-tables.extension │ │ │ └── artefacts-data-tables.mjs │ │ │ ├── data-views │ │ │ ├── artefacts-data-views.extension │ │ │ └── artefacts-data-views.mjs │ │ │ ├── entities │ │ │ ├── artefacts-entities.extension │ │ │ └── artefacts-entities.mjs │ │ │ ├── extension-points │ │ │ ├── artefacts-extension-points.extension │ │ │ └── artefacts-extension-points.mjs │ │ │ ├── extensions │ │ │ ├── artefacts-extensions.extension │ │ │ └── artefacts-extensions.mjs │ │ │ ├── jobs │ │ │ ├── artefacts-jobs.extension │ │ │ └── artefacts-jobs.mjs │ │ │ ├── listeners │ │ │ ├── artefacts-listeners.extension │ │ │ └── artefacts-listeners.mjs │ │ │ ├── markdown │ │ │ ├── artefacts-markdown.extension │ │ │ └── artefacts-markdown.mjs │ │ │ ├── odata-container │ │ │ ├── artefacts-odata-container.extension │ │ │ └── artefacts-odata-container.mjs │ │ │ ├── odata-handler │ │ │ ├── artefacts-odata-handler.extension │ │ │ └── artefacts-odata-handler.mjs │ │ │ ├── odata-mapping │ │ │ ├── artefacts-odata-mapping.extension │ │ │ └── artefacts-odata-mapping.mjs │ │ │ ├── odata-schema │ │ │ ├── artefacts-odata-schema.extension │ │ │ └── artefacts-odata-schema.mjs │ │ │ ├── odata │ │ │ ├── artefacts-odata.extension │ │ │ └── artefacts-odata.mjs │ │ │ ├── openapi │ │ │ ├── artefacts-openapi.extension │ │ │ └── artefacts-openapi.mjs │ │ │ ├── security-access │ │ │ ├── artefacts-security-access.extension │ │ │ └── artefacts-security-access.mjs │ │ │ ├── security-roles │ │ │ ├── artefacts-security-roles.extension │ │ │ └── artefacts-security-roles.mjs │ │ │ └── websockets │ │ │ ├── artefacts-websockets.extension │ │ │ └── artefacts-websockets.mjs │ │ ├── configs │ │ ├── operations.js │ │ └── perspective-menu.js │ │ ├── extensions │ │ ├── perspective-menu.extension │ │ └── perspective.extension │ │ ├── images │ │ └── operations.svg │ │ ├── index.html │ │ └── project.json │ ├── perspective-processes │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-processes │ │ ├── configs │ │ ├── bpm-historic-process-instances-details-window.js │ │ ├── bpm-historic-process-instances-view.js │ │ ├── bpm-perspective.js │ │ ├── bpm-process-context-details-window.js │ │ ├── bpm-process-context-view.js │ │ ├── bpm-process-instances-details-window.js │ │ ├── bpm-process-instances-view.js │ │ ├── bpm-process-jobs-details-window.js │ │ ├── bpm-process-jobs-view.js │ │ ├── bpm-process-viewer.js │ │ ├── bpm-task-details-window.js │ │ ├── bpm-tasks-view.js │ │ └── perspective-menu.js │ │ ├── dialogs │ │ ├── bpm-historic-process-instances-details.html │ │ ├── bpm-process-context-details.html │ │ ├── bpm-process-instances-details.html │ │ ├── bpm-process-jobs-details.html │ │ └── bpm-task-details.html │ │ ├── extensions │ │ ├── bpm-historic-process-instances-details-window.extension │ │ ├── bpm-historic-process-instances-view.extension │ │ ├── bpm-perspective.extension │ │ ├── bpm-process-context-details-window.extension │ │ ├── bpm-process-context-view.extension │ │ ├── bpm-process-instances-details-window.extension │ │ ├── bpm-process-instances-view.extension │ │ ├── bpm-process-jobs-details-window.extension │ │ ├── bpm-process-jobs-view.extension │ │ ├── bpm-process-viewer.extension │ │ ├── bpm-task-details.extension │ │ ├── bpm-tasks-view.extension │ │ └── perspective-menu.extension │ │ ├── images │ │ └── process.svg │ │ ├── js │ │ ├── bpm-perspective.js │ │ ├── time-utils.js │ │ └── variable-utils.js │ │ ├── processes.html │ │ ├── project.json │ │ └── views │ │ ├── bpm-historic-process-instances.html │ │ ├── bpm-process-context.html │ │ ├── bpm-process-instances.html │ │ ├── bpm-process-jobs.html │ │ ├── bpm-process-viewer.html │ │ ├── bpm-tasks.html │ │ ├── js │ │ ├── bpm-historic-process-instances.js │ │ ├── bpm-process-context.js │ │ ├── bpm-process-instances.js │ │ ├── bpm-process-jobs.js │ │ ├── bpm-process-viewer.js │ │ └── bpm-tasks.js │ │ └── styles │ │ └── bpm-process-viewer.css │ ├── perspective-security │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-security │ │ ├── configs │ │ ├── perspective-menu.js │ │ └── security-perspective.js │ │ ├── extensions │ │ ├── perspective-menu.extension │ │ └── perspective.extension │ │ ├── images │ │ └── security.svg │ │ ├── index.html │ │ └── project.json │ ├── perspective-settings │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-settings │ │ ├── configs │ │ └── settings.js │ │ ├── extensions │ │ └── perspective-utility.extension │ │ ├── images │ │ └── settings.svg │ │ ├── js │ │ └── settings.js │ │ ├── project.json │ │ └── settings.html │ ├── perspective-tracing │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-tracing │ │ ├── configs │ │ ├── tracing-perspective.js │ │ ├── tracing-tasks-view.js │ │ └── tracing-variables-view.js │ │ ├── extensions │ │ ├── tracing-perspective.extension │ │ ├── tracing-tasks-view.extension │ │ └── tracing-variables-view.extension │ │ ├── images │ │ └── tracing.svg │ │ ├── index.html │ │ ├── project.json │ │ ├── service │ │ └── enable-tracing.js │ │ └── views │ │ ├── js │ │ ├── tracing-tasks.js │ │ └── tracing-variables.js │ │ ├── tracing-tasks.html │ │ └── tracing-variables.html │ ├── perspective-workbench │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── perspective-workbench │ │ ├── configs │ │ ├── menu │ │ │ └── perspective-menu.js │ │ └── perspective.js │ │ ├── extensions │ │ ├── perspective-menu.extension │ │ └── perspective.extension │ │ ├── images │ │ └── workbench.svg │ │ ├── index.html │ │ ├── js │ │ └── workbench.js │ │ ├── project.json │ │ └── translations │ │ ├── bg-BG │ │ └── translation.json │ │ └── en-US │ │ └── translation.json │ ├── service-actions │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-actions │ │ ├── actions.js │ │ └── project.json │ ├── service-extensions │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-extensions │ │ ├── extensionPoints.mjs │ │ └── project.json │ ├── service-generate │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-generate │ │ ├── generate.js │ │ ├── generate.mjs │ │ ├── project.json │ │ └── template │ │ ├── generateUtils.js │ │ └── parameterUtils.js │ ├── service-git │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-git │ │ ├── git.js │ │ └── project.json │ ├── service-publisher │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-publisher │ │ ├── project.json │ │ └── publisher.js │ ├── service-registry │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-registry │ │ ├── project.json │ │ └── registry.js │ ├── service-repository │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-repository │ │ ├── project.json │ │ ├── repository-hub.js │ │ └── repository.js │ ├── service-template │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-template │ │ ├── api │ │ └── templates.js │ │ ├── project.json │ │ └── templates.js │ ├── service-transport │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-transport │ │ ├── project.json │ │ └── transport.js │ ├── service-workspace │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── service-workspace │ │ ├── project.json │ │ ├── workspace-hub.js │ │ └── workspace.js │ ├── settings-locale │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── settings-locale │ │ ├── configs │ │ └── locale.js │ │ ├── extensions │ │ ├── locale-dashboard.extension │ │ └── locale.extension │ │ ├── index.html │ │ ├── js │ │ └── locale.js │ │ ├── project.json │ │ └── translations │ │ ├── bg-BG │ │ └── translation.json │ │ └── en-US │ │ └── translation.json │ ├── shell-ide │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── shell-ide │ │ ├── configs │ │ ├── general.js │ │ └── shell.js │ │ ├── extensions │ │ ├── general.extension │ │ └── shell.extension │ │ ├── index.html │ │ ├── project.json │ │ └── settings │ │ ├── general.html │ │ └── js │ │ └── general.js │ ├── view-artefacts │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-artefacts │ │ ├── artefacts.html │ │ ├── configs │ │ └── artefacts-view.js │ │ ├── extensions │ │ └── artefacts.extension │ │ └── project.json │ ├── view-configurations │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-configurations │ │ ├── configs │ │ └── configurations-view.js │ │ ├── configurations.html │ │ ├── extensions │ │ └── configurations.extension │ │ └── project.json │ ├── view-console │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-console │ │ ├── configs │ │ └── console-view.js │ │ ├── console.html │ │ ├── extensions │ │ └── console.extension │ │ ├── js │ │ └── console.js │ │ └── project.json │ ├── view-data-structures │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-data-structures │ │ ├── configs │ │ ├── tables-view.js │ │ └── views-view.js │ │ ├── extensions │ │ ├── tables.extension │ │ └── views.extension │ │ ├── project.json │ │ ├── tables.html │ │ └── views.html │ ├── view-databases │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-databases │ │ ├── configs │ │ ├── crud-dialog.js │ │ ├── database-dialog.js │ │ ├── databases-view.js │ │ ├── explorer-view.js │ │ └── result-view.js │ │ ├── databases.html │ │ ├── dialogs │ │ ├── crud-dialog.html │ │ ├── crud-dialog.js │ │ ├── database-dialog.html │ │ └── database-dialog.js │ │ ├── explorer.html │ │ ├── extensions │ │ ├── crud-dialog.extension │ │ ├── database-dialog.extension │ │ ├── database-explorer-view.extension │ │ ├── databases.extension │ │ └── result.extension │ │ ├── js │ │ ├── databaseTable.js │ │ ├── databases.js │ │ ├── explorer.js │ │ └── result.js │ │ ├── project.json │ │ └── result.html │ ├── view-debugger │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-debugger │ │ ├── configs │ │ └── debugger-view.js │ │ ├── debugger.html │ │ ├── extensions │ │ └── debugger.extension │ │ ├── js │ │ └── debugger.js │ │ └── project.json │ ├── view-extensions │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-extensions │ │ ├── configs │ │ └── extensions-view.js │ │ ├── extensions.html │ │ ├── extensions │ │ └── extensions.extension │ │ └── project.json │ ├── view-git │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-git │ │ ├── configs │ │ ├── git-projects.js │ │ ├── history-view.js │ │ ├── local-view.js │ │ ├── remote-view.js │ │ └── staging-view.js │ │ ├── extensions │ │ ├── git-branches-local.extension │ │ ├── git-branches-remote.extension │ │ ├── git-projects.extension │ │ ├── git-staging.extension │ │ └── history-view.extension │ │ ├── git-projects.html │ │ ├── history.html │ │ ├── js │ │ ├── git-projects.js │ │ ├── history.js │ │ ├── local.js │ │ ├── remote.js │ │ └── staging.js │ │ ├── local.html │ │ ├── project.json │ │ ├── remote.html │ │ └── staging.html │ ├── view-import │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-import │ │ ├── configs │ │ ├── import-dialog.js │ │ └── import-view.js │ │ ├── extensions │ │ ├── import-dialog.extension │ │ └── import.extension │ │ ├── import.html │ │ ├── js │ │ └── import.js │ │ └── project.json │ ├── view-jobs │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-jobs │ │ ├── configs │ │ ├── job-assign-window.js │ │ ├── job-logs-window.js │ │ ├── job-trigger-window.js │ │ └── jobs-view.js │ │ ├── dialogs │ │ ├── job-assign.html │ │ ├── job-logs.html │ │ └── job-trigger.html │ │ ├── extensions │ │ ├── job-assign.extension │ │ ├── job-logs.extension │ │ ├── job-trigger.extension │ │ └── jobs.extension │ │ ├── jobs.html │ │ ├── js │ │ └── jobs.js │ │ └── project.json │ ├── view-listeners │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-listeners │ │ ├── configs │ │ └── listeners-view.js │ │ ├── extensions │ │ └── listeners.extension │ │ ├── listeners.html │ │ └── project.json │ ├── view-loggers │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-loggers │ │ ├── configs │ │ └── loggers-view.js │ │ ├── extensions │ │ └── loggers.extension │ │ ├── js │ │ └── loggers.js │ │ ├── loggers.html │ │ └── project.json │ ├── view-logs │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-logs │ │ ├── configs │ │ └── logs-view.js │ │ ├── extensions │ │ └── logs.extension │ │ ├── js │ │ └── logs.js │ │ ├── logs.html │ │ └── project.json │ ├── view-preview │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-preview │ │ ├── configs │ │ └── preview-view.js │ │ ├── extensions │ │ └── preview.extension │ │ ├── js │ │ └── preview.js │ │ ├── preview.html │ │ └── project.json │ ├── view-problems │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-problems │ │ ├── configs │ │ ├── problem-details-window.js │ │ └── problems-view.js │ │ ├── extensions │ │ ├── problem-details.extension │ │ └── problems.extension │ │ ├── js │ │ └── problems.js │ │ ├── problem-details.html │ │ ├── problems.html │ │ └── project.json │ ├── view-projects │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-projects │ │ ├── configs │ │ └── projects-view.js │ │ ├── extensions │ │ └── projects.extension │ │ ├── images │ │ └── debugger.svg │ │ ├── js │ │ └── projects.js │ │ ├── project.json │ │ └── projects.html │ ├── view-properties │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-properties │ │ ├── configs │ │ └── properties-view.js │ │ ├── extensions │ │ └── properties.extension │ │ ├── project.json │ │ └── properties.html │ ├── view-registry │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-registry │ │ ├── configs │ │ └── registry-view.js │ │ ├── extensions │ │ ├── registry-view.extension │ │ └── workspace-after-unpublish.extension │ │ ├── js │ │ └── registry.js │ │ ├── project.json │ │ ├── registry.html │ │ └── services │ │ └── unpublish-typescript.js │ ├── view-repository │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-repository │ │ ├── configs │ │ └── repository-view.js │ │ ├── extensions │ │ └── repository.extension │ │ ├── js │ │ └── repository.js │ │ ├── project.json │ │ └── repository.html │ ├── view-search │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-search │ │ ├── configs │ │ └── search-view.js │ │ ├── extensions │ │ └── search.extension │ │ ├── js │ │ └── search.js │ │ ├── project.json │ │ └── search.html │ ├── view-security │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-security │ │ ├── configs │ │ ├── access-view.js │ │ ├── client-registration-dialog.js │ │ ├── client-registrations-view.js │ │ ├── roles-view.js │ │ ├── tenant-dialog.js │ │ ├── tenants-view.js │ │ ├── user-dialog.js │ │ └── users-view.js │ │ ├── dialogs │ │ ├── client-registration-dialog.html │ │ ├── client-registration-dialog.js │ │ ├── tenant-dialog.html │ │ ├── tenant-dialog.js │ │ ├── user-dialog.html │ │ └── user-dialog.js │ │ ├── extensions │ │ ├── access.extension │ │ ├── client-registration-dialog.extension │ │ ├── client-registrations.extension │ │ ├── roles.extension │ │ ├── tenant-dialog.extension │ │ ├── tenants.extension │ │ ├── user-dialog.extension │ │ └── users.extension │ │ ├── project.json │ │ └── views │ │ ├── access.html │ │ ├── client-registrations.html │ │ ├── client-registrations.js │ │ ├── roles.html │ │ ├── tenants.html │ │ ├── tenants.js │ │ ├── users.html │ │ └── users.js │ ├── view-sql │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-sql │ │ ├── configs │ │ └── sql.js │ │ ├── extensions │ │ └── sql.extension │ │ ├── js │ │ └── sql.js │ │ ├── project.json │ │ ├── sql.html │ │ └── styles │ │ └── sql.css │ ├── view-swagger │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-swagger │ │ ├── configs │ │ └── openapi-view.js │ │ ├── extensions │ │ └── openapi.extension │ │ ├── project.json │ │ └── ui │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-bundle.js.map │ │ ├── swagger-ui-es-bundle-core.js │ │ ├── swagger-ui-es-bundle-core.js.gz │ │ ├── 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 │ ├── view-terminal │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-terminal │ │ ├── configs │ │ └── terminal-view.js │ │ ├── extensions │ │ └── terminal.extension │ │ ├── js │ │ └── token.js │ │ ├── project.json │ │ └── terminal.html │ ├── view-transfer │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-transfer │ │ ├── configs │ │ └── transfer-view.js │ │ ├── extensions │ │ └── transfer.extension │ │ ├── js │ │ └── transfer.js │ │ ├── project.json │ │ └── transfer.html │ ├── view-translation │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-translation │ │ ├── configs │ │ └── translation-view.js │ │ ├── extensions │ │ └── translation.extension │ │ ├── js │ │ └── translation.js │ │ ├── project.json │ │ └── translation.html │ ├── view-websockets │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-websockets │ │ ├── configs │ │ └── websockets-view.js │ │ ├── extensions │ │ └── websockets.extension │ │ ├── project.json │ │ └── websockets.html │ ├── view-welcome │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── dirigible │ │ └── view-welcome │ │ ├── configs │ │ └── welcome.js │ │ ├── extensions │ │ └── welcome.extension │ │ ├── js │ │ └── welcome.js │ │ ├── project.json │ │ └── welcome.html │ └── window-about │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ └── main │ └── resources │ └── META-INF │ └── dirigible │ └── window-about │ ├── about.html │ ├── configs │ └── about-window.js │ ├── extensions │ ├── about-window-dashboard.extension │ └── about-window.extension │ ├── js │ └── about.js │ ├── project.json │ └── translations │ ├── bg-BG │ └── translation.json │ └── en-US │ └── translation.json ├── dependencies └── pom.xml ├── dirigible-formatter.xml ├── epl-v20.html ├── findbugs-exclude.xml ├── licensing-header.txt ├── logo ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── dirigible-horizontal.png ├── dirigible-horizontal.psd ├── dirigible-horizontal.svg ├── dirigible-logo-200x200-square-black.png ├── dirigible-logo-200x200-square.png ├── dirigible-logo-200x200-transparent.png ├── dirigible-logo-200x200.png ├── dirigible-logo-2Kx2K-square-black.png ├── dirigible-logo-2Kx2K-square.png ├── dirigible-logo-2Kx2K-square.svg ├── dirigible-logo-2Kx2K-transparent.png ├── dirigible-logo-2Kx2K.png ├── dirigible-logo-2Kx2K.svg ├── dirigible-logo-32x32-square-black.png ├── dirigible-logo-32x32-transparent.png ├── dirigible-logo-32x32.png ├── dirigible-logo-symbol.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── favicon.png ├── misc ├── eclipse │ ├── spring-start-dirigibile-keycloak.launch │ ├── spring-start-dirigibile-oauth.launch │ └── spring-start-dirigibile.launch └── secrets │ ├── npm-aerokit-token.png │ └── npm-dirigiblelabs-token.png ├── modules ├── .gitignore ├── commons │ ├── commons-config │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── config │ │ │ │ ├── Configuration.java │ │ │ │ ├── DirigibleConfig.java │ │ │ │ ├── ResourcesCache.java │ │ │ │ └── StaticObjects.java │ │ │ └── test │ │ │ ├── java │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── config │ │ │ │ └── ConfigurationTest.java │ │ │ └── resources │ │ │ ├── dirigible.properties │ │ │ ├── precedence-no-env.properties │ │ │ ├── precedence.properties │ │ │ └── test.properties │ ├── commons-helpers │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── api │ │ │ │ ├── context │ │ │ │ ├── ContextException.java │ │ │ │ ├── InvalidStateException.java │ │ │ │ └── ThreadContextFacade.java │ │ │ │ └── helpers │ │ │ │ ├── BytesHelper.java │ │ │ │ ├── ContentTypeHelper.java │ │ │ │ ├── DateTimeUtils.java │ │ │ │ ├── FileSystemUtils.java │ │ │ │ ├── GsonHelper.java │ │ │ │ └── NameValuePair.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── commons │ │ │ └── api │ │ │ └── helpers │ │ │ └── DateTimeUtilsTest.java │ ├── commons-process │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── process │ │ │ │ ├── Commandline.java │ │ │ │ ├── Piper.java │ │ │ │ ├── ProcessUtils.java │ │ │ │ └── execution │ │ │ │ ├── DefaultProcessExecutor.java │ │ │ │ ├── ErrorsRedirectProcessExecutor.java │ │ │ │ ├── ProcessExecutionException.java │ │ │ │ ├── ProcessExecutionFuture.java │ │ │ │ ├── ProcessExecutionOptions.java │ │ │ │ ├── ProcessExecutor.java │ │ │ │ └── output │ │ │ │ ├── OutputsPair.java │ │ │ │ └── ProcessResult.java │ │ │ └── test │ │ │ └── java │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── commons │ │ │ └── process │ │ │ └── test │ │ │ └── ProcessTest.java │ ├── commons-resources │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── logging │ │ │ │ ├── ConsoleLogRecord.java │ │ │ │ ├── ConsoleLoggingAppender.java │ │ │ │ ├── ConsoleWebsocketConfig.java │ │ │ │ └── ConsoleWebsocketHandler.java │ │ │ └── resources │ │ │ ├── application-common.properties │ │ │ ├── dirigible-commons.properties │ │ │ ├── logback.xml │ │ │ ├── public │ │ │ ├── error.html │ │ │ └── error │ │ │ │ ├── 403.html │ │ │ │ ├── 404.html │ │ │ │ └── 500.html │ │ │ ├── quartz.properties │ │ │ └── static │ │ │ ├── home.html │ │ │ ├── index-busy.html │ │ │ ├── index.html │ │ │ └── logout.html │ ├── commons-timeout │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── commons │ │ │ └── timeout │ │ │ └── TimeLimited.java │ ├── commons-xml2json │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── utils │ │ │ │ └── xml2json │ │ │ │ ├── Xml2Json.java │ │ │ │ └── Xml2Json2.java │ │ │ └── test │ │ │ ├── java │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── commons │ │ │ │ └── utils │ │ │ │ └── xml2json │ │ │ │ └── test │ │ │ │ ├── Xml2Json2Test.java │ │ │ │ └── Xml2JsonTest.java │ │ │ └── resources │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── commons │ │ │ └── utils │ │ │ └── xml2json │ │ │ └── test │ │ │ ├── xml2json │ │ │ ├── array.json │ │ │ ├── array.xml │ │ │ ├── attrs.json │ │ │ ├── attrs.xml │ │ │ ├── basic.json │ │ │ ├── basic.xml │ │ │ ├── cdata.json │ │ │ ├── cdata.xml │ │ │ ├── cdata_attrs.json │ │ │ ├── cdata_attrs.xml │ │ │ ├── element_attrs.json │ │ │ ├── element_attrs.xml │ │ │ ├── element_attrs_multiple.json │ │ │ └── element_attrs_multiple.xml │ │ │ └── xml2json2 │ │ │ ├── array.json │ │ │ ├── array.xml │ │ │ ├── attrs.json │ │ │ ├── attrs.xml │ │ │ ├── basic.json │ │ │ ├── basic.xml │ │ │ ├── cdata.json │ │ │ ├── cdata.xml │ │ │ ├── cdata_attrs.json │ │ │ ├── cdata_attrs.xml │ │ │ ├── element_attrs.json │ │ │ ├── element_attrs.xml │ │ │ ├── element_attrs_multiple.json │ │ │ └── element_attrs_multiple.xml │ └── pom.xml ├── database │ ├── database-h2 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── h2 │ │ │ │ │ └── H2Database.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── org.eclipse.dirigible.database.api.IDatabase │ │ │ │ └── dirigible-database-h2.properties │ │ │ └── test │ │ │ └── java │ │ │ └── META-INF │ │ │ └── MANIFEST.MF │ ├── database-mongodb-jdbc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── mongodb │ │ │ └── jdbc │ │ │ ├── Driver.java │ │ │ ├── MongoDBConnection.java │ │ │ ├── MongoDBDataSource.java │ │ │ ├── MongoDBDatabaseMetadata.java │ │ │ ├── MongoDBParameterMetaData.java │ │ │ ├── MongoDBPreparedStatement.java │ │ │ ├── MongoDBResultSet.java │ │ │ ├── MongoDBResultSetMetaData.java │ │ │ ├── MongoDBStatement.java │ │ │ └── util │ │ │ ├── ExportImportUtil.java │ │ │ ├── JsonArrayMongoIteratorResultSet.java │ │ │ ├── ListMongoIterable.java │ │ │ ├── LocalIteratorMongoCursor.java │ │ │ ├── SingleColumnMongoIteratorResultSet.java │ │ │ └── SingleColumnStaticResultSet.java │ ├── database-persistence │ │ ├── .gitignore │ │ ├── README.md │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── database │ │ │ │ └── persistence │ │ │ │ ├── IEntityManagerInterceptor.java │ │ │ │ ├── PersistenceException.java │ │ │ │ ├── PersistenceFactory.java │ │ │ │ ├── PersistenceManager.java │ │ │ │ ├── model │ │ │ │ ├── PersistenceTableColumnModel.java │ │ │ │ ├── PersistenceTableIndexModel.java │ │ │ │ ├── PersistenceTableModel.java │ │ │ │ └── PersistenceTableRelationModel.java │ │ │ │ ├── parser │ │ │ │ ├── PersistenceAnnotationsParser.java │ │ │ │ ├── PersistenceJsonParser.java │ │ │ │ └── Serializer.java │ │ │ │ ├── processors │ │ │ │ ├── AbstractPersistenceProcessor.java │ │ │ │ ├── IPersistenceProcessor.java │ │ │ │ ├── entity │ │ │ │ │ ├── PersistenceDeleteProcessor.java │ │ │ │ │ ├── PersistenceExecuteProcessor.java │ │ │ │ │ ├── PersistenceInsertProcessor.java │ │ │ │ │ ├── PersistenceQueryProcessor.java │ │ │ │ │ └── PersistenceUpdateProcessor.java │ │ │ │ ├── identity │ │ │ │ │ ├── Identity.java │ │ │ │ │ ├── PersistenceCreateIdentityProcessor.java │ │ │ │ │ └── PersistenceNextValueIdentityProcessor.java │ │ │ │ ├── sequence │ │ │ │ │ ├── PersistenceCreateSequenceProcessor.java │ │ │ │ │ ├── PersistenceDropSequenceProcessor.java │ │ │ │ │ └── PersistenceNextValueSequenceProcessor.java │ │ │ │ └── table │ │ │ │ │ ├── PersistenceCreateTableProcessor.java │ │ │ │ │ └── PersistenceDropTableProcessor.java │ │ │ │ └── utils │ │ │ │ └── DatabaseMetadataUtil.java │ │ │ └── test │ │ │ ├── java │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── database │ │ │ │ └── persistence │ │ │ │ └── test │ │ │ │ ├── AbstractPersistenceManagerTest.java │ │ │ │ ├── AllDataTypes.java │ │ │ │ ├── Customer.java │ │ │ │ ├── GoldCustomer.java │ │ │ │ ├── Inquiry.java │ │ │ │ ├── MultiOrder.java │ │ │ │ ├── Offer.java │ │ │ │ ├── Order.java │ │ │ │ ├── PersistenceFactoryInheritanceTest.java │ │ │ │ ├── PersistenceFactoryTest.java │ │ │ │ ├── PersistenceJsonParserTest.java │ │ │ │ ├── PersistenceManagerAllDataTypesTest.java │ │ │ │ ├── PersistenceManagerEnumTest.java │ │ │ │ ├── PersistenceManagerGeneratedValueIdentityTest.java │ │ │ │ ├── PersistenceManagerGeneratedValueSequenceTest.java │ │ │ │ ├── PersistenceManagerGeneratedValueTableTest.java │ │ │ │ ├── PersistenceManagerInterceptorValueTest.java │ │ │ │ ├── PersistenceManagerNullValueTest.java │ │ │ │ ├── PersistenceManagerTest.java │ │ │ │ ├── PersistenceManagerUuidValueTest.java │ │ │ │ ├── Process.java │ │ │ │ └── Task.java │ │ │ └── resources │ │ │ ├── Customer.json │ │ │ └── database.properties │ ├── database-sql-h2 │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── sql │ │ │ │ │ └── dialects │ │ │ │ │ └── h2 │ │ │ │ │ ├── H2CreateBranchingBuilder.java │ │ │ │ │ ├── H2CreateTableBuilder.java │ │ │ │ │ ├── H2LastValueIdentityBuilder.java │ │ │ │ │ ├── H2NextValueSequenceBuilder.java │ │ │ │ │ ├── H2SqlDialect.java │ │ │ │ │ └── H2SqlDialectProvider.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── database │ │ │ └── sql │ │ │ └── dialects │ │ │ └── h2 │ │ │ ├── CreateTableTest.java │ │ │ ├── CreateViewTest.java │ │ │ ├── DeleteTest.java │ │ │ ├── DropTableTest.java │ │ │ ├── DropViewTest.java │ │ │ ├── InsertTest.java │ │ │ ├── SelectTest.java │ │ │ ├── SequenceTest.java │ │ │ └── UpdateTest.java │ ├── database-sql-hana │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── sql │ │ │ │ │ └── dialects │ │ │ │ │ └── hana │ │ │ │ │ ├── HanaAlterBranchingBuilder.java │ │ │ │ │ ├── HanaAlterTableBuilder.java │ │ │ │ │ ├── HanaConnectionEnhancer.java │ │ │ │ │ ├── HanaCreateBranchingBuilder.java │ │ │ │ │ ├── HanaCreatePublicSynonymBuilder.java │ │ │ │ │ ├── HanaCreateTableBuilder.java │ │ │ │ │ ├── HanaCreateTableTypeBuilder.java │ │ │ │ │ ├── HanaCreateTemporaryTableBuilder.java │ │ │ │ │ ├── HanaDatabaseConfigurator.java │ │ │ │ │ ├── HanaDropBranchingBuilder.java │ │ │ │ │ ├── HanaDropPublicSynonymBuilder.java │ │ │ │ │ ├── HanaDropSequenceBuilder.java │ │ │ │ │ ├── HanaDropTableTypeBuilder.java │ │ │ │ │ ├── HanaLastValueIdentityBuilder.java │ │ │ │ │ ├── HanaNextValueSequenceBuilder.java │ │ │ │ │ ├── HanaSqlDialect.java │ │ │ │ │ └── HanaSqlDialectProvider.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── database │ │ │ └── sql │ │ │ └── dialects │ │ │ └── hana │ │ │ ├── CreateViewTest.java │ │ │ ├── DeleteTest.java │ │ │ ├── DropTableTest.java │ │ │ ├── DropTableTypeTest.java │ │ │ ├── DropViewTest.java │ │ │ ├── FunctionTest.java │ │ │ ├── HanaCreateTableBuilderTest.java │ │ │ ├── HanaCreateTableTypeBuilderTest.java │ │ │ ├── InsertTest.java │ │ │ ├── ProcedureTest.java │ │ │ ├── SchemaTest.java │ │ │ ├── SelectTest.java │ │ │ ├── SequenceTest.java │ │ │ ├── SynonymTest.java │ │ │ └── UpdateTest.java │ ├── database-sql-mariadb │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── sql │ │ │ │ │ └── dialects │ │ │ │ │ └── mariadb │ │ │ │ │ ├── MariaDBCreateBranchingBuilder.java │ │ │ │ │ ├── MariaDBCreateSequenceBuilder.java │ │ │ │ │ ├── MariaDBCreateViewBuilder.java │ │ │ │ │ ├── MariaDBDeleteBuilder.java │ │ │ │ │ ├── MariaDBDropBranchingBuilder.java │ │ │ │ │ ├── MariaDBDropSequenceBuilder.java │ │ │ │ │ ├── MariaDBInsertBuilder.java │ │ │ │ │ ├── MariaDBLastValueIdentityBuilder.java │ │ │ │ │ ├── MariaDBNextValueSequenceBuilder.java │ │ │ │ │ ├── MariaDBSelectBuilder.java │ │ │ │ │ ├── MariaDBSqlDialect.java │ │ │ │ │ ├── MariaDBSqlDialectProvider.java │ │ │ │ │ └── MariaDBUpdateBuilder.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── database │ │ │ └── sql │ │ │ └── dialects │ │ │ └── mariadb │ │ │ ├── CreateTableTest.java │ │ │ ├── CreateTableTypeTest.java │ │ │ ├── CreateViewTest.java │ │ │ ├── DeleteTest.java │ │ │ ├── DropTableTest.java │ │ │ ├── DropTableTypeTest.java │ │ │ ├── DropViewTest.java │ │ │ ├── InsertTest.java │ │ │ ├── SelectTest.java │ │ │ ├── SequenceTest.java │ │ │ └── UpdateTest.java │ ├── database-sql-mongodb │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── database │ │ │ │ └── sql │ │ │ │ └── dialects │ │ │ │ └── mongodb │ │ │ │ ├── MongoDBSqlDialect.java │ │ │ │ └── MongoDBSqlDialectProvider.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ ├── database-sql-mysql │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── sql │ │ │ │ │ └── dialects │ │ │ │ │ └── mysql │ │ │ │ │ ├── MySQLCreateBranchingBuilder.java │ │ │ │ │ ├── MySQLCreateSequenceBuilder.java │ │ │ │ │ ├── MySQLCreateViewBuilder.java │ │ │ │ │ ├── MySQLDeleteBuilder.java │ │ │ │ │ ├── MySQLDropBranchingBuilder.java │ │ │ │ │ ├── MySQLDropSequenceBuilder.java │ │ │ │ │ ├── MySQLInsertBuilder.java │ │ │ │ │ ├── MySQLLastValueIdentityBuilder.java │ │ │ │ │ ├── MySQLNextValueSequenceBuilder.java │ │ │ │ │ ├── MySQLSelectBuilder.java │ │ │ │ │ ├── MySQLSqlDialect.java │ │ │ │ │ ├── MySQLSqlDialectProvider.java │ │ │ │ │ └── MySQLUpdateBuilder.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── database │ │ │ └── sql │ │ │ └── dialects │ │ │ └── mysql │ │ │ ├── CreateTableTest.java │ │ │ ├── CreateTableTypeTest.java │ │ │ ├── CreateViewTest.java │ │ │ ├── DeleteTest.java │ │ │ ├── DropTableTest.java │ │ │ ├── DropTableTypeTest.java │ │ │ ├── DropViewTest.java │ │ │ ├── InsertTest.java │ │ │ ├── SelectTest.java │ │ │ ├── SequenceTest.java │ │ │ └── UpdateTest.java │ ├── database-sql-postgres │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── sql │ │ │ │ │ └── dialects │ │ │ │ │ └── postgres │ │ │ │ │ ├── PostgresCreateBranchingBuilder.java │ │ │ │ │ ├── PostgresCreateViewBuilder.java │ │ │ │ │ ├── PostgresNextValueSequenceBuilder.java │ │ │ │ │ ├── PostgresSqlDialect.java │ │ │ │ │ └── PostgresSqlDialectProvider.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── database │ │ │ └── sql │ │ │ └── dialects │ │ │ └── postgres │ │ │ ├── CreateTableTest.java │ │ │ ├── CreateViewTest.java │ │ │ ├── DeleteTest.java │ │ │ ├── DropTableTest.java │ │ │ ├── DropViewTest.java │ │ │ ├── InsertTest.java │ │ │ ├── SelectTest.java │ │ │ ├── SequenceTest.java │ │ │ └── UpdateTest.java │ ├── database-sql-snowflake │ │ ├── .gitignore │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── database │ │ │ │ │ └── sql │ │ │ │ │ └── dialects │ │ │ │ │ └── snowflake │ │ │ │ │ ├── SnowflakeCreateBranchingBuilder.java │ │ │ │ │ ├── SnowflakeCreateTableBuilder.java │ │ │ │ │ ├── SnowflakeLastValueIdentityBuilder.java │ │ │ │ │ ├── SnowflakeNextValueSequenceBuilder.java │ │ │ │ │ ├── SnowflakeSqlDialect.java │ │ │ │ │ └── SnowflakeSqlDialectProvider.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.database.sql.ISqlDialectProvider │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── database │ │ │ └── sql │ │ │ └── dialects │ │ │ └── snowflake │ │ │ ├── CreateTableTest.java │ │ │ ├── CreateViewTest.java │ │ │ ├── DeleteTest.java │ │ │ ├── DropTableTest.java │ │ │ ├── DropViewTest.java │ │ │ ├── InsertTest.java │ │ │ ├── SelectTest.java │ │ │ ├── SequenceTest.java │ │ │ └── UpdateTest.java │ ├── database-sql │ │ ├── .gitignore │ │ ├── README.md │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── database │ │ │ │ └── sql │ │ │ │ ├── DataType.java │ │ │ │ ├── DataTypeUtils.java │ │ │ │ ├── DatabaseArtifactTypes.java │ │ │ │ ├── DatabaseType.java │ │ │ │ ├── ISqlBuilder.java │ │ │ │ ├── ISqlDialect.java │ │ │ │ ├── ISqlDialectProvider.java │ │ │ │ ├── ISqlFactory.java │ │ │ │ ├── ISqlKeywords.java │ │ │ │ ├── Modifiers.java │ │ │ │ ├── SqlException.java │ │ │ │ ├── SqlFactory.java │ │ │ │ ├── TableStatements.java │ │ │ │ ├── builders │ │ │ │ ├── AbstractCreateSqlBuilder.java │ │ │ │ ├── AbstractDropSqlBuilder.java │ │ │ │ ├── AbstractQuerySqlBuilder.java │ │ │ │ ├── AbstractSqlBuilder.java │ │ │ │ ├── AlterBranchingBuilder.java │ │ │ │ ├── CreateBranchingBuilder.java │ │ │ │ ├── DropBranchingBuilder.java │ │ │ │ ├── ExpressionBuilder.java │ │ │ │ ├── records │ │ │ │ │ ├── DeleteBuilder.java │ │ │ │ │ ├── InsertBuilder.java │ │ │ │ │ ├── SelectBuilder.java │ │ │ │ │ └── UpdateBuilder.java │ │ │ │ ├── schema │ │ │ │ │ ├── CreateSchemaBuilder.java │ │ │ │ │ └── DropSchemaBuilder.java │ │ │ │ ├── sequence │ │ │ │ │ ├── AlterSequenceBuilder.java │ │ │ │ │ ├── CreateSequenceBuilder.java │ │ │ │ │ ├── DropSequenceBuilder.java │ │ │ │ │ ├── LastValueIdentityBuilder.java │ │ │ │ │ └── NextValueSequenceBuilder.java │ │ │ │ ├── synonym │ │ │ │ │ ├── CreateSynonymBuilder.java │ │ │ │ │ └── DropSynonymBuilder.java │ │ │ │ ├── table │ │ │ │ │ ├── AbstractCreateTableConstraintBuilder.java │ │ │ │ │ ├── AbstractTableBuilder.java │ │ │ │ │ ├── AlterTableBuilder.java │ │ │ │ │ ├── CreateTableBuilder.java │ │ │ │ │ ├── CreateTableCheckBuilder.java │ │ │ │ │ ├── CreateTableForeignKeyBuilder.java │ │ │ │ │ ├── CreateTableIndexBuilder.java │ │ │ │ │ ├── CreateTablePrimaryKeyBuilder.java │ │ │ │ │ ├── CreateTableUniqueIndexBuilder.java │ │ │ │ │ ├── CreateTemporaryTableBuilder.java │ │ │ │ │ ├── DropConstraintBuilder.java │ │ │ │ │ └── DropTableBuilder.java │ │ │ │ ├── tableType │ │ │ │ │ ├── CreateTableTypeBuilder.java │ │ │ │ │ └── DropTableTypeBuilder.java │ │ │ │ ├── user │ │ │ │ │ └── CreateUserBuilder.java │ │ │ │ └── view │ │ │ │ │ ├── CreateViewBuilder.java │ │ │ │ │ └── DropViewBuilder.java │ │ │ │ └── dialects │ │ │ │ ├── DefaultSqlDialect.java │ │ │ │ └── SqlDialectFactory.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── database │ │ │ │ └── sql │ │ │ │ └── builders │ │ │ │ ├── records │ │ │ │ ├── DeleteRecordTest.java │ │ │ │ ├── InsertRecordTest.java │ │ │ │ ├── SelectRecordTest.java │ │ │ │ └── UpdateRecordsTest.java │ │ │ │ ├── sequence │ │ │ │ └── SequenceTest.java │ │ │ │ ├── table │ │ │ │ ├── AlterTableTest.java │ │ │ │ ├── CreateTableTest.java │ │ │ │ └── DropTableTest.java │ │ │ │ └── view │ │ │ │ ├── CreateViewTest.java │ │ │ │ └── DropViewTest.java │ │ │ └── resources │ │ │ └── dirigible.properties │ └── pom.xml ├── engines │ ├── engine-graalium │ │ ├── execution-core │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── graalium │ │ │ │ │ └── core │ │ │ │ │ ├── DirigibleJavascriptCodeRunner.java │ │ │ │ │ ├── DirigibleJavascriptHooksProvider.java │ │ │ │ │ ├── DirigibleJavascriptInterceptor.java │ │ │ │ │ ├── JavascriptSourceProvider.java │ │ │ │ │ ├── fs │ │ │ │ │ ├── DirigibleFileSystem.java │ │ │ │ │ ├── DirigibleFileSystemProvider.java │ │ │ │ │ └── DirigiblePath.java │ │ │ │ │ ├── globals │ │ │ │ │ ├── DirigibleContextGlobalObject.java │ │ │ │ │ └── DirigibleEngineTypeGlobalObject.java │ │ │ │ │ ├── modules │ │ │ │ │ ├── DirigibleEsmModuleResolver.java │ │ │ │ │ ├── DirigibleGlobalModuleResolver.java │ │ │ │ │ ├── DirigibleModule.java │ │ │ │ │ ├── DirigibleModuleESMProxyGenerator.java │ │ │ │ │ ├── DirigibleModuleResolver.java │ │ │ │ │ ├── DirigibleModulesMetadata.java │ │ │ │ │ ├── DirigibleSourceProvider.java │ │ │ │ │ └── ExternalModuleResolver.java │ │ │ │ │ └── polyfills │ │ │ │ │ └── RequirePolyfill.java │ │ │ │ └── resources │ │ │ │ └── polyfills │ │ │ │ └── require.js │ │ ├── execution │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── dirigible │ │ │ │ │ └── graalium │ │ │ │ │ └── core │ │ │ │ │ ├── CodeRunner.java │ │ │ │ │ ├── graal │ │ │ │ │ ├── ContextCreator.java │ │ │ │ │ ├── EngineCreator.java │ │ │ │ │ ├── Logging.java │ │ │ │ │ ├── ValueTransformer.java │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── Configuration.java │ │ │ │ │ └── globals │ │ │ │ │ │ ├── GlobalFunction.java │ │ │ │ │ │ └── GlobalObject.java │ │ │ │ │ ├── javascript │ │ │ │ │ ├── CalledFromJS.java │ │ │ │ │ ├── GraalJSCodeRunner.java │ │ │ │ │ ├── GraalJSFileSystem.java │ │ │ │ │ ├── GraalJSInterceptor.java │ │ │ │ │ ├── GraalJSSourceCreator.java │ │ │ │ │ ├── GuestLanguageException.java │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── Module.java │ │ │ │ │ │ ├── ModuleResolver.java │ │ │ │ │ │ ├── ModuleType.java │ │ │ │ │ │ ├── downloadable │ │ │ │ │ │ │ └── DownloadableModuleResolver.java │ │ │ │ │ │ └── java │ │ │ │ │ │ │ ├── JavaModuleResolver.java │ │ │ │ │ │ │ └── JavaPackageProxyGenerator.java │ │ │ │ │ └── polyfills │ │ │ │ │ │ ├── GlobalPolyfill.java │ │ │ │ │ │ └── JavascriptPolyfill.java │ │ │ │ │ └── python │ │ │ │ │ └── PythonCodeRunner.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── org.eclipse.dirigible.graalium.core.javascript.JavascriptCodeRunner │ │ │ │ └── polyfills │ │ │ │ ├── commonjs_require.js │ │ │ │ └── global.js │ │ └── pom.xml │ └── pom.xml ├── odata │ ├── odata-core-test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── engine │ │ │ │ └── odata2 │ │ │ │ └── sql │ │ │ │ ├── AbstractSQLProcessorTest.java │ │ │ │ ├── OData2RequestBuilder.java │ │ │ │ ├── OData2TestServiceFactory.java │ │ │ │ ├── OData2TestUtils.java │ │ │ │ ├── builder │ │ │ │ └── SQLQueryTestUtils.java │ │ │ │ └── test │ │ │ │ └── util │ │ │ │ ├── OData2TestUtils.java │ │ │ │ ├── Pair.java │ │ │ │ └── Triple.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── engine │ │ │ │ └── odata2 │ │ │ │ └── sql │ │ │ │ ├── ODataSQLBatchTest.java │ │ │ │ ├── ODataSQLInterceptorTest.java │ │ │ │ ├── ODataSQLProcessorAggregationTest.java │ │ │ │ ├── ODataSQLProcessorManyToManyTest.java │ │ │ │ ├── ODataSQLProcessorTest.java │ │ │ │ ├── ODataSQLProcessorViewTest.java │ │ │ │ ├── api │ │ │ │ └── SQLStatementParamTest.java │ │ │ │ ├── binding │ │ │ │ └── EdmTableBindingFactoryTest.java │ │ │ │ ├── builder │ │ │ │ ├── SQLSelectBuilderComplexTypeTest.java │ │ │ │ ├── SQLSelectBuilderExpandTest.java │ │ │ │ ├── SQLSelectBuilderNavigationPropertiesTest.java │ │ │ │ ├── SQLSelectBuilderTest.java │ │ │ │ ├── SQLUpdateBuilderTest.java │ │ │ │ └── SQLUtilsTest.java │ │ │ │ ├── clause │ │ │ │ ├── SQLJoinClauseTest.java │ │ │ │ ├── SQLOrderByClauseTest.java │ │ │ │ └── SQLWhereClauseTest.java │ │ │ │ ├── edm │ │ │ │ ├── CTEntity.java │ │ │ │ ├── Entity1.java │ │ │ │ ├── Entity2.java │ │ │ │ ├── Entity3.java │ │ │ │ ├── Entity4.java │ │ │ │ ├── Entity5.java │ │ │ │ └── Entity6.java │ │ │ │ ├── entities │ │ │ │ ├── Address.java │ │ │ │ ├── Car.java │ │ │ │ ├── Customer.java │ │ │ │ ├── Driver.java │ │ │ │ ├── Group.java │ │ │ │ ├── Owner.java │ │ │ │ ├── User.java │ │ │ │ ├── UsersToGroup.java │ │ │ │ └── View.java │ │ │ │ └── utils │ │ │ │ └── OData2UtilsTest.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── Address.json │ │ │ ├── CTEntity.json │ │ │ ├── Car.json │ │ │ ├── Customer.json │ │ │ ├── Driver.json │ │ │ ├── Entity1.json │ │ │ ├── Entity2.json │ │ │ ├── Entity3.json │ │ │ ├── Entity4.json │ │ │ ├── Entity5.json │ │ │ ├── Entity6.json │ │ │ ├── Group.json │ │ │ ├── Owner.json │ │ │ ├── User.json │ │ │ └── View.json │ │ │ ├── data │ │ │ ├── Addresses.csv │ │ │ ├── Cars.csv │ │ │ ├── Customer.csv │ │ │ ├── Drivers.csv │ │ │ ├── Groups.csv │ │ │ ├── Owners.csv │ │ │ ├── Users.csv │ │ │ ├── UsersToGroup.csv │ │ │ ├── View.csv │ │ │ └── contract.clob │ │ │ ├── dirigible.properties │ │ │ ├── liquibase │ │ │ ├── changelog.data.xml │ │ │ ├── changelog.schema.xml │ │ │ └── changelog.xml │ │ │ └── logback.xml │ ├── odata-core │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── engine │ │ │ │ └── odata2 │ │ │ │ └── sql │ │ │ │ ├── api │ │ │ │ ├── OData2EventHandler.java │ │ │ │ ├── OData2Exception.java │ │ │ │ ├── SQLClause.java │ │ │ │ ├── SQLInterceptor.java │ │ │ │ ├── SQLProcessor.java │ │ │ │ ├── SQLStatement.java │ │ │ │ ├── SQLStatementBuilder.java │ │ │ │ └── SQLStatementParam.java │ │ │ │ ├── binding │ │ │ │ ├── EdmTableBinding.java │ │ │ │ ├── EdmTableBindingFactory.java │ │ │ │ └── EdmTableBindingProvider.java │ │ │ │ ├── builder │ │ │ │ ├── AbstractQueryBuilder.java │ │ │ │ ├── EdmUtils.java │ │ │ │ ├── SQLContext.java │ │ │ │ ├── SQLDeleteBuilder.java │ │ │ │ ├── SQLInsertBuilder.java │ │ │ │ ├── SQLQueryBuilder.java │ │ │ │ ├── SQLSelectBuilder.java │ │ │ │ ├── SQLUpdateBuilder.java │ │ │ │ └── SQLUtils.java │ │ │ │ ├── clause │ │ │ │ ├── SQLGroupByClause.java │ │ │ │ ├── SQLJoinClause.java │ │ │ │ ├── SQLOrderByClause.java │ │ │ │ ├── SQLSelectClause.java │ │ │ │ ├── SQLWhereClause.java │ │ │ │ └── SQLWhereClauseVisitor.java │ │ │ │ ├── mapping │ │ │ │ └── DefaultEdmTableMappingProvider.java │ │ │ │ ├── processor │ │ │ │ ├── AbstractSQLProcessor.java │ │ │ │ ├── DefaultSQLProcessor.java │ │ │ │ ├── DummyOData2EventHandler.java │ │ │ │ ├── ExpandCallBack.java │ │ │ │ ├── ResultSetReader.java │ │ │ │ └── SQLInterceptorChain.java │ │ │ │ └── utils │ │ │ │ ├── OData2Constants.java │ │ │ │ ├── OData2Utils.java │ │ │ │ └── SingleConnectionDataSource.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.dirigible.engine.odata2.sql.api.OData2EventHandler │ ├── odata-samples-northwind │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── engine │ │ │ │ └── odata2 │ │ │ │ └── sql │ │ │ │ ├── AbstractODataNorthwindTest.java │ │ │ │ ├── CategoriesODataNorthwindTest.java │ │ │ │ ├── MetadataODataNorthwindTest.java │ │ │ │ └── entities │ │ │ │ └── northwind │ │ │ │ ├── AlphabeticalListOfProduct.java │ │ │ │ ├── Category.java │ │ │ │ ├── CategorySalesFor1997.java │ │ │ │ ├── CurrentProductList.java │ │ │ │ ├── Customer.java │ │ │ │ ├── CustomerAndSuppliersByCity.java │ │ │ │ ├── CustomerDemographic.java │ │ │ │ ├── Employee.java │ │ │ │ ├── INorthwindODataAssociations.java │ │ │ │ ├── Invoice.java │ │ │ │ ├── Order.java │ │ │ │ ├── OrderDetail.java │ │ │ │ ├── OrderDetailsExtended.java │ │ │ │ ├── OrderSubtotal.java │ │ │ │ ├── OrdersQry.java │ │ │ │ ├── Product.java │ │ │ │ ├── ProductSalesFor1997.java │ │ │ │ ├── ProductsAboveAveragePrice.java │ │ │ │ ├── ProductsByCategory.java │ │ │ │ ├── Region.java │ │ │ │ ├── SalesByCategory.java │ │ │ │ ├── SalesTotalsByAmounts.java │ │ │ │ ├── Shipper.java │ │ │ │ ├── SummaryOfSalesByQuarters.java │ │ │ │ ├── SummaryOfSalesByYears.java │ │ │ │ ├── Supplier.java │ │ │ │ └── Territory.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── AlphabeticalListOfProduct.json │ │ │ ├── Category.json │ │ │ ├── CategorySalesFor1997.json │ │ │ ├── CurrentProductList.json │ │ │ ├── Customer.json │ │ │ ├── CustomerAndSuppliersByCity.json │ │ │ ├── CustomerDemographic.json │ │ │ ├── Employee.json │ │ │ ├── Invoice.json │ │ │ ├── Order.json │ │ │ ├── OrderDetail.json │ │ │ ├── OrderDetailsExtended.json │ │ │ ├── OrderSubtotal.json │ │ │ ├── OrdersQry.json │ │ │ ├── Product.json │ │ │ ├── ProductSalesFor1997.json │ │ │ ├── ProductsAboveAveragePrice.json │ │ │ ├── ProductsByCategory.json │ │ │ ├── Region.json │ │ │ ├── SalesByCategory.json │ │ │ ├── SalesTotalsByAmounts.json │ │ │ ├── Shipper.json │ │ │ ├── SummaryOfSalesByQuarters.json │ │ │ ├── SummaryOfSalesByYears.json │ │ │ ├── Supplier.json │ │ │ └── Territory.json │ │ │ ├── data │ │ │ ├── Categories.csv │ │ │ ├── Products.csv │ │ │ └── picture.clob │ │ │ ├── dirigible.properties │ │ │ ├── liquibase │ │ │ ├── changelog-northwind.data.xml │ │ │ ├── changelog-northwind.schema.xml │ │ │ └── changelog-northwind.xml │ │ │ ├── logback.xml │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── engine │ │ │ └── odata2 │ │ │ └── sql │ │ │ ├── Categories-get.json │ │ │ ├── Categories-getById.json │ │ │ ├── Categories-navigationProductsGet.json │ │ │ ├── metadata.xml │ │ │ └── products-all.json │ └── pom.xml ├── parsers │ ├── apidoc │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── parsers │ │ │ └── typescript │ │ │ └── apidoc │ │ │ ├── ApiIndexGenerator.java │ │ │ ├── DocSanitizer.java │ │ │ ├── MarkdownIndexGenerator.java │ │ │ └── TypeScriptApiDocGenerator.java │ ├── pom.xml │ └── typescript │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── antlr4 │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── parsers │ │ │ │ └── typescript │ │ │ │ ├── TypeScriptLexer.g4 │ │ │ │ └── TypeScriptParser.g4 │ │ └── java │ │ │ ├── TypeScriptLexer.tokens │ │ │ ├── TypeScriptParser.tokens │ │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── parsers │ │ │ └── typescript │ │ │ ├── TypeScriptLexer.interp │ │ │ ├── TypeScriptLexer.java │ │ │ ├── TypeScriptLexerBase.java │ │ │ ├── TypeScriptParser.interp │ │ │ ├── TypeScriptParser.java │ │ │ ├── TypeScriptParserBase.java │ │ │ ├── TypeScriptParserBaseListener.java │ │ │ ├── TypeScriptParserBaseVisitor.java │ │ │ ├── TypeScriptParserListener.java │ │ │ └── TypeScriptParserVisitor.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── parsers │ │ │ └── typescript │ │ │ ├── ClassNameExtractorVisitor.java │ │ │ └── TypeScriptParserTest.java │ │ └── resources │ │ └── Car.ts ├── pom.xml └── repository │ ├── pom.xml │ ├── repository-api-test │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── dirigible │ │ └── repository │ │ └── generic │ │ ├── RepositoryGenericBigTextTest.java │ │ ├── RepositoryGenericBinaryTest.java │ │ ├── RepositoryGenericCacheTest.java │ │ ├── RepositoryGenericCollectionCopyTest.java │ │ ├── RepositoryGenericCollectionMoveTest.java │ │ ├── RepositoryGenericCollectionRenameTest.java │ │ ├── RepositoryGenericDeletePrefixTest.java │ │ ├── RepositoryGenericExportZipTest.java │ │ ├── RepositoryGenericFileRenameTest.java │ │ ├── RepositoryGenericGetAllPathsTest.java │ │ ├── RepositoryGenericImportZipTest.java │ │ ├── RepositoryGenericModifiedTest.java │ │ ├── RepositoryGenericMultiThreadTest.java │ │ ├── RepositoryGenericPathTest.java │ │ ├── RepositoryGenericRepositoryTest.java │ │ ├── RepositoryGenericSearchTest.java │ │ └── RepositoryGenericTextTest.java │ ├── repository-api │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── repository │ │ │ └── api │ │ │ ├── ICollection.java │ │ │ ├── IEntity.java │ │ │ ├── IEntityInformation.java │ │ │ ├── IMasterRepository.java │ │ │ ├── IRepository.java │ │ │ ├── IRepositoryCache.java │ │ │ ├── IRepositoryExporter.java │ │ │ ├── IRepositoryImporter.java │ │ │ ├── IRepositoryReader.java │ │ │ ├── IRepositorySearch.java │ │ │ ├── IRepositoryStructure.java │ │ │ ├── IRepositoryWriter.java │ │ │ ├── IResource.java │ │ │ ├── IResourceVersion.java │ │ │ ├── RepositoryCache.java │ │ │ ├── RepositoryCreationException.java │ │ │ ├── RepositoryException.java │ │ │ ├── RepositoryExportException.java │ │ │ ├── RepositoryImportException.java │ │ │ ├── RepositoryInitializationException.java │ │ │ ├── RepositoryNotFoundException.java │ │ │ ├── RepositoryPath.java │ │ │ ├── RepositoryReadException.java │ │ │ ├── RepositorySearchException.java │ │ │ ├── RepositoryVersioningException.java │ │ │ ├── RepositoryWriteException.java │ │ │ └── ResourceUtil.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.eclipse.dirigible.commons.api.service.IRestExceptionHandler │ ├── repository-cache │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── repository │ │ │ └── api │ │ │ └── CaffeineRepositoryCache.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.eclipse.dirigible.repository.api.IRepositoryCache │ ├── repository-local │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── dirigible │ │ │ │ └── repository │ │ │ │ ├── fs │ │ │ │ └── FileSystemRepository.java │ │ │ │ └── local │ │ │ │ ├── LocalCollection.java │ │ │ │ ├── LocalEntity.java │ │ │ │ ├── LocalEntityInformation.java │ │ │ │ ├── LocalFile.java │ │ │ │ ├── LocalFolder.java │ │ │ │ ├── LocalObject.java │ │ │ │ ├── LocalRepository.java │ │ │ │ ├── LocalRepositoryDao.java │ │ │ │ ├── LocalRepositoryException.java │ │ │ │ ├── LocalResource.java │ │ │ │ ├── LocalWorkspaceMapper.java │ │ │ │ └── module │ │ │ │ └── DummyMasterRepository.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.dirigible.commons.api.module.IDirigibleModule │ │ │ └── dirigible-repository-local.properties │ │ └── test │ │ ├── java │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── repository │ │ │ └── local │ │ │ ├── LocalRepositoryBigTextTest.java │ │ │ ├── LocalRepositoryBinaryTest.java │ │ │ ├── LocalRepositoryCacheTest.java │ │ │ ├── LocalRepositoryCollectionCopyTest.java │ │ │ ├── LocalRepositoryCollectionMoveTest.java │ │ │ ├── LocalRepositoryCollectionRenameTest.java │ │ │ ├── LocalRepositoryCopyGitTest.java │ │ │ ├── LocalRepositoryCopyTest.java │ │ │ ├── LocalRepositoryExportZipTest.java │ │ │ ├── LocalRepositoryFileRenameTest.java │ │ │ ├── LocalRepositoryGetAllPathsTest.java │ │ │ ├── LocalRepositoryImportZipTest.java │ │ │ ├── LocalRepositoryModifiedTest.java │ │ │ ├── LocalRepositoryMultiThreadTest.java │ │ │ ├── LocalRepositoryPathTest.java │ │ │ ├── LocalRepositoryTest.java │ │ │ ├── LocalSearchTest.java │ │ │ └── LocalVirtualTest.java │ │ └── resources │ │ └── testImport.zip │ ├── repository-master │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── repository │ │ │ └── master │ │ │ ├── DummyMasterRepository.java │ │ │ ├── fs │ │ │ └── FileSystemMasterRepository.java │ │ │ ├── jar │ │ │ ├── JarMasterRepository.java │ │ │ └── JarRepository.java │ │ │ └── zip │ │ │ ├── ZipMasterRepository.java │ │ │ └── ZipRepository.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.dirigible.commons.api.module.IDirigibleModule │ │ ├── dirigible-repository-master-jar.properties │ │ └── dirigible-repository-master-zip.properties │ ├── repository-search │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── dirigible │ │ │ └── repository │ │ │ └── search │ │ │ └── RepositorySearcher.java │ │ └── resources │ │ └── dirigible-repository-search.properties │ └── repository-zip │ ├── .gitignore │ ├── about.html │ ├── pom.xml │ └── src │ └── main │ └── java │ └── org │ └── eclipse │ └── dirigible │ └── repository │ └── zip │ ├── RepositoryZipExporter.java │ └── RepositoryZipImporter.java ├── notice.html ├── npm ├── dirigible-cli │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── dirigible.js │ └── package.json ├── dirigible │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── postinstall.js └── tests │ └── dirigible-demo-project │ ├── README.md │ ├── demo-process.bpmn │ ├── demo-table.table │ ├── hello.ts │ ├── package.json │ ├── project.json │ └── tsconfig.json ├── open-telemetry ├── .env ├── README.md ├── dirigible │ ├── dirigible-image-otel-agent │ │ └── Dockerfile │ ├── local-dirigible-otel-agent │ │ └── Dockerfile │ └── local-dirigible-otel-spring-starter │ │ └── Dockerfile ├── docker-compose.yaml ├── grafana 2 │ └── grafana.ini ├── grafana │ └── provisioning │ │ ├── dashboards │ │ ├── dirigible.yaml │ │ └── dirigible │ │ │ └── Meters.json │ │ └── datasources │ │ ├── jaeger.yaml │ │ ├── loki.yaml │ │ ├── opensearch.yaml │ │ └── prometheus.yaml ├── opensearch-dashboards │ ├── Dockerfile │ └── opensearch_dashboards.yml ├── otel-collector-config.yaml └── prometheus.yml ├── pom.xml ├── samples ├── sample-api-utils-base64 │ ├── base64-decode.js │ └── base64-encode.js └── sample-builtin-console │ └── console-log.js └── tests ├── pom.xml ├── tests-framework ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── eclipse │ │ └── dirigible │ │ └── tests │ │ ├── base │ │ ├── BaseMultitenantTestProject.java │ │ ├── BaseTestProject.java │ │ ├── DirigibleCleaner.java │ │ ├── DirigibleCleanupBean.java │ │ ├── IntegrationTest.java │ │ ├── MultitenantTestProject.java │ │ ├── PredefinedProjectIT.java │ │ ├── ProjectUtil.java │ │ ├── TenantCreator.java │ │ ├── TestProject.java │ │ └── UserInterfaceIntegrationTest.java │ │ └── framework │ │ ├── awaitility │ │ └── AwaitilityExecutor.java │ │ ├── browser │ │ ├── Browser.java │ │ ├── BrowserFactory.java │ │ ├── HtmlAttribute.java │ │ ├── HtmlElementType.java │ │ └── impl │ │ │ ├── BrowserFactoryImpl.java │ │ │ └── BrowserImpl.java │ │ ├── db │ │ └── DBAsserter.java │ │ ├── ide │ │ ├── DatabasePerspective.java │ │ ├── DatabasePerspectiveFactory.java │ │ ├── EdmView.java │ │ ├── FormView.java │ │ ├── GitPerspective.java │ │ ├── GitPerspectiveFactory.java │ │ ├── GitUtil.java │ │ ├── IDE.java │ │ ├── IDEFactory.java │ │ ├── Terminal.java │ │ ├── TerminalFactory.java │ │ ├── WelcomeView.java │ │ ├── WelcomeViewFactory.java │ │ ├── Workbench.java │ │ └── WorkbenchFactory.java │ │ ├── logging │ │ ├── InMemoryAppender.java │ │ └── LogsAsserter.java │ │ ├── mail │ │ ├── EmailAsserter.java │ │ ├── EmailAssertion.java │ │ ├── EmailAssertionBuilder.java │ │ └── GreenMailConfig.java │ │ ├── restassured │ │ └── RestAssuredExecutor.java │ │ ├── security │ │ └── SecurityUtil.java │ │ ├── tenant │ │ └── DirigibleTestTenant.java │ │ └── util │ │ ├── FileUtil.java │ │ ├── JsonAsserter.java │ │ ├── PortUtil.java │ │ ├── ResourceUtil.java │ │ ├── SleepUtil.java │ │ └── SynchronizationUtil.java │ └── resources │ ├── logback-test.xml │ └── project-template │ ├── project.json │ └── tsconfig.json └── tests-integrations ├── pom.xml └── src └── main ├── java └── org │ └── eclipse │ └── dirigible │ └── integration │ └── tests │ ├── CommonTestSuite.java │ ├── OrderedTestSuite.java │ ├── TransactionsTestSuite.java │ ├── api │ ├── SecurityIT.java │ ├── java │ │ ├── CsvProcessorTest.java │ │ ├── DatabaseMetadataHelperTest.java │ │ ├── camel │ │ │ ├── DirigibleJavaScriptComponentIT.java │ │ │ └── DirigibleJavaScriptRoute.java │ │ ├── db │ │ │ ├── DataStoreIT.java │ │ │ ├── DatabaseFacadeIT.java │ │ │ └── SchemaExportImportIT.java │ │ └── messaging │ │ │ ├── MessageProducer.java │ │ │ ├── MessagesHolder.java │ │ │ └── MessagingFacadeIT.java │ ├── javascript │ │ ├── DirigibleJavaScriptIT.java │ │ ├── DirigibleJavaScriptTestsFactory.java │ │ ├── TestFunction.java │ │ └── cms │ │ │ └── CmsSuiteIT.java │ └── rest │ │ ├── DisabledMultitenantModeIT.java │ │ ├── EnabledMultitenantModeIT.java │ │ ├── ODataAPIIT.java │ │ └── TenantDeterminationIT.java │ └── ui │ └── tests │ ├── ApproveLeaveRequestBpmIT.java │ ├── ApproveLeaveRequestTestProject.java │ ├── BPMLeaveRequestTestProject.java │ ├── BPMStarterTemplateIT.java │ ├── BpmnMultitenancyIT.java │ ├── BpmnMultitenancyTestProject.java │ ├── CreateNewFileIT.java │ ├── CreateNewProjectIT.java │ ├── CsvimIT.java │ ├── CsvimTestProject.java │ ├── CustomSecurityIT.java │ ├── CustomSecurityTestProject.java │ ├── DatabasePerspectiveIT.java │ ├── DeclineLeaveRequestBpmIT.java │ ├── DeclineLeaveRequestTestProject.java │ ├── DependsOnIT.java │ ├── DependsOnScenariosIT.java │ ├── DependsOnScenariosTestProject.java │ ├── DependsOnTestProject.java │ ├── DirigibleHomepageIT.java │ ├── DirigibleTestProject.java │ ├── DirigibleTestProjectIT.java │ ├── GitPerspectiveIT.java │ ├── HomepageRedirectIT.java │ ├── MailIT.java │ ├── MailITTestProject.java │ ├── MultitenancyIT.java │ ├── MultitenancyITTestProject.java │ ├── MultitenancyUserInterfaceIntegrationTest.java │ ├── NewFileOption.java │ ├── ProxyArtefactIT.java │ ├── ProxyArtefactTestProject.java │ ├── QuartzTransactionsCommitIT.java │ ├── QuartzTransactionsCommitTestProject.java │ ├── QuartzTransactionsRollbackIT.java │ ├── QuartzTransactionsRollbackTestProject.java │ ├── RestTransactionsIT.java │ ├── RestTransactionsITConfig.java │ ├── SpringBootAdminIT.java │ ├── TerminalIT.java │ ├── TerminalTestRestConfig.java │ ├── camel │ ├── BaseCamelTestProject.java │ ├── CamelAsyncStepIT.java │ ├── CamelAsyncStepTestProject.java │ ├── CamelCronRouteStarterTemplateIT.java │ ├── CamelDirigibleJavaScriptComponentCronRouteIT.java │ ├── CamelDirigibleJavaScriptComponentCronRouteTestProject.java │ ├── CamelDirigibleJavaScriptComponentHttpRouteIT.java │ ├── CamelDirigibleJavaScriptComponentHttpRouteTestProject.java │ ├── CamelDirigibleTwoStepsJSInvokerCronRouteIT.java │ ├── CamelDirigibleTwoStepsJSInvokerCronRouteTestProject.java │ ├── CamelDirigibleTwoStepsJSInvokerHttpRouteIT.java │ ├── CamelDirigibleTwoStepsJSInvokerHttpRouteTestProject.java │ ├── CamelExtractTransformLoadJdbcIT.java │ ├── CamelExtractTransformLoadJdbcTestProject.java │ ├── CamelExtractTransformLoadTypescriptIT.java │ ├── CamelExtractTransformLoadTypescriptTestProject.java │ ├── CamelHttpRouteStarterTemplateIT.java │ ├── CamelTransactionsCommitIT.java │ ├── CamelTransactionsCommitTestProject.java │ ├── CamelTransactionsRollbackIT.java │ └── CamelTransactionsRollbackTestProject.java │ └── sample │ ├── ComponentDecoratorSampleProjectIT.java │ ├── EntityDecoratorsSampleProjectIT.java │ ├── ExtensionDecoratorSampleProjectIT.java │ ├── JobDecoratorSampleProjectIT.java │ ├── ListenerDecoratorSampleProjectIT.java │ ├── SampleProjectRepositoryIT.java │ ├── StoreAPISampleProjectIT.java │ └── WebsocketDecoratorSampleProjectIT.java └── resources ├── BPMLeaveRequestIT ├── api │ └── ProcessService.ts ├── leave-request-process.bpmn ├── process-leave-request.form ├── process-leave-request.gen ├── project.json ├── security │ ├── access.access │ └── roles.roles ├── submit-leave-request.form ├── submit-leave-request.gen └── tasks │ ├── mail-util.ts │ ├── notify-approvers-task.ts │ ├── send-approved-notification.ts │ └── send-declined-notification.ts ├── BpmnMultitenancyIT ├── Employees.odata ├── ProcessService.ts ├── approve-employee-registration.form ├── approve-employee-registration.gen ├── insert-an-employee-task.ts ├── insert-employee-process.bpmn ├── project.json ├── roles.roles ├── schema.dsm └── schema.schema ├── CamelAsyncStepIT ├── CamelAsyncStepIT.camel ├── async-functions.ts ├── async-step.ts └── project.json ├── CamelDirigibleJavaScriptComponentCronRouteIT ├── call-dirigible-js-custom-component.camel ├── handler.ts └── project.json ├── CamelDirigibleJavaScriptComponentHttpRouteIT ├── handler.ts ├── http-route.camel └── project.json ├── CamelDirigibleTwoStepsJSInvokerCronRouteIT ├── call-dirigible-js-two-steps.camel ├── handler.ts └── project.json ├── CamelDirigibleTwoStepsJSInvokerHttpRouteIT ├── handler.ts ├── http-route.camel └── project.json ├── CamelExtractTransformLoadJdbcIT ├── csvim │ ├── data.csvim │ └── oc_order.csv ├── db │ ├── oc_order.table │ └── orders.table ├── project.json └── sync │ ├── get-db-type.ts │ └── sync-orders-jdbc.camel ├── CamelExtractTransformLoadTypescriptIT ├── csvim │ ├── data.csvim │ └── oc_order.csv ├── dao │ └── oc_orderRepository.ts ├── db │ ├── oc_order.table │ └── orders.table ├── project.json └── sync │ ├── get-all-orders.ts │ ├── merger-order.ts │ └── sync-orders-typescript.camel ├── CamelTransactionsCommitIT ├── camel-handler.ts ├── edm.edm ├── edm.gen ├── edm.model ├── project.json └── test-camel.camel ├── CamelTransactionsRollbackIT ├── camel-handler.ts ├── edm.edm ├── edm.gen ├── edm.model ├── project.json └── test-camel.camel ├── CsvimIT ├── csvim │ ├── data.csvim │ └── readers.csv ├── project.json └── tables │ ├── reader.table │ └── reader3.table ├── CustomSecurityIT ├── project.json └── security │ ├── access.access │ ├── protected_page.html │ └── roles.roles ├── DependsOnIT ├── data │ ├── City.csv │ ├── Country.csv │ └── data.csvim ├── edm.edm ├── edm.gen ├── edm.model └── project.json ├── DependsOnScenariosTestProject ├── data │ ├── cities.csv │ ├── countries.csv │ ├── customer_payments.csv │ ├── customers.csv │ ├── dependson.csvim │ ├── products.csv │ ├── salesorder.csv │ └── uoms.csv ├── project.json ├── sales-order.edm ├── sales-order.gen └── sales-order.model ├── META-INF └── dirigible │ ├── camel_test │ └── test-routes.camel │ ├── cms-tests │ ├── cmis-create-document.js │ ├── cmis-create-folder.js │ ├── cmis-get-children.js │ ├── cmis-get-root-folder.js │ ├── cmis-get-session.js │ └── project.json │ ├── dirigible-java-script-component │ └── handler.mjs │ ├── integration-tests-project │ ├── background-handler.js │ ├── test-queue-listener.listener │ └── test-topic-listener.listener │ └── modules-tests │ ├── .gitignore │ ├── build-source.bat │ ├── build-source.ps1 │ ├── build-source.sh │ ├── project.json │ ├── src │ ├── cache │ │ └── cache-test.ts │ ├── db │ │ └── db-test.ts │ ├── messaging │ │ └── messaging-test.ts │ ├── security │ │ └── security-test.ts │ ├── services │ │ └── integrations │ │ │ └── dirigible-js-to-camel-route-test.ts │ └── tests-validation │ │ └── validation-tests.ts │ ├── tsconfig.json │ └── types.d.ts ├── MailIT ├── mail │ └── MailService.ts └── project.json ├── MultitenancyIT ├── cmis │ └── DocumentService.ts ├── csvim │ ├── data.csvim │ └── readers.csv ├── edm.edm ├── edm.gen ├── edm.model ├── jobs │ ├── test-job-handler.ts │ └── test-job.job ├── listeners │ └── entity │ │ ├── book-entity-events-handler.ts │ │ └── book-entity-events.listener ├── odata │ └── readers.odata ├── project.json ├── tables │ └── reader.table └── views │ ├── ReaderViewService.ts │ └── readers.view ├── ProxyArtefactIT ├── project.json └── test-proxy.proxy ├── QuartzTransactionsCommitIT ├── edm.edm ├── edm.gen ├── edm.model ├── jobs │ ├── test-job-handler.ts │ └── test-job.job └── project.json ├── QuartzTransactionsRollbackIT ├── edm.edm ├── edm.gen ├── edm.model ├── jobs │ ├── test-job-handler.ts │ └── test-job.job └── project.json ├── SchemaExportImportIT └── test-tables.sql ├── test-project ├── command │ ├── envvar.command │ ├── print.bat │ ├── print.sh │ └── uname.command ├── datasources │ └── TestDB.datasource ├── extensions │ ├── test.extension │ └── test.extensionpoint ├── openapi │ ├── api.mjs │ └── test.openapi ├── project.json └── websockets │ ├── js │ ├── sockjs-0.3.4.js │ ├── stomp.js │ └── webSocketSendToUserApp.js │ ├── test-handler.js │ ├── test.html │ └── test.websocket └── typescript ├── CustomerEntity.ts ├── OrderEntity.ts └── OrderItemEntity.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/EPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/LICENSES/EPL-2.0.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/cli/pom.xml -------------------------------------------------------------------------------- /cli/src/main/java/org/eclipse/dirigible/cli/ProjectCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/cli/src/main/java/org/eclipse/dirigible/cli/ProjectCommands.java -------------------------------------------------------------------------------- /cli/src/main/java/org/eclipse/dirigible/cli/util/SleepUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/cli/src/main/java/org/eclipse/dirigible/cli/util/SleepUtil.java -------------------------------------------------------------------------------- /cli/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/cli/src/main/resources/application.properties -------------------------------------------------------------------------------- /components/api/api-bpm/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-bpm/about.html -------------------------------------------------------------------------------- /components/api/api-bpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-bpm/pom.xml -------------------------------------------------------------------------------- /components/api/api-cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-cache/pom.xml -------------------------------------------------------------------------------- /components/api/api-cms/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-cms/about.html -------------------------------------------------------------------------------- /components/api/api-cms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-cms/pom.xml -------------------------------------------------------------------------------- /components/api/api-component/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-component/about.html -------------------------------------------------------------------------------- /components/api/api-component/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-component/pom.xml -------------------------------------------------------------------------------- /components/api/api-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-core/about.html -------------------------------------------------------------------------------- /components/api/api-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-core/pom.xml -------------------------------------------------------------------------------- /components/api/api-database/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-database/about.html -------------------------------------------------------------------------------- /components/api/api-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-database/pom.xml -------------------------------------------------------------------------------- /components/api/api-database/src/test/resources/quartz.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-database/src/test/resources/quartz.properties -------------------------------------------------------------------------------- /components/api/api-etcd/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-etcd/about.html -------------------------------------------------------------------------------- /components/api/api-etcd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-etcd/pom.xml -------------------------------------------------------------------------------- /components/api/api-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-extensions/about.html -------------------------------------------------------------------------------- /components/api/api-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-extensions/pom.xml -------------------------------------------------------------------------------- /components/api/api-git/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-git/about.html -------------------------------------------------------------------------------- /components/api/api-git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-git/pom.xml -------------------------------------------------------------------------------- /components/api/api-http/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-http/about.html -------------------------------------------------------------------------------- /components/api/api-http/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-http/pom.xml -------------------------------------------------------------------------------- /components/api/api-indexing/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-indexing/about.html -------------------------------------------------------------------------------- /components/api/api-indexing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-indexing/pom.xml -------------------------------------------------------------------------------- /components/api/api-io/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-io/about.html -------------------------------------------------------------------------------- /components/api/api-io/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-io/pom.xml -------------------------------------------------------------------------------- /components/api/api-io/src/test/resources/dirigible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-io/src/test/resources/dirigible.png -------------------------------------------------------------------------------- /components/api/api-job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-job/about.html -------------------------------------------------------------------------------- /components/api/api-job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-job/pom.xml -------------------------------------------------------------------------------- /components/api/api-junit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-junit/pom.xml -------------------------------------------------------------------------------- /components/api/api-kafka/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-kafka/about.html -------------------------------------------------------------------------------- /components/api/api-kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-kafka/pom.xml -------------------------------------------------------------------------------- /components/api/api-log/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-log/about.html -------------------------------------------------------------------------------- /components/api/api-log/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-log/pom.xml -------------------------------------------------------------------------------- /components/api/api-mail/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-mail/about.html -------------------------------------------------------------------------------- /components/api/api-mail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-mail/pom.xml -------------------------------------------------------------------------------- /components/api/api-messaging/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-messaging/about.html -------------------------------------------------------------------------------- /components/api/api-messaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-messaging/pom.xml -------------------------------------------------------------------------------- /components/api/api-modules-javascript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-modules-javascript/pom.xml -------------------------------------------------------------------------------- /components/api/api-modules-javascript/src/main/resources/META-INF/dirigible/modules/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /components/api/api-modules-javascript/src/main/resources/META-INF/dirigible/modules/src/cache/cache.sample: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/api/api-modules-javascript/src/main/resources/META-INF/dirigible/modules/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/api/api-modules-javascript/src/main/resources/META-INF/dirigible/modules/src/junit/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./junit"; 2 | -------------------------------------------------------------------------------- /components/api/api-modules-javascript/src/main/resources/META-INF/dirigible/modules/src/net/wrappers/onClose.ts: -------------------------------------------------------------------------------- 1 | dirigibleRequire(__context.get("handler")).onClose(); 2 | -------------------------------------------------------------------------------- /components/api/api-modules-javascript/src/main/resources/META-INF/dirigible/modules/src/net/wrappers/onOpen.ts: -------------------------------------------------------------------------------- 1 | dirigibleRequire(__context.get("handler")).onOpen(); 2 | -------------------------------------------------------------------------------- /components/api/api-modules-python/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-modules-python/pom.xml -------------------------------------------------------------------------------- /components/api/api-modules-python/src/main/resources/META-INF/dirigible/python-modules/sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/api/api-modules-python/src/main/resources/META-INF/dirigible/python-modules/sdk/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/api/api-mongodb/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-mongodb/about.html -------------------------------------------------------------------------------- /components/api/api-mongodb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-mongodb/pom.xml -------------------------------------------------------------------------------- /components/api/api-net/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-net/about.html -------------------------------------------------------------------------------- /components/api/api-net/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-net/pom.xml -------------------------------------------------------------------------------- /components/api/api-pdf/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-pdf/about.html -------------------------------------------------------------------------------- /components/api/api-pdf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-pdf/pom.xml -------------------------------------------------------------------------------- /components/api/api-pdf/src/test/resources/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-pdf/src/test/resources/data.xml -------------------------------------------------------------------------------- /components/api/api-pdf/src/test/resources/data2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-pdf/src/test/resources/data2.xml -------------------------------------------------------------------------------- /components/api/api-pdf/src/test/resources/template.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-pdf/src/test/resources/template.xsl -------------------------------------------------------------------------------- /components/api/api-platform/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-platform/about.html -------------------------------------------------------------------------------- /components/api/api-platform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-platform/pom.xml -------------------------------------------------------------------------------- /components/api/api-qldb/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-qldb/about.html -------------------------------------------------------------------------------- /components/api/api-qldb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-qldb/pom.xml -------------------------------------------------------------------------------- /components/api/api-qunit/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-qunit/about.html -------------------------------------------------------------------------------- /components/api/api-qunit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-qunit/pom.xml -------------------------------------------------------------------------------- /components/api/api-rabbitmq/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-rabbitmq/about.html -------------------------------------------------------------------------------- /components/api/api-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-rabbitmq/pom.xml -------------------------------------------------------------------------------- /components/api/api-redis/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-redis/about.html -------------------------------------------------------------------------------- /components/api/api-redis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-redis/pom.xml -------------------------------------------------------------------------------- /components/api/api-s3/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-s3/about.html -------------------------------------------------------------------------------- /components/api/api-s3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-s3/pom.xml -------------------------------------------------------------------------------- /components/api/api-security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-security/about.html -------------------------------------------------------------------------------- /components/api/api-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-security/pom.xml -------------------------------------------------------------------------------- /components/api/api-template/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-template/about.html -------------------------------------------------------------------------------- /components/api/api-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-template/pom.xml -------------------------------------------------------------------------------- /components/api/api-test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-test/about.html -------------------------------------------------------------------------------- /components/api/api-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-test/pom.xml -------------------------------------------------------------------------------- /components/api/api-utils/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-utils/about.html -------------------------------------------------------------------------------- /components/api/api-utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/api/api-utils/pom.xml -------------------------------------------------------------------------------- /components/core/core-base/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-base/about.html -------------------------------------------------------------------------------- /components/core/core-base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-base/pom.xml -------------------------------------------------------------------------------- /components/core/core-configurations/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-configurations/about.html -------------------------------------------------------------------------------- /components/core/core-configurations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-configurations/pom.xml -------------------------------------------------------------------------------- /components/core/core-database/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-database/about.html -------------------------------------------------------------------------------- /components/core/core-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-database/pom.xml -------------------------------------------------------------------------------- /components/core/core-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-extensions/about.html -------------------------------------------------------------------------------- /components/core/core-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-extensions/pom.xml -------------------------------------------------------------------------------- /components/core/core-healthcheck/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-healthcheck/about.html -------------------------------------------------------------------------------- /components/core/core-healthcheck/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-healthcheck/pom.xml -------------------------------------------------------------------------------- /components/core/core-initializers/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-initializers/about.html -------------------------------------------------------------------------------- /components/core/core-initializers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-initializers/pom.xml -------------------------------------------------------------------------------- /components/core/core-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-project/pom.xml -------------------------------------------------------------------------------- /components/core/core-registry/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-registry/about.html -------------------------------------------------------------------------------- /components/core/core-registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-registry/pom.xml -------------------------------------------------------------------------------- /components/core/core-repository/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-repository/about.html -------------------------------------------------------------------------------- /components/core/core-repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-repository/pom.xml -------------------------------------------------------------------------------- /components/core/core-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-spring/pom.xml -------------------------------------------------------------------------------- /components/core/core-tenants/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-tenants/pom.xml -------------------------------------------------------------------------------- /components/core/core-tracing/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-tracing/about.html -------------------------------------------------------------------------------- /components/core/core-tracing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-tracing/pom.xml -------------------------------------------------------------------------------- /components/core/core-version/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-version/about.html -------------------------------------------------------------------------------- /components/core/core-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/core/core-version/pom.xml -------------------------------------------------------------------------------- /components/data/data-anonymize/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-anonymize/pom.xml -------------------------------------------------------------------------------- /components/data/data-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-core/about.html -------------------------------------------------------------------------------- /components/data/data-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-core/pom.xml -------------------------------------------------------------------------------- /components/data/data-csvim/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-csvim/about.html -------------------------------------------------------------------------------- /components/data/data-csvim/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-csvim/pom.xml -------------------------------------------------------------------------------- /components/data/data-export/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-export/pom.xml -------------------------------------------------------------------------------- /components/data/data-import/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-import/pom.xml -------------------------------------------------------------------------------- /components/data/data-management/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-management/about.html -------------------------------------------------------------------------------- /components/data/data-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-management/pom.xml -------------------------------------------------------------------------------- /components/data/data-processes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-processes/pom.xml -------------------------------------------------------------------------------- /components/data/data-source-snowpark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-source-snowpark/pom.xml -------------------------------------------------------------------------------- /components/data/data-sources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-sources/about.html -------------------------------------------------------------------------------- /components/data/data-sources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-sources/pom.xml -------------------------------------------------------------------------------- /components/data/data-store/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-store/about.html -------------------------------------------------------------------------------- /components/data/data-store/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-store/pom.xml -------------------------------------------------------------------------------- /components/data/data-structures/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-structures/about.html -------------------------------------------------------------------------------- /components/data/data-structures/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-structures/pom.xml -------------------------------------------------------------------------------- /components/data/data-transfer/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-transfer/about.html -------------------------------------------------------------------------------- /components/data/data-transfer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/data/data-transfer/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-bpm-flowable/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-bpm-flowable/about.html -------------------------------------------------------------------------------- /components/engine/engine-bpm-flowable/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-bpm-flowable/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-bpm/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-bpm/about.html -------------------------------------------------------------------------------- /components/engine/engine-bpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-bpm/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-camel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-camel/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-cms-internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-cms-internal/about.html -------------------------------------------------------------------------------- /components/engine/engine-cms-internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-cms-internal/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-cms-s3/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-cms-s3/about.html -------------------------------------------------------------------------------- /components/engine/engine-cms-s3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-cms-s3/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-cms/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-cms/about.html -------------------------------------------------------------------------------- /components/engine/engine-cms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-cms/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-command/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-command/about.html -------------------------------------------------------------------------------- /components/engine/engine-command/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-command/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-di/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-di/about.html -------------------------------------------------------------------------------- /components/engine/engine-di/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-di/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-ftp/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-ftp/about.html -------------------------------------------------------------------------------- /components/engine/engine-ftp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-ftp/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-javascript/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-javascript/about.html -------------------------------------------------------------------------------- /components/engine/engine-javascript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-javascript/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-jobs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-jobs/about.html -------------------------------------------------------------------------------- /components/engine/engine-jobs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-jobs/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-jobs/src/test/resources/META-INF/dirigible/test/handler.js: -------------------------------------------------------------------------------- 1 | console.log("Hello from the Control Job"); -------------------------------------------------------------------------------- /components/engine/engine-listeners/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-listeners/about.html -------------------------------------------------------------------------------- /components/engine/engine-listeners/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-listeners/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-odata/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-odata/about.html -------------------------------------------------------------------------------- /components/engine/engine-odata/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-odata/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-open-telemetry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-open-telemetry/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-openapi/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-openapi/about.html -------------------------------------------------------------------------------- /components/engine/engine-openapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-openapi/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-proxy/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-python/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-python/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-python/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-python/sample.py -------------------------------------------------------------------------------- /components/engine/engine-security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-security/about.html -------------------------------------------------------------------------------- /components/engine/engine-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-security/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-sftp/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-sftp/about.html -------------------------------------------------------------------------------- /components/engine/engine-sftp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-sftp/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-template-javascript/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template-javascript/about.html -------------------------------------------------------------------------------- /components/engine/engine-template-javascript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template-javascript/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-template-mustache/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template-mustache/about.html -------------------------------------------------------------------------------- /components/engine/engine-template-mustache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template-mustache/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-template-velocity/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template-velocity/about.html -------------------------------------------------------------------------------- /components/engine/engine-template-velocity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template-velocity/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-template/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template/about.html -------------------------------------------------------------------------------- /components/engine/engine-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-template/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-typescript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-typescript/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-web/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-web/about.html -------------------------------------------------------------------------------- /components/engine/engine-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-web/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-web/src/test/resources/META-INF/dirigible/test/js/index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World!"); -------------------------------------------------------------------------------- /components/engine/engine-websockets/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-websockets/about.html -------------------------------------------------------------------------------- /components/engine/engine-websockets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-websockets/pom.xml -------------------------------------------------------------------------------- /components/engine/engine-wiki/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-wiki/about.html -------------------------------------------------------------------------------- /components/engine/engine-wiki/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/engine/engine-wiki/pom.xml -------------------------------------------------------------------------------- /components/group/group-api-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-api-core/about.html -------------------------------------------------------------------------------- /components/group/group-api-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-api-core/pom.xml -------------------------------------------------------------------------------- /components/group/group-api-platform/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-api-platform/about.html -------------------------------------------------------------------------------- /components/group/group-api-platform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-api-platform/pom.xml -------------------------------------------------------------------------------- /components/group/group-api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-api/about.html -------------------------------------------------------------------------------- /components/group/group-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-api/pom.xml -------------------------------------------------------------------------------- /components/group/group-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-core/about.html -------------------------------------------------------------------------------- /components/group/group-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-core/pom.xml -------------------------------------------------------------------------------- /components/group/group-database/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-database/about.html -------------------------------------------------------------------------------- /components/group/group-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-database/pom.xml -------------------------------------------------------------------------------- /components/group/group-engines-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-engines-core/about.html -------------------------------------------------------------------------------- /components/group/group-engines-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-engines-core/pom.xml -------------------------------------------------------------------------------- /components/group/group-engines/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-engines/about.html -------------------------------------------------------------------------------- /components/group/group-engines/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-engines/pom.xml -------------------------------------------------------------------------------- /components/group/group-ide/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-ide/about.html -------------------------------------------------------------------------------- /components/group/group-ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-ide/pom.xml -------------------------------------------------------------------------------- /components/group/group-resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-resources/about.html -------------------------------------------------------------------------------- /components/group/group-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-resources/pom.xml -------------------------------------------------------------------------------- /components/group/group-templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-templates/about.html -------------------------------------------------------------------------------- /components/group/group-templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-templates/pom.xml -------------------------------------------------------------------------------- /components/group/group-ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-ui/about.html -------------------------------------------------------------------------------- /components/group/group-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/group/group-ui/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-git/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-git/about.html -------------------------------------------------------------------------------- /components/ide/ide-git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-git/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-logs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-logs/about.html -------------------------------------------------------------------------------- /components/ide/ide-logs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-logs/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-problems/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-problems/about.html -------------------------------------------------------------------------------- /components/ide/ide-problems/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-problems/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-template/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-template/about.html -------------------------------------------------------------------------------- /components/ide/ide-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-template/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-terminal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-terminal/about.html -------------------------------------------------------------------------------- /components/ide/ide-terminal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-terminal/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-workspace/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-workspace/about.html -------------------------------------------------------------------------------- /components/ide/ide-workspace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-workspace/pom.xml -------------------------------------------------------------------------------- /components/ide/ide-workspace/src/main/resources/project.json_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ide/ide-workspace/src/main/resources/project.json_ -------------------------------------------------------------------------------- /components/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/pom.xml -------------------------------------------------------------------------------- /components/resources/platform-branding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/platform-branding/.gitignore -------------------------------------------------------------------------------- /components/resources/platform-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/platform-branding/about.html -------------------------------------------------------------------------------- /components/resources/platform-branding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/platform-branding/pom.xml -------------------------------------------------------------------------------- /components/resources/platform-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/platform-core/.gitignore -------------------------------------------------------------------------------- /components/resources/platform-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/platform-core/about.html -------------------------------------------------------------------------------- /components/resources/platform-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/platform-core/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-dashboard/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-dashboard/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-dashboard/about.html -------------------------------------------------------------------------------- /components/resources/resources-dashboard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-dashboard/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-dev-tools/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-dev-tools/about.html -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-dev-tools/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/cm/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/cm_headless/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/cm_modes/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/cm_web_modes/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/diff/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/formatter_worker/acorn/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/lighthouse/OWNERS: -------------------------------------------------------------------------------- 1 | file://LIGHTHOUSE_OWNERS 2 | -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/lighthouse_test_runner/OWNERS: -------------------------------------------------------------------------------- 1 | file://LIGHTHOUSE_OWNERS 2 | -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/lighthouse_worker/OWNERS: -------------------------------------------------------------------------------- 1 | file://LIGHTHOUSE_OWNERS 2 | -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/sdk/wasm_source_map/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/sdk/wasm_source_map/rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | newline_style = "Unix" 3 | -------------------------------------------------------------------------------- /components/resources/resources-dev-tools/src/main/resources/META-INF/dirigible/dev-tools/third_party/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true -------------------------------------------------------------------------------- /components/resources/resources-documents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-documents/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-documents/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-documents/about.html -------------------------------------------------------------------------------- /components/resources/resources-documents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-documents/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-documents/src/main/resources/META-INF/dirigible/documents/security/roles.access: -------------------------------------------------------------------------------- 1 | {"constraints":[]} -------------------------------------------------------------------------------- /components/resources/resources-flowable-libs/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /components/resources/resources-flowable-libs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-flowable-libs/about.html -------------------------------------------------------------------------------- /components/resources/resources-flowable-libs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-flowable-libs/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-flowable-libs/src/main/resources/META-INF/dirigible/.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/resources/resources-flowable-libs/src/main/resources/META-INF/dirigible/editor-bpm/libs/angular/1.4.7/version.txt: -------------------------------------------------------------------------------- 1 | 1.4.7 -------------------------------------------------------------------------------- /components/resources/resources-inbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-inbox/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-inbox/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-inbox/about.html -------------------------------------------------------------------------------- /components/resources/resources-inbox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-inbox/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-karavan-libs/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /components/resources/resources-karavan-libs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-karavan-libs/about.html -------------------------------------------------------------------------------- /components/resources/resources-karavan-libs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-karavan-libs/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-karavan-libs/src/main/resources/META-INF/dirigible/.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/resources/resources-locale/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-locale/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-locale/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-locale/about.html -------------------------------------------------------------------------------- /components/resources/resources-locale/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-locale/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-mxgraph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-mxgraph/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-mxgraph/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-mxgraph/about.html -------------------------------------------------------------------------------- /components/resources/resources-mxgraph/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-mxgraph/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-mxgraph/src/main/resources/META-INF/dirigible/.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/resources/resources-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-resources/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-resources/about.html -------------------------------------------------------------------------------- /components/resources/resources-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-resources/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-resources/src/main/resources/META-INF/dirigible/.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/resources/resources-theme-blimpkit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-blimpkit/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-theme-blimpkit/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-blimpkit/about.html -------------------------------------------------------------------------------- /components/resources/resources-theme-blimpkit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-blimpkit/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-theme-classic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-classic/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-theme-classic/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-classic/about.html -------------------------------------------------------------------------------- /components/resources/resources-theme-classic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-classic/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-theme-high-contrast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-high-contrast/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-theme-high-contrast/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-high-contrast/about.html -------------------------------------------------------------------------------- /components/resources/resources-theme-high-contrast/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-high-contrast/pom.xml -------------------------------------------------------------------------------- /components/resources/resources-theme-mystic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-mystic/.gitignore -------------------------------------------------------------------------------- /components/resources/resources-theme-mystic/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-mystic/about.html -------------------------------------------------------------------------------- /components/resources/resources-theme-mystic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/resources/resources-theme-mystic/pom.xml -------------------------------------------------------------------------------- /components/security/security-basic/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-basic/about.html -------------------------------------------------------------------------------- /components/security/security-basic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-basic/pom.xml -------------------------------------------------------------------------------- /components/security/security-client-registration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-client-registration/pom.xml -------------------------------------------------------------------------------- /components/security/security-cognito/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-cognito/pom.xml -------------------------------------------------------------------------------- /components/security/security-keycloak/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-keycloak/about.html -------------------------------------------------------------------------------- /components/security/security-keycloak/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-keycloak/pom.xml -------------------------------------------------------------------------------- /components/security/security-oauth2/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-oauth2/about.html -------------------------------------------------------------------------------- /components/security/security-oauth2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-oauth2/pom.xml -------------------------------------------------------------------------------- /components/security/security-snowflake/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/security/security-snowflake/pom.xml -------------------------------------------------------------------------------- /components/template/generation-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/generation-header.txt -------------------------------------------------------------------------------- /components/template/template-application-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-angular/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-angular/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-angular/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-dao/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-dao/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-dao/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-dao/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-data/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-data/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-feed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-feed/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-feed/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-feed/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-odata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-odata/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-odata/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-odata/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-rest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-rest/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-rest/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-schema/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-schema/pom.xml -------------------------------------------------------------------------------- /components/template/template-application-ui-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-ui-angular/.gitignore -------------------------------------------------------------------------------- /components/template/template-application-ui-angular/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-application-ui-angular/pom.xml -------------------------------------------------------------------------------- /components/template/template-bpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-bpm/pom.xml -------------------------------------------------------------------------------- /components/template/template-camel-cron-route/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-camel-cron-route/pom.xml -------------------------------------------------------------------------------- /components/template/template-camel-http-route/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-camel-http-route/pom.xml -------------------------------------------------------------------------------- /components/template/template-camel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-camel/pom.xml -------------------------------------------------------------------------------- /components/template/template-database-access/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-database-access/.gitignore -------------------------------------------------------------------------------- /components/template/template-database-access/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-database-access/pom.xml -------------------------------------------------------------------------------- /components/template/template-database-table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-database-table/.gitignore -------------------------------------------------------------------------------- /components/template/template-database-table/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-database-table/pom.xml -------------------------------------------------------------------------------- /components/template/template-database-view/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-database-view/.gitignore -------------------------------------------------------------------------------- /components/template/template-database-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-database-view/pom.xml -------------------------------------------------------------------------------- /components/template/template-editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-editor/.gitignore -------------------------------------------------------------------------------- /components/template/template-editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-editor/pom.xml -------------------------------------------------------------------------------- /components/template/template-form-builder-angularjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-form-builder-angularjs/.gitignore -------------------------------------------------------------------------------- /components/template/template-form-builder-angularjs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-form-builder-angularjs/pom.xml -------------------------------------------------------------------------------- /components/template/template-form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-form/.gitignore -------------------------------------------------------------------------------- /components/template/template-form/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-form/pom.xml -------------------------------------------------------------------------------- /components/template/template-hello-world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-hello-world/.gitignore -------------------------------------------------------------------------------- /components/template/template-hello-world/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-hello-world/pom.xml -------------------------------------------------------------------------------- /components/template/template-html/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-html/.gitignore -------------------------------------------------------------------------------- /components/template/template-html/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-html/pom.xml -------------------------------------------------------------------------------- /components/template/template-http-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-http-client/.gitignore -------------------------------------------------------------------------------- /components/template/template-http-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-http-client/pom.xml -------------------------------------------------------------------------------- /components/template/template-http-client/src/main/resources/META-INF/dirigible/template-http-client/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "guid": "template-http-client" 3 | } -------------------------------------------------------------------------------- /components/template/template-job/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-job/.gitignore -------------------------------------------------------------------------------- /components/template/template-job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-job/pom.xml -------------------------------------------------------------------------------- /components/template/template-job/src/main/resources/META-INF/dirigible/template-job/handler.js.template: -------------------------------------------------------------------------------- 1 | console.log("Hello from the {{fileName}} Job"); -------------------------------------------------------------------------------- /components/template/template-job/src/main/resources/META-INF/dirigible/template-job/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "guid": "template-job" 3 | } 4 | -------------------------------------------------------------------------------- /components/template/template-listener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-listener/.gitignore -------------------------------------------------------------------------------- /components/template/template-listener/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-listener/pom.xml -------------------------------------------------------------------------------- /components/template/template-mapping-javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-mapping-javascript/.gitignore -------------------------------------------------------------------------------- /components/template/template-mapping-javascript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-mapping-javascript/pom.xml -------------------------------------------------------------------------------- /components/template/template-mapping-javascript/src/main/resources/META-INF/dirigible/template-mapping-javascript/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "guid": "template-mapping-javascript" 3 | } -------------------------------------------------------------------------------- /components/template/template-perspective/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-perspective/.gitignore -------------------------------------------------------------------------------- /components/template/template-perspective/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-perspective/pom.xml -------------------------------------------------------------------------------- /components/template/template-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-react/.gitignore -------------------------------------------------------------------------------- /components/template/template-react/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-react/pom.xml -------------------------------------------------------------------------------- /components/template/template-react/src/main/resources/META-INF/dirigible/template-react/.gitignore.template: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /components/template/template-react/src/main/resources/META-INF/dirigible/template-react/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "guid": "template-react" 3 | } -------------------------------------------------------------------------------- /components/template/template-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-typescript/.gitignore -------------------------------------------------------------------------------- /components/template/template-typescript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-typescript/pom.xml -------------------------------------------------------------------------------- /components/template/template-typescript/src/main/resources/META-INF/dirigible/template-typescript/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "guid": "template-typescript" 3 | } 4 | -------------------------------------------------------------------------------- /components/template/template-view/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-view/.gitignore -------------------------------------------------------------------------------- /components/template/template-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-view/pom.xml -------------------------------------------------------------------------------- /components/template/template-websocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-websocket/.gitignore -------------------------------------------------------------------------------- /components/template/template-websocket/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/template/template-websocket/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-bpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-bpm/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-bpm/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-bpm/about.html -------------------------------------------------------------------------------- /components/ui/editor-bpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-bpm/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-csv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-csv/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-csv/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-csv/about.html -------------------------------------------------------------------------------- /components/ui/editor-csv/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-csv/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-csvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-csvim/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-csvim/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-csvim/about.html -------------------------------------------------------------------------------- /components/ui/editor-csvim/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-csvim/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-data-structures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-data-structures/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-data-structures/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-data-structures/about.html -------------------------------------------------------------------------------- /components/ui/editor-data-structures/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-data-structures/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-entity/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-entity/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-entity/about.html -------------------------------------------------------------------------------- /components/ui/editor-entity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-entity/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-extensions/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-extensions/about.html -------------------------------------------------------------------------------- /components/ui/editor-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-extensions/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-form-builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-form-builder/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-form-builder/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-form-builder/about.html -------------------------------------------------------------------------------- /components/ui/editor-form-builder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-form-builder/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-image/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-image/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-image/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-image/about.html -------------------------------------------------------------------------------- /components/ui/editor-image/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-image/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-integrations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-integrations/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-integrations/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-integrations/about.html -------------------------------------------------------------------------------- /components/ui/editor-integrations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-integrations/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-jobs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-jobs/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-jobs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-jobs/about.html -------------------------------------------------------------------------------- /components/ui/editor-jobs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-jobs/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-listeners/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-listeners/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-listeners/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-listeners/about.html -------------------------------------------------------------------------------- /components/ui/editor-listeners/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-listeners/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-mapping/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-mapping/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-mapping/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-mapping/about.html -------------------------------------------------------------------------------- /components/ui/editor-mapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-mapping/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-monaco-extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-monaco-extensions/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-monaco-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-monaco-extensions/about.html -------------------------------------------------------------------------------- /components/ui/editor-monaco-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-monaco-extensions/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-monaco/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-monaco/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-monaco/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-monaco/about.html -------------------------------------------------------------------------------- /components/ui/editor-monaco/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-monaco/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-report/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-report/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-report/about.html -------------------------------------------------------------------------------- /components/ui/editor-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-report/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-schema/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-schema/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-schema/about.html -------------------------------------------------------------------------------- /components/ui/editor-schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-schema/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-security/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-security/about.html -------------------------------------------------------------------------------- /components/ui/editor-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-security/pom.xml -------------------------------------------------------------------------------- /components/ui/editor-websockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-websockets/.gitignore -------------------------------------------------------------------------------- /components/ui/editor-websockets/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-websockets/about.html -------------------------------------------------------------------------------- /components/ui/editor-websockets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/editor-websockets/pom.xml -------------------------------------------------------------------------------- /components/ui/ext-documents-content-type-ms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/ext-documents-content-type-ms/.gitignore -------------------------------------------------------------------------------- /components/ui/ext-documents-content-type-ms/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/ext-documents-content-type-ms/about.html -------------------------------------------------------------------------------- /components/ui/ext-documents-content-type-ms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/ext-documents-content-type-ms/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-bpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-bpm/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-bpm/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-bpm/about.html -------------------------------------------------------------------------------- /components/ui/menu-bpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-bpm/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-camel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-camel/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-csv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-csv/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-csv/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-csv/about.html -------------------------------------------------------------------------------- /components/ui/menu-csv/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-csv/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-database/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-database/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-database/about.html -------------------------------------------------------------------------------- /components/ui/menu-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-database/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-entity/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-entity/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-entity/about.html -------------------------------------------------------------------------------- /components/ui/menu-entity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-entity/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-extensions/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-extensions/about.html -------------------------------------------------------------------------------- /components/ui/menu-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-extensions/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-form-builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-form-builder/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-form-builder/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-form-builder/about.html -------------------------------------------------------------------------------- /components/ui/menu-form-builder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-form-builder/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-help/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-help/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-help/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-help/about.html -------------------------------------------------------------------------------- /components/ui/menu-help/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-help/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-jobs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-jobs/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-jobs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-jobs/about.html -------------------------------------------------------------------------------- /components/ui/menu-jobs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-jobs/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-listeners/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-listeners/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-listeners/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-listeners/about.html -------------------------------------------------------------------------------- /components/ui/menu-listeners/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-listeners/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-mapping/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-mapping/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-mapping/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-mapping/about.html -------------------------------------------------------------------------------- /components/ui/menu-mapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-mapping/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-projects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-projects/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-projects/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-projects/about.html -------------------------------------------------------------------------------- /components/ui/menu-projects/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-projects/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-schema/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-schema/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-schema/about.html -------------------------------------------------------------------------------- /components/ui/menu-schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-schema/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-security/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-security/about.html -------------------------------------------------------------------------------- /components/ui/menu-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-security/pom.xml -------------------------------------------------------------------------------- /components/ui/menu-websockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-websockets/.gitignore -------------------------------------------------------------------------------- /components/ui/menu-websockets/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-websockets/about.html -------------------------------------------------------------------------------- /components/ui/menu-websockets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/menu-websockets/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-database/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-database/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-database/about.html -------------------------------------------------------------------------------- /components/ui/perspective-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-database/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-documents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-documents/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-documents/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-documents/about.html -------------------------------------------------------------------------------- /components/ui/perspective-documents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-documents/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-git/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-git/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-git/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-git/about.html -------------------------------------------------------------------------------- /components/ui/perspective-git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-git/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-jobs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-jobs/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-jobs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-jobs/about.html -------------------------------------------------------------------------------- /components/ui/perspective-jobs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-jobs/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-operations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-operations/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-operations/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-operations/about.html -------------------------------------------------------------------------------- /components/ui/perspective-operations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-operations/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-processes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-processes/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-processes/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-processes/about.html -------------------------------------------------------------------------------- /components/ui/perspective-processes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-processes/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-security/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-security/about.html -------------------------------------------------------------------------------- /components/ui/perspective-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-security/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-settings/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-settings/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-settings/about.html -------------------------------------------------------------------------------- /components/ui/perspective-settings/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-settings/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-tracing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-tracing/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-tracing/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-tracing/about.html -------------------------------------------------------------------------------- /components/ui/perspective-tracing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-tracing/pom.xml -------------------------------------------------------------------------------- /components/ui/perspective-workbench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-workbench/.gitignore -------------------------------------------------------------------------------- /components/ui/perspective-workbench/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-workbench/about.html -------------------------------------------------------------------------------- /components/ui/perspective-workbench/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/perspective-workbench/pom.xml -------------------------------------------------------------------------------- /components/ui/service-actions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-actions/.gitignore -------------------------------------------------------------------------------- /components/ui/service-actions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-actions/about.html -------------------------------------------------------------------------------- /components/ui/service-actions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-actions/pom.xml -------------------------------------------------------------------------------- /components/ui/service-extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-extensions/.gitignore -------------------------------------------------------------------------------- /components/ui/service-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-extensions/about.html -------------------------------------------------------------------------------- /components/ui/service-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-extensions/pom.xml -------------------------------------------------------------------------------- /components/ui/service-generate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-generate/.gitignore -------------------------------------------------------------------------------- /components/ui/service-generate/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-generate/about.html -------------------------------------------------------------------------------- /components/ui/service-generate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-generate/pom.xml -------------------------------------------------------------------------------- /components/ui/service-git/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-git/.gitignore -------------------------------------------------------------------------------- /components/ui/service-git/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-git/about.html -------------------------------------------------------------------------------- /components/ui/service-git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-git/pom.xml -------------------------------------------------------------------------------- /components/ui/service-publisher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-publisher/.gitignore -------------------------------------------------------------------------------- /components/ui/service-publisher/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-publisher/about.html -------------------------------------------------------------------------------- /components/ui/service-publisher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-publisher/pom.xml -------------------------------------------------------------------------------- /components/ui/service-registry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-registry/.gitignore -------------------------------------------------------------------------------- /components/ui/service-registry/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-registry/about.html -------------------------------------------------------------------------------- /components/ui/service-registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-registry/pom.xml -------------------------------------------------------------------------------- /components/ui/service-repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-repository/.gitignore -------------------------------------------------------------------------------- /components/ui/service-repository/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-repository/about.html -------------------------------------------------------------------------------- /components/ui/service-repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-repository/pom.xml -------------------------------------------------------------------------------- /components/ui/service-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-template/.gitignore -------------------------------------------------------------------------------- /components/ui/service-template/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-template/about.html -------------------------------------------------------------------------------- /components/ui/service-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-template/pom.xml -------------------------------------------------------------------------------- /components/ui/service-transport/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-transport/.gitignore -------------------------------------------------------------------------------- /components/ui/service-transport/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-transport/about.html -------------------------------------------------------------------------------- /components/ui/service-transport/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-transport/pom.xml -------------------------------------------------------------------------------- /components/ui/service-workspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-workspace/.gitignore -------------------------------------------------------------------------------- /components/ui/service-workspace/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-workspace/about.html -------------------------------------------------------------------------------- /components/ui/service-workspace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/service-workspace/pom.xml -------------------------------------------------------------------------------- /components/ui/settings-locale/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/settings-locale/.gitignore -------------------------------------------------------------------------------- /components/ui/settings-locale/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/settings-locale/about.html -------------------------------------------------------------------------------- /components/ui/settings-locale/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/settings-locale/pom.xml -------------------------------------------------------------------------------- /components/ui/shell-ide/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/shell-ide/.gitignore -------------------------------------------------------------------------------- /components/ui/shell-ide/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/shell-ide/about.html -------------------------------------------------------------------------------- /components/ui/shell-ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/shell-ide/pom.xml -------------------------------------------------------------------------------- /components/ui/view-artefacts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-artefacts/.gitignore -------------------------------------------------------------------------------- /components/ui/view-artefacts/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-artefacts/about.html -------------------------------------------------------------------------------- /components/ui/view-artefacts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-artefacts/pom.xml -------------------------------------------------------------------------------- /components/ui/view-configurations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-configurations/.gitignore -------------------------------------------------------------------------------- /components/ui/view-configurations/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-configurations/about.html -------------------------------------------------------------------------------- /components/ui/view-configurations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-configurations/pom.xml -------------------------------------------------------------------------------- /components/ui/view-console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-console/.gitignore -------------------------------------------------------------------------------- /components/ui/view-console/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-console/about.html -------------------------------------------------------------------------------- /components/ui/view-console/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-console/pom.xml -------------------------------------------------------------------------------- /components/ui/view-data-structures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-data-structures/.gitignore -------------------------------------------------------------------------------- /components/ui/view-data-structures/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-data-structures/about.html -------------------------------------------------------------------------------- /components/ui/view-data-structures/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-data-structures/pom.xml -------------------------------------------------------------------------------- /components/ui/view-databases/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-databases/.gitignore -------------------------------------------------------------------------------- /components/ui/view-databases/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-databases/about.html -------------------------------------------------------------------------------- /components/ui/view-databases/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-databases/pom.xml -------------------------------------------------------------------------------- /components/ui/view-debugger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-debugger/.gitignore -------------------------------------------------------------------------------- /components/ui/view-debugger/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-debugger/about.html -------------------------------------------------------------------------------- /components/ui/view-debugger/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-debugger/pom.xml -------------------------------------------------------------------------------- /components/ui/view-extensions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-extensions/.gitignore -------------------------------------------------------------------------------- /components/ui/view-extensions/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-extensions/about.html -------------------------------------------------------------------------------- /components/ui/view-extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-extensions/pom.xml -------------------------------------------------------------------------------- /components/ui/view-git/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-git/about.html -------------------------------------------------------------------------------- /components/ui/view-git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-git/pom.xml -------------------------------------------------------------------------------- /components/ui/view-import/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-import/.gitignore -------------------------------------------------------------------------------- /components/ui/view-import/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-import/about.html -------------------------------------------------------------------------------- /components/ui/view-import/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-import/pom.xml -------------------------------------------------------------------------------- /components/ui/view-jobs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-jobs/.gitignore -------------------------------------------------------------------------------- /components/ui/view-jobs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-jobs/about.html -------------------------------------------------------------------------------- /components/ui/view-jobs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-jobs/pom.xml -------------------------------------------------------------------------------- /components/ui/view-listeners/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-listeners/.gitignore -------------------------------------------------------------------------------- /components/ui/view-listeners/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-listeners/about.html -------------------------------------------------------------------------------- /components/ui/view-listeners/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-listeners/pom.xml -------------------------------------------------------------------------------- /components/ui/view-loggers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-loggers/.gitignore -------------------------------------------------------------------------------- /components/ui/view-loggers/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-loggers/about.html -------------------------------------------------------------------------------- /components/ui/view-loggers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-loggers/pom.xml -------------------------------------------------------------------------------- /components/ui/view-logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-logs/.gitignore -------------------------------------------------------------------------------- /components/ui/view-logs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-logs/about.html -------------------------------------------------------------------------------- /components/ui/view-logs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-logs/pom.xml -------------------------------------------------------------------------------- /components/ui/view-preview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-preview/.gitignore -------------------------------------------------------------------------------- /components/ui/view-preview/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-preview/about.html -------------------------------------------------------------------------------- /components/ui/view-preview/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-preview/pom.xml -------------------------------------------------------------------------------- /components/ui/view-problems/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-problems/.gitignore -------------------------------------------------------------------------------- /components/ui/view-problems/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-problems/about.html -------------------------------------------------------------------------------- /components/ui/view-problems/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-problems/pom.xml -------------------------------------------------------------------------------- /components/ui/view-projects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-projects/.gitignore -------------------------------------------------------------------------------- /components/ui/view-projects/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-projects/about.html -------------------------------------------------------------------------------- /components/ui/view-projects/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-projects/pom.xml -------------------------------------------------------------------------------- /components/ui/view-properties/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-properties/.gitignore -------------------------------------------------------------------------------- /components/ui/view-properties/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-properties/about.html -------------------------------------------------------------------------------- /components/ui/view-properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-properties/pom.xml -------------------------------------------------------------------------------- /components/ui/view-registry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-registry/.gitignore -------------------------------------------------------------------------------- /components/ui/view-registry/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-registry/about.html -------------------------------------------------------------------------------- /components/ui/view-registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-registry/pom.xml -------------------------------------------------------------------------------- /components/ui/view-repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-repository/.gitignore -------------------------------------------------------------------------------- /components/ui/view-repository/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-repository/about.html -------------------------------------------------------------------------------- /components/ui/view-repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-repository/pom.xml -------------------------------------------------------------------------------- /components/ui/view-search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-search/.gitignore -------------------------------------------------------------------------------- /components/ui/view-search/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-search/about.html -------------------------------------------------------------------------------- /components/ui/view-search/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-search/pom.xml -------------------------------------------------------------------------------- /components/ui/view-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-security/.gitignore -------------------------------------------------------------------------------- /components/ui/view-security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-security/about.html -------------------------------------------------------------------------------- /components/ui/view-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-security/pom.xml -------------------------------------------------------------------------------- /components/ui/view-sql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-sql/.gitignore -------------------------------------------------------------------------------- /components/ui/view-sql/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-sql/about.html -------------------------------------------------------------------------------- /components/ui/view-sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-sql/pom.xml -------------------------------------------------------------------------------- /components/ui/view-swagger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-swagger/.gitignore -------------------------------------------------------------------------------- /components/ui/view-swagger/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-swagger/about.html -------------------------------------------------------------------------------- /components/ui/view-swagger/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-swagger/pom.xml -------------------------------------------------------------------------------- /components/ui/view-terminal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-terminal/.gitignore -------------------------------------------------------------------------------- /components/ui/view-terminal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-terminal/about.html -------------------------------------------------------------------------------- /components/ui/view-terminal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-terminal/pom.xml -------------------------------------------------------------------------------- /components/ui/view-transfer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-transfer/.gitignore -------------------------------------------------------------------------------- /components/ui/view-transfer/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-transfer/about.html -------------------------------------------------------------------------------- /components/ui/view-transfer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-transfer/pom.xml -------------------------------------------------------------------------------- /components/ui/view-translation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-translation/.gitignore -------------------------------------------------------------------------------- /components/ui/view-translation/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-translation/about.html -------------------------------------------------------------------------------- /components/ui/view-translation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-translation/pom.xml -------------------------------------------------------------------------------- /components/ui/view-websockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-websockets/.gitignore -------------------------------------------------------------------------------- /components/ui/view-websockets/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-websockets/about.html -------------------------------------------------------------------------------- /components/ui/view-websockets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-websockets/pom.xml -------------------------------------------------------------------------------- /components/ui/view-welcome/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-welcome/.gitignore -------------------------------------------------------------------------------- /components/ui/view-welcome/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-welcome/about.html -------------------------------------------------------------------------------- /components/ui/view-welcome/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/view-welcome/pom.xml -------------------------------------------------------------------------------- /components/ui/window-about/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/window-about/.gitignore -------------------------------------------------------------------------------- /components/ui/window-about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/window-about/about.html -------------------------------------------------------------------------------- /components/ui/window-about/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/components/ui/window-about/pom.xml -------------------------------------------------------------------------------- /dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/dependencies/pom.xml -------------------------------------------------------------------------------- /dirigible-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/dirigible-formatter.xml -------------------------------------------------------------------------------- /epl-v20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/epl-v20.html -------------------------------------------------------------------------------- /findbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/findbugs-exclude.xml -------------------------------------------------------------------------------- /licensing-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/licensing-header.txt -------------------------------------------------------------------------------- /logo/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/android-chrome-192x192.png -------------------------------------------------------------------------------- /logo/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/android-chrome-512x512.png -------------------------------------------------------------------------------- /logo/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/apple-touch-icon.png -------------------------------------------------------------------------------- /logo/dirigible-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-horizontal.png -------------------------------------------------------------------------------- /logo/dirigible-horizontal.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-horizontal.psd -------------------------------------------------------------------------------- /logo/dirigible-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-horizontal.svg -------------------------------------------------------------------------------- /logo/dirigible-logo-200x200-square-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-200x200-square-black.png -------------------------------------------------------------------------------- /logo/dirigible-logo-200x200-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-200x200-square.png -------------------------------------------------------------------------------- /logo/dirigible-logo-200x200-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-200x200-transparent.png -------------------------------------------------------------------------------- /logo/dirigible-logo-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-200x200.png -------------------------------------------------------------------------------- /logo/dirigible-logo-2Kx2K-square-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-2Kx2K-square-black.png -------------------------------------------------------------------------------- /logo/dirigible-logo-2Kx2K-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-2Kx2K-square.png -------------------------------------------------------------------------------- /logo/dirigible-logo-2Kx2K-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-2Kx2K-square.svg -------------------------------------------------------------------------------- /logo/dirigible-logo-2Kx2K-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-2Kx2K-transparent.png -------------------------------------------------------------------------------- /logo/dirigible-logo-2Kx2K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-2Kx2K.png -------------------------------------------------------------------------------- /logo/dirigible-logo-2Kx2K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-2Kx2K.svg -------------------------------------------------------------------------------- /logo/dirigible-logo-32x32-square-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-32x32-square-black.png -------------------------------------------------------------------------------- /logo/dirigible-logo-32x32-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-32x32-transparent.png -------------------------------------------------------------------------------- /logo/dirigible-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-32x32.png -------------------------------------------------------------------------------- /logo/dirigible-logo-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/dirigible-logo-symbol.png -------------------------------------------------------------------------------- /logo/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/favicon-16x16.png -------------------------------------------------------------------------------- /logo/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/favicon-32x32.png -------------------------------------------------------------------------------- /logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/favicon.ico -------------------------------------------------------------------------------- /logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/logo/favicon.png -------------------------------------------------------------------------------- /misc/eclipse/spring-start-dirigibile-keycloak.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/misc/eclipse/spring-start-dirigibile-keycloak.launch -------------------------------------------------------------------------------- /misc/eclipse/spring-start-dirigibile-oauth.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/misc/eclipse/spring-start-dirigibile-oauth.launch -------------------------------------------------------------------------------- /misc/eclipse/spring-start-dirigibile.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/misc/eclipse/spring-start-dirigibile.launch -------------------------------------------------------------------------------- /misc/secrets/npm-aerokit-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/misc/secrets/npm-aerokit-token.png -------------------------------------------------------------------------------- /misc/secrets/npm-dirigiblelabs-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/misc/secrets/npm-dirigiblelabs-token.png -------------------------------------------------------------------------------- /modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/.gitignore -------------------------------------------------------------------------------- /modules/commons/commons-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-config/.gitignore -------------------------------------------------------------------------------- /modules/commons/commons-config/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-config/about.html -------------------------------------------------------------------------------- /modules/commons/commons-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-config/pom.xml -------------------------------------------------------------------------------- /modules/commons/commons-config/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /modules/commons/commons-config/src/test/resources/precedence-no-env.properties: -------------------------------------------------------------------------------- 1 | # Test 2 | TEST_PROPERTY_USERNAME=test 3 | -------------------------------------------------------------------------------- /modules/commons/commons-config/src/test/resources/precedence.properties: -------------------------------------------------------------------------------- 1 | # Test 2 | PATH=/my/path 3 | -------------------------------------------------------------------------------- /modules/commons/commons-config/src/test/resources/test.properties: -------------------------------------------------------------------------------- 1 | # Test 2 | DIRIGIBLE_TEST_PROPERTY=test 3 | -------------------------------------------------------------------------------- /modules/commons/commons-helpers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-helpers/.gitignore -------------------------------------------------------------------------------- /modules/commons/commons-helpers/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-helpers/about.html -------------------------------------------------------------------------------- /modules/commons/commons-helpers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-helpers/pom.xml -------------------------------------------------------------------------------- /modules/commons/commons-process/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-process/.gitignore -------------------------------------------------------------------------------- /modules/commons/commons-process/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-process/about.html -------------------------------------------------------------------------------- /modules/commons/commons-process/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-process/pom.xml -------------------------------------------------------------------------------- /modules/commons/commons-process/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /modules/commons/commons-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-resources/pom.xml -------------------------------------------------------------------------------- /modules/commons/commons-timeout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-timeout/.gitignore -------------------------------------------------------------------------------- /modules/commons/commons-timeout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-timeout/pom.xml -------------------------------------------------------------------------------- /modules/commons/commons-xml2json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-xml2json/.gitignore -------------------------------------------------------------------------------- /modules/commons/commons-xml2json/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-xml2json/about.html -------------------------------------------------------------------------------- /modules/commons/commons-xml2json/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/commons-xml2json/pom.xml -------------------------------------------------------------------------------- /modules/commons/commons-xml2json/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /modules/commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/commons/pom.xml -------------------------------------------------------------------------------- /modules/database/database-h2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-h2/pom.xml -------------------------------------------------------------------------------- /modules/database/database-h2/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /modules/database/database-mongodb-jdbc/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /.settings/ 3 | .classpath 4 | .project 5 | -------------------------------------------------------------------------------- /modules/database/database-mongodb-jdbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-mongodb-jdbc/README.md -------------------------------------------------------------------------------- /modules/database/database-mongodb-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-mongodb-jdbc/pom.xml -------------------------------------------------------------------------------- /modules/database/database-persistence/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-persistence/.gitignore -------------------------------------------------------------------------------- /modules/database/database-persistence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-persistence/README.md -------------------------------------------------------------------------------- /modules/database/database-persistence/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-persistence/about.html -------------------------------------------------------------------------------- /modules/database/database-persistence/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-persistence/pom.xml -------------------------------------------------------------------------------- /modules/database/database-persistence/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /modules/database/database-sql-h2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-h2/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-h2/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-h2/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-h2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-h2/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql-hana/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-hana/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-hana/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-hana/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-hana/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-hana/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql-mariadb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mariadb/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-mariadb/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mariadb/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-mariadb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mariadb/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql-mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mongodb/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-mongodb/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mongodb/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-mongodb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mongodb/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql-mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mysql/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-mysql/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mysql/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-mysql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-mysql/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql-postgres/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-postgres/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-postgres/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-postgres/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-postgres/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-postgres/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql-snowflake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-snowflake/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql-snowflake/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-snowflake/about.html -------------------------------------------------------------------------------- /modules/database/database-sql-snowflake/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql-snowflake/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql/.gitignore -------------------------------------------------------------------------------- /modules/database/database-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql/README.md -------------------------------------------------------------------------------- /modules/database/database-sql/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql/about.html -------------------------------------------------------------------------------- /modules/database/database-sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/database-sql/pom.xml -------------------------------------------------------------------------------- /modules/database/database-sql/src/test/resources/dirigible.properties: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /modules/database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/database/pom.xml -------------------------------------------------------------------------------- /modules/engines/engine-graalium/execution-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/engines/engine-graalium/execution-core/pom.xml -------------------------------------------------------------------------------- /modules/engines/engine-graalium/execution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/engines/engine-graalium/execution/pom.xml -------------------------------------------------------------------------------- /modules/engines/engine-graalium/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/engines/engine-graalium/pom.xml -------------------------------------------------------------------------------- /modules/engines/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/engines/pom.xml -------------------------------------------------------------------------------- /modules/odata/odata-core-test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core-test/about.html -------------------------------------------------------------------------------- /modules/odata/odata-core-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core-test/pom.xml -------------------------------------------------------------------------------- /modules/odata/odata-core-test/src/test/resources/data/Cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core-test/src/test/resources/data/Cars.csv -------------------------------------------------------------------------------- /modules/odata/odata-core-test/src/test/resources/data/View.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core-test/src/test/resources/data/View.csv -------------------------------------------------------------------------------- /modules/odata/odata-core-test/src/test/resources/data/contract.clob: -------------------------------------------------------------------------------- 1 | noop -------------------------------------------------------------------------------- /modules/odata/odata-core-test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core-test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /modules/odata/odata-core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core/about.html -------------------------------------------------------------------------------- /modules/odata/odata-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-core/pom.xml -------------------------------------------------------------------------------- /modules/odata/odata-samples-northwind/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-samples-northwind/about.html -------------------------------------------------------------------------------- /modules/odata/odata-samples-northwind/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/odata-samples-northwind/pom.xml -------------------------------------------------------------------------------- /modules/odata/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/odata/pom.xml -------------------------------------------------------------------------------- /modules/parsers/apidoc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/parsers/apidoc/pom.xml -------------------------------------------------------------------------------- /modules/parsers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/parsers/pom.xml -------------------------------------------------------------------------------- /modules/parsers/typescript/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/parsers/typescript/pom.xml -------------------------------------------------------------------------------- /modules/parsers/typescript/src/test/resources/Car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/parsers/typescript/src/test/resources/Car.ts -------------------------------------------------------------------------------- /modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/pom.xml -------------------------------------------------------------------------------- /modules/repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-api-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-api-test/.gitignore -------------------------------------------------------------------------------- /modules/repository/repository-api-test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-api-test/about.html -------------------------------------------------------------------------------- /modules/repository/repository-api-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-api-test/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-api/.gitignore -------------------------------------------------------------------------------- /modules/repository/repository-api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-api/about.html -------------------------------------------------------------------------------- /modules/repository/repository-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-api/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-cache/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-cache/about.html -------------------------------------------------------------------------------- /modules/repository/repository-cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-cache/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-local/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-local/.gitignore -------------------------------------------------------------------------------- /modules/repository/repository-local/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-local/about.html -------------------------------------------------------------------------------- /modules/repository/repository-local/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-local/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-local/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /modules/repository/repository-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-master/.gitignore -------------------------------------------------------------------------------- /modules/repository/repository-master/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-master/about.html -------------------------------------------------------------------------------- /modules/repository/repository-master/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-master/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-search/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-search/about.html -------------------------------------------------------------------------------- /modules/repository/repository-search/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-search/pom.xml -------------------------------------------------------------------------------- /modules/repository/repository-zip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-zip/.gitignore -------------------------------------------------------------------------------- /modules/repository/repository-zip/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-zip/about.html -------------------------------------------------------------------------------- /modules/repository/repository-zip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/modules/repository/repository-zip/pom.xml -------------------------------------------------------------------------------- /notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/notice.html -------------------------------------------------------------------------------- /npm/dirigible-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible-cli/LICENSE -------------------------------------------------------------------------------- /npm/dirigible-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible-cli/README.md -------------------------------------------------------------------------------- /npm/dirigible-cli/bin/dirigible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible-cli/bin/dirigible.js -------------------------------------------------------------------------------- /npm/dirigible-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible-cli/package.json -------------------------------------------------------------------------------- /npm/dirigible/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible/LICENSE -------------------------------------------------------------------------------- /npm/dirigible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible/README.md -------------------------------------------------------------------------------- /npm/dirigible/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible/package.json -------------------------------------------------------------------------------- /npm/dirigible/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/dirigible/postinstall.js -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/README.md -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/demo-process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/demo-process.bpmn -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/demo-table.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/demo-table.table -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/hello.ts -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/package.json -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/project.json -------------------------------------------------------------------------------- /npm/tests/dirigible-demo-project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/npm/tests/dirigible-demo-project/tsconfig.json -------------------------------------------------------------------------------- /open-telemetry/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/.env -------------------------------------------------------------------------------- /open-telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/README.md -------------------------------------------------------------------------------- /open-telemetry/dirigible/dirigible-image-otel-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/dirigible/dirigible-image-otel-agent/Dockerfile -------------------------------------------------------------------------------- /open-telemetry/dirigible/local-dirigible-otel-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/dirigible/local-dirigible-otel-agent/Dockerfile -------------------------------------------------------------------------------- /open-telemetry/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/docker-compose.yaml -------------------------------------------------------------------------------- /open-telemetry/grafana 2/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/grafana 2/grafana.ini -------------------------------------------------------------------------------- /open-telemetry/grafana/provisioning/dashboards/dirigible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/grafana/provisioning/dashboards/dirigible.yaml -------------------------------------------------------------------------------- /open-telemetry/grafana/provisioning/datasources/jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/grafana/provisioning/datasources/jaeger.yaml -------------------------------------------------------------------------------- /open-telemetry/grafana/provisioning/datasources/loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/grafana/provisioning/datasources/loki.yaml -------------------------------------------------------------------------------- /open-telemetry/opensearch-dashboards/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/opensearch-dashboards/Dockerfile -------------------------------------------------------------------------------- /open-telemetry/opensearch-dashboards/opensearch_dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/opensearch-dashboards/opensearch_dashboards.yml -------------------------------------------------------------------------------- /open-telemetry/otel-collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/otel-collector-config.yaml -------------------------------------------------------------------------------- /open-telemetry/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/open-telemetry/prometheus.yml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/pom.xml -------------------------------------------------------------------------------- /samples/sample-api-utils-base64/base64-decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/samples/sample-api-utils-base64/base64-decode.js -------------------------------------------------------------------------------- /samples/sample-api-utils-base64/base64-encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/samples/sample-api-utils-base64/base64-encode.js -------------------------------------------------------------------------------- /samples/sample-builtin-console/console-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/samples/sample-builtin-console/console-log.js -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /tests/tests-framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/tests/tests-framework/pom.xml -------------------------------------------------------------------------------- /tests/tests-framework/src/main/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/tests/tests-framework/src/main/resources/logback-test.xml -------------------------------------------------------------------------------- /tests/tests-integrations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-dirigible/dirigible/HEAD/tests/tests-integrations/pom.xml -------------------------------------------------------------------------------- /tests/tests-integrations/src/main/resources/DependsOnScenariosTestProject/data/uoms.csv: -------------------------------------------------------------------------------- 1 | UOM_ID,UOM_NAME 2 | 1,Kg 3 | 2,Liter 4 | 3,Piece -------------------------------------------------------------------------------- /tests/tests-integrations/src/main/resources/META-INF/dirigible/cms-tests/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "guid": "cms-tests" 3 | } 4 | -------------------------------------------------------------------------------- /tests/tests-integrations/src/main/resources/META-INF/dirigible/modules-tests/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /tests/tests-integrations/src/main/resources/test-project/command/print.bat: -------------------------------------------------------------------------------- 1 | echo %GREETING% -------------------------------------------------------------------------------- /tests/tests-integrations/src/main/resources/test-project/command/print.sh: -------------------------------------------------------------------------------- 1 | echo $GREETING --------------------------------------------------------------------------------