mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
[170911] [plan] Improve Discovery and Autodetect in RSE
This commit is contained in:
parent
2597c5dc20
commit
6634af6bbe
6 changed files with 76 additions and 66 deletions
|
@ -8,6 +8,7 @@ http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
Martin Oberhuber (Wind River) - initial API and implementation
|
Martin Oberhuber (Wind River) - initial API and implementation
|
||||||
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
||||||
-->
|
-->
|
||||||
<?eclipse version="3.1"?>
|
<?eclipse version="3.1"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -42,16 +43,17 @@ Martin Oberhuber (Wind River) - initial API and implementation
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.examples.daytime.systemtype;org.eclipse.rse.systemtype.unix"
|
category="daytime"
|
||||||
name="%DaytimeSubsystemName"
|
class="org.eclipse.rse.examples.daytime.subsystems.DaytimeSubSystemConfiguration"
|
||||||
description="%DaytimeDescription"
|
description="%DaytimeDescription"
|
||||||
iconlive="icons/full/obj16/daytimelive_obj.gif"
|
icon="icons/full/obj16/daytime_obj.gif"
|
||||||
icon="icons/full/obj16/daytime_obj.gif"
|
iconlive="icons/full/obj16/daytimelive_obj.gif"
|
||||||
category="daytime"
|
id="daytime.tcp"
|
||||||
class="org.eclipse.rse.examples.daytime.subsystems.DaytimeSubSystemConfiguration"
|
name="%DaytimeSubsystemName"
|
||||||
vendor="%providerName"
|
priority="40000"
|
||||||
priority="40000"
|
serviceType="_daytime._tcp"
|
||||||
id="daytime.tcp">
|
systemTypeIds="org.eclipse.rse.examples.daytime.systemtype;org.eclipse.rse.systemtype.unix"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
</extension>
|
</extension>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -12,7 +12,7 @@ Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
||||||
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
{Name} (company) - description of contribution.
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
||||||
-->
|
-->
|
||||||
<?eclipse version="3.1"?>
|
<?eclipse version="3.1"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -21,31 +21,33 @@ Contributors:
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix"
|
|
||||||
name="%Files"
|
|
||||||
description="%FilesDescription"
|
|
||||||
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
|
||||||
icon="icons/full/obj16/systemfiles_obj.gif"
|
|
||||||
category="files"
|
category="files"
|
||||||
class="org.eclipse.rse.subsystems.files.dstore.DStoreFileSubSystemConfiguration"
|
class="org.eclipse.rse.subsystems.files.dstore.DStoreFileSubSystemConfiguration"
|
||||||
vendor="%providerName"
|
description="%FilesDescription"
|
||||||
|
icon="icons/full/obj16/systemfiles_obj.gif"
|
||||||
|
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
||||||
|
id="dstore.files"
|
||||||
|
name="%Files"
|
||||||
priority="100"
|
priority="100"
|
||||||
id="dstore.files">
|
serviceType="_dstore-files._tcp"
|
||||||
|
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.systemtype.windows"
|
|
||||||
name="%Files"
|
|
||||||
description="%FilesDescription"
|
|
||||||
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
|
||||||
icon="icons/full/obj16/systemfiles_obj.gif"
|
|
||||||
category="files"
|
category="files"
|
||||||
class="org.eclipse.rse.subsystems.files.dstore.DStoreWindowsFileSubSystemConfiguration"
|
class="org.eclipse.rse.subsystems.files.dstore.DStoreWindowsFileSubSystemConfiguration"
|
||||||
vendor="%providerName"
|
description="%FilesDescription"
|
||||||
|
icon="icons/full/obj16/systemfiles_obj.gif"
|
||||||
|
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
||||||
|
id="dstore.windows.files"
|
||||||
|
name="%Files"
|
||||||
priority="100"
|
priority="100"
|
||||||
id="dstore.windows.files">
|
serviceType="_dstore-files-w._tcp"
|
||||||
|
systemTypeIds="org.eclipse.rse.systemtype.windows"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -7,23 +7,25 @@ which accompanies this distribution, and is available at
|
||||||
http://www.eclipse.org/legal/epl-v10.html
|
http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
Martin Oberhuber - initial API and implementation
|
Martin Oberhuber - initial API and implementation
|
||||||
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
||||||
-->
|
-->
|
||||||
<?eclipse version="3.1"?>
|
<?eclipse version="3.1"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix;org.eclipse.rse.systemtype.aix;org.eclipse.rse.systemtype.ssh"
|
category="files"
|
||||||
name="%SshFileSubsystemName"
|
class="org.eclipse.rse.subsystems.files.ssh.SftpFileSubSystemConfiguration"
|
||||||
description="%SshFileSubsystemDescription"
|
description="%SshFileSubsystemDescription"
|
||||||
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
icon="icons/full/obj16/systemfiles_obj.gif"
|
||||||
icon="icons/full/obj16/systemfiles_obj.gif"
|
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
||||||
category="files"
|
id="ssh.files"
|
||||||
class="org.eclipse.rse.subsystems.files.ssh.SftpFileSubSystemConfiguration"
|
name="%SshFileSubsystemName"
|
||||||
vendor="%providerName"
|
priority="100"
|
||||||
priority="100"
|
serviceType="_sftp-ssh._tcp"
|
||||||
id="ssh.files">
|
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix;org.eclipse.rse.systemtype.aix;org.eclipse.rse.systemtype.ssh"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
</extension>
|
</extension>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -12,7 +12,7 @@ Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
||||||
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
{Name} (company) - description of contribution.
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
||||||
-->
|
-->
|
||||||
<?eclipse version="3.1"?>
|
<?eclipse version="3.1"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -25,17 +25,18 @@ Contributors:
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix"
|
|
||||||
name="%Processes"
|
|
||||||
description="%ProcessesDescription"
|
|
||||||
iconlive="icons/full/obj16/processsubsystemlive_obj.gif"
|
|
||||||
icon="icons/full/obj16/processsubsystem_obj.gif"
|
|
||||||
category="processes"
|
category="processes"
|
||||||
class="org.eclipse.rse.subsystems.processes.dstore.DStoreProcessSubSystemConfiguration"
|
class="org.eclipse.rse.subsystems.processes.dstore.DStoreProcessSubSystemConfiguration"
|
||||||
vendor="%providerName"
|
description="%ProcessesDescription"
|
||||||
|
icon="icons/full/obj16/processsubsystem_obj.gif"
|
||||||
|
iconlive="icons/full/obj16/processsubsystemlive_obj.gif"
|
||||||
|
id="dstore.processes"
|
||||||
|
name="%Processes"
|
||||||
priority="200"
|
priority="200"
|
||||||
id="dstore.processes">
|
serviceType="_dstore-proc._tcp"
|
||||||
|
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -12,7 +12,7 @@ Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
||||||
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
{Name} (company) - description of contribution.
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
||||||
-->
|
-->
|
||||||
<?eclipse version="3.1"?>
|
<?eclipse version="3.1"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -22,17 +22,18 @@ Contributors:
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix;org.eclipse.rse.systemtype.windows"
|
|
||||||
name="%Shells"
|
|
||||||
description="%ShellsDescription"
|
|
||||||
iconlive="icons/full/obj16/systemcommandslive_obj.gif"
|
|
||||||
icon="icons/full/obj16/systemcommands_obj.gif"
|
|
||||||
category="shells"
|
category="shells"
|
||||||
class="org.eclipse.rse.subsystems.shells.dstore.DStoreShellSubSystemConfiguration"
|
class="org.eclipse.rse.subsystems.shells.dstore.DStoreShellSubSystemConfiguration"
|
||||||
vendor="%providerName"
|
description="%ShellsDescription"
|
||||||
|
icon="icons/full/obj16/systemcommands_obj.gif"
|
||||||
|
iconlive="icons/full/obj16/systemcommandslive_obj.gif"
|
||||||
|
id="dstore.shells"
|
||||||
|
name="%Shells"
|
||||||
priority="300"
|
priority="300"
|
||||||
id="dstore.shells">
|
serviceType="_dstore-shell._tcp"
|
||||||
|
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix;org.eclipse.rse.systemtype.windows"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
||||||
</extension>
|
</extension>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -8,22 +8,24 @@ http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
Martin Oberhuber - initial API and implementation
|
Martin Oberhuber - initial API and implementation
|
||||||
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
||||||
-->
|
-->
|
||||||
<?eclipse version="3.1"?>
|
<?eclipse version="3.1"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||||
<configuration
|
<configuration
|
||||||
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix;org.eclipse.rse.systemtype.aix;org.eclipse.rse.systemtype.ssh"
|
category="shells"
|
||||||
name="%SshShellSubsystemName"
|
class="org.eclipse.rse.subsystems.shells.ssh.SshShellSubSystemConfiguration"
|
||||||
description="%SshShellSubsystemDescription"
|
description="%SshShellSubsystemDescription"
|
||||||
iconlive="icons/full/obj16/systemcommandslive_obj.gif"
|
icon="icons/full/obj16/systemcommands_obj.gif"
|
||||||
icon="icons/full/obj16/systemcommands_obj.gif"
|
iconlive="icons/full/obj16/systemcommandslive_obj.gif"
|
||||||
category="shells"
|
id="ssh.shells"
|
||||||
class="org.eclipse.rse.subsystems.shells.ssh.SshShellSubSystemConfiguration"
|
name="%SshShellSubsystemName"
|
||||||
vendor="%providerName"
|
priority="300"
|
||||||
priority="300"
|
serviceType="_ssh._tcp"
|
||||||
id="ssh.shells">
|
systemTypeIds="org.eclipse.rse.systemtype.linux;org.eclipse.rse.systemtype.unix;org.eclipse.rse.systemtype.aix;org.eclipse.rse.systemtype.ssh"
|
||||||
|
vendor="%providerName">
|
||||||
</configuration>
|
</configuration>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue