Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Kaegi2007-03-14 17:43:03 +0000
committerSimon Kaegi2007-03-14 17:43:03 +0000
commitd6a66f1b55196ac551463b9c9c845441c46a25b3 (patch)
tree714c56781b8b38d40f57a8c3e262bb96710a9eca
parentbc99b204dc75dd68aeb10264e292d4d8a58d6d4a (diff)
downloadrt.equinox.bundles-d6a66f1b55196ac551463b9c9c845441c46a25b3.tar.gz
rt.equinox.bundles-d6a66f1b55196ac551463b9c9c845441c46a25b3.tar.xz
rt.equinox.bundles-d6a66f1b55196ac551463b9c9c845441c46a25b3.zip
Bug 174384 - Need to look at adding localization files to the server-side bundles
-rw-r--r--bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF4
-rw-r--r--bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml2
-rw-r--r--bundles/org.eclipse.equinox.http.jetty5/build.properties3
-rw-r--r--bundles/org.eclipse.equinox.http.jetty5/plugin.properties14
-rw-r--r--bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF4
-rw-r--r--bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml2
-rw-r--r--bundles/org.eclipse.equinox.http.jetty6/build.properties3
-rw-r--r--bundles/org.eclipse.equinox.http.jetty6/plugin.properties14
-rw-r--r--bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF3
-rw-r--r--bundles/org.eclipse.equinox.http.registry/about.html28
-rw-r--r--bundles/org.eclipse.equinox.http.registry/build.properties7
-rw-r--r--bundles/org.eclipse.equinox.http.registry/plugin.properties16
-rw-r--r--bundles/org.eclipse.equinox.http.registry/plugin.xml6
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF3
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/build.properties3
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/plugin.properties12
-rw-r--r--bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF3
-rw-r--r--bundles/org.eclipse.equinox.http.servletbridge/build.properties3
-rw-r--r--bundles/org.eclipse.equinox.http.servletbridge/plugin.properties12
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath2
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF4
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper.registry/about.html28
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties5
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties12
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF4
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper/about.html28
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper/build.properties5
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper/plugin.properties12
28 files changed, 221 insertions, 21 deletions
diff --git a/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF
index b05e03922..2bb38fb0e 100644
--- a/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.jetty5/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jetty Http Service
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.http.jetty;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.jetty.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml b/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml
index 7d48fe68a..3007bafbc 100644
--- a/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml
+++ b/bundles/org.eclipse.equinox.http.jetty5/OSGI-INF/metatype/config.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<MetaData xmlns="http://www.osgi.org/xmlns/metatype/v1.0.0">
- <OCD name="Http Server Configuration" id="server.config" description="Http Server Configuration">
+ <OCD name="%configurationName" id="server.config" description="%configurationDescription">
<AD id="http.enabled" type="Boolean" default="true"/>
<AD id="http.port" type="Integer" default="0"/>
<AD id="https.enabled" type="Boolean" default="false"/>
diff --git a/bundles/org.eclipse.equinox.http.jetty5/build.properties b/bundles/org.eclipse.equinox.http.jetty5/build.properties
index 30c35d74e..8a5a35fbb 100644
--- a/bundles/org.eclipse.equinox.http.jetty5/build.properties
+++ b/bundles/org.eclipse.equinox.http.jetty5/build.properties
@@ -3,5 +3,6 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
OSGI-INF/,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.jetty5/plugin.properties b/bundles/org.eclipse.equinox.http.jetty5/plugin.properties
new file mode 100644
index 000000000..e2ce6f0c0
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.jetty5/plugin.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2005 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
+###############################################################################
+bundleName = Jetty Http Service
+providerName = Eclipse.org
+configurationName = Http Server Configuration
+configurationDescription = Provides Http Server Configuration Parameters \ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF
index b05e03922..2bb38fb0e 100644
--- a/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.jetty6/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jetty Http Service
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.http.jetty;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.jetty.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml b/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml
index 7d48fe68a..3007bafbc 100644
--- a/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml
+++ b/bundles/org.eclipse.equinox.http.jetty6/OSGI-INF/metatype/config.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<MetaData xmlns="http://www.osgi.org/xmlns/metatype/v1.0.0">
- <OCD name="Http Server Configuration" id="server.config" description="Http Server Configuration">
+ <OCD name="%configurationName" id="server.config" description="%configurationDescription">
<AD id="http.enabled" type="Boolean" default="true"/>
<AD id="http.port" type="Integer" default="0"/>
<AD id="https.enabled" type="Boolean" default="false"/>
diff --git a/bundles/org.eclipse.equinox.http.jetty6/build.properties b/bundles/org.eclipse.equinox.http.jetty6/build.properties
index 30c35d74e..8a5a35fbb 100644
--- a/bundles/org.eclipse.equinox.http.jetty6/build.properties
+++ b/bundles/org.eclipse.equinox.http.jetty6/build.properties
@@ -3,5 +3,6 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
OSGI-INF/,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.jetty6/plugin.properties b/bundles/org.eclipse.equinox.http.jetty6/plugin.properties
new file mode 100644
index 000000000..e2ce6f0c0
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.jetty6/plugin.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2005 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
+###############################################################################
+bundleName = Jetty Http Service
+providerName = Eclipse.org
+configurationName = Http Server Configuration
+configurationDescription = Provides Http Server Configuration Parameters \ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF
index d6fee4a28..3d33bba09 100644
--- a/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Http Service Registry Extensions
+Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.equinox.http.registry;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.registry.internal.Activator
@@ -17,3 +17,4 @@ Bundle-RequiredExecutionEnvironment: J2SE-1.4,
CDC-1.0/Foundation-1.0,
J2SE-1.3
Export-Package: org.eclipse.equinox.http.registry
+Bundle-Vendor: %providerName
diff --git a/bundles/org.eclipse.equinox.http.registry/about.html b/bundles/org.eclipse.equinox.http.registry/about.html
new file mode 100644
index 000000000..d7e1cdf1e
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.registry/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>January 30, 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> \ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.http.registry/build.properties b/bundles/org.eclipse.equinox.http.registry/build.properties
index 741edd48c..1f9e1f7be 100644
--- a/bundles/org.eclipse.equinox.http.registry/build.properties
+++ b/bundles/org.eclipse.equinox.http.registry/build.properties
@@ -2,5 +2,8 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
- plugin.xml
-src.includes = schema/
+ plugin.xml,\
+ about.html,\
+ plugin.properties
+src.includes = schema/,\
+ about.html
diff --git a/bundles/org.eclipse.equinox.http.registry/plugin.properties b/bundles/org.eclipse.equinox.http.registry/plugin.properties
new file mode 100644
index 000000000..cad230cac
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.registry/plugin.properties
@@ -0,0 +1,16 @@
+###############################################################################
+# Copyright (c) 2007 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
+###############################################################################
+bundleName = Http Service Registry Extensions
+providerName = Eclipse.org
+servletsName = HttpService servlets
+resourcesName = HttpService resources
+httpcontextsName = HttpService httpcontexts
+
diff --git a/bundles/org.eclipse.equinox.http.registry/plugin.xml b/bundles/org.eclipse.equinox.http.registry/plugin.xml
index 8dedc5c10..8d9cf9074 100644
--- a/bundles/org.eclipse.equinox.http.registry/plugin.xml
+++ b/bundles/org.eclipse.equinox.http.registry/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
- <extension-point id="servlets" name="HttpService servlets" schema="schema/servlets.exsd"/>
- <extension-point id="resources" name="HttpService resources" schema="schema/resources.exsd"/>
- <extension-point id="httpcontexts" name="HttpService httpcontexts" schema="schema/httpcontexts.exsd"/>
+ <extension-point id="servlets" name="%servletsName" schema="schema/servlets.exsd"/>
+ <extension-point id="resources" name="%resourcesName" schema="schema/resources.exsd"/>
+ <extension-point id="httpcontexts" name="%httpcontextsName" schema="schema/httpcontexts.exsd"/>
</plugin>
diff --git a/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF
index 30b234d89..099068d1d 100644
--- a/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF
@@ -1,6 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Http Services Servlet
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
Bundle-SymbolicName: org.eclipse.equinox.http.servlet
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.servlet.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.servlet/build.properties b/bundles/org.eclipse.equinox.http.servlet/build.properties
index 9cbab3c13..cdd2db7f1 100644
--- a/bundles/org.eclipse.equinox.http.servlet/build.properties
+++ b/bundles/org.eclipse.equinox.http.servlet/build.properties
@@ -2,5 +2,6 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.servlet/plugin.properties b/bundles/org.eclipse.equinox.http.servlet/plugin.properties
new file mode 100644
index 000000000..28793a208
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.servlet/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 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
+###############################################################################
+bundleName = Http Services Servlet
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF
index c1c014baa..d33e2e9ee 100644
--- a/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.servletbridge/META-INF/MANIFEST.MF
@@ -1,6 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Servletbridge Http Service
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
Bundle-SymbolicName: org.eclipse.equinox.http.servletbridge
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.http.servletbridge.internal.Activator
diff --git a/bundles/org.eclipse.equinox.http.servletbridge/build.properties b/bundles/org.eclipse.equinox.http.servletbridge/build.properties
index 9cbab3c13..cdd2db7f1 100644
--- a/bundles/org.eclipse.equinox.http.servletbridge/build.properties
+++ b/bundles/org.eclipse.equinox.http.servletbridge/build.properties
@@ -2,5 +2,6 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
- about.html
+ about.html,\
+ plugin.properties
src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties b/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties
new file mode 100644
index 000000000..f87cf095d
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 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
+###############################################################################
+bundleName = Servletbridge Http Service
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath b/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath
index 751c8f2e5..ce7393340 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF
index bf2428c31..be06c8ea7 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jasper Jsp Registry Support Plug-in
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.jsp.jasper.registry
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.internal.jsp.jasper.registry.Activator
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/about.html b/bundles/org.eclipse.equinox.jsp.jasper.registry/about.html
new file mode 100644
index 000000000..d7e1cdf1e
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/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>January 30, 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> \ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties b/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties
index 3af869a6d..17de001f7 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties
@@ -1,5 +1,8 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ about.html,\
+ plugin.properties
+src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties b/bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties
new file mode 100644
index 000000000..b2731c7cc
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 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
+###############################################################################
+bundleName = Jasper Jsp Registry Support Plug-in
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF
index f8020f28a..779277066 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Jasper Jsp Support Bundle
+Bundle-Name: %bundleName
+Bundle-Vendor: %bundleProvider
+Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.equinox.jsp.jasper
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.equinox.internal.jsp.jasper.Activator
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/about.html b/bundles/org.eclipse.equinox.jsp.jasper/about.html
new file mode 100644
index 000000000..d7e1cdf1e
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper/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>January 30, 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> \ No newline at end of file
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/build.properties b/bundles/org.eclipse.equinox.jsp.jasper/build.properties
index 3af869a6d..16a1a6a63 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper/build.properties
+++ b/bundles/org.eclipse.equinox.jsp.jasper/build.properties
@@ -1,5 +1,8 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
- .
+ .,\
+ plugin.properties,\
+ about.html
+src.includes = about.html
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties b/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties
new file mode 100644
index 000000000..6a5e9b378
--- /dev/null
+++ b/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2005 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
+###############################################################################
+bundleName = Jasper Jsp Support Bundle
+providerName = Eclipse.org

Back to the top