diff options
author | Uwe Stieber | 2012-10-25 11:55:27 +0000 |
---|---|---|
committer | Uwe Stieber | 2012-10-25 11:55:27 +0000 |
commit | af52f4e9cf4807e17364ad33ea3665c775d24d99 (patch) | |
tree | 5b778be164b63c09c780281d9984b837b67f1c16 | |
parent | 1abcb21638ce8c23bdd98b6ae9d7d8867eab1cf8 (diff) | |
download | org.eclipse.tcf-af52f4e9cf4807e17364ad33ea3665c775d24d99.tar.gz org.eclipse.tcf-af52f4e9cf4807e17364ad33ea3665c775d24d99.tar.xz org.eclipse.tcf-af52f4e9cf4807e17364ad33ea3665c775d24d99.zip |
Target Explorer: Bug 392246 - [TERMINALS] no context help for "new terminal" properties dlg
3 files changed, 17 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/build.properties b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/build.properties index fc5711e2d..e4c5fea5c 100644 --- a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/build.properties +++ b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/build.properties @@ -14,5 +14,6 @@ bin.includes = META-INF/,\ plugin.properties,\ plugin.xml,\ about.html,\ - icons/ + icons/,\ + contexts.xml src.includes = schema/ diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/contexts.xml b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/contexts.xml new file mode 100644 index 000000000..612cd7c14 --- /dev/null +++ b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/contexts.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<contexts> + <context id="LaunchTerminalSettingsDialog"> + <description>Select the terminal type and specify the connections settings to connect a new terminal.</description> + </context> + <context id="EncodingSelectionDialog"> + <description>Select the new encoding for the active terminal.</description> + </context> +</contexts> diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/plugin.xml b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/plugin.xml index 0045854a9..e6dd40990 100644 --- a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/plugin.xml +++ b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/plugin.xml @@ -156,4 +156,10 @@ </handler> </extension> +<!-- Help Context contributions --> + <extension point="org.eclipse.help.contexts"> + <contexts + file="contexts.xml"> + </contexts> + </extension> </plugin> |