Re: [xsl] DOM node

Subject: Re: [xsl] DOM node
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 10 Mar 2004 15:20:50 GMT
  - Tried ......./requirement[inscope/@key=('Application', 'ITAsset')]"/>
  and it said:  Expected token ')' found ','  ( i am using verion 1.0 though)

that's xslt 2 syntax and you are using an xslt 1 system.


 -Tried ...../requirement[inscope/@key=(.='Application' or  .='ITAsset')]"/>

That's legal syntax for a test you don't want, it tests the key
attribute with the string value of the expression (.='Application' or  .='ITAsset'
which is either "true" or "false".

So if the key attribute is Application or ITAsset then the string value
of (.='Application' or  .='ITAsset') is "true" nut the string value of
@key" is "Application" (or "ITAsset") and in eiether case it is not
equal to "true" so the test is false.

If the key attribute has value "false" then the string value of 
(.='Application' or  .='ITAsset') is "false" and so the test 
@key=(.='Application' or  .='ITAsset') will be true

For any other value (.='Application' or  .='ITAsset') is "false"
and the key attribute is not "false" so
@key=(.='Application' or  .='ITAsset') will be false.


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
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


Current Thread