<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>


<xsl:template match="/"> 
	 <WinampXML>
	    <playlist num_entries="20000" label="SHOUTcast top 20000">
	       <xsl:apply-templates select = "//station" > 
	          
	       </xsl:apply-templates>
	    </playlist>
	 </WinampXML>
</xsl:template>
<xsl:template match = "station" >
	<entry>
	<xsl:attribute name="Playstring">http://yp.shoutcast.com/sbin/tunein-tvstation.pls?id=<xsl:value-of select="@id" />&amp;filename=playlist.pls</xsl:attribute>
		<Name><xsl:value-of select = "@name" /></Name> 
		<StationID>N/A</StationID>
		<Genre><xsl:value-of select = "@genre" /></Genre>
		<Nowplaying><xsl:value-of select = "@ct" /></Nowplaying>
		<Listeners><xsl:value-of select = "@lc" /></Listeners>
		<Bitrate><xsl:value-of select = "@br" /></Bitrate>
		<Rating><xsl:value-of select = "@rt" /></Rating>
	</entry>
</xsl:template>
</xsl:stylesheet>
