]> granicus.if.org Git - docbook-dsssl/commitdiff
The spacing="compact" attribute on lists in HTML no longer outputs compact="compact"
authorBob Stayton <bobs@sagehill.net>
Sun, 9 Oct 2011 21:39:38 +0000 (21:39 +0000)
committerBob Stayton <bobs@sagehill.net>
Sun, 9 Oct 2011 21:39:38 +0000 (21:39 +0000)
(or just "compact" in the case of Saxon 6), since that attribute is
deprecated and improperly supported.  Instead, the output uses a
multiple class attribute such as class="orderedlist compact".
Use CSS to style such lists without margin above.

xsl/html/lists.xsl

index 81558a91657234eace39a4a1f6499e2df730735f..0afbee302e5233470d9f141718eb6e8c7490828b 100644 (file)
 <!-- ==================================================================== -->
 
 <xsl:template match="itemizedlist">
+  <!-- Handle spacing="compact" as multiple class attribute instead
+       of the deprecated HTML compact attribute -->
+  <xsl:variable name="default.class">
+    <xsl:value-of select="local-name()"/>
+    <xsl:if test="@spacing = 'compact'">
+      <xsl:text> compact</xsl:text>
+    </xsl:if>
+  </xsl:variable>
+  
   <div>
     <xsl:call-template name="common.html.attributes"/>
     <xsl:call-template name="anchor"/>
                 |processing-instruction()[not(preceding-sibling::listitem)]"/>
 
     <ul>
-      <xsl:call-template name="generate.class.attribute"/>
+      <xsl:call-template name="generate.class.attribute">
+        <xsl:with-param name="class" select="$default.class"/>
+      </xsl:call-template>
       <xsl:if test="$css.decoration != 0">
         <xsl:attribute name="type">
           <xsl:call-template name="list.itemsymbol"/>
         </xsl:attribute>
       </xsl:if>
 
-      <xsl:if test="@spacing='compact'">
-        <xsl:attribute name="compact">
-          <xsl:value-of select="@spacing"/>
-        </xsl:attribute>
-      </xsl:if>
       <xsl:apply-templates 
             select="listitem
                     |comment()[preceding-sibling::listitem]
 </xsl:template>
 
 <xsl:template match="orderedlist">
+  <!-- Handle spacing="compact" as multiple class attribute instead
+       of the deprecated HTML compact attribute -->
+  <xsl:variable name="default.class">
+    <xsl:value-of select="local-name()"/>
+    <xsl:if test="@spacing = 'compact'">
+      <xsl:text> compact</xsl:text>
+    </xsl:if>
+  </xsl:variable>
+  
   <xsl:variable name="start">
     <xsl:call-template name="orderedlist-starting-number"/>
   </xsl:variable>
     <xsl:choose>
       <xsl:when test="@inheritnum='inherit' and ancestor::listitem[parent::orderedlist]">
         <table border="0">
-          <xsl:call-template name="generate.class.attribute"/>
+          <xsl:call-template name="generate.class.attribute">
+            <xsl:with-param name="class" select="$default.class"/>
+          </xsl:call-template>
           <col align="{$direction.align.start}" valign="top"/>
           <tbody>
             <xsl:apply-templates 
       </xsl:when>
       <xsl:otherwise>
         <ol>
-          <xsl:call-template name="generate.class.attribute"/>
+          <xsl:call-template name="generate.class.attribute">
+            <xsl:with-param name="class" select="$default.class"/>
+          </xsl:call-template>
           <xsl:if test="$start != '1'">
             <xsl:attribute name="start">
               <xsl:value-of select="$start"/>
               <xsl:value-of select="$type"/>
             </xsl:attribute>
           </xsl:if>
-          <xsl:if test="@spacing='compact'">
-            <xsl:attribute name="compact">
-              <xsl:value-of select="@spacing"/>
-            </xsl:attribute>
-          </xsl:if>
           <xsl:apply-templates 
                 select="listitem
                         |comment()[preceding-sibling::listitem]
   <xsl:variable name="pi-presentation">
     <xsl:call-template name="pi.dbhtml_list-presentation"/>
   </xsl:variable>
+  <!-- Handle spacing="compact" as multiple class attribute instead
+       of the deprecated HTML compact attribute -->
+  <xsl:variable name="default.class">
+    <xsl:value-of select="local-name()"/>
+    <xsl:if test="@spacing = 'compact'">
+      <xsl:text> compact</xsl:text>
+    </xsl:if>
+  </xsl:variable>
+  
 
   <xsl:variable name="presentation">
     <xsl:choose>
                   |comment()[not(preceding-sibling::varlistentry)]
                   |processing-instruction()[not(preceding-sibling::varlistentry)]"/>
         <table border="0">
+          <xsl:call-template name="generate.class.attribute">
+            <xsl:with-param name="class" select="$default.class"/>
+          </xsl:call-template>
           <xsl:if test="$list-width != ''">
             <xsl:attribute name="width">
               <xsl:value-of select="$list-width"/>
                   |comment()[not(preceding-sibling::varlistentry)]
                   |processing-instruction()[not(preceding-sibling::varlistentry)]"/>
         <dl>
+          <xsl:call-template name="generate.class.attribute">
+            <xsl:with-param name="class" select="$default.class"/>
+          </xsl:call-template>
           <xsl:apply-templates 
               select="varlistentry
                       |comment()[preceding-sibling::varlistentry]
         </table>
       </xsl:when>
       <xsl:otherwise>
-        <dl compact="compact">
+        <dl>
+          <xsl:apply-templates select="." mode="class.attribute"/>
           <xsl:apply-templates select="callout
                                 |comment()[preceding-sibling::callout]
                                 |processing-instruction()[preceding-sibling::callout]"/>