-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed soft link, fixed file param in editors, migrated report and i…
…ntegrations editors Signed-off-by: StanZGenchev <stan.z.genchev@gmail.com>
- Loading branch information
1 parent
001cce4
commit d8e0bd7
Showing
326 changed files
with
184,329 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# folders | ||
dist/ | ||
.settings/ | ||
target/ | ||
derby/ | ||
dirigible_local/ | ||
|
||
# files | ||
.DS_Store | ||
.project | ||
.classpath | ||
*.bak | ||
*.class | ||
*.jar | ||
derby.log | ||
/bin/ | ||
/target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/> | ||
<title>About</title> | ||
</head> | ||
<body lang="EN-US"> | ||
<h2>About This Content</h2> | ||
|
||
<p>April 25, 2020</p> | ||
<h3>License</h3> | ||
|
||
<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise | ||
indicated below, the Content is provided to you under the terms and conditions of the | ||
Eclipse Public License Version 2.0 ("EPL"). A copy of the EPL is available | ||
at <a href="http://www.eclipse.org/legal/epl-v20.html">http://www.eclipse.org/legal/epl-v20.html</a>. | ||
For purposes of the EPL, "Program" will mean the Content.</p> | ||
|
||
<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is | ||
being redistributed by another party ("Redistributor") and different terms and conditions may | ||
apply to your use of any object code in the Content. Check the Redistributor's license that was | ||
provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise | ||
indicated below, the terms and conditions of the EPL still apply to any source code in the Content | ||
and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>.</p> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.eclipse.dirigible</groupId> | ||
<artifactId>dirigible-components-parent</artifactId> | ||
<version>11.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<name>Components - IDE - Integrations - Editor</name> | ||
<artifactId>dirigible-components-editor-integrations</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<license.header.location>../../../licensing-header.txt</license.header.location> | ||
<parent.pom.folder>../../../</parent.pom.folder> | ||
</properties> | ||
|
||
</project> |
21 changes: 21 additions & 0 deletions
21
.../src/main/resources/META-INF/dirigible/editor-integrations/configs/integrations-editor.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) 2024 Eclipse Dirigible contributors | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v2.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* SPDX-FileCopyrightText: Eclipse Dirigible contributors | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
const editorData = { | ||
id: 'integrationsEditor', | ||
label: 'Integrations Editor', | ||
region: 'center', | ||
path: '/services/web/editor-integrations/editor.html', | ||
contentTypes: ['application/camel'], | ||
}; | ||
if (typeof exports !== 'undefined') { | ||
exports.getEditor = () => editorData; | ||
} |
31 changes: 31 additions & 0 deletions
31
...ns/src/main/resources/META-INF/dirigible/editor-integrations/designer/asset-manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"files": { | ||
"main.css": "/services/web/ide-integrations/designer/static/css/main.cad1c473.css", | ||
"main.js": "/services/web/ide-integrations/designer/static/js/main.0447b661.js", | ||
"static/media/fa-solid-900.woff2": "/services/web/ide-integrations/designer/static/media/fa-solid-900.c2b7c03209f0d3558e85.woff2", | ||
"static/media/RedHatDisplayVF-Italic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatDisplayVF-Italic.813182e673c38ef5ee4b.woff2", | ||
"static/media/RedHatTextVF-Italic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatTextVF-Italic.078865af129336cde269.woff2", | ||
"static/media/RedHatDisplayVF.woff2": "/services/web/ide-integrations/designer/static/media/RedHatDisplayVF.18ca482120faaa701d8b.woff2", | ||
"static/media/RedHatTextVF.woff2": "/services/web/ide-integrations/designer/static/media/RedHatTextVF.c33624692c8b41e36780.woff2", | ||
"static/media/RedHatMono-Italic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatMono-Italic.841cdd0ebb3d9038a7e7.woff2", | ||
"static/media/RedHatMonoVF-Italic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatMonoVF-Italic.6e3027616d8de472723c.woff2", | ||
"static/media/RedHatMonoVF.woff2": "/services/web/ide-integrations/designer/static/media/RedHatMonoVF.e4faf134e53e0f37296b.woff2", | ||
"static/media/RedHatText-MediumItalic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatText-MediumItalic.e0f30d27bec7c8dbb6fc.woff2", | ||
"static/media/RedHatDisplay-BoldItalic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatDisplay-BoldItalic.b01a8365f7214919a9c3.woff2", | ||
"static/media/RedHatDisplay-MediumItalic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatDisplay-MediumItalic.ed292ec87cce0d76fd3c.woff2", | ||
"static/media/RedHatText-Italic.woff2": "/services/web/ide-integrations/designer/static/media/RedHatText-Italic.aa07940756a803076b34.woff2", | ||
"static/media/RedHatText-Medium.woff2": "/services/web/ide-integrations/designer/static/media/RedHatText-Medium.9c02e9a1e10fbc86466d.woff2", | ||
"static/media/RedHatDisplay-Medium.woff2": "/services/web/ide-integrations/designer/static/media/RedHatDisplay-Medium.66ac08a9a7d29ae51581.woff2", | ||
"static/media/RedHatDisplay-Bold.woff2": "/services/web/ide-integrations/designer/static/media/RedHatDisplay-Bold.d8d66dd2281610675aca.woff2", | ||
"static/media/RedHatText-Regular.woff2": "/services/web/ide-integrations/designer/static/media/RedHatText-Regular.b36d694117bf12672d49.woff2", | ||
"static/media/RedHatMono-Regular.woff2": "/services/web/ide-integrations/designer/static/media/RedHatMono-Regular.57234ce675330fa60781.woff2", | ||
"static/media/pf-v5-pficon.woff2": "/services/web/ide-integrations/designer/static/media/pf-v5-pficon.c06f4d6490c387fd1d92.woff2", | ||
"index.html": "/services/web/ide-integrations/designer/index.html", | ||
"main.cad1c473.css.map": "/services/web/ide-integrations/designer/static/css/main.cad1c473.css.map", | ||
"main.0447b661.js.map": "/services/web/ide-integrations/designer/static/js/main.0447b661.js.map" | ||
}, | ||
"entrypoints": [ | ||
"static/css/main.cad1c473.css", | ||
"static/js/main.0447b661.js" | ||
] | ||
} |
666 changes: 666 additions & 0 deletions
666
...main/resources/META-INF/dirigible/editor-integrations/designer/components/components.json
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.