<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="obj"/>
<xsl:output method="text" indent="no"/>
<xsl:template match="/">@prefix : <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix swh: <http://plugin.org.uk/swh-plugins/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
<xsl:for-each select="ladspa/plugin">
swh:<xsl:value-of select="@label"/> a :Plugin ;
:binary <<xsl:value-of select="$obj"/>> ;
rdfs:seeAlso <plugin.ttl> ;
dcterms:replaces <urn:ladspa:<xsl:value-of select="@id"/>> .
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
|