<?xml version="1.0"?> <stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform"> <output method="text"/> <template match="/" > ALBUM="<value-of select="/rss/channel/title"/>" TITLE="<value-of select="/rss/channel/item/title"/>" FILE="<value-of select="/rss/channel/item/enclosure/@url"/>" </template> </stylesheet>
But when I save it as parse.xsl and run it like this:
xsltproc parse.xsl http://www.npr.org/rss/podcast.php?id=510221
It only prints the first RSS entry:
ALBUM="NPR: Science Friday Podcast" TITLE="Sean Carroll On The Mysteries Of Time" FILE="http://podcastdownload.npr.org/anon.npr-podcasts/podcast/510221/123138876/npr_123138876.mp3"
What else am I missing?

Help


