Bug 456179 - Fix About.html and Bundle Vendors for bundles moved to the platform
diff --git a/bundles/org.eclipse.e4.tools.jdt.templates/META-INF/MANIFEST.MF b/bundles/org.eclipse.e4.tools.jdt.templates/META-INF/MANIFEST.MF index d539c7c..06c4dd8 100644 --- a/bundles/org.eclipse.e4.tools.jdt.templates/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.e4.tools.jdt.templates/META-INF/MANIFEST.MF
@@ -1,6 +1,6 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 -Bundle-Name: e4 Templates +Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.e4.tools.jdt.templates;singleton:=true Bundle-Version: 0.12.0.qualifier Bundle-RequiredExecutionEnvironment: JavaSE-1.6 @@ -10,3 +10,4 @@ org.eclipse.jdt.core;bundle-version="3.6.0", org.eclipse.core.runtime;bundle-version="3.6.0" Export-Package: org.eclipse.e4.internal.tools.jdt.templates;version="0.12.0.qualifier";x-internal:=true +Bundle-Vendor: %providerName
diff --git a/bundles/org.eclipse.e4.tools.jdt.templates/about.html b/bundles/org.eclipse.e4.tools.jdt.templates/about.html new file mode 100644 index 0000000..c1343aa --- /dev/null +++ b/bundles/org.eclipse.e4.tools.jdt.templates/about.html
@@ -0,0 +1,45 @@ +<!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>December 3, 2009</p> +<h3>License</h3> + +<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise +indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). 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, "Program" will mean the Content.</p> + +<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is +being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was +provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content +and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p> + +<h3>Third Party Content</h3> + +<p>The Content includes items from third parties as set out below. If you did not +receive this Content directly from the Eclipse Foundation, the following is provided for informational +purposes only, and you should look to the Redistributor’s license for terms and conditions of use.</p> + +<h4>Silk icon set Version 1.3</h4> +<p> +This plugin contains icons from the Silk icon set created by Mark James. The original files can +be found at: +<ul> +<a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a></ul> +<p>The license can be found at:</p> +<ul> + <li><a href="http://creativecommons.org/licenses/by/2.5/">http://creativecommons.org/licenses/by/2.5/</a></li> +</ul> + +</body> +</html> \ No newline at end of file
diff --git a/bundles/org.eclipse.e4.tools.jdt.templates/build.properties b/bundles/org.eclipse.e4.tools.jdt.templates/build.properties index 3337a4a..d4135f9 100644 --- a/bundles/org.eclipse.e4.tools.jdt.templates/build.properties +++ b/bundles/org.eclipse.e4.tools.jdt.templates/build.properties
@@ -3,5 +3,7 @@ bin.includes = META-INF/,\ .,\ plugin.xml,\ + plugin.properties,\ templates/,\ - icons/ + icons/,\ + about.html
diff --git a/bundles/org.eclipse.e4.tools.jdt.templates/plugin.properties b/bundles/org.eclipse.e4.tools.jdt.templates/plugin.properties new file mode 100644 index 0000000..195bb41 --- /dev/null +++ b/bundles/org.eclipse.e4.tools.jdt.templates/plugin.properties
@@ -0,0 +1,10 @@ + +# <copyright> +# </copyright> +# +# $Id: plugin.properties,v 1.2 2010/07/20 21:48:42 tschindl Exp $ + +pluginName = EMF ModelTooling JDT Templates +providerName = Eclipse.org + +extension-point.name = Editors \ No newline at end of file