[Thinlet-development] thinlet/doc/widget index.html,NONE,1.1 widget.xsl,NONE,1.1 button.xml,1.2,1.3
Brought to you by:
bajzat
Update of /cvsroot/thinlet/thinlet/doc/widget In directory sc8-pr-cvs1:/tmp/cvs-serv9989 Modified Files: button.xml checkbox.xml combobox.xml component.xml desktop.xml dialog.xml label.xml list.xml menubar.xml panel.xml passwordfield.xml progressbar.xml separator.xml slider.xml spinbox.xml splitpane.xml tabbedpane.xml table.xml textarea.xml textfield.xml togglebutton.xml tree.xml Added Files: index.html widget.xsl Log Message: XSL stylesheet to navigate the widget docs. Contributed by Detlef Groth - thank you! Other small updates to docs, mostly in the example sections or better wording. --- NEW FILE: index.html --- <HTML><HEAD><TITLE>Thinlet Widget Documentation</TITLE></HEAD> <frameset cols="100%"> <frame src="component.xml" name="left"> </frameset> </HTML> --- NEW FILE: widget.xsl --- <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <head> <title>Thinlet Widget Documentation</title> <style type="text/css"> h2 { font: bold 12pt Verdana,Arial,Helvetica,sans-serif; } h3 { font: bold 15pt Verdana,Arial,Helvetica,sans-serif; } body { background: #ffffff; font: 11pt Verdana,Arial,Helvetica,sans-serif;} td, input, textarea, caption, p {font: 9pt Verdana,Arial,Helvetica,sans-serif; } p { margin-top: 6pt; margin-bottom: 6pt; } td { vertical-align: top; } a:link, a:visited, a:active { color: #3399cc; text-decoration: none; } a:hover { color: #ff9933; text-decoration: underline; } .ht { background: #000000; color: #999999; vertical-align: middle; } .hm { background: #3399cc; vertical-align: bottom; } a.hn:link, a.hn:visited, a.hn:active { color: #000000; } a.hn:hover { color: #cccccc; background: #ff9933; text-decoration: none; } .hs { background: #000000; color: #cccccc; font-weight: bold; } .hb { background: #000000; } .mb { background: #ededed; } .md { background: #999999; } .mt { } .bt { color: #999999; text-align: right; } .sec {color: #666666; margin-top: 10pt; font: bold 10pt Verdana,Arial,Helvetica,sans-serif; text-align: left;} .th, .to, .te, .tn, .tor, .ter, .tir { padding-left: 4pt; padding-right: 4pt; border-bottom: 1pt solid #cccccc; text-align: left; } .th, .tir { background: #ededed; color: #666666; font-weight: bold; border-top: 1pt solid #cccccc; border-bottom: 1pt solid #cccccc;} .te, .ter { background: #ededed; } .tn { background: #ededed; color: #666666; font-weight: bold; } .tc { color: #666666; font-weight: bold; text-align: left; } .tor, .ter { text-align: right; padding-right: 0pt; } .tir { text-align: center; border-top: 1pt solid #999966; border-bottom: 1pt solid #999966;} .code { background: #ededed; border-top: 1pt solid #cccccc; border-bottom: 1pt solid #cccccc; } </style> </head> <body > <table border="0" width="99%" cellspacing="0"> <tr> <td class="tir" width="15%"> <br /> <a href="http://www.thinlet.com/">www.thinlet.com</a><br /> <a href="http://thinlet.sourceforge.net/">thinlet.sourceforge.net</a> </td> <td class="tir"> <h3 align="center">Thinlet Widgets</h3> </td> </tr> </table> <table border="0" height="80%" cellspacing="0" cellpadding="0"><tr> <td class="th"> <br /> </td> <td width="15%" class="th"> <br /> <br /> » <a href="button.xml" >button</a> <br /> » <a href="checkbox.xml" >checkbox</a><br /> » <a href="combobox.xml" >combobox</a><br /> » <a href="component.xml" >component</a><br /> » <a href="desktop.xml" >desktop</a><br /> » <a href="dialog.xml" >dialog</a><br /> » <a href="label.xml" >label</a><br /> » <a href="list.xml" >list</a><br /> » <a href="menubar.xml" >menubar</a><br /> » <a href="panel.xml" >panel</a><br /> » <a href="passwordfield.xml" >passwordfield</a><br /> » <a href="progressbar.xml" >progressbar</a><br /> » <a href="separator.xml" >separator</a><br /> » <a href="slider.xml" >slider</a><br /> » <a href="spinbox.xml" >spinbox</a><br /> » <a href="splitpane.xml" >splitpane</a><br /> » <a href="tabbedpane.xml" >tabbedpane</a><br /> » <a href="table.xml" >table</a><br /> » <a href="textarea.xml" >textarea</a><br /> » <a href="textfield.xml" >textfield</a><br /> » <a href="togglebutton.xml" >togglebutton</a><br /> » <a href="tree.xml">tree</a><br /> <br /> <br /> <a href="../api/index.html">Thinlet API</a> </td> <td width="20px"> </td> <td> <br /> <xsl:apply-templates select="widget"/> </td> </tr> </table> </body> </html> </xsl:template> <xsl:template match="widget"> <h2><xsl:value-of select="@title"/></h2> <p><xsl:value-of select="p"/></p> <xsl:if test="xul"> <p class="sec">Example:<br/></p> <table class="th" border="0" summary="Parameters" cellpadding="5" width="90%"><tr><td> <pre style="font: 11pt; color: #000000;"><xsl:value-of select="xul"/></pre> </td></tr></table> </xsl:if> <p class="sec">Parameters:<br/></p> <xsl:apply-templates select="parameters"/> <xsl:apply-templates select="widget"/> <xsl:apply-templates select="keys"/> </xsl:template> <xsl:template match="parameters"> <table border="0" summary="Parameters" cellpadding="1" width="100%"> <tr class="th"> <th width="10%">Name</th> <th width="10%">Type</th> <th width="10%">Default</th> <th >Description</th> </tr> <xsl:apply-templates select="parameter"/> </table> </xsl:template> <xsl:template match="parameter"> <tr> <xsl:attribute name="BGCOLOR"> <xsl:choose> <xsl:when test="position() mod 2 = 1">#FFFFFF</xsl:when> <xsl:when test="position() mod 2 = 0">#EDEDED</xsl:when> </xsl:choose> </xsl:attribute> <xsl:choose> <xsl:when test="@extend"> <td colspan="4" class="code"><b>Extends <a><xsl:attribute name="href"><xsl:value-of select="@extend"/>.xml</xsl:attribute><xsl:value-of select="@extend"/></a></b>: <xsl:value-of select="."/></td> </xsl:when> <xsl:otherwise> <td><xsl:value-of select="@name"/></td> <td><xsl:value-of select="@type"/></td> <xsl:choose> <xsl:when test="@default"> <td><xsl:value-of select="@default"/></td> </xsl:when> <xsl:otherwise> <td>none</td> </xsl:otherwise> </xsl:choose> <td><xsl:value-of select="."/></td> </xsl:otherwise> </xsl:choose> </tr> </xsl:template> <xsl:template match="keys"> <p class="sec"><b>Keyboard actions</b></p> <table border="0" summary="Keys" cellpadding="1" width="100%"> <tr class="th"> <th>Operation</th> <th>Action</th> </tr> <xsl:apply-templates select="key"/> </table> </xsl:template> <xsl:template match="key"> <tr> <xsl:attribute name="BGCOLOR"> <xsl:choose> <xsl:when test="position() mod 2 = 1">#FFFFFF</xsl:when> <xsl:when test="position() mod 2 = 0">#EDEDED</xsl:when> </xsl:choose> </xsl:attribute> <xsl:choose> <xsl:when test="@extend"> <td colspan="2"><xsl:value-of select="."/></td> </xsl:when> <xsl:otherwise> <td><xsl:value-of select="@sequence"/></td> <td><xsl:value-of select="."/></td> </xsl:otherwise> </xsl:choose> </tr> </xsl:template> </xsl:stylesheet> Index: button.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/button.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- button.xml 23 Jun 2003 12:04:35 -0000 1.2 +++ button.xml 3 Jul 2003 10:08:32 -0000 1.3 @@ -1,8 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - button - - - --> <widget class="button" title="Button"> - <p>The following button displays a short text string and an image. - Its content is on the left and centered vertically.</p> - <xul><![CDATA[<button text="Button" icon="image.gif" alignment="left" tooltip="ToolTip" />]]></xul> + <p>The first button below displays a short text string and an image. + Its content is on the left and centered vertically. The second button + resembles an HTML link, and when pressed invokes the action "goHome".</p> +<xul><![CDATA[<button text="Button" icon="image.gif" alignment="left" tooltip="ToolTip" /> +<button text="www.thinlet.com" type="link" action="goHome" />]]></xul> <parameters> <parameter name="text" type="string"> The text string that the button displays. Index: checkbox.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/checkbox.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- checkbox.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ checkbox.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,10 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - checkbox - - - --> <widget class="checkbox" title="CheckBox"> <p>The first checkbox has a short text and an icon, its state is selected. - The second one is a deselected radio button, - one of a set of buttons identified by a group name.</p> + The second one is a selected radio button, + one of a set of two buttons identified by a group name.</p> <xul><![CDATA[<checkbox text="CheckBox" icon="image.gif" selected="true"/> -<checkbox text="RadioButton" group="group"/>]]></xul> +<checkbox text="RadioButton 1" group="group" selected="true"/> +<checkbox text="RadioButton 2" group="group"/>]]></xul> <parameters> <parameter name="text" type="string"> The text string that the checkbox displays. Index: combobox.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/combobox.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- combobox.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ combobox.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - combobox - - - --> <widget class="combobox" title="ComboBox"> <p>ComboBox is a combination of a text field and drop-down list. Index: component.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/component.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- component.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ component.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,6 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - component - - - --> <widget class="component" title="Component"> - <p>The folowing pages describe components, all have the following parameters.</p> + <p>Component is an abstract superclass for most Thinlet widgets. All components support the parameters listed below.</p> <parameters> <parameter name="name" type="string"> Identifies the component. @@ -62,6 +64,10 @@ <parameter name="valign" type="choice" default="fill"> Vertical alignment in the cell. Possible values are: fill, center, top, and bottom. + </parameter> + <parameter name="i18n" type="boolean" default="false"> + Enables or disables lookup of internationalized version + of texts for "text" and "tooltip" parameters. See methods "setLangResource()" and "setAllI18n()" in Thinlet API. </parameter> <parameter name="property" type="property"> Binds an arbitrary key/value client property. The format of its value Index: desktop.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/desktop.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- desktop.xml 10 May 2003 20:51:54 -0000 1.1 +++ desktop.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,7 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - desktop - - - --> <widget class="desktop" title="Desktop"> - <p>Desktop is the root pane, it contains panels (fill the available space), - dialogs (centered), combolists, popupmenus, and tooltips. You can add only + <p>Desktop is the root pane, it contains panels (that together + fill the available space on desktop), dialogs (centered), combolists, + popupmenus, and tooltips. You can add only components and dialogs to desktop, the last will be on the top.</p> <parameters> <parameter extend="component"> Index: dialog.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/dialog.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- dialog.xml 10 May 2003 20:51:54 -0000 1.1 +++ dialog.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - dialog - - - --> <widget class="dialog" title="Dialog"> <p>Dialog is similar to panel, but it has border and title, Index: label.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/label.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- label.xml 10 May 2003 20:51:54 -0000 1.1 +++ label.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - label - - - --> <widget class="label" title="Label"> <p>The following label displays a short text string and an image. Index: list.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/list.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- list.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ list.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - list - - - --> <widget class="list" title="List"> <p>A list allows the user to select one or more objects from a list, Index: menubar.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/menubar.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- menubar.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ menubar.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - menubar - - - --> <widget class="menubar" title="MenuBar"> <p>The following panel contains a menubar on the top and a large text-area. Index: panel.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/panel.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- panel.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ panel.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - panel - - - --> <widget class="panel" title="Panel"> <p>Panel is a container with a layout manager similar to GridBagLayout. Index: passwordfield.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/passwordfield.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- passwordfield.xml 10 May 2003 20:51:54 -0000 1.1 +++ passwordfield.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - passwordfield - - - --> <widget class="passwordfield" title="PasswordField"> <p>PasswordField is similar to TextField component, Index: progressbar.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/progressbar.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- progressbar.xml 10 May 2003 20:51:54 -0000 1.1 +++ progressbar.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - progressbar - - - --> <widget class="progressbar" title="ProgressBar"> <p>ProressBar displays an integer value within a bounded interval, the Index: separator.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/separator.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- separator.xml 10 May 2003 20:51:54 -0000 1.1 +++ separator.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - separator - - - --> <widget class="separator" title="Separator"> <p>Separator is a horizontal or a vertical line. The following panel has Index: slider.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/slider.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- slider.xml 10 May 2003 20:51:54 -0000 1.1 +++ slider.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - slider - - - --> <widget class="slider" title="Slider"> <p>A slider lets the user graphically select a value by sliding a knob Index: spinbox.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/spinbox.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- spinbox.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ spinbox.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - spinbox - - - --> <widget class="spinbox" title="SpinBox"> <p>SpinBox is a textfield width 2 arrow buttons to change Index: splitpane.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/splitpane.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- splitpane.xml 10 May 2003 20:51:54 -0000 1.1 +++ splitpane.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - splitpane - - - --> <widget class="splitpane" title="SplitPane"> <p>SplitPane is used to divide two components. The following one has two Index: tabbedpane.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/tabbedpane.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- tabbedpane.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ tabbedpane.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - tabbedpane - - - --> <widget class="tabbedpane" title="TabbedPane"> <p>TabbedPane contains tabs and components. The first tab Index: table.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/table.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- table.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ table.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - table - - - --> <widget class="table" title="Table"> <p>A table presents data in a two-dimensional table format, allows to select Index: textarea.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/textarea.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- textarea.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ textarea.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,8 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - textarea - - - --> <widget class="textarea" title="TextArea"> - <p>TextArea is a multi-line area that displays plain text + <p>TextArea is a multi-line area that displays plain text, optionally + wrapped at word boundaries (whitespace), and internally handles scrolling.</p> - <xul><![CDATA[<textarea text="TextArea" />]]></xul> + <xul><![CDATA[<textarea columns="40" rows="2" wrap="true" text="TextArea" />]]></xul> <parameters> <parameter name="text" type="string" default="''"> The text contained in this textarea. Index: textfield.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/textfield.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- textfield.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ textfield.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,8 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - textfield - - - --> <widget class="textfield" title="TextField"> <p>TextField component allows the editing of a single line of text. This field has a simple text value.</p> - <xul><![CDATA[<textfield text="TextField" />]]></xul> + <xul><![CDATA[<textfield columns="10" text="Text Field" />]]></xul> <parameters> <parameter name="text" type="string" default="''"> The text contained in this field. Index: togglebutton.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/togglebutton.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- togglebutton.xml 10 May 2003 20:51:54 -0000 1.1 +++ togglebutton.xml 3 Jul 2003 10:08:33 -0000 1.2 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - togglebutton - - - --> <widget class="togglebutton" title="ToggleButton"> <p>An implementation of a two-state button, behaves as checkbox.</p> Index: tree.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/doc/widget/tree.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- tree.xml 23 Jun 2003 12:04:36 -0000 1.2 +++ tree.xml 3 Jul 2003 10:08:33 -0000 1.3 @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xml-stylesheet type="text/xsl" href="widget.xsl"?> <!-- - - - tree - - - --> <widget class="tree" title="Tree"> <p>Tree displays a set of hierarchical data, contains nodes |