I need to improve on an earlier implementation of an XML data source, so I'm seeking a bit of advice.
The data source looks like this (simplified to show only the troublesome bits):
</myfeed>
As you can see, each event item includes two <link> nodes, and this is causing me issues.
Is there a way in Matrix of distinguishing between the two?
When I pull in the feed, can I specify tag names like event-item:title, and presenter:title so that I can deal with the two separately? I've tried a few variations without success, there may be some syntax, I just can't find a reference to it anywhere.
I realise that it will handle nodes of the same name, separated by a Data delimiter, but this is really not that useful, as I'll have to process them again somehow to separate them. It would be much nicer if I could uniquely identify them in matrix instead of having to do it with XSLT or Javascript.
Am I making sense?