Sha256: 3f52b8e68b716947bd3e08938fff6fc59b67552d5ce2dfc75e32027df9b4142e

Contents?: true

Size: 456 Bytes

Versions: 4

Compression:

Stored size: 456 Bytes

Contents

<!--
	xspf2m3u.xsl: transform XSPF to M3U
	author: Lucas Gonze <lucas@webjay.org>
-->
<xsl:stylesheet version = '1.0'
				xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
				xmlns:xspf="http://xspf.org/ns/0/">

  <xsl:output method="text"/>
  <xsl:template match="/">
	
    <xsl:for-each select="//xspf:trackList/xspf:track/xspf:location">
	  <xsl:value-of select="."/>
	  <xsl:text>
</xsl:text>
    </xsl:for-each> 

  </xsl:template>

</xsl:stylesheet>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
xspf-0.3 lib/xspf2m3u.xsl
xspf-0.4 lib/xspf2m3u.xsl
xspf-0.4.1 lib/xspf2m3u.xsl
xspf-0.4.1.1 lib/xspf2m3u.xsl