2006-04-10 21:11:07 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2007-05-10 16:28:43 +00:00
|
|
|
Copyright (c) 2006, 2007 IBM Corporation and others. All rights reserved.
|
2006-04-10 21:11:07 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
Initial Contributors:
|
|
|
|
The following IBM employees contributed to the Remote System Explorer
|
|
|
|
component that contains this file: David McKnight, Kushal Munir,
|
|
|
|
Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
|
|
|
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
|
|
|
|
|
|
|
Contributors:
|
2007-05-10 16:28:43 +00:00
|
|
|
Martin Oberhuber (Wind River) - [185554] Remove dynamicPopupMenuExtensions extension point
|
2007-05-11 21:12:17 +00:00
|
|
|
Martin Oberhuber (Wind River) - [186525] Move keystoreProviders to core
|
2007-05-12 01:40:42 +00:00
|
|
|
Martin Oberhuber (Wind River) - [186523] Move subsystemConfigurations from UI to core
|
2007-05-14 11:13:56 +00:00
|
|
|
Martin Oberhuber (Wind River) - [185552] Remove remoteSystemsViewPreferencesActions extension point
|
2006-04-10 21:11:07 +00:00
|
|
|
-->
|
|
|
|
<?eclipse version="3.1"?>
|
|
|
|
<plugin>
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<!-- Define a RemoteSystems project nature -->
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
id="remotesystemsnature"
|
|
|
|
name="%Nature.RemoteSystemsNature"
|
|
|
|
point="org.eclipse.core.resources.natures">
|
|
|
|
<runtime>
|
|
|
|
<run
|
2007-03-24 12:25:57 +00:00
|
|
|
class="org.eclipse.rse.internal.core.RemoteSystemsProject">
|
2006-04-10 21:11:07 +00:00
|
|
|
</run>
|
|
|
|
</runtime>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<!-- Define a RemoteSystemsTempFiles project -->
|
|
|
|
<!-- nature to enable debugging -->
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
id="remoteSystemsTempNature"
|
|
|
|
name="%Nature.RemoteSystemsTempNature"
|
|
|
|
point="org.eclipse.core.resources.natures">
|
|
|
|
<runtime>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.rse.core.RemoteSystemsTempProjectNature">
|
|
|
|
</run>
|
|
|
|
</runtime>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<!-- Define a RemoteSystems preference page -->
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.preferencePages">
|
|
|
|
<page
|
|
|
|
name="%PreferencePage.RemoteSystems"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.RemoteSystemsPreferencePage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.preferences.RemoteSystemsPreferencePage">
|
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PreferencePage.Logging"
|
|
|
|
category="org.eclipse.rse.ui.preferences.RemoteSystemsPreferencePage"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemLoggingPreferencePage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.LoggingPreferences">
|
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PreferencePage.Signon"
|
|
|
|
category="org.eclipse.rse.ui.preferences.RemoteSystemsPreferencePage"
|
|
|
|
class="org.eclipse.rse.ui.propertypages.SignonPreferencePage"
|
|
|
|
id="org.eclipse.rse.ui.preferences.SignonPreferencePage">
|
|
|
|
</page>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.core.runtime.preferences">
|
2007-03-30 13:17:33 +00:00
|
|
|
<initializer class="org.eclipse.rse.internal.ui.propertypages.SystemPreferenceInitializer"/>
|
2006-04-10 21:11:07 +00:00
|
|
|
</extension>
|
|
|
|
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<!-- Define Workbench Properties Pages -->
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.propertyPages">
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.SubSystem"
|
|
|
|
class="org.eclipse.rse.ui.propertypages.SystemSubSystemPropertyPageCore"
|
|
|
|
id="org.eclipse.rse.SubSystemsPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.subsystems.ISubSystem"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.Connection"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemConnectionPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.model.IHost"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<!-- with move to services this should disappear
|
|
|
|
<page
|
2007-04-23 13:42:16 +00:00
|
|
|
objectClass="org.eclipse.rse.ui.model.IHost"
|
2006-04-10 21:11:07 +00:00
|
|
|
name="%PropertyPage.Connection.SubSystems"
|
|
|
|
class="org.eclipse.rse.ui.propertypages.SystemConnectionSubSystemsPropertyPage"
|
|
|
|
id="org.eclipse.rse.SystemConnectionSubSystemsPropertyPage">
|
|
|
|
</page>
|
|
|
|
-->
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.Connection.ConnectorServices"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemConnectorServicesPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.propertypages.SystemConnectorServicesPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.model.IHost"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.FilterPool"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemFilterPoolPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemFilterPoolPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilterPool"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.Reference"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemFilterPoolReferencePropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemFilterPoolReferencePropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilterPoolReference"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.ReferencedFilterPool"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemFilterPoolPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemFilterPoolReferencePropertyPage2">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilterPoolReference"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.Filter"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemFilterPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemFilterPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
2007-01-30 19:25:38 +00:00
|
|
|
<or>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilter"/>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilterReference"/>
|
|
|
|
</or>
|
2007-01-30 19:16:59 +00:00
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.ChangeFilter"
|
2007-04-02 15:03:43 +00:00
|
|
|
class="org.eclipse.rse.ui.propertypages.SystemChangeFilterPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemChangeFilterPropertyPage">
|
|
|
|
<filter name="showChangeFilterStringPropertyPage" value="true"/>
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
2007-01-30 19:25:38 +00:00
|
|
|
<or>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilter"/>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilterReference"/>
|
|
|
|
</or>
|
2007-01-30 19:16:59 +00:00
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.FilterString"
|
2007-04-02 15:03:43 +00:00
|
|
|
class="org.eclipse.rse.ui.propertypages.SystemFilterStringPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemFilterStringPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.filters.ISystemFilterString"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.TeamViewCategoryNode"
|
|
|
|
class="org.eclipse.rse.ui.propertypages.SystemTeamViewCategoryPropertyPage"
|
|
|
|
id="org.eclipse.rse.SystemTeamViewCategoryPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
2007-02-16 16:29:48 +00:00
|
|
|
<instanceof value="org.eclipse.rse.internal.ui.view.team.SystemTeamViewCategoryNode"/>
|
2007-01-30 19:16:59 +00:00
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.Profile"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemTeamViewProfilePropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemProfilePropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
|
|
|
<instanceof value="org.eclipse.rse.core.model.ISystemProfile"/>
|
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
<page
|
|
|
|
name="%PropertyPage.TeamViewSubSystemFactoryNode"
|
2007-03-30 13:17:33 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.propertypages.SystemTeamViewSubSystemConfigurationPropertyPage"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.SystemTeamViewSubSystemFactoryPropertyPage">
|
2007-01-30 19:16:59 +00:00
|
|
|
<enabledWhen>
|
2007-02-16 16:29:48 +00:00
|
|
|
<instanceof value="org.eclipse.rse.internal.ui.view.team.SystemTeamViewSubSystemConfigurationNode"/>
|
2007-01-30 19:16:59 +00:00
|
|
|
</enabledWhen>
|
2006-04-10 21:11:07 +00:00
|
|
|
</page>
|
|
|
|
|
|
|
|
</extension>
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<!-- Define Help Context -->
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.contexts">
|
|
|
|
<contexts
|
|
|
|
file="HelpContexts.xml">
|
|
|
|
</contexts>
|
|
|
|
</extension>
|
|
|
|
<!-- ============================================ -->
|
2006-11-10 12:55:17 +00:00
|
|
|
<!-- Define Remote System Explorer Views -->
|
2006-04-10 21:11:07 +00:00
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.views">
|
|
|
|
<category
|
|
|
|
name="%View.Category.RemoteSystems"
|
|
|
|
id="org.eclipse.rse.ui.view">
|
|
|
|
</category>
|
|
|
|
<view
|
|
|
|
name="%View.RemoteSystems"
|
2006-06-29 22:35:35 +00:00
|
|
|
icon="icons/full/cview16/system_view.gif"
|
2006-04-10 21:11:07 +00:00
|
|
|
category="org.eclipse.rse.ui.view"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.SystemViewPart"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.view.systemView">
|
|
|
|
</view>
|
|
|
|
<view
|
|
|
|
name="%View.Team"
|
2006-06-29 22:35:35 +00:00
|
|
|
icon="icons/full/cview16/team_view.gif"
|
2006-04-10 21:11:07 +00:00
|
|
|
category="org.eclipse.rse.ui.view"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.team.SystemTeamViewPart"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.view.teamView">
|
|
|
|
</view>
|
|
|
|
<view
|
|
|
|
name="%View.RemoteSystemsDetails"
|
2006-06-29 22:35:35 +00:00
|
|
|
icon="icons/full/cview16/system_view.gif"
|
2006-04-10 21:11:07 +00:00
|
|
|
category="org.eclipse.rse.ui.view"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.SystemTableViewPart"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.view.systemTableView">
|
|
|
|
</view>
|
2006-08-24 18:16:23 +00:00
|
|
|
<!-- Remote Search View -->
|
|
|
|
<view
|
|
|
|
name="%View.Search"
|
|
|
|
icon="icons/full/obj16/system_search.gif"
|
|
|
|
category="org.eclipse.rse.ui.view"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.search.SystemSearchViewPart"
|
2006-08-24 18:16:23 +00:00
|
|
|
id="org.eclipse.rse.ui.view.SystemSearchView">
|
|
|
|
</view>
|
|
|
|
<!-- Remote Scratchpad View -->
|
|
|
|
<view
|
|
|
|
name="%View.Scratchpad"
|
|
|
|
icon="icons/full/view16/scratchpad_view.gif"
|
|
|
|
category="org.eclipse.rse.ui.view"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.scratchpad.SystemScratchpadViewPart"
|
2006-08-24 18:16:23 +00:00
|
|
|
id="org.eclipse.rse.ui.view.scratchpad.SystemScratchpadViewPart">
|
|
|
|
</view>
|
|
|
|
<!-- Remote Monitor View -->
|
|
|
|
<view
|
|
|
|
name="%View.Monitor"
|
|
|
|
icon="icons/full/view16/system_view.gif"
|
|
|
|
category="org.eclipse.rse.ui.view"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.monitor.SystemMonitorViewPart"
|
2006-08-24 18:16:23 +00:00
|
|
|
id="org.eclipse.rse.ui.view.monitorView">
|
|
|
|
</view>
|
2007-02-16 16:29:48 +00:00
|
|
|
|
2006-04-10 21:11:07 +00:00
|
|
|
</extension>
|
2006-08-24 18:16:23 +00:00
|
|
|
|
2006-04-10 21:11:07 +00:00
|
|
|
<!-- ================================================================================= -->
|
2006-11-10 12:55:17 +00:00
|
|
|
<!-- Define Remote System Explorer view pulldown menu submenu for preferences actions -->
|
2006-04-10 21:11:07 +00:00
|
|
|
<!-- ================================================================================= -->
|
2007-05-14 11:13:56 +00:00
|
|
|
<!-- TODO migrate to command/handler
|
2006-04-10 21:11:07 +00:00
|
|
|
<extension point="org.eclipse.rse.ui.remoteSystemsViewPreferencesActions">
|
|
|
|
<action
|
|
|
|
id="org.eclipse.rse.ui.preferences.actions.rse"
|
|
|
|
label="%PreferencePageAction.rse.label"
|
|
|
|
preferencePageId="org.eclipse.rse.ui.preferences.RemoteSystemsPreferencePage"
|
2007-05-14 11:13:56 +00:00
|
|
|
preferencePageCategory=""
|
|
|
|
icon=""
|
2006-04-10 21:11:07 +00:00
|
|
|
tooltip="%PreferencePageAction.rse.tooltip"
|
|
|
|
helpContextId="org.eclipse.rse.ui.aprefrse"
|
|
|
|
/>
|
|
|
|
</extension>
|
2007-05-14 11:13:56 +00:00
|
|
|
-->
|
2006-04-10 21:11:07 +00:00
|
|
|
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<!-- Define Remote Systems Perspective -->
|
|
|
|
<!-- ============================================ -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.perspectives">
|
|
|
|
<perspective
|
|
|
|
name="%Perspective.Explorer"
|
2006-06-30 07:46:48 +00:00
|
|
|
icon="icons/full/cview16/system_persp.gif"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.SystemPerspectiveLayout"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.ui.view.SystemPerspective">
|
|
|
|
</perspective>
|
|
|
|
</extension>
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<!-- -->
|
|
|
|
<!-- for the Open In New Perspective RSE perspectives -->
|
|
|
|
<!-- Element Factory for Restoring Input Objects from mementos, -->
|
|
|
|
<!-- -->
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.elementFactories">
|
|
|
|
<factory
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.SystemViewPart"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="org.eclipse.rse.systemview.elementfactory">
|
|
|
|
</factory>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- Define Mount Path Mappers extension point -->
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
<extension-point id="mountPathMappers" name="%extPoint.mountPathMappers" schema="schema/mountPathMappers.exsd"/>
|
|
|
|
|
|
|
|
<!-- ================================================================= -->
|
2007-05-11 21:12:17 +00:00
|
|
|
<!-- Define newConnectionWizards extension point -->
|
2006-04-10 21:11:07 +00:00
|
|
|
<!-- ================================================================= -->
|
2007-12-06 12:19:23 +00:00
|
|
|
<extension-point id="newConnectionWizards" name="%extPoint.newConnectionWizards" schema="schema/newConnectionWizards.exsd"/>
|
2006-04-10 21:11:07 +00:00
|
|
|
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- Define the Drop Actions -->
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
<extension point="org.eclipse.ui.dropActions">
|
|
|
|
<action
|
|
|
|
id="org.eclipse.rse.ui.view.DropActions"
|
2007-02-16 16:29:48 +00:00
|
|
|
class="org.eclipse.rse.internal.ui.view.SystemDropActionDelegate">
|
2006-04-10 21:11:07 +00:00
|
|
|
</action>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ========================================================================= -->
|
|
|
|
<!-- Themes -->
|
|
|
|
<!-- ========================================================================= -->
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.themes">
|
|
|
|
<themeElementCategory
|
|
|
|
label="%RSEPresentation.label"
|
|
|
|
id="org.eclipse.rse.ui.presentation">
|
|
|
|
<description>%RSEPresentation.description</description>
|
|
|
|
</themeElementCategory>
|
|
|
|
<themeElementCategory
|
|
|
|
label="%MessagesPresentation.label"
|
|
|
|
parentId="org.eclipse.rse.ui.presentation"
|
|
|
|
id="org.eclipse.rse.ui.messages.presentation">
|
|
|
|
<description>%MessagesPresentation.description</description>
|
|
|
|
</themeElementCategory>
|
|
|
|
<colorDefinition
|
|
|
|
label="%ErrorMessage.label"
|
|
|
|
categoryId="org.eclipse.rse.ui.messages.presentation"
|
|
|
|
value="COLOR_RED"
|
|
|
|
id="MESSAGE_ERROR_COLOR">
|
|
|
|
<description>
|
|
|
|
%ErrorMessage.description
|
|
|
|
</description>
|
|
|
|
</colorDefinition>
|
|
|
|
<colorDefinition
|
|
|
|
label="%WarningMessage.label"
|
|
|
|
categoryId="org.eclipse.rse.ui.messages.presentation"
|
|
|
|
value="255,80,0"
|
|
|
|
id="MESSAGE_WARNING_COLOR">
|
|
|
|
<description>
|
|
|
|
%WarningMessage.description
|
|
|
|
</description>
|
|
|
|
</colorDefinition>
|
|
|
|
<colorDefinition
|
|
|
|
label="%InfoMessage.label"
|
|
|
|
categoryId="org.eclipse.rse.ui.messages.presentation"
|
|
|
|
value="COLOR_BLUE"
|
|
|
|
id="MESSAGE_INFORMATION_COLOR">
|
|
|
|
<description>
|
|
|
|
%InfoMessage.description
|
|
|
|
</description>
|
|
|
|
</colorDefinition>
|
|
|
|
<themeElementCategory
|
|
|
|
label="%RemoteCommandsViewPresentation.label"
|
|
|
|
parentId="org.eclipse.rse.ui.presentation"
|
|
|
|
id="org.eclipse.rse.ui.remotecommandsview.presentation">
|
|
|
|
<description>%RemoteCommandsViewPresentation.description</description>
|
|
|
|
</themeElementCategory>
|
|
|
|
<fontDefinition
|
|
|
|
label="%RemoteCommandsViewFontDefinition.label"
|
|
|
|
defaultsTo="org.eclipse.jface.textfont"
|
|
|
|
categoryId="org.eclipse.rse.ui.remotecommandsview.presentation"
|
|
|
|
id="REMOTE_COMMANDS_VIEW_FONT">
|
|
|
|
<description>
|
|
|
|
%RemoteCommandsViewFontDefinition.description
|
|
|
|
</description>
|
|
|
|
</fontDefinition>
|
|
|
|
<colorDefinition
|
|
|
|
label="%RemoteCommandsForeground.label"
|
|
|
|
categoryId="org.eclipse.rse.ui.remotecommandsview.presentation"
|
2006-09-27 16:45:53 +00:00
|
|
|
value="COLOR_BLACK"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="REMOTE_COMMANDS_VIEW_FG_COLOR">
|
|
|
|
<description>
|
|
|
|
%RemoteCommandsForeground.description
|
|
|
|
</description>
|
|
|
|
</colorDefinition>
|
|
|
|
<colorDefinition
|
|
|
|
label="%RemoteCommandsBackground.label"
|
|
|
|
categoryId="org.eclipse.rse.ui.remotecommandsview.presentation"
|
2006-09-27 16:45:53 +00:00
|
|
|
value="COLOR_WHITE"
|
2006-04-10 21:11:07 +00:00
|
|
|
id="REMOTE_COMMANDS_VIEW_BG_COLOR">
|
|
|
|
<description>
|
|
|
|
%RemoteCommandsBackground.description
|
|
|
|
</description>
|
|
|
|
</colorDefinition>
|
|
|
|
<colorDefinition
|
|
|
|
label="%RemoteCommandsPrompt.label"
|
|
|
|
categoryId="org.eclipse.rse.ui.remotecommandsview.presentation"
|
|
|
|
value="COLOR_GREEN"
|
|
|
|
id="REMOTE_COMMANDS_VIEW_PROMPT_COLOR">
|
|
|
|
<description>
|
|
|
|
%RemoteCommandsPrompt.description
|
|
|
|
</description>
|
|
|
|
</colorDefinition>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
|
2006-08-31 17:43:13 +00:00
|
|
|
|
2006-04-12 16:47:19 +00:00
|
|
|
|
2006-04-10 21:11:07 +00:00
|
|
|
<extension point="org.eclipse.ui.decorators">
|
|
|
|
<decorator
|
|
|
|
id="org.eclipse.rse.subsystems.error.decorator"
|
|
|
|
label="%SubSystemErrorDecorator.label"
|
|
|
|
state="true"
|
|
|
|
lightweight="true"
|
|
|
|
icon="icons/full/ovr16/error_ovr.gif"
|
|
|
|
location="BOTTOM_RIGHT">
|
|
|
|
<enablement>
|
|
|
|
<and>
|
|
|
|
<objectClass name="org.eclipse.rse.core.subsystems.ISubSystem"/>
|
|
|
|
<objectState name="isConnectionError" value="true"/>
|
|
|
|
</and>
|
|
|
|
</enablement>
|
|
|
|
</decorator>
|
|
|
|
</extension>
|
2007-02-19 16:43:28 +00:00
|
|
|
<extension
|
2007-02-20 16:57:38 +00:00
|
|
|
point="org.eclipse.rse.ui.newConnectionWizards">
|
2007-02-19 16:43:28 +00:00
|
|
|
<category id="org.eclipse.rse.ui.wizards.newconnection.default.category"
|
2007-02-21 23:23:45 +00:00
|
|
|
name="%Connection.default.category.name"/>
|
2007-02-19 16:43:28 +00:00
|
|
|
<newConnectionWizard
|
|
|
|
id="org.eclipse.rse.ui.wizards.newconnection.RSEDefaultNewConnectionWizard"
|
|
|
|
class="org.eclipse.rse.ui.wizards.newconnection.RSEDefaultNewConnectionWizard"
|
|
|
|
name="%DefaultRSENewConnectionWizard.name"
|
|
|
|
canFinishEarly="false"
|
|
|
|
categoryId="org.eclipse.rse.ui.wizards.newconnection.default.category"
|
|
|
|
hasPages="true">
|
|
|
|
</newConnectionWizard>
|
|
|
|
</extension>
|
2006-04-10 21:11:07 +00:00
|
|
|
|
|
|
|
|
2006-05-17 14:35:13 +00:00
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- RSE Creation Wizards from File -> New -->
|
|
|
|
<!-- ================================================================= -->
|
|
|
|
<extension point="org.eclipse.ui.newWizards">
|
|
|
|
<category id="org.eclipse.rse.ui.newWizards.rseCategory"
|
|
|
|
name="%Creation.category.name"/>
|
2006-08-18 21:46:42 +00:00
|
|
|
<wizard
|
|
|
|
canFinishEarly="false"
|
|
|
|
category="org.eclipse.rse.ui.newWizards.rseCategory"
|
2007-02-19 16:43:28 +00:00
|
|
|
class="org.eclipse.rse.ui.wizards.newconnection.RSEMainNewConnectionWizard"
|
2006-08-18 21:46:42 +00:00
|
|
|
finalPerspective="org.eclipse.rse.ui.view.SystemPerspective"
|
|
|
|
hasPages="true"
|
|
|
|
icon="icons/full/etool16/newconnection_wiz.gif"
|
|
|
|
id="org.eclipse.rse.ui.newWizards.connection"
|
|
|
|
name="%Creation.connection.name"
|
|
|
|
preferredPerspectives="org.eclipse.rse.ui.view.SystemPerspective">
|
2006-05-17 14:35:13 +00:00
|
|
|
<description>
|
|
|
|
%Creation.connection.description
|
|
|
|
</description>
|
|
|
|
</wizard>
|
|
|
|
</extension>
|
2007-01-25 18:20:48 +00:00
|
|
|
|
|
|
|
<extension point="org.eclipse.ui.navigator.navigatorContent">
|
|
|
|
<commonFilter
|
|
|
|
id="org.eclipse.rse.project.filters.RemoteSystemsProjects"
|
|
|
|
name="%ProjectFilter.label"
|
|
|
|
description="%ProjectFilter.description"
|
|
|
|
activeByDefault="true">
|
|
|
|
<filterExpression>
|
|
|
|
<and>
|
|
|
|
<instanceof value="org.eclipse.core.resources.IProject"/>
|
|
|
|
<test property="org.eclipse.core.resources.name" value="RemoteSystems*"/>
|
|
|
|
</and>
|
|
|
|
</filterExpression>
|
|
|
|
</commonFilter>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
<extension point="org.eclipse.ui.navigator.viewer">
|
|
|
|
<viewerContentBinding viewerId="org.eclipse.ui.navigator.ProjectExplorer">
|
|
|
|
<includes>
|
|
|
|
<contentExtension pattern="org.eclipse.rse.project.filters.*"/>
|
|
|
|
</includes>
|
|
|
|
</viewerContentBinding>
|
|
|
|
</extension>
|
|
|
|
|
2006-06-28 13:04:29 +00:00
|
|
|
</plugin>
|