Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2007-07-19 21:23:56 +0000
committerChris Goldthorpe2007-07-19 21:23:56 +0000
commit6f91fc30dc6dfe85b6cb0390920366b10a6a996e (patch)
treec47a3159485d3c569b3e76b0d18b9baf922335b0 /org.eclipse.ui.cheatsheets
parentc1dac0c4f454caf66a470ec6171d321ebf957c94 (diff)
downloadeclipse.platform.ua-6f91fc30dc6dfe85b6cb0390920366b10a6a996e.tar.gz
eclipse.platform.ua-6f91fc30dc6dfe85b6cb0390920366b10a6a996e.tar.xz
eclipse.platform.ua-6f91fc30dc6dfe85b6cb0390920366b10a6a996e.zip
Bug 196992 - [CheatSheet] Item DTD grammar typo in Platform Guidev20070723
Diffstat (limited to 'org.eclipse.ui.cheatsheets')
-rw-r--r--org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.exsd7
-rw-r--r--org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.html2
2 files changed, 3 insertions, 6 deletions
diff --git a/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.exsd b/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.exsd
index 4d67140cf..3e7a3f65d 100644
--- a/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.exsd
+++ b/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.exsd
@@ -125,9 +125,10 @@ based on cheat sheet variables whose value are acquired in earlier steps.</p&
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="subitem"/>
<element ref="conditional-subitem"/>
- <element ref="conditional-subitem"/>
+ <element ref="repeated-subitem"/>
</choice>
</choice>
+ <element ref="onCompletion" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="title" type="string" use="required">
<annotation>
@@ -415,8 +416,6 @@ Examples:
&lt;code&gt;translate = &quot;param2, param3&quot;&lt;/code&gt; means translate param2 and param3 only.
&lt;br&gt;
&lt;code&gt;translate = &quot;&quot;&lt;/code&gt; means do not translate any parameters for this action.
-
-
</documentation>
</annotation>
</attribute>
@@ -495,8 +494,6 @@ Examples:
&lt;code&gt;translate = &quot;param2, param3&quot;&lt;/code&gt; means translate param2 and param3 only.
&lt;br&gt;
&lt;code&gt;translate = &quot;&quot;&lt;/code&gt; means do not translate any parameters for this command.
-
-
</documentation>
</annotation>
</attribute>
diff --git a/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.html b/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.html
index f8350e397..b445c7924 100644
--- a/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.html
+++ b/org.eclipse.ui.cheatsheets/schema/cheatSheetContentFileSpec.html
@@ -58,7 +58,7 @@ rendered as a single space or a line break. Whitespace immediately after the
&lt;<b>description</b>&gt; and &lt;<b>br/</b>&gt; tags is ignored, as is
whitespace immediately before the &lt;<b>/description</b>&gt; tag.</p>
<br><br>
-<p class=code id=dtd>&lt;!ELEMENT <a name="e.item">item</a> (<a href="#e.description">description</a> , (<a href="#e.action">action</a> | <a href="#e.command">command</a> | <a href="#e.perform-when">perform-when</a> | (<a href="#e.subitem">subitem</a> | <a href="#e.conditional-subitem">conditional-subitem</a> | <a href="#e.conditional-subitem">conditional-subitem</a>)*))&gt;</p>
+<p class=code id=dtd>&lt;!ELEMENT <a name="e.item">item</a> (<a href="#e.description">description</a> , (<a href="#e.action">action</a> | <a href="#e.command">command</a> | <a href="#e.perform-when">perform-when</a> | (<a href="#e.subitem">subitem</a> | <a href="#e.conditional-subitem">conditional-subitem</a> | <a href="#e.repeated-subitem">repeated-subitem</a>)*) , <a href="#e.onCompletion">onCompletion</a>?)&gt;</p>
<p class=code id=dtd>&lt;!ATTLIST item</p>
<p class=code id=dtdAttlist>title&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED<p class=code id=dtdAttlist>dialog&nbsp;&nbsp;&nbsp;&nbsp;(true | false) "false"<p class=code id=dtdAttlist>skip&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(true | false) "false"<p class=code id=dtdAttlist>contextId&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>href&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED&gt;</p>
<p></p>

Back to the top