xsl-list
[Top] [All Lists]

Re: Simple XML to XML transformation question

2004-11-17 11:22:06

On Nov 17, 2004, at 1:06 PM, Nick Roberts wrote:

Is seems to output a blank page??

Any ideas guys?

I'm not exactly sure what you're after, but you had at least one obvious incorrect xpath statement ("Car" instead of "car").

Try this for a start?

<?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/>
 </car>
</xsl:template>

<xsl:template match="car">
 <model>
  <xsl:apply-templates/>
 </model>
</xsl:template>

</xsl:stylesheet>

Bruce


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