[Laszlo-checkins] r7057 - in openlaszlo/trunk/docs/src/developers: . programs
lou@openlaszlo.org
lou at openlaszlo.org
Wed Oct 31 05:30:57 PDT 2007
Author: lou
Date: 2007-10-31 05:30:30 -0700 (Wed, 31 Oct 2007)
New Revision: 7057
Modified:
openlaszlo/trunk/docs/src/developers/programs/text-$6.lzx
openlaszlo/trunk/docs/src/developers/programs/text-$7.lzx
openlaszlo/trunk/docs/src/developers/text.dbk
Log:
Change 20071031-lou-l by lou at loumac.local on 2007-10-31 08:16:54 AST
in /Users/lou/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: examples text-$6.lzx and text-$7.lzx in text views chapter of the dguide need minor clarification
Bugs Fixed: LPP-5000
Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: John Sundman
Details:
change example text to clarify examples
change example titles to clarify examples
remove comment from text-$6.lzx so it doesn't show up in the html file
remove from text.dbk commented out code examples that the build ignored
Tests:
Modified: openlaszlo/trunk/docs/src/developers/programs/text-$6.lzx
===================================================================
--- openlaszlo/trunk/docs/src/developers/programs/text-$6.lzx 2007-10-31 12:29:30 UTC (rev 7056)
+++ openlaszlo/trunk/docs/src/developers/programs/text-$6.lzx 2007-10-31 12:30:30 UTC (rev 7057)
@@ -3,8 +3,7 @@
<simplelayout/>
<slider name="down" width="100" value="5000" minvalue="1000" maxvalue="100000"
keystep="1000"/>
-<!-- added resize attribute IORIO 21 sep 2007 -->
- <text resize="false" text="${'Slider Value is '+parent.down.value+' nicely constrained'}"/>
+ <text resize="false" text="${'Slider Value is '+parent.down.value+' unnicely truncated'}"/>
</canvas>
<!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
* Copyright 2007 Laszlo Systems, Inc. All Rights Reserved. *
Modified: openlaszlo/trunk/docs/src/developers/programs/text-$7.lzx
===================================================================
--- openlaszlo/trunk/docs/src/developers/programs/text-$7.lzx 2007-10-31 12:29:30 UTC (rev 7056)
+++ openlaszlo/trunk/docs/src/developers/programs/text-$7.lzx 2007-10-31 12:30:30 UTC (rev 7057)
@@ -1,10 +1,8 @@
-
-
<canvas height="50">
<simplelayout/>
<slider name="down" width="100" value="5000" minvalue="1000" maxvalue="100000"
keystep="1000"/>
- <text resize="true" text="${'Slider Value is '+parent.down.value+' nicely constrained'}"/>
+ <text resize="true" text="${'Slider Value is '+parent.down.value+' expands to contain text'}"/>
</canvas>
<!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
* Copyright 2007 Laszlo Systems, Inc. All Rights Reserved. *
Modified: openlaszlo/trunk/docs/src/developers/text.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/text.dbk 2007-10-31 12:29:30 UTC (rev 7056)
+++ openlaszlo/trunk/docs/src/developers/text.dbk 2007-10-31 12:30:30 UTC (rev 7057)
@@ -1,5 +1,6 @@
<chapter id="text">
<title>Text Views</title>
+ <!-- removed commented out code examples that the build ignored. IORIO 31 oct 2007 -->
<para>This section describes the
<indexterm>
<primary>text</primary>
@@ -225,21 +226,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>setting font, fonstyle and fontsize</title><programlisting role="lzx-embednew"><filename>text-$1.lzx</filename><parameter/><code>
- <canvas height="50">
- <simplelayout axis="y"/>
- <text fontstyle="bold">Default bold</text>
- <text fontstyle="italic">Default italic</text>
- <text fontstyle="bold italic">Default bold italic</text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="50">
- <simplelayout axis="y"/>
- <text fontstyle="bold">Default bold</text>
- <text fontstyle="italic">Default italic</text>
- <text fontstyle="bold italic">Default bold italic</text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$1.lzx></example?>
<para>Within the text content, HTML tags may also be
used:</para>
<example role="live-example">
@@ -250,21 +236,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>HTML tags within text</title><programlisting role="lzx-embednew"><filename>text-$2.lzx</filename><parameter/><code>
- <canvas height="50">
- <simplelayout axis="y"/>
- <text><b>Default bold</b></text>
- <text><i>Default italic</i></text>
- <text fontstyle="bold"><i>Default bold italic</i></text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="50">
- <simplelayout axis="y"/>
- <text><b>Default bold</b></text>
- <text><i>Default italic</i></text>
- <text fontstyle="bold"><i>Default bold italic</i></text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$2.lzx></example?>
<para>Text can contain preformatted regions, where linebreaks
and whitespace are preserved:</para>
<example role="live-example">
@@ -275,31 +246,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Preformatted text</title><programlisting role="lzx-embednew"><filename>text-$3.lzx</filename><parameter/><code>
- <canvas height="80">
- <text id="ttext" multiline="true" height="300">
- This text field contains some preformatted text
- <pre>
- This is a line of text.
-
- here was a blank line before this line.
- And another line of text.
- </pre>
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="80">
- <text id="ttext" multiline="true" height="300">
- This text field contains some preformatted text
- <pre>
- This is a line of text.
-
- here was a blank line before this line.
- And another line of text.
- </pre>
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$3.lzx></example?>
<para>Within a text element, the HTML
<emphasis role="i">font</emphasis>tag supports the
<indexterm>
@@ -325,35 +271,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Setting text colors using RGB strings</title><programlisting role="lzx-embednew"><filename>text-$4.lzx</filename><parameter/><code>
- <canvas height="60">
- <simplelayout axis="y"/>
-
- <font name="Times Roman" src="bitstream-vera-1.10/vera.ttf"/>
-
- <text height="30">
- <font face="Times Roman" size="24">Times Roman</font>
- </text>
- <text bgcolor="#ffcccc">
- <font color="#FF0000">C</font><font color="#FFFF00">O</font><font color="#00FFCC">L</font
- ><font color="#CC00CC">O</font><font color="#AABB00">R</font><font color="#DDA00A">S</font>
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="60">
- <simplelayout axis="y"/>
-
- <font name="Times Roman" src="bitstream-vera-1.10/vera.ttf"/>
-
- <text height="30">
- <font face="Times Roman" size="24">Times Roman</font>
- </text>
- <text bgcolor="#ffcccc">
- <font color="#FF0000">C</font><font color="#FFFF00">O</font><font color="#00FFCC">L</font
- ><font color="#CC00CC">O</font><font color="#AABB00">R</font><font color="#DDA00A">S</font>
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$4.lzx></example?>
<para>If you wish to include HTML escape characters in the
text value, you can use entity codes such as
<literal>&amp;</literal>or
@@ -369,15 +286,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Escaping HTML characters</title><programlisting role="lzx-embednew"><filename>text-$5.lzx</filename><parameter/><code>
- <canvas height="20">
- <text bgcolor="#ffcccc"><![CDATA[<b>this text shouldn't be bold</b>]]></text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="20">
- <text bgcolor="#ffcccc"><![CDATA[<b>this text shouldn't be bold</b>]]></text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$5.lzx></example?>
<para />
<section>
<title>Text Scrolling</title>
@@ -482,7 +390,7 @@
<!--unknown tag: inputtext-->
is used for input fields where the user can type or edit text
interactively.</para>
- <para />
+ <!-- fix LPP-5000: minor clarification of examples -->
<section>
<title>Resizable text fields</title>
<!-- changed to reflect the fact that resize is now true by default -->
@@ -503,50 +411,18 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>non-resizing text does not concatenate</title><programlisting role="lzx-embednew"><filename>text-$6.lzx</filename><parameter/><code>
- <canvas height="50" >
- <simplelayout/>
- <slider name="down" width="100" value="5000" minvalue="1000" maxvalue="100000"
- keystep="1000"/>
- <text text="${'Slider Value is '+parent.down.value+' nicely constrained'}"/>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="50" >
- <simplelayout/>
- <slider name="down" width="100" value="5000" minvalue="1000" maxvalue="100000"
- keystep="1000"/>
- <text text="${'Slider Value is '+parent.down.value+' nicely constrained'}"/>
- </canvas>
- </programlisting><?lzx-edit programs/text-$6.lzx></example?>
+
<para>If you set
<literal>resize=true</literal> (the default), the field will expand to
fit the text.</para>
<example role="live-example">
- <title>Using the 'resize' attribute</title>
+ <title>Resizing text expands</title>
<programlisting language="lzx">
<textobject>
<textdata fileref="programs/text-$7.lzx" />
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Setting the 'resize' attribute to 'true'</title><programlisting role="lzx-embednew"><filename>text-$7.lzx</filename><parameter/><code>
-
- <canvas height="50">
- <simplelayout/>
- <slider name="down" width="100" value="5000" minvalue="1000" maxvalue="100000"
- keystep="1000"/>
- <text resize="true" text="${'Slider Value is '+parent.down.value+' nicely constrained'}"/>
- </canvas>
- </code></programlisting>
-<programlisting>
-
- <canvas height="50">
- <simplelayout/>
- <slider name="down" width="100" value="5000" minvalue="1000" maxvalue="100000"
- keystep="1000"/>
- <text <emphasis role="em">resize="true"</emphasis> text="${'Slider Value is '+parent.down.value+' nicely constrained'}"/>
- </canvas>
- </programlisting><?lzx-edit programs/text-$7.lzx></example?>
<para />
</section>
</section>
@@ -587,19 +463,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Text views</title><programlisting role="lzx-embednew"><filename>text-$8.lzx</filename><parameter/><code>
- <canvas height="125">
- <simplelayout/>
- <text>Hello World!</text>
- <text text="Hello World!"/>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="125">
- <simplelayout/>
- <text>Hello World!</text>
- <text text="Hello World!"/>
- </canvas>
- </programlisting><?lzx-edit programs/text-$8.lzx></example?>
<!-- remove empty para tag LI LPP-4642 9/4/2007-->
<!-- <para /> -->
<!-- duplicate section id; the other looks correct LI LPP-4642 9/4/2007-->
@@ -647,43 +510,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Multiline text</title><programlisting role="lzx-embednew"><filename>text-$9.lzx</filename><parameter/><code>
- <canvas height="125">
- <simplelayout spacing="5"/>
- <!-- Single line text, the default -->
- <text bgcolor="#ffcccc">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras
- nibh. Quisque justo. Donec porta, wisi quis vehicula interdum,
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
-
- <!-- Multiline text (without an explicit width, the width would be
- sized to fit the entire string on a single line) -->
- <text bgcolor="#ccccff" multiline="true" width="300" >
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras
- nibh. Quisque justo. Donec porta, wisi quis vehicula interdum,
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="125">
- <simplelayout spacing="5"/>
- <!-- Single line text, the default -->
- <text bgcolor="#ffcccc">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras
- nibh. Quisque justo. Donec porta, wisi quis vehicula interdum,
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
-
- <!-- Multiline text (without an explicit width, the width would be
- sized to fit the entire string on a single line) -->
- <text bgcolor="#ccccff" multiline="true" width="300" >
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras
- nibh. Quisque justo. Donec porta, wisi quis vehicula interdum,
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$9.lzx></example?>
<para>With multiline text, the automatic wrapping is always
enabled. You can disable wrapping by setting the
<indexterm>
@@ -704,25 +530,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Multiline text with explicit linebreaks</title><programlisting role="lzx-embednew"><filename>text-$10.lzx</filename><parameter/><code>
- <canvas height="125">
- <simplelayout spacing="5"/>
- <text bgcolor="#ccccff" multiline="true" width="400" >
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<br/> Cras
- nibh. Quisque justo. <br/>Donec porta, wisi quis vehicula interdum,
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="125">
- <simplelayout spacing="5"/>
- <text bgcolor="#ccccff" multiline="true" width="400" >
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<br/> Cras
- nibh. Quisque justo. <br/>Donec porta, wisi quis vehicula interdum,
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$10.lzx></example?>
<para>Below is a non-wrapping text field with explicit line
breaks.</para>
<example role="live-example">
@@ -733,25 +540,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Non-wrapping text with breaks</title><programlisting role="lzx-embednew"><filename>text-$11.lzx</filename><parameter/><code>
- <canvas height="125">
- <simplelayout spacing="5"/>
- <text bgcolor="#ccccff" multiline="false" width="500" height="100" >
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras<br/>
- nibh. Quisque justo. Donec porta, wisi quis vehicula interdum,<br/>
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="125">
- <simplelayout spacing="5"/>
- <text bgcolor="#ccccff" multiline="false" width="500" height="100" >
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras<br/>
- nibh. Quisque justo. Donec porta, wisi quis vehicula interdum,<br/>
- augue dui pharetra lectus, non adipiscing purus nibh vitae purus.
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$11.lzx></example?>
<para />
</section>
<section id="text.width-height">
@@ -784,43 +572,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Resizing text</title><programlisting role="lzx-embednew"><filename>text-$12.lzx</filename><parameter/><code>
- <canvas height="125">
- <debug x="400"/>
- <simplelayout/>
- <!-- Single line text, the default -->
- <text id="t1" bgcolor="#ffcccc" resize="false">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
- </text>
- <text id="t2" bgcolor="#ccffcc" resize="true">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
- </text>
- <button text="setText(...)">
- <handler name="onclick">
- t1.setText('resize='+t1.resize);
- t2.setText('resize='+t2.resize);
- </handler>
- </button>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="125">
- <debug x="400"/>
- <simplelayout/>
- <!-- Single line text, the default -->
- <text id="t1" bgcolor="#ffcccc" resize="false">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
- </text>
- <text id="t2" bgcolor="#ccffcc" resize="true">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
- </text>
- <button text="setText(...)">
- <handler name="onclick">
- t1.setText('resize='+t1.resize);
- t2.setText('resize='+t2.resize);
- </handler>
- </button>
- </canvas>
- </programlisting><?lzx-edit programs/text-$12.lzx></example?>
<para />
</section>
<section id="text.selection">
@@ -844,29 +595,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Selectable text</title><programlisting role="lzx-embednew"><filename>text-$13.lzx</filename><parameter/><code>
- <canvas height="125">
- <simplelayout spacing="4"/>
- <!-- Single line text, the default -->
- <text id="t1" bgcolor="#ffcccc" selectable="true" resize="false">
- I am selectable text. Select me!
- </text>
- <text id="t2" bgcolor="#ccffcc" resize="true">
- I am not selectable text. Try to select me!
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="125">
- <simplelayout spacing="4"/>
- <!-- Single line text, the default -->
- <text id="t1" bgcolor="#ffcccc" selectable="true" resize="false">
- I am selectable text. Select me!
- </text>
- <text id="t2" bgcolor="#ccffcc" resize="true">
- I am not selectable text. Try to select me!
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$13.lzx></example?>
<para />
</section>
<section>
@@ -1157,21 +885,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Basic use of <img> tag</title><programlisting role="lzx-embednew"><filename>text-$15.lzx</filename><parameter/><code>
- <canvas height="320" >
- <text multiline="true" width="300" height="300">
- Hello dear friends on the Red Planet! How is the Garden today?
- <img src="./images/horse-3.jpg"/>
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="320" >
- <text multiline="true" width="300" height="300">
- Hello dear friends on the Red Planet! How is the Garden today?
- <img src="./images/horse-3.jpg"/>
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$15.lzx></example?>
<para>Notice that you cannot have an image in a text tag
without also having text. Watch what happens when we comment
out the text:</para>
@@ -1183,21 +896,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>You must include text with images</title><programlisting role="lzx-embednew"><filename>text-$16.lzx</filename><parameter/><code>
- <canvas height="220" >
- <text multiline="true" width="200" height="200">
- <!--Hello dear friends on the Red Planet! How is the Garden today?-->
- <img src="./images/horse-3.jpg"/>
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="220" >
- <text multiline="true" width="200" height="200">
- <emphasis role="em"><!--Hello dear friends on the Red Planet! How is the Garden today?--></emphasis>
- <img src="./images/horse-3.jpg"/>
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$16.lzx></example?>
<para>By giving values to the
<indexterm>
<primary>height</primary>
@@ -1220,23 +918,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Scaling an image included in text</title><programlisting role="lzx-embednew"><filename>text-$17.lzx</filename><parameter/><code>
- <canvas height="100">
- <text multiline="true" height="80">
- Some text and
- <img src="./images/horse-3.jpg" width="20" height="20" align="left"/>
- some more text
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="100">
- <text multiline="true" height="80">
- Some text and
- <img src="./images/horse-3.jpg" width="20" height="20" align="left"/>
- some more text
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$17.lzx></example?>
<para>You can position the included image by setting the
<indexterm>
<primary>align</primary>
@@ -1250,23 +931,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Scaled and left-aligned image</title><programlisting role="lzx-embednew"><filename>text-$18.lzx</filename><parameter/><code>
- <canvas height="350">
- <text multiline="true" height="300">
- Some text and
- <img src="./images/horse-3.jpg" width="20" height="20" align="left"/>
- some more text
- </text>
- </canvas>
- </code></programlisting><programlisting>
- <canvas height="350">
- <text multiline="true" height="300">
- Some text and
- <img src="./images/horse-3.jpg" width="20" height="20" align="left"/>
- some more text
- </text>
- </canvas>
- </programlisting><?lzx-edit programs/text-$18.lzx></example?>
<para>You can include multiple
<indexterm>
<primary>img</primary>
@@ -1288,59 +952,6 @@
</textobject>
</programlisting>
</example>
- <?example role="live-example"><title>Multiple images in text</title><programlisting role="lzx-embednew"><filename>text-$19.lzx</filename><parameter/><code>
- <canvas>
- <text multiline="true" width="100%">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce ligula. Suspendisse pellentesque diam vel dolor. Nullam suscipit laoreet eros. Aliquam nulla massa, rutrum id, luctus vitae, consequat eu, ipsum. Donec hendrerit rhoncus erat.
- <img src="./images/horse-3.jpg"/>
- Proin diam leo, vulputate id, ornare cursus, convallis eu, nisi. Vestibulum porttitor luctus dui. Nulla nisi arcu, pharetra at, molestie nec, porta a, leo. Sed congue ante molestie risus. Mauris blandit nulla a tortor. Quisque sed nulla. Nunc imperdiet, elit at faucibus lacinia, nibh augue tristique magna, a aliquam justo sapien eget enim.
- <img src="./images/horse-3.jpg"/>
- Nullam mollis orci id tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur id mauris. Maecenas arcu. Donec nonummy mi a metus.
- <img src="./images/horse-3.jpg" width="20" height="20" vspace="50"/>
- Morbi dignissim scelerisque libero. Donec id sapien id velit tristique interdum. Quisque faucibus sapien. Quisque porttitor. Mauris venenatis nunc id nunc. Nulla iaculis metus at ante. Suspendisse accumsan, mauris dapibus pretium laoreet, nibh purus imperdiet lectus, a euismod elit enim a mi. Morbi commodo lacus quis nisl.
- <img src="./images/horse-3.jpg" align="left"/>
- Duis leo tortor, gravida eget, euismod non, ullamcorper quis, metus. Phasellus ornare facilisis metus. Aliquam at est.
- <img src="./images/horse-3.jpg" align="right"/>
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce ligula. Suspendisse pellentesque diam vel dolor. Nullam suscipit laoreet eros. Aliquam nulla massa, rutrum id, luctus vitae, consequat eu, ipsum. Donec hendrerit rhoncus erat. Phasellus eget massa sit amet lorem condimentum porta. Ut nec lorem. Pellentesque quam. Sed porttitor, elit vitae faucibus porta, enim nibh cursus augue, vitae iaculis enim lorem at eros.
- <img src="./images/horse-3.jpg" width="20" height="20" hspace="50"/>
- Proin diam leo, vulputate id, ornare cursus, convallis eu, nisi. Vestibulum porttitor luctus dui. Nulla nisi arcu, pharetra at, molestie nec, porta a, leo. Sed congue ante molestie risus.
- <img src="http:horse-3.jpg"/>
- Nullam mollis orci id tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur id mauris. Maecenas arcu. Donec nonummy mi a metus. Nulla facilisi. Aenean metus. Nullam vitae sem id risus accumsan luctus. Nam sit amet velit. Mauris ut est. Proin id sem ullamcorper pede luctus tristique. Pellentesque dapibus, neque et pellentesque tincidunt, sapien diam imperdiet ipsum, nec porttitor turpis lectus nec libero. Praesent ut elit.
- <img src="./images/horse-3.jpg" width="20" height="20" align="left"/>
- Morbi dignissim scelerisque libero. Donec id sapien id velit tristique interdum. Quisque faucibus sapien. Quisque porttitor. Mauris venenatis nunc id nunc. Nulla iaculis metus at ante. Etiam adipiscing urna quis tellus. Nam aliquam vehicula arcu.
- <img src="./images/horse-3.jpg" width="20" height="20" vspace="50"/>
- Nunc malesuada. Curabitur tortor metus, malesuada et, suscipit ut, convallis ac, magna. Nam venenatis viverra ipsum. Phasellus dignissim sagittis urna. Phasellus cursus. Cras pede arcu, tempus a, consectetuer vel, faucibus fermentum, diam. Donec lacus.
- <img src="./images/horse-3.jpg"/>Proin diam leo, vulputate id, ornare cursus, convallis eu, nisi. Vestibulum porttitor luctus dui. Nulla nisi arcu, pharetra at, molestie nec, porta a, leo. Sed congue ante molestie risus. Mauris blandit nulla a tortor. Quisque sed nulla. Nunc imperdiet, elit at faucibus lacinia, nibh augue tristique magna, a aliquam justo sapien eget enim. In suscipit congue dolor.
- </text>
- <scrollbar/>
- </canvas>
- </code></programlisting><programlisting>
- <canvas>
- <text multiline="true" width="100%">
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce ligula. Suspendisse pellentesque diam vel dolor. Nullam suscipit laoreet eros. Aliquam nulla massa, rutrum id, luctus vitae, consequat eu, ipsum. Donec hendrerit rhoncus erat.
- <img src="./images/horse-3.jpg"/>
- Proin diam leo, vulputate id, ornare cursus, convallis eu, nisi. Vestibulum porttitor luctus dui. Nulla nisi arcu, pharetra at, molestie nec, porta a, leo. Sed congue ante molestie risus. Mauris blandit nulla a tortor. Quisque sed nulla. Nunc imperdiet, elit at faucibus lacinia, nibh augue tristique magna, a aliquam justo sapien eget enim.
- <img src="./images/horse-3.jpg"/>
- Nullam mollis orci id tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur id mauris. Maecenas arcu. Donec nonummy mi a metus.
- <img src="./images/horse-3.jpg" width="20" height="20" vspace="50"/>
- Morbi dignissim scelerisque libero. Donec id sapien id velit tristique interdum. Quisque faucibus sapien. Quisque porttitor. Mauris venenatis nunc id nunc. Nulla iaculis metus at ante. Suspendisse accumsan, mauris dapibus pretium laoreet, nibh purus imperdiet lectus, a euismod elit enim a mi. Morbi commodo lacus quis nisl.
- <img src="./images/horse-3.jpg" align="left"/>
- Duis leo tortor, gravida eget, euismod non, ullamcorper quis, metus. Phasellus ornare facilisis metus. Aliquam at est.
- <img src="./images/horse-3.jpg" align="right"/>
- Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce ligula. Suspendisse pellentesque diam vel dolor. Nullam suscipit laoreet eros. Aliquam nulla massa, rutrum id, luctus vitae, consequat eu, ipsum. Donec hendrerit rhoncus erat. Phasellus eget massa sit amet lorem condimentum porta. Ut nec lorem. Pellentesque quam. Sed porttitor, elit vitae faucibus porta, enim nibh cursus augue, vitae iaculis enim lorem at eros.
- <img src="./images/horse-3.jpg" width="20" height="20" hspace="50"/>
- Proin diam leo, vulputate id, ornare cursus, convallis eu, nisi. Vestibulum porttitor luctus dui. Nulla nisi arcu, pharetra at, molestie nec, porta a, leo. Sed congue ante molestie risus.
- <img src="http:horse-3.jpg"/>
- Nullam mollis orci id tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur id mauris. Maecenas arcu. Donec nonummy mi a metus. Nulla facilisi. Aenean metus. Nullam vitae sem id risus accumsan luctus. Nam sit amet velit. Mauris ut est. Proin id sem ullamcorper pede luctus tristique. Pellentesque dapibus, neque et pellentesque tincidunt, sapien diam imperdiet ipsum, nec porttitor turpis lectus nec libero. Praesent ut elit.
- <img src="./images/horse-3.jpg" width="20" height="20" align="left"/>
- Morbi dignissim scelerisque libero. Donec id sapien id velit tristique interdum. Quisque faucibus sapien. Quisque porttitor. Mauris venenatis nunc id nunc. Nulla iaculis metus at ante. Etiam adipiscing urna quis tellus. Nam aliquam vehicula arcu.
- <img src="./images/horse-3.jpg" width="20" height="20" vspace="50"/>
- Nunc malesuada. Curabitur tortor metus, malesuada et, suscipit ut, convallis ac, magna. Nam venenatis viverra ipsum. Phasellus dignissim sagittis urna. Phasellus cursus. Cras pede arcu, tempus a, consectetuer vel, faucibus fermentum, diam. Donec lacus.
- <img src="./images/horse-3.jpg"/>Proin diam leo, vulputate id, ornare cursus, convallis eu, nisi. Vestibulum porttitor luctus dui. Nulla nisi arcu, pharetra at, molestie nec, porta a, leo. Sed congue ante molestie risus. Mauris blandit nulla a tortor. Quisque sed nulla. Nunc imperdiet, elit at faucibus lacinia, nibh augue tristique magna, a aliquam justo sapien eget enim. In suscipit congue dolor.
- </text>
- <scrollbar/>
- </canvas>
- </programlisting><?lzx-edit programs/text-$19.lzx></example?>
<para />
</section>
</section>
More information about the Laszlo-checkins
mailing list