hi, I have a rss file, how to get the item nodes from the xml file: http://www.rfa.org/english/china/rss.xml
I can't get it right, please help. many thanks.
<xsl:template match="rdf">
<!-- Do not show channel image -->
<xsl:for-each select="item[position() < 10]">
<br>
<strong><a href="{link}" target="_main"><xsl:value-of select="title"/></a></strong><br></br>
<!-- only display markup for description if it's present -->
<xsl:value-of select="description"/>
</br>
<br></br>
</xsl:for-each>
</xsl:template>