Re: [xsl] InnerElement attribute needs to be set for parent

Subject: Re: [xsl] InnerElement attribute needs to be set for parent
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Sat, 10 May 2008 13:46:44 +0200
Arulraj wrote:

How to copy the attributes from the <property> name and value to <propertyList> with name as the attribute ?

Here is a sample stylesheet:


<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  version="1.0">

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="propertyList">
    <xsl:copy>
      <xsl:apply-templates select="property"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="property">
    <xsl:attribute name="{@name}">
      <xsl:value-of select="@value"/>
    </xsl:attribute>
  </xsl:template>

</xsl:stylesheet>

--

	Martin Honnen
	http://JavaScript.FAQTs.com/

Current Thread