xsl-list
[Top] [All Lists]

Re: Acces nodes [help]

2005-10-31 02:11:50
Hi Ana,

You cannot have an element whose name is a number.
QName has to start with a letter or an underscore.


And  in a xml file i could find <find-list> word1</find-list>. The
number of the list(1,2,..) is save in a param of the xslt file.
In this example i had to obtain house or cat(it depends of the param
value). I try it with the follow sentence but it doesn't run:
document('../list.xml')//*[name()=current()/.]/*[name()=$number]/.
What's fail?

If you are going to get a lot of elements from the list.xml file, I
would recommend using a variable to hold the document:
<xsl:variable name="listfile" select="document('../list.xml')"/>

Regards,
Ragulf Pickaxe :-)

--~------------------------------------------------------------------
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>