diff options
author | David Robillard <d@drobilla.net> | 2012-09-09 03:15:12 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-09 03:15:12 +0000 |
commit | d322a83d8f39dd1464ca5bd595eb1729818e7004 (patch) | |
tree | 8c592b0371d0d864ed8bb10b73b8f40af9ab525c /lv2/lv2plug.in/ns/ext | |
parent | 3f2868e1e5299f8f9258a9a82907b75a93a666bf (diff) | |
download | lv2-d322a83d8f39dd1464ca5bd595eb1729818e7004.tar.xz |
Split DOAP data from ontology.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/morph/lv2-morph.doap.ttl | 22 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/morph/morph.ttl | 7 |
2 files changed, 23 insertions, 6 deletions
diff --git a/lv2/lv2plug.in/ns/ext/morph/lv2-morph.doap.ttl b/lv2/lv2plug.in/ns/ext/morph/lv2-morph.doap.ttl new file mode 100644 index 0000000..076fd0e --- /dev/null +++ b/lv2/lv2plug.in/ns/ext/morph/lv2-morph.doap.ttl @@ -0,0 +1,22 @@ +@prefix dcs: <http://ontologi.es/doap-changeset#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +<http://lv2plug.in/ns/ext/morph> + a doap:Project ; + rdfs:seeAlso <../../meta/meta.ttl> ; + doap:name "LV2 Morph Extension" ; + doap:shortdesc "Ports that can dynamically change type." ; + doap:created "2012-05-22" ; + doap:developer <http://drobilla.net/drobilla#me> ; + doap:release [ + doap:revision "0.1" ; + doap:created "2012-09-22" ; + dcs:blame <http://drobilla.net/drobilla#me> ; + dcs:changeset [ + dcs:item [ + rdfs:label "Initial release." + ] + ] + ] . diff --git a/lv2/lv2plug.in/ns/ext/morph/morph.ttl b/lv2/lv2plug.in/ns/ext/morph/morph.ttl index b968eb5..5153283 100644 --- a/lv2/lv2plug.in/ns/ext/morph/morph.ttl +++ b/lv2/lv2plug.in/ns/ext/morph/morph.ttl @@ -8,14 +8,9 @@ @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . <http://lv2plug.in/ns/ext/morph> - a lv2:Specification , - lv2:Feature ; + a owl:Ontology ; rdfs:seeAlso <morph.h> , <../../meta/meta.ttl> ; - doap:name "LV2 Morph Port Extension" ; - doap:shortdesc "Ports that can dynamically change type." ; - doap:created "2012-05-22" ; - doap:developer <http://drobilla.net/drobilla#me> ; lv2:documentation """ <p>This extension defines two port types: morph:MorphPort, which has a host-configurable type, and morph:AutoMorphPort, which may change type based on |