如何在从xslt 2.0降级后在xslt1.0中编写函数

时间:2013-05-30 12:09:10

标签: java xslt-1.0 xalan

我有xslt2.0,我将它降级到1.0并使用xalan,但我得到以下异常。

可恢复错误:第9行:不支持的XSL元素“功能”。

xslt的部分如下。

    <xsl:function name="nav:adjustDate">
            <xsl:param name="dateStr" />
            <xsl:param name="age" />
            <xsl:variable name="minutes">
                    <xsl:choose>
                            <xsl:when test="$age = 1">
                                    <xsl:value-of select="0" />
                            </xsl:when>
                            <xsl:when test="$age = 2">
                                    <xsl:value-of select="-10" />
                            </xsl:when>
                            <xsl:when test="$age = 3">
                                    <xsl:value-of select="-20" />
                            </xsl:when>
                            <xsl:when test="$age = 4">
                                    <xsl:value-of select="-30" />
                            </xsl:when>
                            <xsl:when test="$age = 5">
                                    <xsl:value-of select="-40" />
                            </xsl:when>
                            <xsl:when test="$age = 6">
                                    <xsl:value-of select="-50" />
                            </xsl:when>
                            <xsl:otherwise>
                                    <xsl:value-of select="-60" />
                            </xsl:otherwise>
                    </xsl:choose>
            </xsl:variable>
            <xsl:variable name="dateFormatterStr">
                    <xsl:text>yyyy-MM-dd'T'HH:mm:ss.SSSZ</xsl:text>
            </xsl:variable>
            <!--  output date format should match the input date format of the job file -->
            <xsl:variable name="outDateFormatterStr">
                    <xsl:text>yyyy-MM-dd'T'HH:mm:ssZ</xsl:text>
            </xsl:variable>
    <xsl:variable name="bo" select="bool:new('FALSE')" />
            <xsl:variable name="dateFormatter" select="dateFormat:new($dateFormatterStr)" />
            <xsl:variable name="outDateFormatter" select="dateFormat:new($outDateFormatterStr)" />
    <xsl:value-of select="dateFormat:setLenient($dateFormatter,$bo)" />
            <!-- Have to remove the colon in the timezone offset(eg. +05:00) otherwise date formatter wont work correctly -->
            <xsl:variable name="testDate"
                    select="dateFormat:parse($dateFormatter,concat(substring($dateStr,1,string-length($dateStr)-3),'00'))" />
            <xsl:variable name="cal" select="gregorianCal:new()" />
            <xsl:value-of select="gregorianCal:setTime($cal,$testDate)" />
            <!-- xslt version 2 does not accept contants 12 represents the value for java.util.Calendar.MINUTE
                 Follow section of code will subtract the number of minutes-->
            <xsl:value-of select="gregorianCal:add($cal,12,$minutes)" />
            <xsl:variable name="outputDate" select="gregorianCal:getTime($cal)" />
            <xsl:sequence select="dateFormat:format($outDateFormatter,$outputDate)" />
    </xsl:function>

还想知道xslt1.0中 xsl:sequence 的替代

有人可以指导我吗?如何进行 ? 我对xslt来说很新。

1 个答案:

答案 0 :(得分:1)

如果您对XSLT不熟悉,那么将样式表从XSLT 2.0反向移植到XSLT 1.0可能是非常痛苦的经历。祝你好运。

在XSLT 1.0中,通常可以使用命名模板,在XSLT 2.0中可以使用一个函数。您需要将外部xsl:function指令更改为xsl:template,然后您需要通过调用命名模板而不是通过调用函数来更改所有调用者以设置变量。最后,您需要将函数体转换为XSLT 1.0。通过调用其他用户声明的函数初始化的大量变量来判断,这将是一个非常缓慢的过程。

如果您的目标(或指定此任务的人的目标)是为样本表进行长时间的密集逐行研究提供机会,这可能是一个好方法。否则,如果我是你,我建议重新考虑降级到1.0的决定。