From 44948e7c668ed8ec0fe5e4eaffc7d56c21fdcb6c Mon Sep 17 00:00:00 2001 From: Martin Oberhuber Date: Thu, 7 Dec 2006 13:04:45 +0000 Subject: [PATCH] Generate separate source plugins for each terminal feature. Add install sizes. --- org.eclipse.tm.terminal-feature/feature.xml | 4 +-- .../sourceTemplatePlugin/about.html | 33 +++++++++++++++++++ .../sourceTemplatePlugin/build.properties | 12 +++++++ .../sourceTemplatePlugin/plugin.properties | 12 +++++++ .../build.properties | 5 ++- .../feature.xml | 22 +++++++++++-- .../feature.xml | 4 +-- .../sourceTemplatePlugin/about.html | 33 +++++++++++++++++++ .../sourceTemplatePlugin/build.properties | 12 +++++++ .../sourceTemplatePlugin/plugin.properties | 12 +++++++ .../feature.xml | 4 +-- .../sourceTemplatePlugin/about.html | 33 +++++++++++++++++++ .../sourceTemplatePlugin/build.properties | 12 +++++++ .../sourceTemplatePlugin/plugin.properties | 12 +++++++ .../feature.xml | 4 +-- .../sourceTemplatePlugin/about.html | 33 +++++++++++++++++++ .../sourceTemplatePlugin/build.properties | 12 +++++++ .../sourceTemplatePlugin/plugin.properties | 12 +++++++ 18 files changed, 260 insertions(+), 11 deletions(-) create mode 100644 org.eclipse.tm.terminal-feature/sourceTemplatePlugin/about.html create mode 100644 org.eclipse.tm.terminal-feature/sourceTemplatePlugin/build.properties create mode 100644 org.eclipse.tm.terminal-feature/sourceTemplatePlugin/plugin.properties create mode 100644 org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/about.html create mode 100644 org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/build.properties create mode 100644 org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/plugin.properties create mode 100644 org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/about.html create mode 100644 org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/build.properties create mode 100644 org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/plugin.properties create mode 100644 org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/about.html create mode 100644 org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/build.properties create mode 100644 org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/plugin.properties diff --git a/org.eclipse.tm.terminal-feature/feature.xml b/org.eclipse.tm.terminal-feature/feature.xml index b949384e391..e221557dd00 100644 --- a/org.eclipse.tm.terminal-feature/feature.xml +++ b/org.eclipse.tm.terminal-feature/feature.xml @@ -30,8 +30,8 @@ diff --git a/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/about.html b/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/about.html new file mode 100644 index 00000000000..23d575ceea9 --- /dev/null +++ b/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/about.html @@ -0,0 +1,33 @@ + + + + +About + + +

About This Content

+ +

June 2, 2006

+

License

+ +

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 http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

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 http://www.eclipse.org.

+ +

Source Code

+

This plug-in contains source code zip files ("Source Zips") that correspond to binary content in other plug-ins. These Source Zips may be distributed under different license +agreements and/or notices. Details about these license agreements and notices are contained in "about.html" files ("Abouts") located in sub-directories in the +src/ directory of this plug-in. Such Abouts govern your use of the Source Zips in that directory, not the EPL.

+ + + \ No newline at end of file diff --git a/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/build.properties b/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/build.properties new file mode 100644 index 00000000000..a070fd9c69c --- /dev/null +++ b/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/build.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +bin.includes = about.html, plugin.properties, plugin.xml, src/, META-INF/ +sourcePlugin = true diff --git a/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/plugin.properties b/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/plugin.properties new file mode 100644 index 00000000000..b89bd111d10 --- /dev/null +++ b/org.eclipse.tm.terminal-feature/sourceTemplatePlugin/plugin.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +pluginName=Terminal Source +providerName=Eclipse.org diff --git a/org.eclipse.tm.terminal.sdk-feature/build.properties b/org.eclipse.tm.terminal.sdk-feature/build.properties index c2dc9f1d1cd..b6e2256d5ec 100644 --- a/org.eclipse.tm.terminal.sdk-feature/build.properties +++ b/org.eclipse.tm.terminal.sdk-feature/build.properties @@ -12,4 +12,7 @@ bin.includes = feature.xml,\ epl-v10.html,\ feature.properties,\ license.html -generate.plugin@org.eclipse.tm.terminal.source=org.eclipse.tm.terminal.sdk \ No newline at end of file +generate.plugin@org.eclipse.tm.terminal.source=org.eclipse.tm.terminal +generate.plugin@org.eclipse.tm.terminal.serial.source=org.eclipse.tm.terminal.serial +generate.plugin@org.eclipse.tm.terminal.ssh.source=org.eclipse.tm.terminal.ssh +generate.plugin@org.eclipse.tm.terminal.view.source=org.eclipse.tm.terminal.view diff --git a/org.eclipse.tm.terminal.sdk-feature/feature.xml b/org.eclipse.tm.terminal.sdk-feature/feature.xml index 04fd0ff2af6..879e9513744 100644 --- a/org.eclipse.tm.terminal.sdk-feature/feature.xml +++ b/org.eclipse.tm.terminal.sdk-feature/feature.xml @@ -44,8 +44,26 @@ + + + + + + diff --git a/org.eclipse.tm.terminal.serial-feature/feature.xml b/org.eclipse.tm.terminal.serial-feature/feature.xml index 4d92aa2494a..c12d85251c9 100644 --- a/org.eclipse.tm.terminal.serial-feature/feature.xml +++ b/org.eclipse.tm.terminal.serial-feature/feature.xml @@ -30,8 +30,8 @@ diff --git a/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/about.html b/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/about.html new file mode 100644 index 00000000000..23d575ceea9 --- /dev/null +++ b/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/about.html @@ -0,0 +1,33 @@ + + + + +About + + +

About This Content

+ +

June 2, 2006

+

License

+ +

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 http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

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 http://www.eclipse.org.

+ +

Source Code

+

This plug-in contains source code zip files ("Source Zips") that correspond to binary content in other plug-ins. These Source Zips may be distributed under different license +agreements and/or notices. Details about these license agreements and notices are contained in "about.html" files ("Abouts") located in sub-directories in the +src/ directory of this plug-in. Such Abouts govern your use of the Source Zips in that directory, not the EPL.

+ + + \ No newline at end of file diff --git a/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/build.properties b/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/build.properties new file mode 100644 index 00000000000..a070fd9c69c --- /dev/null +++ b/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/build.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +bin.includes = about.html, plugin.properties, plugin.xml, src/, META-INF/ +sourcePlugin = true diff --git a/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/plugin.properties b/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/plugin.properties new file mode 100644 index 00000000000..35aeb125f85 --- /dev/null +++ b/org.eclipse.tm.terminal.serial-feature/sourceTemplatePlugin/plugin.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +pluginName=Terminal Serial Connector Source +providerName=Eclipse.org diff --git a/org.eclipse.tm.terminal.ssh-feature/feature.xml b/org.eclipse.tm.terminal.ssh-feature/feature.xml index a87e1d671df..15a0150cf70 100644 --- a/org.eclipse.tm.terminal.ssh-feature/feature.xml +++ b/org.eclipse.tm.terminal.ssh-feature/feature.xml @@ -31,8 +31,8 @@ diff --git a/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/about.html b/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/about.html new file mode 100644 index 00000000000..23d575ceea9 --- /dev/null +++ b/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/about.html @@ -0,0 +1,33 @@ + + + + +About + + +

About This Content

+ +

June 2, 2006

+

License

+ +

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 http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

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 http://www.eclipse.org.

+ +

Source Code

+

This plug-in contains source code zip files ("Source Zips") that correspond to binary content in other plug-ins. These Source Zips may be distributed under different license +agreements and/or notices. Details about these license agreements and notices are contained in "about.html" files ("Abouts") located in sub-directories in the +src/ directory of this plug-in. Such Abouts govern your use of the Source Zips in that directory, not the EPL.

+ + + \ No newline at end of file diff --git a/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/build.properties b/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/build.properties new file mode 100644 index 00000000000..a070fd9c69c --- /dev/null +++ b/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/build.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +bin.includes = about.html, plugin.properties, plugin.xml, src/, META-INF/ +sourcePlugin = true diff --git a/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/plugin.properties b/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/plugin.properties new file mode 100644 index 00000000000..d73da349b76 --- /dev/null +++ b/org.eclipse.tm.terminal.ssh-feature/sourceTemplatePlugin/plugin.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +pluginName=Terminal Ssh Connector Source +providerName=Eclipse.org diff --git a/org.eclipse.tm.terminal.view-feature/feature.xml b/org.eclipse.tm.terminal.view-feature/feature.xml index 463d31880d2..773f7899169 100644 --- a/org.eclipse.tm.terminal.view-feature/feature.xml +++ b/org.eclipse.tm.terminal.view-feature/feature.xml @@ -30,8 +30,8 @@ diff --git a/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/about.html b/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/about.html new file mode 100644 index 00000000000..23d575ceea9 --- /dev/null +++ b/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/about.html @@ -0,0 +1,33 @@ + + + + +About + + +

About This Content

+ +

June 2, 2006

+

License

+ +

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 http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

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 http://www.eclipse.org.

+ +

Source Code

+

This plug-in contains source code zip files ("Source Zips") that correspond to binary content in other plug-ins. These Source Zips may be distributed under different license +agreements and/or notices. Details about these license agreements and notices are contained in "about.html" files ("Abouts") located in sub-directories in the +src/ directory of this plug-in. Such Abouts govern your use of the Source Zips in that directory, not the EPL.

+ + + \ No newline at end of file diff --git a/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/build.properties b/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/build.properties new file mode 100644 index 00000000000..a070fd9c69c --- /dev/null +++ b/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/build.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +bin.includes = about.html, plugin.properties, plugin.xml, src/, META-INF/ +sourcePlugin = true diff --git a/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/plugin.properties b/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/plugin.properties new file mode 100644 index 00000000000..60224b24e5b --- /dev/null +++ b/org.eclipse.tm.terminal.view-feature/sourceTemplatePlugin/plugin.properties @@ -0,0 +1,12 @@ +################################################################################ +# Copyright (c) 2006 Wind River Systems, 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: +# Martin Oberhuber - initial API and implementation +################################################################################ +pluginName=Terminal View Source +providerName=Eclipse.org