[Home] [By Thread] [By Date] [Recent Entries]
Rob Newman wrote:
Hi Mukul, You don't need the third XML document, you can simply run Saxon against stations.xml and the following stylesheet: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:output method="xml" indent="yes"/> <xsl:template match="station_list">
<Placemarks>
<xsl:apply-templates select="stations/station"/>
</Placemarks>
</xsl:template><xsl:template match="station"> <Placemark> <name> <xsl:value-of select="@name"/> </name> <xsl:copy-of select="document('dataloggers.xml')/dataloggerlist/datalogger[@name = current()/@name]/*"/> </Placemark> </xsl:template> </xsl:stylesheet> -- Martin Honnen http://JavaScript.FAQTs.com/
|

Cart



