2007-12-19 15:30:00 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2007-10-12 21:35:03 +00:00
|
|
|
<xsl:stylesheet version="1.0"
|
2008-02-14 22:23:25 +00:00
|
|
|
xmlns="http://xspf.org/ns/0/"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
xmlns:cc="http://web.resource.org/cc/"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
2007-10-12 21:35:03 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
<xsl:output
|
2008-02-14 22:23:25 +00:00
|
|
|
encoding="utf8"
|
|
|
|
indent="yes"
|
|
|
|
method="xml"
|
2008-03-09 20:03:44 +00:00
|
|
|
media-type="application/xspf+xml"
|
2008-02-14 22:23:25 +00:00
|
|
|
omit-xml-declaration="no"
|
2007-10-12 21:35:03 +00:00
|
|
|
/>
|
|
|
|
|
2007-10-13 00:19:34 +00:00
|
|
|
<xsl:template match="/">
|
2008-02-14 22:23:25 +00:00
|
|
|
<xsl:apply-templates />
|
2007-10-13 00:19:34 +00:00
|
|
|
</xsl:template>
|
|
|
|
|
2007-10-12 21:35:03 +00:00
|
|
|
<xsl:template match="results">
|
|
|
|
|
2008-02-14 22:23:25 +00:00
|
|
|
<playlist version="0">
|
|
|
|
<trackList>
|
|
|
|
<xsl:for-each select="result">
|
|
|
|
<track>
|
|
|
|
<location>
|
|
|
|
<xsl:value-of select="rdf:RDF/cc:Work/@rdf:about" />
|
|
|
|
</location>
|
|
|
|
<title>
|
|
|
|
<xsl:value-of select="rdf:RDF/cc:Work/dc:title" />
|
|
|
|
</title>
|
|
|
|
<creator>
|
|
|
|
<xsl:value-of select="rdf:RDF/cc:Work/dc:creator" />
|
|
|
|
</creator>
|
|
|
|
<annotation>
|
|
|
|
<xsl:value-of select="rdf:RDF/cc:Work/dc:description" />
|
|
|
|
</annotation>
|
|
|
|
<info>
|
|
|
|
<xsl:value-of select="rdf:RDF/cc:Work/dc:identifier" />
|
|
|
|
</info>
|
|
|
|
<image>
|
|
|
|
<xsl:value-of select="thumbnail" />
|
|
|
|
</image>
|
|
|
|
</track>
|
|
|
|
</xsl:for-each>
|
|
|
|
</trackList>
|
|
|
|
</playlist>
|
2007-10-13 00:19:34 +00:00
|
|
|
|
|
|
|
</xsl:template>
|
|
|
|
|
2007-12-19 15:30:00 +00:00
|
|
|
|
2007-10-29 21:26:39 +00:00
|
|
|
</xsl:stylesheet>
|