Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/schema/IntroContent.exsd')
-rw-r--r--org.eclipse.ui.intro/schema/IntroContent.exsd40
1 files changed, 20 insertions, 20 deletions
diff --git a/org.eclipse.ui.intro/schema/IntroContent.exsd b/org.eclipse.ui.intro/schema/IntroContent.exsd
index e0901a2b0..b0a89bedf 100644
--- a/org.eclipse.ui.intro/schema/IntroContent.exsd
+++ b/org.eclipse.ui.intro/schema/IntroContent.exsd
@@ -44,38 +44,38 @@ A <b>group</b> subelement is used to group of content and apply styl
<element ref="title" minOccurs="0" maxOccurs="1"/>
<element ref="anchor" minOccurs="0" maxOccurs="unbounded"/>
</choice>
- <attribute name="id" type="string" use="required">
+ <attribute name="url" type="string">
<annotation>
<documentation>
- A unique name that can be used to identify this page.
+ The optional relative path to an HTML file. When using the Web based presentation, this HTML file will displayed instead of any content defined for this page.
</documentation>
</annotation>
</attribute>
- <attribute name="style" type="string">
+ <attribute name="standby-url" type="string">
<annotation>
<documentation>
- A relative path to a CSS file which is applied to the page only when using the Web based presentation.
+
</documentation>
</annotation>
</attribute>
- <attribute name="alt-style" type="string">
+ <attribute name="id" type="string" use="required">
<annotation>
<documentation>
- A relative path to a SWT presentation properies file which is applied to the page only when using the SWT based presentation.
+ A unique name that can be used to identify this page.
</documentation>
</annotation>
</attribute>
- <attribute name="url" type="string">
+ <attribute name="style" type="string">
<annotation>
<documentation>
- The optional relative path to an HTML file. When using the Web based presentation, this HTML file will displayed instead of any content defined for this page.
+ A relative path to a CSS file which is applied to the page only when using the Web based presentation.
</documentation>
</annotation>
</attribute>
- <attribute name="standby-url" type="string">
+ <attribute name="alt-style" type="string">
<annotation>
<documentation>
-
+ A relative path to a SWT presentation properies file which is applied to the page only when using the SWT based presentation.
</documentation>
</annotation>
</attribute>
@@ -93,13 +93,6 @@ A &lt;b&gt;group&lt;/b&gt; subelement is used to group of content and apply styl
</documentation>
</annotation>
</attribute>
- <attribute name="style-id" type="string">
- <annotation>
- <documentation>
- A means to classifiy the page into a given category so that a common style may be applied.
- </documentation>
- </annotation>
- </attribute>
<attribute name="filteredFrom">
<annotation>
<documentation>
@@ -165,6 +158,13 @@ A &lt;b&gt;group&lt;/b&gt; subelement is used to group of content and apply styl
</restriction>
</simpleType>
</attribute>
+ <attribute name="style-id" type="string">
+ <annotation>
+ <documentation>
+ A means to classifiy the page into a given category so that a common style may be applied.
+ </documentation>
+ </annotation>
+ </attribute>
</complexType>
</element>
@@ -222,7 +222,7 @@ A &lt;b&gt;group&lt;/b&gt; subelement is used to group of content and apply styl
<element name="html">
<annotation>
<documentation>
- direct HTML to include in the page either by embedding the entire document, or inlining a snippet of HTML in-place. A fallback image or text must be defined for alternative swt presentation rendering.
+ direct HTML to include in the page either by embedding the entire document, or inlining a snippet of HTML in-place. A fallback image or text must be defined for alternative swt presentation rendering.
Embedding allows for a fully defined html file to be embeded within an HTML object by referencing the html file. Inclusion allows for embedding an html snippets directly from html file.
</documentation>
</annotation>
@@ -327,7 +327,7 @@ Embedding allows for a fully defined html file to be embeded within an HTML obje
<element name="text">
<annotation>
<documentation>
- a snippet of text that can optionally contain escaped HTML tags. It can include b and li tags. It can also contain anchors for urls.
+ a snippet of text that can optionally contain escaped HTML tags. It can include b and li tags. It can also contain anchors for urls.
If multiple paragraphs are needed, then the text can be divided into multiple sections each begining and ending with the p tag.
</documentation>
</annotation>
@@ -398,7 +398,7 @@ If multiple paragraphs are needed, then the text can be divided into multiple se
<element name="head">
<annotation>
<documentation>
- Direct HTML to include in a page&apos;s HEAD content area. It allows for additional html to be added to the HTML HEAD section. This is useful for adding java srcipts or extra styles sheets.
+ Direct HTML to include in a page&apos;s HEAD content area. It allows for additional html to be added to the HTML HEAD section. This is useful for adding java srcipts or extra styles sheets.
This markup is only to be used with an SWT Based intro part implementation. It is simply ignored in the case of a UI Forms implementation. A page can have more than one head element. An implementation can have one and only one head element (since it is a shared head content, it makes sense to just define it in one file).
</documentation>
</annotation>

Back to the top