diff --git a/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml b/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml index b13a7e04594..1665394ee72 100644 --- a/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml +++ b/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml @@ -1,6 +1,6 @@ + + This page displays properties that configure the underlying services used by this subsystem. Select the configuration to be used for this subsystem and then edit the properties for each available service in that configuration. + @@ -41,6 +45,9 @@ Kevin Doyle (IBM) - [212940] Added help for Remote Monitor Use this view to work with the team-sharable artifacts from the Remote System Explorer: connection, filters, user actions and compile commands. These are contained in profiles. Use this view to see the sharable artifacts by profile, and share those artifacts using the popup menu of the root node. + + This page displays the properties used to configure the underlying services used by this subsystem. Select the service and then configure its properties with the appropriate values. + Open a wizard to create a new profile for partitioning your connections, filters, user actions and compile commands. diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/propertypages/ServicesPropertyPage.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/propertypages/ServicesPropertyPage.java index a01ed70868c..18dcbb4e4b3 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/propertypages/ServicesPropertyPage.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/propertypages/ServicesPropertyPage.java @@ -13,6 +13,7 @@ * Contributors: * Martin Oberhuber (Wind River) - [175262] IHost.getSystemType() should return IRSESystemType * David Dykstal (IBM) - [217556] remove service subsystem types + * David Dykstal (IBM) - [231630] add help for services property page ********************************************************************************/ package org.eclipse.rse.ui.propertypages; @@ -21,6 +22,7 @@ import org.eclipse.rse.core.IRSESystemType; import org.eclipse.rse.core.subsystems.IConnectorService; import org.eclipse.rse.core.subsystems.ISubSystem; import org.eclipse.rse.core.subsystems.ISubSystemConfiguration; +import org.eclipse.rse.ui.SystemWidgetHelpers; import org.eclipse.rse.ui.widgets.services.FactoryServiceElement; import org.eclipse.rse.ui.widgets.services.RootServiceElement; import org.eclipse.rse.ui.widgets.services.ServiceElement; @@ -43,7 +45,7 @@ public abstract class ServicesPropertyPage extends SystemBasePropertyPage // init services initServices(); - + SystemWidgetHelpers.setCompositeHelp(parent, "org.eclipse.rse.ui.ServicesPropertyPage"); //$NON-NLS-1$ return parent; }