|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: XML to XML Transformation
What have you done until now? HTML-transformation? The difference shouldn't
be so big. The only thing that changes, is <xsl:output method="html"> ->
method="xml" (default) and maybe it bit more logic.
An example for your stylesheet:
<xsl:stylesheet version="1.0"
xmlns:xsl=http://www.w3.org/1999/XSL/Transform>
<xsl:template match="*">
<xsl:if test="@flag='yes'">
<xsl:copy>
<xsl:apply-templates select="@*|*|text()"/>
</xsl:copy>
</xsl:if>
</xsl:template>
<xsl:template match="@*|text()">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>
Regards,
Joerg
----- Original Message -----
From: "Magick, Brian" <Brian.Magick@xxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Wednesday, December 12, 2001 9:18 PM
Subject: XML to XML Transformation
> I'm looking to write a style sheet that will perform an XML to XML
> transformation. My requirements are not too complex and I don't think
> this should be very difficult. I simply want to take an XML document
> where an element has an attribute that acts as a yes/no flag. I would
> like to filter only the "yes" flags and render a new XML page with only
> the elements that contain the "yes" flag in the attribute value.
>
> As I have never done an XML to XML transformation before I hope someone
> can point me towards some good web resources.
>
>
> Thanks!
>
> Brian Magick
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








