使用表属性

时间:2014-03-24 11:49:24

标签: xml xslt xpath xsl-fo

这是我的XML示例:

<RecommendedAction>
   <table border="1" cellpadding="1" style="width:500px"><tbody><tr><td></td><td></td></tr><tr><td></td><td></td></tr><tr><td></td><td>f</td></tr></tbody></table>
   <table border="5" cellpadding="50" style="width: 300px;"><tbody><tr><td><br /></td><td><br /></td></tr><tr><td><br /></td><td><br /></td></tr><tr><td><br /></td><td><br /></td></tr></tbody></table>
</RecommendedAction>

我有两个问题:
1.如何在表格模板中使用width属性?
2.如何在我的td模板中使用cellpadding属性?

这是我的XSL示例:

<xsl:template match="table">
    <fo:table>

        <xsl:if test="@border"> 
            <xsl:attribute name="border-style">
                <xsl:value-of select="'solid'"/>
            </xsl:attribute>
            <xsl:attribute name="border-color">
                <xsl:value-of select="'black'"/>
            </xsl:attribute>
            <xsl:attribute name="border-width">
                <xsl:value-of select="@border"/>
            </xsl:attribute>
        </xsl:if>

        <xsl:apply-templates />
    </fo:table>
</xsl:template>

<xsl:template match="col">
    <fo:table-column column-number="{@number}" column-width="{@width*1.5}"/>
</xsl:template>

<xsl:template match="tbody">
    <fo:table-body start-indent="0pt" end-indent="0pt">
        <xsl:apply-templates />
    </fo:table-body>
</xsl:template>

<xsl:template match="tr">
    <fo:table-row>
        <xsl:apply-templates />
    </fo:table-row>
</xsl:template>

<xsl:template match="td">
    <fo:table-cell>
        <fo:block>
            <xsl:apply-templates />
        </fo:block>
    </fo:table-cell>
</xsl:template> 

1 个答案:

答案 0 :(得分:1)

如何在表格模板中使用width属性?

您需要一个模板来处理您的样式属性,该属性将提取其CSS属性。 这是我之前为xslt-1编写的内容,对于xslt-2,这可以写得更优雅:

<xsl:template name="process-style">
    <xsl:param name="style"/>
    <!-- get property name -->
    <xsl:variable name="name" select="normalize-space(substring-before($style, ':'))"/>

    <xsl:if test="$name">
        <xsl:variable name="value-and-rest" select="normalize-space(substring-after($style, ':'))"/>
        <xsl:variable name="value">
            <xsl:choose>
                <xsl:when test="contains($value-and-rest, ';')">
                    <xsl:value-of select="normalize-space(substring-before(
                        $value-and-rest, ';'))"/>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="$value-and-rest"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:variable>
        <!-- process css properties -->
        <xsl:choose>
            <xsl:when test="$name = 'width'">
                <xsl:attribute name="width">
                    <xsl:choose>
                        <xsl:when test="contains($value,'px')">
                            <!-- px to mm conversion -->
                            <xsl:value-of
                                select="number(normalize-space(substring-before($value,'px'))) * (2.54 div 72 * 10)"/>
                            <xsl:text>mm</xsl:text>
                        </xsl:when>
                        <!-- add additional conversions here if needed -->
                        <xsl:otherwise>
                            <xsl:value-of select="$value"/>
                        </xsl:otherwise>
                    </xsl:choose>
                </xsl:attribute>
            </xsl:when>
            <xsl:when test="$name = 'background'">
                <!-- add implementation for background processing -->
            </xsl:when>
            <!-- add addtional processing for other css properties here as needed
                <xsl:when test="$name = 'color'"></xsl:when>
            -->
            <xsl:otherwise> </xsl:otherwise>
        </xsl:choose>
    </xsl:if>
    <xsl:variable name="rest" select="normalize-space(substring-after($style, ';'))"/>
    <xsl:if test="$rest">
        <xsl:call-template name="process-style">
            <xsl:with-param name="style" select="$rest"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

将其添加到样式表中,并根据需要进行扩展,以支持可能出现在样式属性中的其他CSS属性。

比如这样称呼:

<xsl:template match="table">
<fo:table>
     <xsl:call-template name="process-style">
        <xsl:with-param name="style" select="@style"/>
    </xsl:call-template>
...

如何在td模板中使用cellpadding属性?

在xsl-fo中,你不能在表格上设置单元格填充,所以你必须为每个单元格获取它:

<xsl:template match="td">
<fo:table-cell>
    <fo:block>
        <!-- 
          add padding to the block, 
          maybe overwrite with padding that might be stored with the td 
        -->
        <xsl:attribute name="padding"><xsl:value-of select="ancestor::table/@cellpadding"/></xsl:attribute>
        <xsl:apply-templates />
    </fo:block>
</fo:table-cell>
</xsl:template>