Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian de Alwis2015-11-19 19:32:48 +0000
committerBrian de Alwis2015-11-19 19:32:48 +0000
commita2ca7336603d42b2778776ed904fd34baf68ba6e (patch)
tree6d1a82bfcb211238a20961bfc6be792fcd03342d
parent63fcb1f3aeeadb3f4eb74d9af3562f9192b74f07 (diff)
downloadeclipse.platform.ua-a2ca7336603d42b2778776ed904fd34baf68ba6e.tar.gz
eclipse.platform.ua-a2ca7336603d42b2778776ed904fd34baf68ba6e.tar.xz
eclipse.platform.ua-a2ca7336603d42b2778776ed904fd34baf68ba6e.zip
Recover doc for 'execute' intro action: commit e473e78bI20151201-0800I20151124-1000I20151124-0800
modified the generated HTML rather than updating the source schema description. Change-Id: I4d29407856862585d682a24a1625c884457224d2
-rw-r--r--org.eclipse.ui.intro/schema/IntroContent.exsd8
-rw-r--r--org.eclipse.ui.intro/schema/introContentFileSpec.html7
2 files changed, 13 insertions, 2 deletions
diff --git a/org.eclipse.ui.intro/schema/IntroContent.exsd b/org.eclipse.ui.intro/schema/IntroContent.exsd
index f6a4d2269..35b5de189 100644
--- a/org.eclipse.ui.intro/schema/IntroContent.exsd
+++ b/org.eclipse.ui.intro/schema/IntroContent.exsd
@@ -344,6 +344,12 @@ no parameters required<br>
additional parameters - any additional parameters are passed to actions that implement <code>org.eclipse.ui.intro.config.IIntroAction</code><br>
<br>
+<b>execute</b> - executes the specified command. See the <code>serialize()</code> method on <code>org.eclipse.core.command.ParameterizedCommand</code> for details of the command serialization format. Since 3.2.<br>
+<i>command</i> - a serialized <code>ParameterizedCommand</code><br>
+<i>standby (optional) = ("true"
+ "false") "false"</i> - indicate whether to set the intro into standby mode after executing the action<br>
+<br>
+
<b>setStandbyMode</b> - sets the state of the intro part<br>
<i>standby = ("true"
"false")</i> - true to put the intro part in its partially visible standy mode, and false to make it fully visible<br>
@@ -374,7 +380,7 @@ no parameters required<br>
<i>standby (optional) = ("true"
"false") "false"</i> - indicate whether to set the intro into standby mode after showing the page<br><br>
-If any of the parameters passed to these actions have special characters (ie: characters that are illegal in a URL), then they should be encoded using UTF-8 url encoding. To recieve these parametrs in there decoded state a special parameter, <i>decode = ("true" "false")</i> can be used to force a decode of these parameters when the Intro framework processes them.<br>
+If any of the parameters passed to these actions have special characters (ie: characters that are illegal in a URL), then they should be encoded using UTF-8 url encoding. To receive these parametrs in there decoded state a special parameter, <i>decode = ("true" "false")</i> can be used to force a decode of these parameters when the Intro framework processes them.<br>
For example, the following Intro url: <br><i>
http://org.eclipse.ui.intro/showMessage?message=This+is+a+message</i><br>
will process the message parameter as "This+is+a+message"<br>
diff --git a/org.eclipse.ui.intro/schema/introContentFileSpec.html b/org.eclipse.ui.intro/schema/introContentFileSpec.html
index e584aa1f4..2bcea00ee 100644
--- a/org.eclipse.ui.intro/schema/introContentFileSpec.html
+++ b/org.eclipse.ui.intro/schema/introContentFileSpec.html
@@ -143,6 +143,11 @@ no parameters required<br>
additional parameters - any additional parameters are passed to actions that implement <code>org.eclipse.ui.intro.config.IIntroAction</code><br>
<br>
+<b>execute</b> - executes the specified command. See the <code>serialize()</code> method on <code>org.eclipse.core.command.ParameterizedCommand</code> for details of the command serialization format. Since 3.2.<br>
+<i>command</i> - a serialized <code>ParameterizedCommand</code><br>
+<i>standby (optional) = ("true" | "false") "false"</i> - indicate whether to set the intro into standby mode after executing the command<br>
+<br>
+
<b>setStandbyMode</b> - sets the state of the intro part<br>
<i>standby = ("true"
"false")</i> - true to put the intro part in its partially visible standy mode, and false to make it fully visible<br>
@@ -173,7 +178,7 @@ no parameters required<br>
<i>standby (optional) = ("true"
"false") "false"</i> - indicate whether to set the intro into standby mode after showing the page<br><br>
-If any of the parameters passed to these actions have special characters (ie: characters that are illegal in a URL), then they should be encoded using UTF-8 url encoding. To recieve these parametrs in there decoded state a special parameter, <i>decode = ("true" "false")</i> can be used to force a decode of these parameters when the Intro framework processes them.<br>
+If any of the parameters passed to these actions have special characters (ie: characters that are illegal in a URL), then they should be encoded using UTF-8 url encoding. To receive these parametrs in there decoded state a special parameter, <i>decode = ("true" "false")</i> can be used to force a decode of these parameters when the Intro framework processes them.<br>
For example, the following Intro url: <br><i>
http://org.eclipse.ui.intro/showMessage?message=This+is+a+message</i><br>
will process the message parameter as "This+is+a+message"<br>

Back to the top