This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: xsl:copy


Hi

>   I need to generate a copy of an xml file using xsl ...I tried using
> xsl:copy..but this gives me only the value and not the node 
> names ....Is
> there a workaround to accomplish this.

With xsl:copy, this would to it

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

but it's easier with xsl:copy-of, i.e.

<xsl:template match="/">
  <xsl:copy-of select=".">
</xsl:template>

Santtu

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]