xsl:apply-imports到变量?

时间:2013-09-05 18:32:52

标签: xml xslt xslt-2.0 apply-templates

A.xsl导入B.xsl,其中包含A.xsl中使用的函数。 A.xsl包含身份模板。 B.xsl的函数需要将模板规则应用于变量;但是,A.xsl中的身份模板会覆盖它们。

我的想法是xsl:apply-imports到B中的变量,但与xsl:apply-templates不同,select=无法将其指向变量。原始功能不能替换为模板规则。有没有办法在没有xsl:include - B.xsl?

的情况下做到这一点

A.xsl:

<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:my="http://me"
    version="2.0">

    <xsl:import href="B.xsl"/>

    <xsl:template match="X">
        <xsl:sequence select="my:do-stuff(.)"/>
    </xsl:template>

    <xsl:template match="@*|node()" mode="#all" priority="-1">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" mode="#current"/>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

B.xsl:

<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:my="http://me"
    version="2.0">

    <xsl:template match="X" mode="cleanup">
        <clean><xsl:apply-templates/></clean>
    </xsl:template>

    <xsl:function name="my:do-other-stuff">
        <xsl:param name="x" as="element(X)"/>
        ...
    </xsl:function>

    <xsl:function name="my:do-stuff">
        <xsl:param name="x" as="element(X)"/>            
        <xsl:variable name="x-updated" select="my:do-other-stuff($x)"/>
        <xsl:apply-templates select="$x-updated" mode="cleanup"/>
    </xsl:function>

</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

一种选择是通过更改mode="#all"以列出除 cleanup之外的所有模式来阻止身份模板覆盖:

<xsl:template match="@*|node()" mode="#default not-cleanup1 not-cleanup2" priority="-1">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()" mode="#current"/>
    </xsl:copy>
</xsl:template>