<!-- ==================================================================== -->
<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]"/>