Page Menu
Home
Solus
Search
Configure Global Search
Log In
Files
F11047851
D9027.id21796.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
203 KB
Referenced Files
None
Subscribers
None
D9027.id21796.diff
View Options
diff --git a/files/0001-Fix-building-with-maven-and-java-11.patch b/files/0001-Fix-building-with-maven-and-java-11.patch
new file mode 100644
--- /dev/null
+++ b/files/0001-Fix-building-with-maven-and-java-11.patch
@@ -0,0 +1,249 @@
+From d6946349c6a5dd963142b3e935fd59b727a4bd70 Mon Sep 17 00:00:00 2001
+From: Campbell Jones <git@serebit.com>
+Date: Mon, 8 Jun 2020 19:19:33 -0400
+Subject: [PATCH] Fix building with maven and java 11
+
+---
+ .../META-INF/MANIFEST.MF | 7 +-
+ .../build.properties | 7 +-
+ .../app/editors.richnote.libreoffice/pom.xml | 75 +++++++++++--------
+ .../META-INF/MANIFEST.MF | 2 +
+ .../build.properties | 4 +-
+ .../core.utils/META-INF/MANIFEST.MF | 3 +-
+ .../platform.core/core.utils/build.properties | 3 +-
+ modelio/platform.core/core.utils/pom.xml | 31 ++++++++
+ pom.xml | 1 +
+ 9 files changed, 95 insertions(+), 38 deletions(-)
+
+diff --git a/modelio/app/editors.richnote.libreoffice/META-INF/MANIFEST.MF b/modelio/app/editors.richnote.libreoffice/META-INF/MANIFEST.MF
+index 500041d..713826b 100644
+--- a/modelio/app/editors.richnote.libreoffice/META-INF/MANIFEST.MF
++++ b/modelio/app/editors.richnote.libreoffice/META-INF/MANIFEST.MF
+@@ -4,7 +4,12 @@ Bundle-Name: Libreoffice
+ Bundle-SymbolicName: org.modelio.editors.richnote.libreoffice;singleton:=true
+ Bundle-Version: 4.0.1.qualifier
+ Bundle-ClassPath: res/,
+- .
++ target/dependency/juh.jar,
++ target/dependency/jurt.jar,
++ target/dependency/ridl.jar,
++ target/dependency/unoil.jar,
++ lib/javadesigner.jar,
++ .
+ Bundle-Activator: org.modelio.editors.richnote.libreoffice.plugin.LibreOfficeEditors
+ Bundle-Localization: plugin
+ Require-Bundle: org.modelio.editors.richnote,
+diff --git a/modelio/app/editors.richnote.libreoffice/build.properties b/modelio/app/editors.richnote.libreoffice/build.properties
+index a450053..f4df5b9 100644
+--- a/modelio/app/editors.richnote.libreoffice/build.properties
++++ b/modelio/app/editors.richnote.libreoffice/build.properties
+@@ -10,4 +10,9 @@ bin.includes = META-INF/,\
+ runtime/bin/,\
+ res/,\
+ plugin.xml,\
+- plugin.properties
++ plugin.properties,\
++ target/dependency/juh.jar,\
++ target/dependency/jurt.jar,\
++ target/dependency/ridl.jar,\
++ target/dependency/unoil.jar,\
++ lib/javadesigner.jar
+diff --git a/modelio/app/editors.richnote.libreoffice/pom.xml b/modelio/app/editors.richnote.libreoffice/pom.xml
+index 118352f..f61c37b 100644
+--- a/modelio/app/editors.richnote.libreoffice/pom.xml
++++ b/modelio/app/editors.richnote.libreoffice/pom.xml
+@@ -21,39 +21,6 @@
+ <version>${tycho-version}</version>
+ <configuration>
+ <useProjectSettings>true</useProjectSettings>
+- <extraClasspathElements>
+-
+- <extraClasspathElement>
+- <groupId>org.modelio</groupId>
+- <artifactId>javadesigner</artifactId>
+- <version>2.2.0</version>
+- </extraClasspathElement>
+-
+- <extraClasspathElement>
+- <groupId>org.modelio.libreoffice</groupId>
+- <artifactId>com.sun.star.juh</artifactId>
+- <version>3.6.0</version>
+- </extraClasspathElement>
+-
+- <extraClasspathElement>
+- <groupId>org.modelio.libreoffice</groupId>
+- <artifactId>com.sun.star.jurt</artifactId>
+- <version>3.6.0</version>
+- </extraClasspathElement>
+-
+- <extraClasspathElement>
+- <groupId>org.modelio.libreoffice</groupId>
+- <artifactId>com.sun.star.ridl</artifactId>
+- <version>3.6.0</version>
+- </extraClasspathElement>
+-
+- <extraClasspathElement>
+- <groupId>org.modelio.libreoffice</groupId>
+- <artifactId>com.sun.star.unoil</artifactId>
+- <version>3.6.0</version>
+- </extraClasspathElement>
+-
+- </extraClasspathElements>
+ </configuration>
+ </plugin>
+
+@@ -109,8 +76,50 @@
+ </executions>
+ </plugin>
+
++ <plugin>
++ <groupId>org.apache.maven.plugins</groupId>
++ <artifactId>maven-dependency-plugin</artifactId>
++ <version>2.10</version>
++ <executions>
++ <execution>
++ <id>copy-dependencies</id>
++ <phase>initialize</phase>
++ <goals>
++ <goal>copy-dependencies</goal>
++ </goals>
++ <configuration>
++ <includeScope>runtime</includeScope>
++ <stripVersion>true</stripVersion>
++ </configuration>
++ </execution>
++ </executions>
++ </plugin>
++
+ </plugins>
+ </build>
+
++ <dependencies>
++ <dependency>
++ <groupId>org.libreoffice</groupId>
++ <artifactId>juh</artifactId>
++ <version>6.4.3</version>
++ </dependency>
++ <dependency>
++ <groupId>org.libreoffice</groupId>
++ <artifactId>jurt</artifactId>
++ <version>6.4.3</version>
++ </dependency>
++ <dependency>
++ <groupId>org.libreoffice</groupId>
++ <artifactId>ridl</artifactId>
++ <version>6.4.3</version>
++ </dependency>
++ <dependency>
++ <groupId>org.libreoffice</groupId>
++ <artifactId>unoil</artifactId>
++ <version>6.4.3</version>
++ </dependency>
++ </dependencies>
++
+ </project>
+
+diff --git a/modelio/app/editors.richnote.microsoft/META-INF/MANIFEST.MF b/modelio/app/editors.richnote.microsoft/META-INF/MANIFEST.MF
+index bf81c9c..6dd6bd1 100644
+--- a/modelio/app/editors.richnote.microsoft/META-INF/MANIFEST.MF
++++ b/modelio/app/editors.richnote.microsoft/META-INF/MANIFEST.MF
+@@ -23,5 +23,7 @@ Import-Package: javax.annotation;version="1.1.0",
+ javax.inject;version="1.0.0"
+ Bundle-Activator: org.modelio.editors.richnote.microsoft.plugin.MicrosoftEditors
+ Bundle-ClassPath: res/,
++ lib/javadesigner.jar,
++ lib/eclipse.jar,
+ .
+
+diff --git a/modelio/app/editors.richnote.microsoft/build.properties b/modelio/app/editors.richnote.microsoft/build.properties
+index 25f7d7a..c0d3b40 100644
+--- a/modelio/app/editors.richnote.microsoft/build.properties
++++ b/modelio/app/editors.richnote.microsoft/build.properties
+@@ -6,4 +6,6 @@ bin.includes = META-INF/,\
+ .,\
+ res/,\
+ e4model/,\
+- plugin.xml
++ plugin.xml,\
++ lib/javadesigner.jar,\
++ lib/eclipse.jar
+diff --git a/modelio/platform.core/core.utils/META-INF/MANIFEST.MF b/modelio/platform.core/core.utils/META-INF/MANIFEST.MF
+index ba01e91..72c3d11 100644
+--- a/modelio/platform.core/core.utils/META-INF/MANIFEST.MF
++++ b/modelio/platform.core/core.utils/META-INF/MANIFEST.MF
+@@ -15,7 +15,8 @@ Export-Package: org.modelio.vbasic.auth,
+ org.modelio.vbasic.version,
+ org.modelio.vbasic.xml
+ Bundle-ClassPath: res/,
+- .
++ .,
++ target/dependency/jaxb-api.jar
+ Require-Bundle: org.apache.httpcomponents.httpclient,
+ org.apache.httpcomponents.httpcore,
+ org.apache.commons.commons-compress
+diff --git a/modelio/platform.core/core.utils/build.properties b/modelio/platform.core/core.utils/build.properties
+index 05bd7f4..66382b5 100644
+--- a/modelio/platform.core/core.utils/build.properties
++++ b/modelio/platform.core/core.utils/build.properties
+@@ -7,4 +7,5 @@ javacTarget=1.8
+ bin.includes = META-INF/,\
+ .,\
+ res/,\
+- lib/
++ lib/,\
++ target/dependency/jaxb-api.jar
+diff --git a/modelio/platform.core/core.utils/pom.xml b/modelio/platform.core/core.utils/pom.xml
+index 539960b..ed3c871 100644
+--- a/modelio/platform.core/core.utils/pom.xml
++++ b/modelio/platform.core/core.utils/pom.xml
+@@ -12,4 +12,35 @@
+ <artifactId>org.modelio.core.utils</artifactId>
+ <packaging>eclipse-plugin</packaging>
+
++ <dependencies>
++ <dependency>
++ <groupId>javax.xml.bind</groupId>
++ <artifactId>jaxb-api</artifactId>
++ <version>2.3.0</version>
++ </dependency>
++ </dependencies>
++
++ <build>
++ <plugins>
++ <plugin>
++ <groupId>org.apache.maven.plugins</groupId>
++ <artifactId>maven-dependency-plugin</artifactId>
++ <version>2.10</version>
++ <executions>
++ <execution>
++ <id>copy-dependencies</id>
++ <phase>initialize</phase>
++ <goals>
++ <goal>copy-dependencies</goal>
++ </goals>
++ <configuration>
++ <includeScope>runtime</includeScope>
++ <stripVersion>true</stripVersion>
++ </configuration>
++ </execution>
++ </executions>
++ </plugin>
++ </plugins>
++ </build>
++
+ </project>
+diff --git a/pom.xml b/pom.xml
+index c113705..086bfec 100644
+--- a/pom.xml
++++ b/pom.xml
+@@ -165,6 +165,7 @@ This pom executes a maven target on ALL the (eclipse) features that compose the
+ <version>${tycho-version}</version>
+ <configuration>
+ <encoding>UTF-8</encoding>
++ <compilerArgument>-warn:+discouraged,forbidden</compilerArgument>
+ </configuration>
+ </plugin>
+ </plugins>
+--
+2.27.0
+
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,6 +1,6 @@
name : modelio
version : 4.0.1
-release : 4
+release : 5
source :
- https://forge.modelio.org/attachments/download/23699/modelio_sources_4.0.1.zip : 809741f8d2351ec450177b6b74a82f2f11c23071117656b139d7b43e4b342739
license : GPL-3-or-later
@@ -13,11 +13,17 @@
- apache-maven
rundeps :
- libwebkit-gtk
- - openjdk-8
+ - openjdk-11
+setup : |
+ # modelio uses a lot of fragile undefined maven behavior. this patch combats this. ask @serebit for help if this doesn't work
+ cp dev-platform/compilation-env/javadesigner.jar modelio/app/editors.richnote.libreoffice/lib/
+ mkdir modelio/app/editors.richnote.microsoft/lib
+ cp dev-platform/compilation-env/javadesigner.jar modelio/app/editors.richnote.microsoft/lib/
+ cp dev-platform/rcp-target/rcp-eclipse/eclipse/plugins/org.eclipse.swt.win32.win32.x86_3*.jar modelio/app/editors.richnote.microsoft/lib/eclipse.jar
+ %patch -p1 < $pkgfiles/0001-Fix-building-with-maven-and-java-11.patch
build : |
cd AGGREGATOR
- mkdir m2
- mvn -Dmaven.repo.local=./m2 package
+ mvn -Dmaven.repo.local=$workdir/.m2 package
install : |
install -dm00755 $installdir/usr/share/modelio
cp -a products/target/products/org.modelio.product/linux/gtk/x86_64/Modelio*/* $installdir/usr/share/modelio
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -2,8 +2,8 @@
<Source>
<Name>modelio</Name>
<Packager>
- <Name>Fabio Forni</Name>
- <Email>livingsilver94.solus@redaril.me</Email>
+ <Name>Campbell Jones</Name>
+ <Email>dev@serebit.com</Email>
</Packager>
<License>GPL-3-or-later</License>
<PartOf>programming.tools</PartOf>
@@ -150,64 +150,64 @@
<Path fileType="data">/usr/share/modelio/features/org.eclipse.rcp_4.9.0.v20180906-1121/feature.properties</Path>
<Path fileType="data">/usr/share/modelio/features/org.eclipse.rcp_4.9.0.v20180906-1121/feature.xml</Path>
<Path fileType="data">/usr/share/modelio/features/org.eclipse.rcp_4.9.0.v20180906-1121/license.html</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.core_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.core_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.perspective_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.perspective_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.plugdule_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.plugdule_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.preferences_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.preferences_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.project_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.project_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.services_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.services_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.ui_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.ui_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.welcome_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.application.welcome_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.auto_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.auto_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.core_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.core_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.documentation.modeler_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.documentation.modeler_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.bpmn_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.bpmn_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.uml_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.uml_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.admintool_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.admintool_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.audit_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.audit_4.0.1.202004171923/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.core_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.core_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.perspective_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.perspective_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.plugdule_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.plugdule_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.preferences_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.preferences_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.project_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.project_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.services_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.services_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.ui_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.ui_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.welcome_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.application.welcome_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.auto_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.auto_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.core_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.diagrams.core_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.documentation.modeler_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.documentation.modeler_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.bpmn_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.bpmn_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.uml_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.formalism.uml_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.admintool_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.admintool_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.audit_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.audit_4.0.1.202006082330/feature.xml</Path>
<Path fileType="data">/usr/share/modelio/features/org.modelio.functions.bundlefiles_4.0.0/META-INF/MANIFEST.MF</Path>
<Path fileType="data">/usr/share/modelio/features/org.modelio.functions.bundlefiles_4.0.0/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.editors_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.editors_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.elementedition_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.elementedition_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.fle_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.fle_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelbrowser_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelbrowser_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelimport_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelimport_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modules_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modules_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.patterns_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.patterns_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.script_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.script_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.search_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.search_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.update_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.update_4.0.1.202004171923/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.xmi_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.xmi_4.0.1.202004171923/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.editors_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.editors_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.elementedition_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.elementedition_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.fle_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.fle_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelbrowser_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelbrowser_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelimport_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modelimport_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modules_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.modules_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.patterns_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.patterns_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.script_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.script_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.search_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.search_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.update_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.update_4.0.1.202006082330/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.xmi_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.functions.xmi_4.0.1.202006082330/feature.xml</Path>
<Path fileType="data">/usr/share/modelio/features/org.modelio.platform.feature_4.9.0.v20180906-1121/META-INF/MANIFEST.MF</Path>
<Path fileType="data">/usr/share/modelio/features/org.modelio.platform.feature_4.9.0.v20180906-1121/feature.xml</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.platform.libraries_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/features/org.modelio.platform.libraries_4.0.1.202004171923/feature.xml</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.platform.libraries_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/features/org.modelio.platform.libraries_4.0.1.202006082330/feature.xml</Path>
<Path fileType="data">/usr/share/modelio/icon.xpm</Path>
<Path fileType="data">/usr/share/modelio/lib/tools.jar</Path>
<Path fileType="data">/usr/share/modelio/modelio</Path>
@@ -221,10 +221,10 @@
<Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs</Path>
<Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs</Path>
<Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock</Path>
- <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1587151580755.profile.gz</Path>
- <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1587151580778.profile.gz</Path>
- <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1587151584292.profile.gz</Path>
- <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1587151584918.profile.gz</Path>
+ <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1591659102137.profile.gz</Path>
+ <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1591659102160.profile.gz</Path>
+ <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1591659109047.profile.gz</Path>
+ <Path fileType="data">/usr/share/modelio/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1591659109490.profile.gz</Path>
<Path fileType="data">/usr/share/modelio/plugins/com.ibm.icu_62.1.0.v20180727-1652.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/com.jcraft.jsch_0.1.54.v20170116-1932.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/com.sun.el_2.2.0.v201303151357.jar</Path>
@@ -623,66 +623,66 @@
<Path fileType="data">/usr/share/modelio/plugins/org.eclipse.uml2_3.2.0.v201101271655.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.eclipse.update.configurator_3.4.100.v20180821-1913.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.eclipse.urischeme_1.0.0.v20180828-1120.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.admtool.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.admtool_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.api.impl_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.api_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.core_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.model.import_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.modules_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.preferences_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.conf.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.conf_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.core.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.core_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.ui.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.ui_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ramcs_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui.perspective_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui.welcome_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.update.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.update.repo_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.update_4.0.1.202004171923.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.admtool.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.admtool_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.api.impl_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.api_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.core_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.model.import_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.modules_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.preferences_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.conf.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.conf_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.core.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.core_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.ui.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.project.ui_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ramcs_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui.perspective_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui.welcome_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.ui_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.update.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.update.repo_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.app.update_4.0.1.202006082330.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.astyle.linux.gtk.x86_64_1.23.0.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.audit.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.audit_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn-xml_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.extensions_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.metamodel.api_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.metamodel.implementation_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.ui_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.kernel_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.project.data_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.project_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.rcp_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.session_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.store.exml_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.ui_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.utils_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.creation.wizard.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.creation.wizard_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.api_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.browser_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.diagramauto_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.activity_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.bpmn_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.communication_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.composite_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.deployment_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.object_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.sequence_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.state_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.statik_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.usecase_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.elements_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.outline_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.persistence_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.styles.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.styles_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.symbol_4.0.1.202004171923.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.audit.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.audit_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn-xml_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.extensions_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.metamodel.api_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.metamodel.implementation_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.bpmn.ui_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.kernel_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.project.data_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.project_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.rcp_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.session_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.store.exml_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.ui_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.core.utils_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.creation.wizard.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.creation.wizard_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.api_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.browser_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.diagramauto_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.activity_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.bpmn_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.communication_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.composite_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.deployment_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.object_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.sequence_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.state_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.statik_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor.usecase_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.editor_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.elements_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.outline_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.persistence_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.styles.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.styles_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.diagram.symbol_4.0.1.202006082330.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.documentation.bpmn_4.0.1.202001292130.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.documentation.copyright_4.0.1.202001292130.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.documentation.metamodel.uml_4.0.1.202001292130.jar</Path>
@@ -691,572 +691,572 @@
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.documentation.modeliomodeler_4.0.1.202001292130.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.documentation.vaudit_4.0.1.202001292130.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.documentation.welcome_4.0.1.202001292130.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.edition.dialogs_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.edition.notes_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.richnote.libreoffice_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.richnote.microsoft_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.richnote_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.texteditors_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.link.editor.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.link.editor_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.mda.infra_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.metamodel.emfapi_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.metamodel.extensions_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.metamodel.implementation_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.browser.view.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.browser.view_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.property_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.search.engine_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.search_4.0.1.202004171923.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.edition.dialogs_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.edition.notes_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.richnote.libreoffice_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.richnote.microsoft_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.richnote_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.editors.texteditors_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.link.editor.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.link.editor_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.mda.infra_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.metamodel.emfapi_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.metamodel.extensions_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.metamodel.implementation_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.browser.view.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.browser.view_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.property_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.search.engine_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.model.search_4.0.1.202006082330.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.modelio.modelermodule_9.1.0.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.module.browser.commands_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.module.commands_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.module.propertytab_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.patterns_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.propertyview_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.script.engine_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.script_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.semantic.browser_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/META-INF/MANIFEST.MF</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/META-INF/maven/org.modelio/org.modelio.ui/pom.properties</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/META-INF/maven/org.modelio/org.modelio.ui/pom.xml</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/clone_all_options19x19.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/clone_graphic_options19x19.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/grab_hand22x23.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/link_bendpoint32x32.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/link_end_menu32x32.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/picking_cursor32x32.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/picking_cursor_no32x32.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/picking_cursor_yes32x32.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/reparent.bmp</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/reparent_mask.bmp</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/reparent_not.bmp</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/cursors/reparent_not_mask.bmp</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/accept.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/add.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/assist.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/automaticorientation.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/cancel.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/checked.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/chooser.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/copy.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/cut.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/delete.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/dot.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/downarrow.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/droparea.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/edit.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/filechooser.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/filter.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/help.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/horizontalorientation.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/indicator.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/leftarrow.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/maximize.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/minimize.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/paste.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/placeholder.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/remove.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/rightarrow.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/search.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/selectinbrowser.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/syncexplorer.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/unchecked.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/uparrow.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/icons/verticalorientation.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/images/headerleft110x50.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/images/placeholder48x48.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/images/placeholder64x64.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/CoreColorRegistry$1.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/CoreColorRegistry.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/CoreFontRegistry.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/FontBuilder.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/LocalFontRegistry.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/UIColor.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/UIFont.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/UIImages.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/desktop/SystemOpener.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/dialog/ModelioDialog$1.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/dialog/ModelioDialog$2.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/dialog/ModelioDialog$3.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/dialog/ModelioDialog.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/gef/SharedCursors2.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$1.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$2.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$3.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$4.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$FocusGainedFunction.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$FocusLostFunction.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$InitFunction.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$ModifiedFunction.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer$SelectionChangedFunction.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/HtmlComposer.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/commands/Command.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/commands/GetHtmlCommand.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/commands/ICommand.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/commands/SetHtmlCommand.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/events/NodeSelectionEvent.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/listener/NodeSelectionChangeListener.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/model/TriState.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/htmleditor/util/ColorConverter.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/panel/IPanelListener.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/panel/IPanelProvider.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/plugin/UI.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/progress/IModelioProgressService.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/progress/ModelioProgressAdapter.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/ColoredInputDialog.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/DefaultShellProvider.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/DpiChangeListener$1.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/DpiChangeListener.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/PngTransfer.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/QualifiedImage.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/org/modelio/ui/swt/SwtThreadHelper.class</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/CHANGES.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/LICENSE.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/README.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/adapters/jquery.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/build-config.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/ckeditor.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/config.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/contents.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/af.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ar.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/az.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/bg.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/bn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/bs.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/cs.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/cy.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/da.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/de-ch.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/de.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/el.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/en-au.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/en-ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/en-gb.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/en.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/eo.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/es-mx.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/es.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/et.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/eu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/fa.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/fi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/fo.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/fr-ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/fr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/gl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/gu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/he.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/hi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/hr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/hu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/id.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/is.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/it.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ja.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ka.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/km.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ko.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ku.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/lt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/lv.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/mk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/mn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ms.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/nb.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/nl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/no.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/oc.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/pl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/pt-br.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/pt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ro.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ru.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/si.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/sk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/sl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/sq.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/sr-latn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/sr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/sv.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/th.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/tr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/tt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/ug.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/uk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/vi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/zh-cn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/lang/zh.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/af.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/az.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/da.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/de.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/el.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/en.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/es.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/et.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/he.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/id.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/it.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/km.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/no.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/si.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/th.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/about/dialogs/about.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/about/dialogs/logo_ckeditor.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/clipboard/dialogs/paste.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/colordialog/dialogs/colordialog.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/colordialog/dialogs/colordialog.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/copyformatting/cursors/cursor.svg</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/copyformatting/styles/copyformatting.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/dialog/dialogDefinition.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/div/dialogs/div.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/find/dialogs/find.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/flash/dialogs/flash.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/flash/images/placeholder.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/button.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/checkbox.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/form.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/hiddenfield.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/radio.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/select.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/textarea.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/dialogs/textfield.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/forms/images/hiddenfield.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/icons.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/icons_hidpi.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/iframe/dialogs/iframe.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/iframe/images/placeholder.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/image/dialogs/image.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/image/images/noimage.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/link/dialogs/anchor.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/link/dialogs/link.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/link/images/anchor.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/link/images/hidpi/anchor.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/liststyle/dialogs/liststyle.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/magicline/images/hidpi/icon.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/magicline/images/icon-rtl.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/magicline/images/icon.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/pagebreak/images/pagebreak.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/pastefromword/filter/default.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/preview/preview.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/LICENSE.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/README.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/dialogs/dialog.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/dialogs/options.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/dialogs/toolbar.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_address.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_blockquote.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_div.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_h1.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_h2.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_h3.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_h4.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_h5.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_h6.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_p.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/showblocks/images/block_pre.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/dialogs/smiley.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/angel_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/angel_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/angry_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/angry_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/broken_heart.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/broken_heart.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/confused_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/confused_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/cry_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/cry_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/devil_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/devil_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/embaressed_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/embarrassed_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/embarrassed_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/envelope.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/envelope.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/heart.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/heart.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/kiss.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/kiss.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/lightbulb.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/lightbulb.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/omg_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/omg_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/regular_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/regular_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/sad_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/sad_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/shades_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/shades_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/teeth_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/teeth_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/thumbs_down.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/thumbs_down.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/thumbs_up.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/thumbs_up.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/tongue_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/tongue_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/tounge_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/wink_smile.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/smiley/images/wink_smile.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/af.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ar.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/az.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/bg.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/cs.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/cy.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/da.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/de.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/el.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/en-au.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/en.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/eo.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/es.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/et.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/eu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/fa.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/fi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/fr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/gl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/he.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/hr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/hu.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/id.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/it.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ja.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/km.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ko.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ku.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/lt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/lv.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/nb.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/nl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/no.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/oc.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/pl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/pt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ro.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ru.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/si.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/sk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/sl.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/sq.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/sv.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/th.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/tr.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/tt.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/ug.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/uk.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/vi.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/lang/zh.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/specialchar/dialogs/specialchar.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/table/dialogs/table.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/tableselection/styles/tableselection.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/tabletools/dialogs/tableCell.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/templates/dialogs/templates.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/templates/dialogs/templates.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/templates/templates/default.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/templates/templates/images/template1.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/templates/templates/images/template2.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/templates/templates/images/template3.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/widget/images/handle.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/LICENSE.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/README.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/dialogs/ciframe.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/dialogs/tmpFrameset.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/dialogs/wsc.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/dialogs/wsc.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/dialogs/wsc_ie.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/css/samples.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/img/github-top.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/img/header-bg.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/img/header-separator.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/img/logo.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/img/logo.svg</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/img/navigation-tip.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/index.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/js/sample.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/js/sf.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/ajax.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/api.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/appendto.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/assets/inlineall/logo.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/assets/posteddata.php</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/assets/sample.jpg</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/assets/uilanguages/languages.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/datafiltering.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/dialog/assets/my_dialog.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/dialog/dialog.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/divreplace.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/enterkey/enterkey.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/htmlwriter/outputforflash.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/htmlwriter/outputhtml.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/index.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/inlineall.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/inlinebycode.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/inlinetextarea.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/jquery.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/magicline/magicline.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/readonly.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/replacebyclass.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/replacebycode.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/sample.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/sample.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/sample_posteddata.php</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/tabindex.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/toolbar/toolbar.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/uicolor.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/uilanguages.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/wysiwygarea/fullpage.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/old/xhtmlstyle.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/css/fontello.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/font/config.json</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/font/fontello.eot</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/font/fontello.svg</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/font/fontello.ttf</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/font/fontello.woff</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/index.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/dialog.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/dialog_ie.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/dialog_ie8.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/dialog_iequirks.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/editor.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/editor_gecko.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/editor_ie.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/editor_ie8.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/editor_iequirks.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/icons.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/icons_hidpi.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/arrow.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/close.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/hidpi/close.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/hidpi/lock.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/hidpi/refresh.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/lock-open.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/lock.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/refresh.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/images/spinner.gif</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/moono-lisa/readme.md</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/dialog.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/editor.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/icons.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/icons_hidpi.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/arrow.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/close.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/hidpi/close.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/hidpi/lock-open.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/hidpi/lock.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/hidpi/refresh.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/lock-open.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/lock.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/images/refresh.png</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/skins/office2013/skin.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/ckeditor/styles.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/deprecated/blank.htm</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/deprecated/rte.css</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/deprecated/rte.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/deprecated/rte.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/deprecated/rte.xsl</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/js/base.html</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/js/externalconfiguration.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/js/format.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202004171923/rte/js/integration.js</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.extensions_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.metamodel.api_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.metamodel.implementation_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.ui.ext_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.ui_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.utils_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.vaudit_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.version_4.0.1.202004171923.jar</Path>
- <Path fileType="data">/usr/share/modelio/plugins/org.modelio.xmi_4.0.1.202004171923.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.module.browser.commands_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.module.commands_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.module.propertytab_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.patterns_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.propertyview_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.script.engine_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.script_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.semantic.browser_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/META-INF/MANIFEST.MF</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/META-INF/maven/org.modelio/org.modelio.ui/pom.properties</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/META-INF/maven/org.modelio/org.modelio.ui/pom.xml</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/clone_all_options19x19.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/clone_graphic_options19x19.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/grab_hand22x23.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/link_bendpoint32x32.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/link_end_menu32x32.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/picking_cursor32x32.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/picking_cursor_no32x32.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/picking_cursor_yes32x32.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/reparent.bmp</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/reparent_mask.bmp</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/reparent_not.bmp</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/cursors/reparent_not_mask.bmp</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/accept.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/add.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/assist.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/automaticorientation.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/cancel.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/checked.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/chooser.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/copy.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/cut.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/delete.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/dot.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/downarrow.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/droparea.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/edit.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/filechooser.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/filter.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/help.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/horizontalorientation.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/indicator.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/leftarrow.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/maximize.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/minimize.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/paste.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/placeholder.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/remove.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/rightarrow.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/search.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/selectinbrowser.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/syncexplorer.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/unchecked.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/uparrow.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/icons/verticalorientation.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/images/headerleft110x50.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/images/placeholder48x48.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/images/placeholder64x64.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/CoreColorRegistry$1.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/CoreColorRegistry.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/CoreFontRegistry.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/FontBuilder.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/LocalFontRegistry.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/UIColor.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/UIFont.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/UIImages.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/desktop/SystemOpener.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/dialog/ModelioDialog$1.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/dialog/ModelioDialog$2.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/dialog/ModelioDialog$3.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/dialog/ModelioDialog.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/gef/SharedCursors2.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$1.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$2.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$3.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$4.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$FocusGainedFunction.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$FocusLostFunction.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$InitFunction.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$ModifiedFunction.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer$SelectionChangedFunction.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/HtmlComposer.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/commands/Command.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/commands/GetHtmlCommand.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/commands/ICommand.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/commands/SetHtmlCommand.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/events/NodeSelectionEvent.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/listener/NodeSelectionChangeListener.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/model/TriState.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/htmleditor/util/ColorConverter.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/panel/IPanelListener.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/panel/IPanelProvider.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/plugin/UI.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/progress/IModelioProgressService.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/progress/ModelioProgressAdapter.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/ColoredInputDialog.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/DefaultShellProvider.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/DpiChangeListener$1.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/DpiChangeListener.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/PngTransfer.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/QualifiedImage.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/org/modelio/ui/swt/SwtThreadHelper.class</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/README.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/adapters/jquery.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/build-config.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/ckeditor.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/config.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/contents.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/af.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ar.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/az.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/bg.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/bn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/bs.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/cs.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/cy.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/da.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/de-ch.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/de.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/el.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/en-au.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/en-ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/en-gb.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/en.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/eo.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/es-mx.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/es.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/et.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/eu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/fa.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/fi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/fo.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/fr-ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/fr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/gl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/gu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/he.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/hi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/hr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/hu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/id.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/is.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/it.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ja.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ka.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/km.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ko.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ku.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/lt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/lv.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/mk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/mn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ms.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/nb.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/nl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/no.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/oc.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/pl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/pt-br.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/pt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ro.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ru.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/si.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/sk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/sl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/sq.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/sr-latn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/sr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/sv.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/th.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/tr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/tt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/ug.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/uk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/vi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/zh-cn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/lang/zh.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/af.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/az.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/da.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/de.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/el.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/en.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/es.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/et.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/he.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/id.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/it.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/km.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/no.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/si.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/th.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/about/dialogs/about.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/about/dialogs/logo_ckeditor.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/clipboard/dialogs/paste.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/colordialog/dialogs/colordialog.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/colordialog/dialogs/colordialog.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/copyformatting/cursors/cursor.svg</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/copyformatting/styles/copyformatting.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/dialog/dialogDefinition.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/div/dialogs/div.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/find/dialogs/find.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/flash/dialogs/flash.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/flash/images/placeholder.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/button.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/checkbox.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/form.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/hiddenfield.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/radio.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/select.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/textarea.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/dialogs/textfield.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/forms/images/hiddenfield.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/icons.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/icons_hidpi.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/iframe/dialogs/iframe.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/iframe/images/placeholder.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/image/dialogs/image.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/image/images/noimage.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/link/dialogs/anchor.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/link/dialogs/link.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/link/images/anchor.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/link/images/hidpi/anchor.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/liststyle/dialogs/liststyle.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/magicline/images/hidpi/icon.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/magicline/images/icon-rtl.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/magicline/images/icon.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/pagebreak/images/pagebreak.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/pastefromword/filter/default.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/preview/preview.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/README.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/dialogs/dialog.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/dialogs/options.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/dialogs/toolbar.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_address.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_blockquote.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_div.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_h1.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_h2.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_h3.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_h4.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_h5.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_h6.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_p.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/showblocks/images/block_pre.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/dialogs/smiley.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/angel_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/angel_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/angry_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/angry_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/broken_heart.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/broken_heart.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/confused_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/confused_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/cry_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/cry_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/devil_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/devil_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/embaressed_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/embarrassed_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/embarrassed_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/envelope.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/envelope.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/heart.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/heart.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/kiss.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/kiss.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/lightbulb.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/lightbulb.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/omg_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/omg_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/regular_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/regular_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/sad_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/sad_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/shades_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/shades_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/teeth_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/teeth_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/thumbs_down.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/thumbs_down.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/thumbs_up.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/thumbs_up.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/tongue_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/tongue_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/tounge_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/wink_smile.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/smiley/images/wink_smile.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/af.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ar.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/az.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/bg.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/cs.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/cy.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/da.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/de.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/el.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/en-au.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/en.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/eo.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/es.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/et.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/eu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/fa.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/fi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/fr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/gl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/he.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/hr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/hu.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/id.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/it.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ja.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/km.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ko.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ku.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/lt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/lv.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/nb.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/nl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/no.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/oc.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/pl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/pt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ro.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ru.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/si.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/sk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/sl.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/sq.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/sv.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/th.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/tr.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/tt.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/ug.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/uk.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/vi.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/lang/zh.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/specialchar/dialogs/specialchar.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/table/dialogs/table.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/tableselection/styles/tableselection.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/tabletools/dialogs/tableCell.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/templates/dialogs/templates.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/templates/dialogs/templates.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/templates/templates/default.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/templates/templates/images/template1.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/templates/templates/images/template2.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/templates/templates/images/template3.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/widget/images/handle.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/README.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/dialogs/ciframe.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/dialogs/tmpFrameset.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/dialogs/wsc.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/dialogs/wsc.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/dialogs/wsc_ie.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/css/samples.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/img/github-top.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/img/header-bg.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/img/header-separator.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/img/logo.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/img/logo.svg</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/img/navigation-tip.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/index.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/js/sample.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/js/sf.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/ajax.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/api.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/appendto.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/assets/inlineall/logo.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/assets/posteddata.php</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/assets/sample.jpg</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/assets/uilanguages/languages.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/datafiltering.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/dialog/assets/my_dialog.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/dialog/dialog.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/divreplace.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/enterkey/enterkey.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/htmlwriter/outputforflash.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/htmlwriter/outputhtml.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/index.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/inlineall.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/inlinebycode.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/inlinetextarea.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/jquery.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/magicline/magicline.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/readonly.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/replacebyclass.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/replacebycode.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/sample.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/sample.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/sample_posteddata.php</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/tabindex.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/toolbar/toolbar.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/uicolor.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/uilanguages.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/wysiwygarea/fullpage.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/old/xhtmlstyle.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/css/fontello.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/font/config.json</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/font/fontello.eot</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/font/fontello.svg</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/font/fontello.ttf</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/font/fontello.woff</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/index.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/dialog.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/dialog_ie.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/dialog_ie8.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/dialog_iequirks.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/editor.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/editor_gecko.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/editor_ie.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/editor_ie8.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/editor_iequirks.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/icons.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/icons_hidpi.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/arrow.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/close.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/hidpi/close.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/hidpi/lock.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/hidpi/refresh.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/lock-open.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/lock.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/refresh.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/images/spinner.gif</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/moono-lisa/readme.md</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/dialog.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/editor.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/icons.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/icons_hidpi.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/arrow.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/close.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/hidpi/close.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/hidpi/lock-open.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/hidpi/lock.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/hidpi/refresh.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/lock-open.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/lock.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/images/refresh.png</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/skins/office2013/skin.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/ckeditor/styles.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/deprecated/blank.htm</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/deprecated/rte.css</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/deprecated/rte.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/deprecated/rte.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/deprecated/rte.xsl</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/js/base.html</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/js/externalconfiguration.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/js/format.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.ui_4.0.1.202006082330/rte/js/integration.js</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.extensions_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.metamodel.api_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.metamodel.implementation_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.ui.ext_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.uml.ui_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.utils_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.vaudit_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.version_4.0.1.202006082330.jar</Path>
+ <Path fileType="data">/usr/share/modelio/plugins/org.modelio.xmi_4.0.1.202006082330.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.sat4j.core_2.3.5.v201308161310.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.sat4j.pb_2.3.5.v201404071733.jar</Path>
<Path fileType="data">/usr/share/modelio/plugins/org.tukaani.xz_1.8.0.v20180207-1613.jar</Path>
@@ -1270,12 +1270,12 @@
</Files>
</Package>
<History>
- <Update release="4">
- <Date>2020-04-17</Date>
+ <Update release="5">
+ <Date>2020-06-08</Date>
<Version>4.0.1</Version>
<Comment>Packaging update</Comment>
- <Name>Fabio Forni</Name>
- <Email>livingsilver94.solus@redaril.me</Email>
+ <Name>Campbell Jones</Name>
+ <Email>dev@serebit.com</Email>
</Update>
</History>
</PISI>
\ No newline at end of file
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Aug 11, 3:53 PM (3 h, 5 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5821212
Default Alt Text
D9027.id21796.diff (203 KB)
Attached To
Mode
D9027: Use jdk11 for modelio
Attached
Detach File
Event Timeline
Log In to Comment