This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: xpath problem


Hi Kit,

don't know about Xalan parameters, sorry. In the first case what's happening
is that the * in 
	parent[child=*] 
actually means ./*  - ie any child node, so of course it works. 
But if you rewrite  
	parent[child/grandchild=*] 
as  
	parent[child/grandchild=./*] then you can see pretty quick why it's
not working. 

Regards,
Tom Weissmann

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]