2007-12-19 15:30:00 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<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-12-19 15:30:00 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
<xsl:output
|
2008-02-14 22:23:25 +00:00
|
|
|
encoding="utf8"
|
|
|
|
indent="yes"
|
|
|
|
method="xml"
|
|
|
|
media-type="application/xml"
|
|
|
|
omit-xml-declaration="no"
|
2007-12-19 15:30:00 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<xsl:template match="@*|node()">
|
2008-02-14 22:23:25 +00:00
|
|
|
<xsl:copy>
|
|
|
|
<xsl:apply-templates select="@*|node()"/>
|
|
|
|
</xsl:copy>
|
2007-12-19 15:30:00 +00:00
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|