On Wed, Nov 21, 2012 at 4:17 PM, Andrew Welch
<andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com> wrote:
On 21 November 2012 16:11, Ihe Onwuka <ihe(_dot_)onwuka(_at_)gmail(_dot_)com>
wrote:
<xsl:template match="yearlyFigures[figure/last() =
preceding::line/period/last()]/figure">
<figure year="{preceding::line/period[current()/@year]}">
<xsl:apply-templates/>
</figure>
</xsl:template
It's probably that the current()/@year has an EBV of true as its a non
empty string.
Instead you want [position() = current()/@year] or maybe
[number(current()/@year)]
Hah .... I tried xs:integer(@year) which didn't work but that was
because I didn't have current(). Never tried it again after fixing
that.
number(..) works fine. thanks.
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--