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]

xsl:copy producing ugly output with MSXML3SP2


Well here I am trying to do a little bit of post processing
on my nice xml file to put in a few missing attributes but
mostly copying the file along without changing it.

However I have the following general template

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

Which can take an input in the style of
      <param name="_xsl_keyfile" value="/_key.xml" />
and turn it into
	<param name="_xsl_keyfile" value="/_key.xml"></param>

Ugly isn't it. Anybody have any ideas as to what I can do?

Richard Mitchell
Software Development Manager
http://www.vbnonline.com/
 


 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]