[Laszlo-checkins] r9134 - openlaszlo/trunk/docs/src/xsl

dda@openlaszlo.org dda at openlaszlo.org
Wed May 14 05:33:50 PDT 2008


Author: dda
Date: 2008-05-14 05:33:46 -0700 (Wed, 14 May 2008)
New Revision: 9134

Modified:
   openlaszlo/trunk/docs/src/xsl/js2doc2dbk.xsl
Log:
Change 20080514-dda-T by dda at lester.local on 2008-05-14 08:29:44 EDT
    in /Users/clients/laszlo/src/svn/openlaszlo/trunk-doc3
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Use docbook bolding for parameter names

New Features:

Bugs Fixed: LPP-5946

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

Documentation:

Release Notes:

Details:
    This does not change the output, but removes one of the 'hacks' done in r9132,
    in preference to using the <emphasis> tag.

Tests:



Modified: openlaszlo/trunk/docs/src/xsl/js2doc2dbk.xsl
===================================================================
--- openlaszlo/trunk/docs/src/xsl/js2doc2dbk.xsl	2008-05-14 12:33:30 UTC (rev 9133)
+++ openlaszlo/trunk/docs/src/xsl/js2doc2dbk.xsl	2008-05-14 12:33:46 UTC (rev 9134)
@@ -647,10 +647,11 @@
                   <tbody>
                     <xsl:for-each select="function/parameter">
                       <row>
-                        <!-- The postprocess-html-b tag puts a <b> tag
-                             around the method name.
-                             See also 'handle postprocess tags' comment.  -->
-                        <entry><postprocess-html-b><xsl:value-of select="@name"/></postprocess-html-b></entry>
+                        <entry>
+                          <emphasis role="bold">
+                            <xsl:value-of select="@name"/>
+                          </emphasis>
+                        </entry>
                         <entry><xsl:value-of select="@type"/></entry>
                         <entry><xsl:value-of select="doc/text"/></entry>
                       </row>                      



More information about the Laszlo-checkins mailing list