Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-06-15 17:44:13 +0000
committerCurtis D'Entremont2006-06-15 17:44:13 +0000
commitecbe28b31caad7a400e205abc87e430cf73f117a (patch)
tree0d5573f3179ee88bbe65572f118494adf56c15a1 /org.eclipse.ui.intro/schema
parenta4c1040985cfd98d2ec0dd997ff1712c168c0344 (diff)
downloadeclipse.platform.ua-ecbe28b31caad7a400e205abc87e430cf73f117a.tar.gz
eclipse.platform.ua-ecbe28b31caad7a400e205abc87e430cf73f117a.tar.xz
eclipse.platform.ua-ecbe28b31caad7a400e205abc87e430cf73f117a.zip
fixed schema errors (missing #CDATA, incorrect compositors, etc)
Diffstat (limited to 'org.eclipse.ui.intro/schema')
-rw-r--r--org.eclipse.ui.intro/schema/IntroContent.exsd44
-rw-r--r--org.eclipse.ui.intro/schema/introContentFileSpec.html10
2 files changed, 27 insertions, 27 deletions
diff --git a/org.eclipse.ui.intro/schema/IntroContent.exsd b/org.eclipse.ui.intro/schema/IntroContent.exsd
index 5c2a2bbb8..390306170 100644
--- a/org.eclipse.ui.intro/schema/IntroContent.exsd
+++ b/org.eclipse.ui.intro/schema/IntroContent.exsd
@@ -17,7 +17,7 @@
</documentation>
</annotation>
<complexType>
- <choice>
+ <choice minOccurs="1" maxOccurs="unbounded">
<element ref="page"/>
<element ref="group"/>
<element ref="extensionContent"/>
@@ -43,17 +43,17 @@ The subelements used in a dynamic page are as follows: A &lt;b&gt;group&lt;/b&gt
</documentation>
</annotation>
<complexType>
- <choice>
- <element ref="group" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="link" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="text" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="head" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="img" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="include" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="html" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="title" minOccurs="0" maxOccurs="1"/>
- <element ref="anchor" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="contentProvider" minOccurs="0" maxOccurs="unbounded"/>
+ <choice minOccurs="1" maxOccurs="unbounded">
+ <element ref="group"/>
+ <element ref="link"/>
+ <element ref="text"/>
+ <element ref="head"/>
+ <element ref="img"/>
+ <element ref="include"/>
+ <element ref="html"/>
+ <element ref="title"/>
+ <element ref="anchor"/>
+ <element ref="contentProvider"/>
</choice>
<attribute name="id" type="string" use="required">
<annotation>
@@ -142,15 +142,15 @@ Since 3.1, if the content of the external file is XHTML 1.0, then the page is re
</documentation>
</annotation>
<complexType>
- <choice>
- <element ref="group" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="link" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="text" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="img" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="include" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="html" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="anchor" minOccurs="0" maxOccurs="unbounded"/>
- <element ref="contentProvider" minOccurs="0" maxOccurs="unbounded"/>
+ <choice minOccurs="1" maxOccurs="unbounded">
+ <element ref="group"/>
+ <element ref="link"/>
+ <element ref="text"/>
+ <element ref="img"/>
+ <element ref="include"/>
+ <element ref="html"/>
+ <element ref="anchor"/>
+ <element ref="contentProvider"/>
</choice>
<attribute name="id" type="string" use="required">
<annotation>
@@ -631,7 +631,7 @@ Inclusion allows for including an html snippet directly from a file into the dyn
</documentation>
</annotation>
<complexType>
- <choice>
+ <choice minOccurs="1" maxOccurs="unbounded">
<element ref="text"/>
<element ref="group"/>
<element ref="link"/>
diff --git a/org.eclipse.ui.intro/schema/introContentFileSpec.html b/org.eclipse.ui.intro/schema/introContentFileSpec.html
index 70cf5598b..e6c1f0573 100644
--- a/org.eclipse.ui.intro/schema/introContentFileSpec.html
+++ b/org.eclipse.ui.intro/schema/introContentFileSpec.html
@@ -16,12 +16,12 @@
<p>
<h6 class=CaptionFigColumn id=header>Description: </h6>This document describes the intro content file structure as a series of DTD fragments.</p>
<p><h6 class=CaptionFigColumn id=header>Configuration Markup:</h6></p>
-<p class=code id=dtd>&lt;!ELEMENT <a name="e.introContent">introContent</a> (<a href="#e.page">page</a> | <a href="#e.group">group</a> | <a href="#e.extensionContent">extensionContent</a>)&gt;</p>
+<p class=code id=dtd>&lt;!ELEMENT <a name="e.introContent">introContent</a> (<a href="#e.page">page</a> | <a href="#e.group">group</a> | <a href="#e.extensionContent">extensionContent</a>)+&gt;</p>
<p></p>
<p class=ConfigMarkup id=elementDesc>
The introContent element defines the body of the intro content file. The content file is made up of pages, shared groups that can be included in multiple pages, and extensions to anchor points defined in other configurations.</p>
<br><br>
-<p class=code id=dtd>&lt;!ELEMENT <a name="e.page">page</a> (<a href="#e.group">group</a>* | <a href="#e.link">link</a>* | <a href="#e.text">text</a>* | <a href="#e.head">head</a>* | <a href="#e.img">img</a>* | <a href="#e.include">include</a>* | <a href="#e.html">html</a>* | <a href="#e.title">title</a>? | <a href="#e.anchor">anchor</a>* | <a href="#e.contentProvider">contentProvider</a>*)&gt;</p>
+<p class=code id=dtd>&lt;!ELEMENT <a name="e.page">page</a> (<a href="#e.group">group</a> | <a href="#e.link">link</a> | <a href="#e.text">text</a> | <a href="#e.head">head</a> | <a href="#e.img">img</a> | <a href="#e.include">include</a> | <a href="#e.html">html</a> | <a href="#e.title">title</a> | <a href="#e.anchor">anchor</a> | <a href="#e.contentProvider">contentProvider</a>)+&gt;</p>
<p class=code id=dtd>&lt;!ATTLIST page</p>
<p class=code id=dtdAttlist>id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED<p class=code id=dtdAttlist>url&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>style&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>alt-style&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>filteredFrom&nbsp;(swt|html) <p class=code id=dtdAttlist>content&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>style-id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>shared-style&nbsp;(true | false) <p class=code id=dtdAttlist>bgImage&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED&gt;</p>
<p></p>
@@ -56,7 +56,7 @@ Since 3.1, if the content of the external file is XHTML 1.0, then the page is re
<li><b>shared-style</b> - a boolean flag that controls the addition of the shared style into this page's list of styles. If <code>true</code> (the default), the shared style is added to this page's styles. If <code>false</code>, the shared style defined in the Intro configuration will not be injected into the styles of this page.</li>
<li><b>bgImage</b> - an optional URL of the image to use as a background for this group</li>
</ul>
-<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.group">group</a> (<a href="#e.group">group</a>* | <a href="#e.link">link</a>* | <a href="#e.text">text</a>* | <a href="#e.img">img</a>* | <a href="#e.include">include</a>* | <a href="#e.html">html</a>* | <a href="#e.anchor">anchor</a>* | <a href="#e.contentProvider">contentProvider</a>*)&gt;</p>
+<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.group">group</a> (<a href="#e.group">group</a> | <a href="#e.link">link</a> | <a href="#e.text">text</a> | <a href="#e.img">img</a> | <a href="#e.include">include</a> | <a href="#e.html">html</a> | <a href="#e.anchor">anchor</a> | <a href="#e.contentProvider">contentProvider</a>)+&gt;</p>
<p class=code id=dtd>&lt;!ATTLIST group</p>
<p class=code id=dtdAttlist>id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED<p class=code id=dtdAttlist>label&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>style-id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>filteredFrom&nbsp;(swt|html) <p class=code id=dtdAttlist>computed&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(true | false) "false"<p class=code id=dtdAttlist>bgImage&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED&gt;</p>
<p></p>
@@ -83,7 +83,7 @@ This markup is only to be used with an HTML based intro part implementation. It
<li><b>src</b> - relative or absolute URL to a file containing HTML to include directly into the HTML head section. If the content contains substitution segments of the form $plugin:plugin_id$ then they will be replaced with the absolute path to the plugin with id plugin_id.</li>
<li><b>encoding</b> - an optional attribute to specify the encoding of the inlined file containing the head snippet. Default is UTF-8. Since 3.0.1</li>
</ul>
-<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.title">title</a> EMPTY&gt;</p>
+<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.title">title</a> (#PCDATA)&gt;</p>
<p class=code id=dtd>&lt;!ATTLIST title</p>
<p class=code id=dtdAttlist>id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>style-id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>filteredFrom&nbsp;(swt|html) &gt;</p>
<p></p>
@@ -190,7 +190,7 @@ will process the message parameter as "This is a message".<br>
<li><b>style-id</b> - A means to classifiy this link into a given category so that a common style may be applied.</li>
<li><b>filteredFrom</b> - an optional attribute that allows for filtering a given element out of a specific implementation. For example, if a group has filteredFrom = swt, it means that this group will not appear as content in the swt implementation.</li>
</ul>
-<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.text">text</a> EMPTY&gt;</p>
+<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.text">text</a> (#PCDATA)&gt;</p>
<p class=code id=dtd>&lt;!ATTLIST text</p>
<p class=code id=dtdAttlist>id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>style-id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>filteredFrom&nbsp;(swt|html) &gt;</p>
<p></p>

Back to the top