Don't shoot I'm just the messenger here, but I have some xml that looks like this
<XMLSnippet>
<data>
<stuff value="stuff" />
<stuff value="more stuff" />
<stuff value="even more stuff" />
<widget value="you expected stuff didn't you" />
<stuff value="great, we've got stuff again" />
</data>
</XMLSnippet>
And I would like to loop through all the data
child nodes and output the following
stuff
more stuff
even more stuff
you expected stuff didn't you
great, we've got stuff again
Should it matter I am limited to using XSLT 1.0
Thanks!