RE: [xsl] Select first two elements

Subject: RE: [xsl] Select first two elements
From: Florent Georges <darkman_spam@xxxxxxxx>
Date: Sat, 14 Jan 2006 13:52:23 +0100 (CET)
mac.rost@xxxxxxxxx wrote:

> I have a friend that wants his last 2 posts from
> an atom xml feed to show.

    <xsl:stylesheet
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
        xmlns:a="http://purl.org/atom/ns#";
        version="1.0">

      <xsl:output method="text"/>

      <xsl:template match="/">
        <xsl:apply-templates
            select="a:feed/a:entry[position() &lt;= 2]"/>
      </xsl:template>

      <xsl:template match="a:entry">
        <xsl:value-of select="a:title"/>
        <xsl:text>&#10;</xsl:text>
      </xsl:template>

    </xsl:stylesheet>

--drkm




















	

	
		
___________________________________________________________________________ 
Nouveau : tiliphonez moins cher avec Yahoo! Messenger ! Dicouvez les tarifs exceptionnels pour appeler la France et l'international.
Tilichargez sur http://fr.messenger.yahoo.com

Current Thread