Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2016-10-08 20:07:24 +0000
committerMickael Istria2016-10-08 20:07:24 +0000
commit5a8947b3e4afc04e5afb2fe27ca9e071b3b35234 (patch)
tree5a903e2905761a8e5c1ff214aaacdb86714c49f3 /org.eclipse.ui.genericeditor.examples
parenteae2f936dd7aca8a4879a70283a55563a0ae4f28 (diff)
downloadeclipse.platform.text-5a8947b3e4afc04e5afb2fe27ca9e071b3b35234.tar.gz
eclipse.platform.text-5a8947b3e4afc04e5afb2fe27ca9e071b3b35234.tar.xz
eclipse.platform.text-5a8947b3e4afc04e5afb2fe27ca9e071b3b35234.zip
Bug 505447 - [generic editor] Make sure all files have copyright notice
Missing copyright on plugin.xml (and added about.html to examples by the way) Change-Id: I90c14a5da40ac9134f534c2d1e811783d65ac5da Signed-off-by: Mickael Istria <mistria@redhat.com>
Diffstat (limited to 'org.eclipse.ui.genericeditor.examples')
-rw-r--r--org.eclipse.ui.genericeditor.examples/about.html28
-rw-r--r--org.eclipse.ui.genericeditor.examples/build.properties1
-rw-r--r--org.eclipse.ui.genericeditor.examples/plugin.xml10
3 files changed, 39 insertions, 0 deletions
diff --git a/org.eclipse.ui.genericeditor.examples/about.html b/org.eclipse.ui.genericeditor.examples/about.html
new file mode 100644
index 00000000000..8e788d9461d
--- /dev/null
+++ b/org.eclipse.ui.genericeditor.examples/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 2, 2006</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> \ No newline at end of file
diff --git a/org.eclipse.ui.genericeditor.examples/build.properties b/org.eclipse.ui.genericeditor.examples/build.properties
index 3f52a61bb98..ccb89133f25 100644
--- a/org.eclipse.ui.genericeditor.examples/build.properties
+++ b/org.eclipse.ui.genericeditor.examples/build.properties
@@ -11,5 +11,6 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
+ about.html,\
.,\
plugin.xml
diff --git a/org.eclipse.ui.genericeditor.examples/plugin.xml b/org.eclipse.ui.genericeditor.examples/plugin.xml
index 2b809c171c7..6f8a30a5045 100644
--- a/org.eclipse.ui.genericeditor.examples/plugin.xml
+++ b/org.eclipse.ui.genericeditor.examples/plugin.xml
@@ -1,5 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
+<!-- ====================================================================== -->
+<!-- Copyright (c) 2016 Red Hat Inc. and others. -->
+<!-- All rights reserved. This program and the accompanying materials -->
+<!-- are made available under the terms of the Eclipse Public License v1.0 -->
+<!-- which accompanies this distribution, and is available at -->
+<!-- http://www.eclipse.org/legal/epl-v10.html -->
+<!-- -->
+<!-- Contributors: -->
+<!-- Sopot Cela & Mickael Istria (Red Hat Inc). -initial implementation -->
+<!-- ====================================================================== -->
<plugin>
<extension
point="org.eclipse.core.contenttype.contentTypes">

Back to the top