Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuan Cadavid2015-07-16 15:23:00 +0000
committerJuan Cadavid2015-07-17 09:29:04 +0000
commitf324eea9e9d4391f40ad5f6a632857e384416fb9 (patch)
tree8dc1981bbaee440ff5086340e471e73935b5e96e /extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram
parentd16e74126729f09c745205a4196329ae8e513178 (diff)
downloadorg.eclipse.papyrus-f324eea9e9d4391f40ad5f6a632857e384416fb9.tar.gz
org.eclipse.papyrus-f324eea9e9d4391f40ad5f6a632857e384416fb9.tar.xz
org.eclipse.papyrus-f324eea9e9d4391f40ad5f6a632857e384416fb9.zip
Papyrus BPMN customization
Bundle info corrections Signed-off-by: Juan Cadavid <juan.cadavid@cea.fr>
Diffstat (limited to 'extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram')
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/META-INF/MANIFEST.MF1
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/OSGI-INF/l10n/bundle.properties3
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/about.html28
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/build.properties3
-rw-r--r--extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/plugin.xml6
5 files changed, 33 insertions, 8 deletions
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/META-INF/MANIFEST.MF b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/META-INF/MANIFEST.MF
index 4a152a3725f..e5262ee7871 100644
--- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/META-INF/MANIFEST.MF
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/META-INF/MANIFEST.MF
@@ -28,3 +28,4 @@ Require-Bundle: org.eclipse.ui,
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.papyrus.bpmn.diagram
+Bundle-Vendor: %Bundle-Vendor
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/OSGI-INF/l10n/bundle.properties b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/OSGI-INF/l10n/bundle.properties
index 68f2b8e39fb..59d95071dfd 100644
--- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/OSGI-INF/l10n/bundle.properties
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/OSGI-INF/l10n/bundle.properties
@@ -1,2 +1,3 @@
#Properties file for org.eclipse.papyrus.bpmn.diagram
-Bundle-Name = Diagram \ No newline at end of file
+Bundle-Name = BPMN diagram base
+Bundle-Vendor = Eclipse Modeling Project \ No newline at end of file
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/about.html b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/about.html
new file mode 100644
index 00000000000..d35d5aed64c
--- /dev/null
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>June 5, 2007</p>
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;). A copy of the EPL is available
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/build.properties b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/build.properties
index adec5e1776d..4f4b7820f8d 100644
--- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/build.properties
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/build.properties
@@ -4,4 +4,5 @@ bin.includes = META-INF/,\
.,\
plugin.xml,\
viewpoints/,\
- OSGI-INF/l10n/bundle.properties
+ OSGI-INF/l10n/bundle.properties,\
+ OSGI-INF/
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/plugin.xml b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/plugin.xml
index 18c08f81b9f..a9e50c4c76e 100644
--- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/plugin.xml
+++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram/plugin.xml
@@ -8,10 +8,4 @@
original="platform:/plugin/org.eclipse.papyrus.infra.viewpoints.policy/builtin/default.configuration">
</contribution>
</extension>
- <extension
- point="org.eclipse.papyrus.infra.core.papyrusDiagram">
- <editorDiagram
- factoryClass="org.eclipse.papyrus.bpmn.diagram.PluggableEditorFactory1">
- </editorDiagram>
- </extension>
</plugin>

Back to the top