Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2009-01-26 03:52:10 +0000
committerPascal Rapicault2009-01-26 03:52:10 +0000
commit843c9c9bfe748a9a41aee4e9ab97dd1f26857da3 (patch)
treefaa47fbf1e9c64739b0c3536a731fb15da389adf /bundles
parentec99167582fd6880a8d1c4541ecd8e164666d149 (diff)
downloadrt.equinox.p2-843c9c9bfe748a9a41aee4e9ab97dd1f26857da3.tar.gz
rt.equinox.p2-843c9c9bfe748a9a41aee4e9ab97dd1f26857da3.tar.xz
rt.equinox.p2-843c9c9bfe748a9a41aee4e9ab97dd1f26857da3.zip
Bug 262325 - new org.eclipse.equinox.p2.repository.tools bundle is missing about.htmlv20090126
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/META-INF/MANIFEST.MF3
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/about.html28
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/build.properties6
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/plugin.properties13
4 files changed, 47 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.p2.repository.tools/META-INF/MANIFEST.MF
index 2ccece344..d37dfe985 100644
--- a/bundles/org.eclipse.equinox.p2.repository.tools/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/META-INF/MANIFEST.MF
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Repository Tools Plug-in
+Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.equinox.p2.repository.tools;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.p2.internal.repository.tools.Activator
@@ -25,3 +25,4 @@ Import-Package: org.apache.tools.ant,
Require-Bundle: org.eclipse.equinox.common;bundle-version="3.5.0"
Export-Package: org.eclipse.equinox.p2.internal.repository.tools;x-internal:=true,
org.eclipse.equinox.p2.internal.repository.tools.tasks;x-internal:=true
+Bundle-Vendor: %providerName
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/about.html b/bundles/org.eclipse.equinox.p2.repository.tools/about.html
new file mode 100644
index 000000000..460233046
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/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/bundles/org.eclipse.equinox.p2.repository.tools/build.properties b/bundles/org.eclipse.equinox.p2.repository.tools/build.properties
index 3fc6a5d28..956a65741 100644
--- a/bundles/org.eclipse.equinox.p2.repository.tools/build.properties
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/build.properties
@@ -12,8 +12,10 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
- plugin.xml, \
- lib/*.jar
+ plugin.xml,\
+ lib/*.jar,\
+ plugin.properties,\
+ about.html
extra.lib/repository-tools-ant.jar = ../org.apache.ant/ant.jar
jars.compile.order = ., lib/repository-tools-ant.jar
source.lib/repository-tools-ant.jar = src_ant/
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/plugin.properties b/bundles/org.eclipse.equinox.p2.repository.tools/plugin.properties
new file mode 100644
index 000000000..d95311d9e
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/plugin.properties
@@ -0,0 +1,13 @@
+###############################################################################
+# Copyright (c) 2009 IBM Corporation 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:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+providerName=Eclipse.org
+bundleName=Equinox p2 repository tools.

Back to the top