xsl-list
[Top] [All Lists]

RE: [xsl] How to Get Nested Nodes

2011-12-22 08:43:15
Small comment...

    <xsl:template match="*">
         <xsl:apply-templates select="*"/>
    </xsl:template>

This template is unnecessary as written, the built-in templates cover this 
exact behavior. The only benefit I'd see to it would be that you'd have a 
placeholder in case you want to add more functionality to the handling of each 
element later, but in that case I would just wait and add a new template at 
that point.

~ Scott

-----Original Message-----
From: Wolfgang Laun [mailto:wolfgang(_dot_)laun(_at_)gmail(_dot_)com] 
Sent: Thursday, December 22, 2011 3:23 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] How to Get Nested Nodes

See below

On 22 December 2011 09:29, Jeffry Proctor <jpgmt(_at_)sbcglobal(_dot_)net> 
wrote:

List of Contacts from: feed/entry/content/Contacts

Ultimately I would like to use a few XSLT's to extract different 
datasets, my C# component, will just have a few functions, be somewhat 
xml, xslt agnostic, getting the function's corresponding XSLT from an 
xml (think ini file) to transfrom and return the datasets from the 
resulting xml; I'm choosing this over a static looping/switch/case 
node= xpath walking, if anything changes I'd have to re-code, I'd 
rather just update the offending xslt(s) and push that out to the client, no 
install or dll issues, but I digress...


...?




I'm trying to get a list of contacts from the following xml source


<xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
    xmlns:jp="http://sites.google.com/site/jeffryproctor/";>
    <xsl:template match="/">
        <ContactList xmlns="http://www.w3.org/2005/Atom"; >
            <contacts>
                <xsl:apply-templates select="/*"/>
            </contacts>
        </ContactList>
    </xsl:template>

    <xsl:template match="*">
         <xsl:apply-templates select="*"/>
    </xsl:template>

    <xsl:template match="jp:Contact">
            <Contact>
                <id>
                    <xsl:value-of select="@id"/>
                </id>
                <name>
                    <xsl:value-of select="jp:name"/>
                </name>
                <emailAddress>
                    <xsl:value-of select="jp:emailAddress"/>
                </emailAddress>
                <status>
                    <xsl:value-of select="jp:status"/>
                </status>
            </Contact>
    </xsl:template>
</xsl:stylesheet>

-W

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>