diff options
4 files changed, 49 insertions, 2 deletions
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rest/META-INF/MANIFEST.MF b/framework/bundles/org.eclipse.ecf.remoteservice.rest/META-INF/MANIFEST.MF index cdd3cf4a1..2dfbe1723 100644 --- a/framework/bundles/org.eclipse.ecf.remoteservice.rest/META-INF/MANIFEST.MF +++ b/framework/bundles/org.eclipse.ecf.remoteservice.rest/META-INF/MANIFEST.MF @@ -1,6 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 -Bundle-Name: REST API based on the remote service API +Bundle-Name: %plugin.name +Bundle-Vendor: %plugin.provider Bundle-SymbolicName: org.eclipse.ecf.remoteservice.rest;singleton:=true Bundle-Version: 1.0.0.qualifier Bundle-Activator: org.eclipse.ecf.internal.remoteservice.rest.Activator @@ -30,3 +31,4 @@ Require-Bundle: org.eclipse.ecf;bundle-version="3.0.0", org.eclipse.equinox.ds;bundle-version="[1.1.0,2.0.0)";resolution:=optional, org.eclipse.osgi.services;bundle-version="3.2.0" Service-Component: META-INF/dspresent.xml +Bundle-Localization: plugin diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rest/about.html b/framework/bundles/org.eclipse.ecf.remoteservice.rest/about.html new file mode 100644 index 000000000..4c79781a5 --- /dev/null +++ b/framework/bundles/org.eclipse.ecf.remoteservice.rest/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 25, 2008</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</a>.</p> + +</body> +</html>
\ No newline at end of file diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rest/build.properties b/framework/bundles/org.eclipse.ecf.remoteservice.rest/build.properties index 68dc42252..a6c804af9 100644 --- a/framework/bundles/org.eclipse.ecf.remoteservice.rest/build.properties +++ b/framework/bundles/org.eclipse.ecf.remoteservice.rest/build.properties @@ -3,5 +3,12 @@ bin.includes = META-INF/,\ .,\ plugin.xml,\ bin/,\ - META-INF/dspresent.xml + META-INF/dspresent.xml,\ + plugin.properties,\ + about.html source.. = src/ +src.includes = plugin.properties,\ + META-INF/,\ + plugin.xml,\ + src/,\ + about.html diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rest/plugin.properties b/framework/bundles/org.eclipse.ecf.remoteservice.rest/plugin.properties new file mode 100644 index 000000000..ac1326c78 --- /dev/null +++ b/framework/bundles/org.eclipse.ecf.remoteservice.rest/plugin.properties @@ -0,0 +1,10 @@ +############################################################################ +# Copyright (c) 2009 EclipseSource 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 +# +# +############################################################################ +plugin.provider=Eclipse.org - ECF +plugin.name=ECF REST API |