From 7f339727c8c4a91f2fb011c285a943ceb4505faa Mon Sep 17 00:00:00 2001 From: Mazen Faraj Date: Wed, 23 Jun 2004 21:29:13 +0000 Subject: changing file to -kkv --- org.eclipse.ui.intro/schema/IntroContent.exsd | 1282 ++++++++++++------------- 1 file changed, 641 insertions(+), 641 deletions(-) (limited to 'org.eclipse.ui.intro/schema/IntroContent.exsd') diff --git a/org.eclipse.ui.intro/schema/IntroContent.exsd b/org.eclipse.ui.intro/schema/IntroContent.exsd index a0ebf6e6b..b072a607c 100644 --- a/org.eclipse.ui.intro/schema/IntroContent.exsd +++ b/org.eclipse.ui.intro/schema/IntroContent.exsd @@ -1,641 +1,641 @@ - - - - - - - - - - - - - - - - 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. - - - - - - - - - - - - - - - This element is used to describe a page to be displayed. The intro can display both dynamic and static pages.<br> -<br> -Content for dynamic pages is generated from the subelements of the page, described below. The style or alt-style will be applied depending on the presentation. The styles can be further enhanced by referencing the id or class-id.<br> -<br/> -Static pages allow for the reuse of existing HTML documents within one's introduction, and can be linked to from any static or dynamic page. Static pages are not defined in a page element, they are simply html files that can be linked to by other pages.<br> -<br/> -The home page, whose id is specified in the presentation element of the intro config extension point, can have a url indicating that it is a static page. If no url is specified then the home page is assumed to be dynamic. All other pages described using the page element are dynamic. -<br/> - Also note that when the SWT presentation is used and a static page is to be displayed, an external brower is launched and the current page remains visible.<br/> -<br/> - -The subelements used in a dynamic page are as follows: A <b>group</b> subelement is used to group related content and apply style across the grouped content. A <b>link</b> subelement defines a link which can be used to link to a static or dynamic page and run an intro action/command. A link is normally defined at the page level to navigate between main pages versus links within a page. A <b>text</b> subelement defines textual content at the page level. A <b>head</b> subelement is only applicable for the Web based presentation and allows for additional html to be added to the HTML <b>head</b> section. This is useful for adding java scripts or extra style sheets. An <b>img</b> subelement defines image content for the page level. An <b>include</b> subelement allows for reuse of any element other than a page. An <b>html</b> subelement is only applicable for the Web based presentation and allows for the embedding or inclusion of html into the page's content. Embedding allows for a fully defined html file to be embeded within an HTML <b>object</b> by referencing the html file. Inclusion allows for including an html snippet directly from an html file. A <b>title</b> subelement defines the title of the page. An <b>anchor</b> subelement defines a point where external contributions can be made by an <extensionContent> element. - - - - - - - - - - - - - - - - - - The optional relative path to an HTML file. When using the Web based presentation, this HTML file will be displayed instead of any content defined for this page. This attribute is only applicable to the home page, which is identified in the presentation element of the intro config extension point. It is ignored for all other pages. - - - - - - - A unique name that can be used to identify this page. - - - - - - - A relative path to a CSS file which is applied to the page only when using the Web based presentation. - - - - - - - A relative path to a SWT presentation properies file which is applied to the page only when using the SWT based presentation. - - - - - - - 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. - - - - - - - - - - - - - - - an optional attribute which can define the location of an introContent.xml file that represents the content of this page. When this attribute is defined, all children and attributes in this page element, except id, are ignored. This is because the content of this page is now assumed to reside in the xml file pointed to by the content file attribute. When resolving to the content of this file, the page with an id that matches the id defined in this page element is chosen. -This seperation of pages can be used when performance is an issue, as the content of a page is now loaded more lazily. - - - - - - - A means to classifiy the page into a given category so that a common style may be applied. - - - - - - - - - - Used to group related content, content that should have similar style applied, or content that will be included together in other pages. - - - - - - - - - - - - - - - - unique identifier of the group - - - - - - - a label or heading for this group - - - - - - - A means to classifiy this group into a given category so that a common style may be applied. - - - - - - - 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. - - - - - - - - - - - - - - - - - - Can link to a static HTML file, an external web site, or can run an Intro URL action. - - - - - - - - - - - A unique id that can be used to identify this link - - - - - - - The text name of this link - - - - - - - A valid URL to an external web site, a static html file, or an Intro URL that represents an Intro action. All intro URLs have the following form: http://org.eclipse.ui.intro/<action name>?param1=value1&param2=value2 and will be processed by the intro framework. - -<br><br> -The predefined actions will be described using this format: -<br> -<p style="margin-left:15px;"> -<b>action name</b> - descripton of action<br> -<i>action parameter1</i> - description of parameter<br> -<i>action parameter2 (optional)</i> - description of parameter<br> -<i>action parameter3 (optional) = ("true" | "false") "false"</i> - description of parameter, choice of either true or false and "false" is the default<br> -</p> - -<br> -The following predefined actions are included in the intro framework: -<p style="margin-left:15px;"> -<b>close</b> - closes the intro part<br> -no parameters required<br> -<br> - -<b>navigate</b> - navigate through the intro pages in a given direction or return to the home page<br> -<i>direction = ("backward" | "forward" | "home")</i> - specifies the direction to navigate<br> -<br> - -<b>openBrowser</b> - open the url in an external browser<br> -<i>url</i> - a valid URL to an external web site or a static HTML file<br> -<i>pluginId (optional)</i> - only required if a static HTML file is specified. This is the id of the plug-in containing the file.<br> -<br> - -<b>runAction</b> - runs the specified action<br> -<i>class</i> - the fully qualified class name of the class that implements one of <code>org.eclipse.ui.intro.config.IIntroAction</code>, - <code>org.eclipse.jface.actino.IAction</code>, or <code>org.eclipse.ui.IActionDelegate</code><br> -<i>pluginId</i> - The id of the plug-in which contains the class.<br> -<i>standby (optional) = ("true" | "false") "false"</i> - indicate whether to set the intro into standby mode after executing the action<br> -additional parameters - any additional parameters are passed to actions that implement <code>org.eclipse.ui.intro.config.IIntroAction</code><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> -<br> - -<b>showHelp</b> - Open the help system.<br> -no parameters required<br> -<br> - -<b>showHelpTopic</b> - Open a help topic.<br> -<i>id</i> - the URL of the help resource. (See Javadoc for <code>org.eclipse.ui.help.WorkbenchHelp.displayHelpResource</code><br> -<br> - -<b>showMessage</b> - Displays a message to the user using a standard information dialog.<br> -<i>message</i> - the message to show the user<br> -<br> - -<b>showStandby</b> - Sets the intro part to standby mode and shows the standbyContentPart with the given input<br> -<i>partId</i> - the id of the standbyContentPart to show<br> -<i>input</i> - the input to set on the standbyContentPart<br> -<br> - -<b>showPage</b> - show the intro page with the given id<br> -<i>id</i> - the id of the intro page to show<br> -<i>standby (optional) = ("true" | "false") "false"</i> - indicate whether to set the intro into standby mode after showing the page<br> -</p> -<br> - - - - - - - A means to classifiy this link into a given category so that a common style may be applied. - - - - - - - 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. - - - - - - - - - - - - - - - - - - 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. -<br> -Embedding allows for a fully defined html file to be embedded within the dynamic page's content. An HTML <b>object</b> element is created that references the html file. -<br> -Inclusion allows for including an html snippet directly from a file into the dynamic html page. - - - - - - - - - - - unique identifier of this HTML element - - - - - - - relative or absolute URL to a file containing HTML - - - - - - - if 'embed', a valid (full) HTML document will be embedded using HTML 'OBJECT' tag. If 'inline', value of 'src' will be treated as a snippet of HTML to emit 'in-place'. (if type is not specified, this html object is ignored by the intro configuration). - - - - - - - - - - - - - - - A means to classifiy this HTML element into a given category so that a common style may be applied. - - - - - - - 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. - - - - - - - - - - - - - - - - - - a snippet of text that can optionally contain escaped HTML tags. It is only used as a Page Title, and so a given page can have a maximum of one title element. - - - - - - - unique identifier of this title. - - - - - - - A means to classifiy this element into a given category so that a common style may be applied - - - - - - - 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. - - - - - - - - - - - - - - - - - - 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. - - - - - - - unique identifier of this text. - - - - - - - A means to classifiy this element into a given category so that a common style may be applied - - - - - - - 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. - - - - - - - - - - - - - - - - - - expands an element targeted by the given path and optional configId attributes. Path should uniquely address an element within the specified configuration. It could point to a shared group defined at the configuration level, or any element in a page. - - - - - - - identifier of a configuration where the included element is defined. If specified, it is assumed that the element to be included is specified in another configuration, and not the enclosing configuration. In this case, that external config is loaded and the element is resolved from that new config. If not specified, enclosing (parent) configuration of this include is assumed. - - - - - - - the path that uniquely represents the target element within the configuration (e.g. page/group1/group2). It may be a group element, or any element that may be contained in a group. You can not include a page. - - - - - - - if <code>true</code>, style belonging to the page that owns the included element will be added to list of styles of the including page. If <code>false</code> (the default), the including page is responsible for controlling properties of the included element. - - - - - - - - - - Direct HTML to include in a page'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 HTML 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 across all pages). - - - - - - - relative or absolute URL to a file containing HTML to include directly into the HTML head section. - - - - - - - - - - An image that represents intro content and not presentation (as opposed to decoration images defined in styles). - - - - - - - unique identifier of this image - - - - - - - the file to load the image from - - - - - - - the alternative text to use when the image can not be loaded and as tooltip text for the image. - - - - - - - A means to classifiy this image into a given category so that a common style may be applied. - - - - - - - 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. - - - - - - - - - - - - - - - - - - The content to be added to the target anchor. Only one extensionContent is allowed in a given configExtension because if this extension could not be resolved (if the config could not be found, or the target anchor element could not be found) then the pages and/or groups in the extension need to be ingnored. - - - - - - - - - - - - - - A relative path to a CSS file which is applied to the page only when using the Web based presentation. - - - - - - - A relative path to a SWT presentation properies file which is applied to the page only when using the SWT based presentation. - - - - - - - the path that uniquely represents the path to an anchor. (e.g. page/group1/group2/anchorId) within the target configuration to be extended. It can only be an anchor which can be in any page or group, including shared groups at configuration level - - - - - - - - - - an anchor is the element used to declare extensibility. It is a location in the configurtaion that allows for external contributions. Only anchors are valid target values for the path attribute in an extensionContent - - - - - - - unique id to identify this anchor. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + 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. + + + + + + + + + + + + + + + This element is used to describe a page to be displayed. The intro can display both dynamic and static pages.<br> +<br> +Content for dynamic pages is generated from the subelements of the page, described below. The style or alt-style will be applied depending on the presentation. The styles can be further enhanced by referencing the id or class-id.<br> +<br/> +Static pages allow for the reuse of existing HTML documents within one's introduction, and can be linked to from any static or dynamic page. Static pages are not defined in a page element, they are simply html files that can be linked to by other pages.<br> +<br/> +The home page, whose id is specified in the presentation element of the intro config extension point, can have a url indicating that it is a static page. If no url is specified then the home page is assumed to be dynamic. All other pages described using the page element are dynamic. +<br/> + Also note that when the SWT presentation is used and a static page is to be displayed, an external brower is launched and the current page remains visible.<br/> +<br/> + +The subelements used in a dynamic page are as follows: A <b>group</b> subelement is used to group related content and apply style across the grouped content. A <b>link</b> subelement defines a link which can be used to link to a static or dynamic page and run an intro action/command. A link is normally defined at the page level to navigate between main pages versus links within a page. A <b>text</b> subelement defines textual content at the page level. A <b>head</b> subelement is only applicable for the Web based presentation and allows for additional html to be added to the HTML <b>head</b> section. This is useful for adding java scripts or extra style sheets. An <b>img</b> subelement defines image content for the page level. An <b>include</b> subelement allows for reuse of any element other than a page. An <b>html</b> subelement is only applicable for the Web based presentation and allows for the embedding or inclusion of html into the page's content. Embedding allows for a fully defined html file to be embeded within an HTML <b>object</b> by referencing the html file. Inclusion allows for including an html snippet directly from an html file. A <b>title</b> subelement defines the title of the page. An <b>anchor</b> subelement defines a point where external contributions can be made by an <extensionContent> element. + + + + + + + + + + + + + + + + + + The optional relative path to an HTML file. When using the Web based presentation, this HTML file will be displayed instead of any content defined for this page. This attribute is only applicable to the home page, which is identified in the presentation element of the intro config extension point. It is ignored for all other pages. + + + + + + + A unique name that can be used to identify this page. + + + + + + + A relative path to a CSS file which is applied to the page only when using the Web based presentation. + + + + + + + A relative path to a SWT presentation properies file which is applied to the page only when using the SWT based presentation. + + + + + + + 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. + + + + + + + + + + + + + + + an optional attribute which can define the location of an introContent.xml file that represents the content of this page. When this attribute is defined, all children and attributes in this page element, except id, are ignored. This is because the content of this page is now assumed to reside in the xml file pointed to by the content file attribute. When resolving to the content of this file, the page with an id that matches the id defined in this page element is chosen. +This seperation of pages can be used when performance is an issue, as the content of a page is now loaded more lazily. + + + + + + + A means to classifiy the page into a given category so that a common style may be applied. + + + + + + + + + + Used to group related content, content that should have similar style applied, or content that will be included together in other pages. + + + + + + + + + + + + + + + + unique identifier of the group + + + + + + + a label or heading for this group + + + + + + + A means to classifiy this group into a given category so that a common style may be applied. + + + + + + + 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. + + + + + + + + + + + + + + + + + + Can link to a static HTML file, an external web site, or can run an Intro URL action. + + + + + + + + + + + A unique id that can be used to identify this link + + + + + + + The text name of this link + + + + + + + A valid URL to an external web site, a static html file, or an Intro URL that represents an Intro action. All intro URLs have the following form: http://org.eclipse.ui.intro/<action name>?param1=value1&param2=value2 and will be processed by the intro framework. + +<br><br> +The predefined actions will be described using this format: +<br> +<p style="margin-left:15px;"> +<b>action name</b> - descripton of action<br> +<i>action parameter1</i> - description of parameter<br> +<i>action parameter2 (optional)</i> - description of parameter<br> +<i>action parameter3 (optional) = ("true" | "false") "false"</i> - description of parameter, choice of either true or false and "false" is the default<br> +</p> + +<br> +The following predefined actions are included in the intro framework: +<p style="margin-left:15px;"> +<b>close</b> - closes the intro part<br> +no parameters required<br> +<br> + +<b>navigate</b> - navigate through the intro pages in a given direction or return to the home page<br> +<i>direction = ("backward" | "forward" | "home")</i> - specifies the direction to navigate<br> +<br> + +<b>openBrowser</b> - open the url in an external browser<br> +<i>url</i> - a valid URL to an external web site or a static HTML file<br> +<i>pluginId (optional)</i> - only required if a static HTML file is specified. This is the id of the plug-in containing the file.<br> +<br> + +<b>runAction</b> - runs the specified action<br> +<i>class</i> - the fully qualified class name of the class that implements one of <code>org.eclipse.ui.intro.config.IIntroAction</code>, + <code>org.eclipse.jface.actino.IAction</code>, or <code>org.eclipse.ui.IActionDelegate</code><br> +<i>pluginId</i> - The id of the plug-in which contains the class.<br> +<i>standby (optional) = ("true" | "false") "false"</i> - indicate whether to set the intro into standby mode after executing the action<br> +additional parameters - any additional parameters are passed to actions that implement <code>org.eclipse.ui.intro.config.IIntroAction</code><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> +<br> + +<b>showHelp</b> - Open the help system.<br> +no parameters required<br> +<br> + +<b>showHelpTopic</b> - Open a help topic.<br> +<i>id</i> - the URL of the help resource. (See Javadoc for <code>org.eclipse.ui.help.WorkbenchHelp.displayHelpResource</code><br> +<br> + +<b>showMessage</b> - Displays a message to the user using a standard information dialog.<br> +<i>message</i> - the message to show the user<br> +<br> + +<b>showStandby</b> - Sets the intro part to standby mode and shows the standbyContentPart with the given input<br> +<i>partId</i> - the id of the standbyContentPart to show<br> +<i>input</i> - the input to set on the standbyContentPart<br> +<br> + +<b>showPage</b> - show the intro page with the given id<br> +<i>id</i> - the id of the intro page to show<br> +<i>standby (optional) = ("true" | "false") "false"</i> - indicate whether to set the intro into standby mode after showing the page<br> +</p> +<br> + + + + + + + A means to classifiy this link into a given category so that a common style may be applied. + + + + + + + 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. + + + + + + + + + + + + + + + + + + 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. +<br> +Embedding allows for a fully defined html file to be embedded within the dynamic page's content. An HTML <b>object</b> element is created that references the html file. +<br> +Inclusion allows for including an html snippet directly from a file into the dynamic html page. + + + + + + + + + + + unique identifier of this HTML element + + + + + + + relative or absolute URL to a file containing HTML + + + + + + + if 'embed', a valid (full) HTML document will be embedded using HTML 'OBJECT' tag. If 'inline', value of 'src' will be treated as a snippet of HTML to emit 'in-place'. (if type is not specified, this html object is ignored by the intro configuration). + + + + + + + + + + + + + + + A means to classifiy this HTML element into a given category so that a common style may be applied. + + + + + + + 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. + + + + + + + + + + + + + + + + + + a snippet of text that can optionally contain escaped HTML tags. It is only used as a Page Title, and so a given page can have a maximum of one title element. + + + + + + + unique identifier of this title. + + + + + + + A means to classifiy this element into a given category so that a common style may be applied + + + + + + + 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. + + + + + + + + + + + + + + + + + + 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. + + + + + + + unique identifier of this text. + + + + + + + A means to classifiy this element into a given category so that a common style may be applied + + + + + + + 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. + + + + + + + + + + + + + + + + + + expands an element targeted by the given path and optional configId attributes. Path should uniquely address an element within the specified configuration. It could point to a shared group defined at the configuration level, or any element in a page. + + + + + + + identifier of a configuration where the included element is defined. If specified, it is assumed that the element to be included is specified in another configuration, and not the enclosing configuration. In this case, that external config is loaded and the element is resolved from that new config. If not specified, enclosing (parent) configuration of this include is assumed. + + + + + + + the path that uniquely represents the target element within the configuration (e.g. page/group1/group2). It may be a group element, or any element that may be contained in a group. You can not include a page. + + + + + + + if <code>true</code>, style belonging to the page that owns the included element will be added to list of styles of the including page. If <code>false</code> (the default), the including page is responsible for controlling properties of the included element. + + + + + + + + + + Direct HTML to include in a page'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 HTML 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 across all pages). + + + + + + + relative or absolute URL to a file containing HTML to include directly into the HTML head section. + + + + + + + + + + An image that represents intro content and not presentation (as opposed to decoration images defined in styles). + + + + + + + unique identifier of this image + + + + + + + the file to load the image from + + + + + + + the alternative text to use when the image can not be loaded and as tooltip text for the image. + + + + + + + A means to classifiy this image into a given category so that a common style may be applied. + + + + + + + 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. + + + + + + + + + + + + + + + + + + The content to be added to the target anchor. Only one extensionContent is allowed in a given configExtension because if this extension could not be resolved (if the config could not be found, or the target anchor element could not be found) then the pages and/or groups in the extension need to be ingnored. + + + + + + + + + + + + + + A relative path to a CSS file which is applied to the page only when using the Web based presentation. + + + + + + + A relative path to a SWT presentation properies file which is applied to the page only when using the SWT based presentation. + + + + + + + the path that uniquely represents the path to an anchor. (e.g. page/group1/group2/anchorId) within the target configuration to be extended. It can only be an anchor which can be in any page or group, including shared groups at configuration level + + + + + + + + + + an anchor is the element used to declare extensibility. It is a location in the configurtaion that allows for external contributions. Only anchors are valid target values for the path attribute in an extensionContent + + + + + + + unique id to identify this anchor. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3