[Laszlo-checkins] r9235 - in openlaszlo/trunk/docs: includes src/reference

dda@openlaszlo.org dda at openlaszlo.org
Tue May 20 08:14:47 PDT 2008


Author: dda
Date: 2008-05-20 08:14:42 -0700 (Tue, 20 May 2008)
New Revision: 9235

Modified:
   openlaszlo/trunk/docs/includes/docbook.css
   openlaszlo/trunk/docs/src/reference/wrappers.xml
Log:
Change 20080520-dda-G by dda at lester.local on 2008-05-20 11:09:53 EDT
    in /Users/dda/laszlo/src/svn/openlaszlo/trunk-doc2
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Doc for tag <a>: Put list of values for targets into Attribute description

New Features:

Bugs Fixed: LPP-5537

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

Documentation:

Release Notes:

Details:
    Moved the list of target values (e.g. _blank, _parent, ...) back into
    attribute details now that attributes allow formatting.
    Fixed CSS details for <dl> within attributes so they look the same as 3.0 doc.

Tests:
    Rebuilt docs, visual inspection



Modified: openlaszlo/trunk/docs/includes/docbook.css
===================================================================
--- openlaszlo/trunk/docs/includes/docbook.css	2008-05-20 15:14:29 UTC (rev 9234)
+++ openlaszlo/trunk/docs/includes/docbook.css	2008-05-20 15:14:42 UTC (rev 9235)
@@ -200,6 +200,17 @@
     border-bottom: 1px solid #e6e6e6;
 }
 
+.attrdesc dt .term {
+    font-size: 11px;
+}
+
+.attrdesc dd {
+    line-height: 14px;
+    margin-left: 10px;
+    padding-bottom: 5px;
+    padding-left: 45px;
+}
+
 /* Segmented Lists */
 
 .segmentedlist > .title {

Modified: openlaszlo/trunk/docs/src/reference/wrappers.xml
===================================================================
--- openlaszlo/trunk/docs/src/reference/wrappers.xml	2008-05-20 15:14:29 UTC (rev 9234)
+++ openlaszlo/trunk/docs/src/reference/wrappers.xml	2008-05-20 15:14:42 UTC (rev 9235)
@@ -34,21 +34,6 @@
   &lt;/text&gt;
 &lt;/canvas&gt;
 </example>
-<p/>The user agent will interpret the <tagname>a</tagname> tag depending on the following value of the target attribute:
-<ul>
-  <li>_blank<p/>
-    The user agent should load the designated document in a new, unnamed window.
-  </li>
-  <li>_parent<p/>
-    The user agent should load the document into the full, original window (thus canceling all other frames). This value is equivalent to _self if the current frame has no parent.
-  </li>
-  <li>_self<p/>
-    The user agent should load the document in the same frame as the element that refers to this target.
-  </li>
-  <li>_top<p/>
-    The user agent should load the document into the immediate FRAMESET parent of the current frame. This value is equivalent to _self if the current frame has no parent.
-  </li>
-</ul>
 </text>
 </doc>
 
@@ -66,7 +51,42 @@
         <doc>
           <tag name="lzxtype"><text>_blank | _parent | _self | _top</text></tag>
           <text>
-            The value of this attribute determines where the link target will be displayed. The interpretation is the same as in HTML, where the "current frame" is the frame containing the LZX application. The value must be a name beginning with an alphabetic character, or one of: "_blank", "_parent", "_self", "_top"
+            The value of this attribute determines where the link target will be displayed. The interpretation is the same as in HTML, where the "current frame" is the frame containing the LZX application. The value must be a name beginning with an alphabetic character, or one of the following:
+            <dl>
+              <dt> 
+                _blank
+              </dt>
+              <dd>
+                The user agent should load the designated
+                document in a new, unnamed window.
+              </dd>
+              <dt> 
+                _parent
+              </dt>
+              <dd>
+                The user agent should load the document into the full,
+                original window (thus canceling all other
+                frames). This value is equivalent
+                to <code>_self</code> if the current frame has no
+                parent.
+              </dd>
+              <dt> 
+                _self
+              </dt>
+              <dd>
+                The user agent should load the document in
+                the same frame as the element that refers to this target.
+              </dd>
+              <dt> 
+                _top
+              </dt>
+              <dd>
+                The user agent should load the document into the
+                immediate FRAMESET parent of the current frame. This
+                value is equivalent to <code>_self</code> if the
+                current frame has no parent.
+              </dd>
+            </dl>
           </text>
         </doc>
       </property>
@@ -85,6 +105,7 @@
 text containers such as <tagname>text</tagname> and
 <tagname>button</tagname>.</p>
 
+
 <example>
 &lt;canvas height="30"&gt;
   &lt;text&gt;Some &lt;b&gt;bold&lt;/b&gt; text&lt;/text&gt;



More information about the Laszlo-checkins mailing list