[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] XML to XML Transformation


Subject: Re: [xsl] XML to XML Transformation
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Wed, 12 Dec 2001 23:01:59 +0100

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: [xsl] 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



Current Thread
Keywords
xml