xsl-list
[Top] [All Lists]

Re: xsl transform issue

2005-02-23 09:19:13

You haven't said what transform you are tying to do so saying it doesn't
work doesn't really tell us much.
Both branches of your xsl:choose do the same thing, so it isn't clear
why you need an xsl:choose at all.


Both instances of 

<xsl:value-of
select="./win-registry-data/data"/><

generate an empty string as the current node is a data element and your
data elements don't have win-registry-data children and data
grandchildren.

You probably want <xsl:value-of select="."/> to get teh current element.

similarly test="./win-registry-data[(_at_)data] as that tests that the
current dtat element has a win-registry-data element child thathas an
attribute called dtat, butnone of your data elements have
win-registry-data children and no elements have an attribute. I
can't guess what test you intend here.

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>