xsl:call-template在XSL中不起作用

时间:2011-03-11 21:57:51

标签: xslt

我正在尝试从我的代码中调用以下模板。但我一直得到javax.xml.transform.TransformerException:ElemTemplateElement错误:incrementValue。对于另一个模板,我仍然得到javax.xml.transform.TransformerException:ElemTemplateElement错误:templateName.Since样式表太长我粘贴相关的代码样式表。谁能让我知道我做错了什么?

<xsl:stylesheet version = '2.0'
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:xs="http://www.w3.org/2001/XMLSchema"
     xmlns:xdt="http://www.w3.org/2005/02/xpath-datatypes"
     xmlns:mngi="www.medianewsgroup.com"
     exclude-result-prefixes="xs xdt mngi dirReader"
     xmlns:date="http://exslt.org/dates-and-times"
     xmlns:utildate="xalan://java.util.Date"
     xmlns:dirReader="xalan://com.mngi.eidos.util.DirectoryReader"
     extension-element-prefixes="date utildate dirReader">
    <xsl:strip-space elements="*"/>
    <xsl:output method="xml"
                indent="yes"
                encoding="utf-8"
                doctype-system="/SysConfig/Classify/Dtd/MNG/classify-story.dtd"/>
    <xsl:template match="/">
        <xsl:processing-instruction name="EM-dtdExt"
         >/SysConfig/Rules/MNG/MNG.dtx</xsl:processing-instruction>
        <xsl:processing-instruction name="EM-templateName"
         >/SysConfig/BaseConfiguration/MNG/Templates/MNG_story.xml</xsl:processing-instruction>
        <xsl:processing-instruction name="xml-stylesheet"
         >type="text/css" href="/SysConfig/BaseConfiguration/MNG/Css/MNG-story-nonechannel.css"</xsl:processing-instruction>
        <!-- Added By Sachin -->
        <xsl:processing-instruction name="EM-dtdExt"
         >/SysConfig/Rules/MNG/MNG.dtx</xsl:processing-instruction>
        <xsl:processing-instruction name="EM-templateName"
         >/SysConfig/BaseConfiguration/MNG/Templates/MNG_story.xml</xsl:processing-instruction>
        <xsl:processing-instruction name="xml-stylesheet"
         >type="text/css" href="/SysConfig/BaseConfiguration/MNG/Css/MNG-story-nonechannel.css"</xsl:processing-instruction>
        <xsl:variable name="UPPERCASE" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ '" />
        <xsl:variable name="lowercase" select="'abcdefghijklmnopqrstuvwxyz'" />
        <xsl:variable name="HubName" select="translate(/Article/Hub/HubName, ' ', '')" />
        <xsl:variable name="lowerhubname" select="translate($HubName, $UPPERCASE, $lowercase)" />
        <xsl:variable name="SiteRoot" select="'C:/TwinCitiesArticles'" />
        <xsl:variable name="DatePath" select="translate(substring-before(/Article/PublishingDates/WebPublish_DTTM, 'T'), '-', '/')"/>
        <xsl:variable name="PhotoDir" select="'photos/'" />
        <xsl:variable name="PhotoPath" select="concat($SiteRoot, $DatePath, '/', $lowerhubname, $PhotoDir)" />
        <TodaysDate>
            <xsl:value-of select="utildate:new()"/>
        </TodaysDate>
        <imageDir>
            <xsl:value-of select="$PhotoPath"/>
        </imageDir>
        <xsl:variable name="totalPhotos" select="dirReader:totalPhotos($PhotoPath)"/>
        <xsl:variable name="photoList" select="dirReader:readDirectory($PhotoPath)"/>
        <xsl:variable name="pName" select="dirReader:photoName($totalPhotos,$PhotoPath)"/>
        <xsl:variable name="firstPhotoName" select="dirReader:firstPhoto($totalPhotos,$PhotoPath)"/>
        <xsl:variable name="currentIdx" select="dirReader:currentIndex($firstPhotoName,$PhotoPath)"/>
        <totalPhotos>
            <xsl:value-of select="$totalPhotos" />
        </totalPhotos>
        <xsl:template name="incrementValue">
            <xsl:param name="currentIdx"/>
            <xsl:if test="$currentIdx &lt; $totalPhotos">
                <xsl:value-of select="$currentIdx"/>
                <photoName>
                    <xsl:variable name="photoFromIndex"
                                  select="dirReader:photoNameWithIndex($currentIdx,$PhotoPath)"/>
                    <xsl:value-of select="concat($PhotoPath,'',$photoFromIndex)"/>
                </photoName>
                <xsl:call-template name="incrementValue">
                    <xsl:with-param name="currentIdx" select="$currentIdx + 1"/>
                </xsl:call-template>
            </xsl:if>
        </xsl:template>
        <xsl:if test="$totalPhotos &gt; 0">
            <photoName>
                <!--xsl:value-of select="$currentIdx"/-->
                <xsl:variable name="photoFromIndex" select="dirReader:photoNameWithIndex($currentIdx,$PhotoPath)"/>
                <xsl:value-of select="concat($PhotoPath,'',$photoFromIndex)"/>
            </photoName>

                <xsl:call-template name="incrementValue">
                    <xsl:with-param name="currentIdx" select="$currentIdx"/>
                </xsl:call-template>

        </xsl:if>

1 个答案:

答案 0 :(得分:2)

您的xsl:if,xsl:value-of和xsl:变量都需要存在于xsl:template,xsl:variable或xsl:param中,我不确定它们是否存在。

xsl:template必须只是xsl:stylesheet的子代。

您需要从第一个<xsl:template match="/">

中删除模板定义

定义incrementValue模板分隔并将另一个模板的内容放在主<xsl:template match="/">

所以你有这样的事情:

<xsl:stylesheet version = '2.0'
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 xmlns:xdt="http://www.w3.org/2005/02/xpath-datatypes"
 xmlns:mngi="www.medianewsgroup.com"
 exclude-result-prefixes="xs xdt mngi dirReader"
 xmlns:date="http://exslt.org/dates-and-times"
 xmlns:utildate="xalan://java.util.Date"
 xmlns:dirReader="xalan://com.mngi.eidos.util.DirectoryReader"
 extension-element-prefixes="date utildate dirReader">
<xsl:strip-space elements="*"/>
<xsl:output method="xml"
            indent="yes"
            encoding="utf-8"
            doctype-system="/SysConfig/Classify/Dtd/MNG/classify-story.dtd"/>
    ...

<xsl:variable name="totalPhotos" select="dirReader:totalPhotos($PhotoPath)"/>

    ...

    <xsl:template match="/">

        ...

        <xsl:if test="$totalPhotos &gt; 0">
            <photoName>
            <!--xsl:value-of select="$currentIdx"/-->
                <xsl:variable name="photoFromIndex" select="dirReader:photoNameWithIndex($currentIdx,$PhotoPath)"/>
                <xsl:value-of select="concat($PhotoPath,'',$photoFromIndex)"/>
            </photoName>
            <xsl:call-template name="incrementValue">
                <xsl:with-param name="currentIdx" select="$currentIdx"/>
            </xsl:call-template>
        </xsl:if>    
    </xsl:template>
    <xsl:template name="incrementValue">
        <xsl:param name="currentIdx"/>
        <xsl:if test="$currentIdx &lt; $totalPhotos">
            <xsl:value-of select="$currentIdx"/>
            <photoName>
                <xsl:variable name="photoFromIndex" select="dirReader:photoNameWithIndex($currentIdx,$PhotoPath)"/>
                <xsl:value-of select="concat($PhotoPath,'',$photoFromIndex)"/>
            </photoName>
        </xsl:if>
    </xsl:template>
</xsl:stylesheet>
编辑:两个模板中使用的变量必须全局声明,就像我上面使用<xsl:variable name="totalPhotos" select="dirReader:totalPhotos($PhotoPath)"/>所做的那样,因此它们可用于两个模板,因为它们只是作用于它们所在的模板。或者您可以将它们作为参数传递给<xsl:with-param name="currentIdx" select="$currentIdx"/>。如果只有incrementValue模板中存在的变量,则将主模板移出该模板。

警告:这是未经测试的,因为我没有完全理解由于缺少输入而导致的问题所以我只是整理了语法。

相关问题