initial
[bashpodder] / parse_enclosure.xsl
1 <stylesheet version="1.0">
2 <output method="text"/>
3 <template match="/">
4 <apply-templates select="/rss/channel/item/enclosure"/>
5 </template>
6 <template match="enclosure">
7 <value-of select="@url"/>
8 <text> </text>
9 </template>
10 </stylesheet>