Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-06-15 17:25:57 +0000
committerCurtis D'Entremont2006-06-15 17:25:57 +0000
commita4c1040985cfd98d2ec0dd997ff1712c168c0344 (patch)
treea104fb14840c0895d9bdf9bab6469af1b13fb9b7
parente530c032b431f7d7e97a450d688907fe5457d650 (diff)
downloadeclipse.platform.ua-a4c1040985cfd98d2ec0dd997ff1712c168c0344.tar.gz
eclipse.platform.ua-a4c1040985cfd98d2ec0dd997ff1712c168c0344.tar.xz
eclipse.platform.ua-a4c1040985cfd98d2ec0dd997ff1712c168c0344.zip
id in img should not be required
-rw-r--r--org.eclipse.ui.intro/schema/IntroContent.exsd8
-rw-r--r--org.eclipse.ui.intro/schema/introContentFileSpec.html4
2 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.ui.intro/schema/IntroContent.exsd b/org.eclipse.ui.intro/schema/IntroContent.exsd
index 2b666cbce..5c2a2bbb8 100644
--- a/org.eclipse.ui.intro/schema/IntroContent.exsd
+++ b/org.eclipse.ui.intro/schema/IntroContent.exsd
@@ -454,17 +454,17 @@ If multiple paragraphs are needed, then the text can be divided into multiple se
</documentation>
</annotation>
<complexType>
- <attribute name="id" type="string" use="required">
+ <attribute name="src" type="string" use="required">
<annotation>
<documentation>
- unique identifier of this image
+ the file to load the image from
</documentation>
</annotation>
</attribute>
- <attribute name="src" type="string" use="required">
+ <attribute name="id" type="string">
<annotation>
<documentation>
- the file to load the image from
+ unique identifier of this image
</documentation>
</annotation>
</attribute>
diff --git a/org.eclipse.ui.intro/schema/introContentFileSpec.html b/org.eclipse.ui.intro/schema/introContentFileSpec.html
index 0ecd97d59..70cf5598b 100644
--- a/org.eclipse.ui.intro/schema/introContentFileSpec.html
+++ b/org.eclipse.ui.intro/schema/introContentFileSpec.html
@@ -205,14 +205,14 @@ If multiple paragraphs are needed, then the text can be divided into multiple se
</ul>
<br><p class=code id=dtd>&lt;!ELEMENT <a name="e.img">img</a> EMPTY&gt;</p>
<p class=code id=dtd>&lt;!ATTLIST img</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>src&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED<p class=code id=dtdAttlist>alt&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 class=code id=dtdAttlist>src&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED<p class=code id=dtdAttlist>id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED<p class=code id=dtdAttlist>alt&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>
<p class=ConfigMarkup id=elementDesc>
An image that represents intro content and not presentation (as opposed to decoration images defined in styles).</p>
<br>
<ul class=ConfigMarkup id=attlistDesc>
-<li><b>id</b> - unique identifier of this image</li>
<li><b>src</b> - the file to load the image from</li>
+<li><b>id</b> - unique identifier of this image</li>
<li><b>alt</b> - the alternative text to use when the image can not be loaded and as tooltip text for the image.</li>
<li><b>style-id</b> - A means to classifiy this image 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>

Back to the top