|
Subject: Re: [xsl] Problem with Saxon 7.9.1 xsl:variable and selecting additional elements from variable value From: Olaf Meske <omeske@xxxxxxxxxxx> Date: Wed, 12 Oct 2005 12:48:26 +0200 |
In the real environment I do something like:
In this situation I can't see why you want to make a copy of the original node. Why not just do:
<xsl:variable name="thissection" select="../myns:section"/>
<xsl:variable name="thissection" >
<xsl:choose>
<xsl:when test="../myns:section">
<xsl:sequence select="../myns:section"/>
</xsl:when>
<xsl:when test="../../myns:section">
<xsl:sequence select="../../myns:section"/>
</xsl:when>
</xsl:choose>
</xsl:variable>Olaf Meske www.softcare.de
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Problem with Saxon 7.9.1 , David Carlisle | Thread | Re: [xsl] Problem with Saxon 7.9.1 , David Carlisle |
| Re: [xsl] Problem with Saxon 7.9.1 , David Carlisle | Date | Re: [xsl] Problem with Saxon 7.9.1 , David Carlisle |
| Month |