2006-05-24 16:38:27 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2007-05-12 01:40:42 +00:00
|
|
|
Copyright (c) 2006, 2007 Wind River Systems, Inc. and others.
|
2006-05-24 16:38:27 +00:00
|
|
|
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 (Wind River) - initial API and implementation
|
2007-03-30 17:04:53 +00:00
|
|
|
Javier Montalvo Orus (Symbian) - [plan] Improve Discovery and Autodetect in RSE
|
2007-05-12 01:40:42 +00:00
|
|
|
Martin Oberhuber (Wind River) - [186523] Move subsystemConfigurations from UI to core
|
2006-05-24 16:38:27 +00:00
|
|
|
-->
|
|
|
|
<?eclipse version="3.1"?>
|
|
|
|
<plugin>
|
2006-09-21 21:46:28 +00:00
|
|
|
<!-- Register a System that will only show Daytime subsystems -->
|
2006-05-24 16:38:27 +00:00
|
|
|
<extension point="org.eclipse.rse.core.systemTypes">
|
2006-09-21 21:46:28 +00:00
|
|
|
<systemType id="org.eclipse.rse.examples.daytime.systemtype"
|
2007-02-26 16:38:21 +00:00
|
|
|
label="%DaytimeSystemLabel"
|
2006-09-21 21:46:28 +00:00
|
|
|
name="Daytime"
|
|
|
|
description="%DaytimeSystemDescription"
|
2006-08-24 17:08:21 +00:00
|
|
|
icon="icons/full/obj16/daytime_obj.gif"
|
|
|
|
iconLive="icons/full/obj16/daytimelive_obj.gif"/>
|
2006-05-24 16:38:27 +00:00
|
|
|
</extension>
|
|
|
|
<!-- Instantiate the FTP subsystem by referencing it from the external implementation -->
|
2006-09-21 21:46:28 +00:00
|
|
|
<!-- Disabled to avoid hard dependency to the FTP plugin
|
2006-05-24 16:38:27 +00:00
|
|
|
<extension
|
2007-05-12 01:40:42 +00:00
|
|
|
point="org.eclipse.rse.core.subsystemConfigurations">
|
2006-05-24 16:38:27 +00:00
|
|
|
<configuration
|
2007-02-09 14:16:47 +00:00
|
|
|
systemTypeIds="org.eclipse.rse.examples.daytime.systemtype"
|
2006-05-24 16:38:27 +00:00
|
|
|
name="%Files"
|
|
|
|
description="%FilesDescription"
|
|
|
|
iconlive="icons/full/obj16/systemfileslive_obj.gif"
|
|
|
|
icon="icons/full/obj16/systemfiles_obj.gif"
|
|
|
|
category="files"
|
|
|
|
class="org.eclipse.rse.subsystems.files.ftp.FTPFileSubSystemConfiguration"
|
2006-10-25 13:16:53 +00:00
|
|
|
vendor="%providerName"
|
2006-08-18 07:07:55 +00:00
|
|
|
priority="100"
|
2006-05-24 16:38:27 +00:00
|
|
|
id="ftp.files">
|
|
|
|
</configuration>
|
|
|
|
</extension>
|
2006-09-21 21:46:28 +00:00
|
|
|
-->
|
2006-05-24 16:38:27 +00:00
|
|
|
<!-- Instantiate the Daytime subsystem from our own plugin -->
|
|
|
|
<extension
|
2007-05-12 01:40:42 +00:00
|
|
|
point="org.eclipse.rse.core.subsystemConfigurations">
|
2006-05-24 16:38:27 +00:00
|
|
|
<configuration
|
2007-03-30 17:04:53 +00:00
|
|
|
category="daytime"
|
|
|
|
class="org.eclipse.rse.examples.daytime.subsystems.DaytimeSubSystemConfiguration"
|
|
|
|
description="%DaytimeDescription"
|
|
|
|
icon="icons/full/obj16/daytime_obj.gif"
|
|
|
|
iconlive="icons/full/obj16/daytimelive_obj.gif"
|
|
|
|
id="daytime.tcp"
|
|
|
|
name="%DaytimeSubsystemName"
|
|
|
|
priority="40000"
|
|
|
|
serviceType="_daytime._tcp"
|
|
|
|
systemTypeIds="org.eclipse.rse.examples.daytime.systemtype;org.eclipse.rse.systemtype.unix"
|
|
|
|
vendor="%providerName">
|
2006-05-24 16:38:27 +00:00
|
|
|
</configuration>
|
|
|
|
</extension>
|
|
|
|
</plugin>
|