[Laszlo-checkins] r11111 - openlaszlo/trunk/docs/src/reference

dda@openlaszlo.org dda at openlaszlo.org
Fri Sep 19 12:26:09 PDT 2008


Author: dda
Date: 2008-09-19 12:26:08 -0700 (Fri, 19 Sep 2008)
New Revision: 11111

Modified:
   openlaszlo/trunk/docs/src/reference/wrappers.xml
Log:
Change 20080919-dda-7 by dda at lester.local on 2008-09-19 15:22:47 EDT
    in /Users/dda/laszlo/src/svn/openlaszlo/trunk-doc5
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Fix brackets <> around tags

New Features:

Bugs Fixed: LPP-7000

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: liorio (pending)

Documentation:

Release Notes:

Details:
    Certain items in wrappers.xml had lzxname set to xxx but yet did not show
    up as <xxx>.  This is because they did not have <class> entries.  Adding
    the <class> entries means that ugly workarounds, like adding &lt;/&gt;
    to their lzxname, can be removed.

Tests:



Modified: openlaszlo/trunk/docs/src/reference/wrappers.xml
===================================================================
--- openlaszlo/trunk/docs/src/reference/wrappers.xml	2008-09-19 18:56:11 UTC (rev 11110)
+++ openlaszlo/trunk/docs/src/reference/wrappers.xml	2008-09-19 19:26:08 UTC (rev 11111)
@@ -101,7 +101,7 @@
 <property id="tag-b" topic="LZX" subtopic="HTML Markup" access="public">
 <doc>
 <tag name="shortdesc"><text>Bold Text.</text></tag>
-<tag name="lzxname"><text>&lt;b&gt;</text></tag>
+<tag name="lzxname"><text>b</text></tag>
 <tag name="docfilename"><text>tag-b</text></tag>
 <text>
 <p>HTML bold character markup.  This tag can only occur inside XHTML
@@ -118,12 +118,13 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 <property id="tag-br" topic="LZX" subtopic="HTML Markup" access="public">
 <doc>
 <tag name="shortdesc"><text>Line break.</text></tag>
-<tag name="lzxname"><text>&lt;br&gt;</text></tag>
+<tag name="lzxname"><text>br</text></tag>
 <tag name="docfilename"><text>tag-br</text></tag>
 <text>
 <p>HTML line break.  This tag can only occur inside XHTML
@@ -142,6 +143,7 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 <property id="tag-font" topic="LZX" subtopic="HTML Markup" access="public">
@@ -187,7 +189,7 @@
 <property id="tag-i" topic="LZX" subtopic="HTML Markup" access="public">
 <doc>
 <tag name="shortdesc"><text>Italic text.</text></tag>
-<tag name="lzxname"><text>&lt;i&gt;</text></tag>
+<tag name="lzxname"><text>i</text></tag>
 <tag name="docfilename"><text>tag-i</text></tag>
 <p/>
 <text>
@@ -203,6 +205,7 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 <property id="tag-img" topic="LZX" subtopic="HTML Markup" access="public">
@@ -267,7 +270,7 @@
 <property id="tag-p" topic="LZX" subtopic="HTML Markup" access="public">
 <doc>
 <tag name="shortdesc"><text>Paragraph.</text></tag>
-<tag name="lzxname"><text>&lt;p&gt;</text></tag>
+<tag name="lzxname"><text>p</text></tag>
 <tag name="docfilename"><text>tag-p</text></tag>
 <text>
 
@@ -285,12 +288,13 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 <property id="tag-pre" topic="LZX" subtopic="HTML Markup" access="public">
 <doc>
 <tag name="shortdesc"><text>Preformatted text.</text></tag>
-<tag name="lzxname"><text>&lt;pre&gt;</text></tag>
+<tag name="lzxname"><text>pre</text></tag>
 <tag name="docfilename"><text>tag-pre</text></tag>
 <text>
 <p>An HTML preformatted text region.  Whitespace and line breaks within
@@ -314,12 +318,13 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 <property id="tag-u" topic="LZX" subtopic="HTML Markup" access="public">
 <doc>
 <tag name="shortdesc"><text>Underlined text.</text></tag>
-<tag name="lzxname"><text>&lt;u&gt;</text></tag>
+<tag name="lzxname"><text>u</text></tag>
 <tag name="docfilename"><text>tag-u</text></tag>
 <text>
 <p>HTML underlined character markup.  This tag can only occur inside
@@ -334,6 +339,7 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 
@@ -341,7 +347,7 @@
 <property id="tag-audio" topic="LZX" subtopic="Media" access="public">
 <doc>
 <tag name="shortdesc"><text>Imports an audio file.</text></tag>
-<tag name="lzxname"><text>&lt;audio&gt;</text></tag>
+<tag name="lzxname"><text>audio</text></tag>
 <tag name="docfilename"><text>tag-audio</text></tag>
 <text>
 <warning>This tag is obsolete.  Its functionality has been replaced by
@@ -380,6 +386,7 @@
 
 </text>
 </doc>
+<class/>
 </property>
 
 <property id="tag-face" topic="LZX" subtopic="Media" access="public">
@@ -614,5 +621,6 @@
           work but if you use them, a warning message is displayed in the debugging console. </p>
       </text>
     </doc>
+    <class/>
   </property>
 </js2doc>



More information about the Laszlo-checkins mailing list