[Home] [By Thread] [By Date] [Recent Entries]
At 2004-02-10 11:20 -0600, Gruenewald, Terry wrote:
I have a problem that I'm having difficulty with (obviously). I have an xml file, and I need to transform it into another nearly identical XML file. What is the xsl for doing this? The design pattern is to write an identity stylesheet with just enough template rules to tweak the changes you need. Note that XSLT will preserve your document model structure, but not your document syntax. The end result of your transformation will be entirely acceptable to another XML processor, but it may or may not be acceptable to human eyes based on the expectations of the user. Use the following for your catch-all: <xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>and then just write as many changes as you wish. I hope this helps. .............................. Ken
G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995) Male Breast Cancer Awareness http://www.CraneSoftwrights.com/s/bc XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



