Hello everybody,
I'm working on an wsl stylesheet in which i do a lot of tests:
<xsl:template match="flights/flight">
<xsl:if test="not(./segment/airline/@id='JR')
and not(./segment/airline/@id='Z9')
and not(./segment/airline/@id='QO')
and not(./segment/airline/@id='R7')
and not(./segment/airline/@id='X8')
and not(./segment/airline/@id='VE')
and not(./segment/airline/@id='OY')
and not(./segment/airline/@id='RK')
...
The problem is that i have a lot of them and i noticed that until 50 not ... and not ... it works fine, but above, from 51 it makes an error...
Has anybody got a solution for that ?
Thanks all ;-)
I'm working on an wsl stylesheet in which i do a lot of tests:
<xsl:template match="flights/flight">
<xsl:if test="not(./segment/airline/@id='JR')
and not(./segment/airline/@id='Z9')
and not(./segment/airline/@id='QO')
and not(./segment/airline/@id='R7')
and not(./segment/airline/@id='X8')
and not(./segment/airline/@id='VE')
and not(./segment/airline/@id='OY')
and not(./segment/airline/@id='RK')
...
The problem is that i have a lot of them and i noticed that until 50 not ... and not ... it works fine, but above, from 51 it makes an error...
Has anybody got a solution for that ?
Thanks all ;-)