xsl-list
[Top] [All Lists]

RE: Expected token 'eof' encountered '['

2003-07-09 09:21:12
Thank you for the responses.
I'm using XSL and I swear that this same code 
        <xsl:when test=".[genre='Romance']">
though not correct was running/rendering on IE many(all) times (a year or two 
ago). Weird.
Today I transformed the file after a long time and it rendered fine once before 
throwing the error when I refreshed the browser. 

I've corrected the code.
Thanks again!
Ashish

-----Original Message-----
From: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk]
Sent: Wednesday, July 09, 2003 11:02 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Expected token 'eof' encountered '['




<xsl:when test=".[genre='Romance']">
                ^^

as the error message indicated you can not  ever follow . by [ in
Xpath 1.

You want


<xsl:when test="genre='Romance'">

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list