diff --git a/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml b/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml index bb4f49e68d4..1467d225873 100644 --- a/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml +++ b/rse/plugins/org.eclipse.rse.ui/HelpContexts.xml @@ -16,12 +16,18 @@ Martin Oberhuber (Wind River) - [174945] split importexport icons from rse.ui Kevin Doyle (IBM) - [212940] Added help for Remote Monitor David Dykstal (IBM) - [231630] adding help for services property page David Dykstal (IBM) - [232317] adding help for datastore preferences page +David Dykstal (IBM) - [232585] adding help for service subsystem wizard page --> 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. + + This wizard page displays the properties of 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. + @@ -46,9 +52,6 @@ David Dykstal (IBM) - [232317] adding help for datastore preferences page 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/wizards/SubSystemServiceWizardPage.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/SubSystemServiceWizardPage.java index 83419baf550..095dd677007 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/SubSystemServiceWizardPage.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/SubSystemServiceWizardPage.java @@ -19,6 +19,7 @@ * Martin Oberhuber (Wind River) - [190231] Move ISubSystemPropertiesWizardPage from UI to Core * David Dykstal (IBM) - [217556] remove service subsystem types * David Dykstal (IBM) - [168976][api] move ISystemNewConnectionWizardPage from core to UI + * David Dykstal (IBM) - [232585] adding help for new subsystem wizard page ********************************************************************************/ package org.eclipse.rse.ui.wizards; @@ -38,6 +39,7 @@ import org.eclipse.rse.core.subsystems.IConnectorService; import org.eclipse.rse.core.subsystems.IServerLauncherProperties; 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.ConnectorServiceElement; import org.eclipse.rse.ui.widgets.services.FactoryServiceElement; import org.eclipse.rse.ui.widgets.services.PropertySetServiceElement; @@ -75,6 +77,7 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar public Control createContents(Composite parent) { + SystemWidgetHelpers.setHelp(parent, "org.eclipse.rse.ui.ServiceSubsystemWizardPage"); //$NON-NLS-1$ _form = new ServicesForm(parent.getShell(), getMessageLine()); Control control = _form.createContents(parent);