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: 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@compaq.com>
To: <xsl-list@lists.mulberrytech.com>
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


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