|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Simple XML to XML transformation question
Hi,
I'm basically trying to modify the name of root node element... with the following XML file... <?xml-stylesheet type="text/xsl" href="renewal.xsl"?>
<Data>
<car>Chevy</car>
<car>Dodge</car>
<car>Ford</car>
</Data>How could I change the <Data> element to <Car> and the <Car> tags to <Model> My initial attempt at an XSL file was as follows... <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" version="1.0" encoding="iso-8859-1" indent="yes"/> <xsl:template match="Data"> <Car> <xsl:apply-templates select="Car"/> </Car> </xsl:template> <xsl:template match="cd"> <Model> </Model> </template> </xsl:stylesheet> Is seems to output a blank page?? Any ideas guys? Cheers, Nick
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








