aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2/manifest.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-18 06:20:40 +0000
committerDavid Robillard <d@drobilla.net>2011-03-18 06:20:40 +0000
commit673c2fa8e710c94b1ce250ec7b01d183d2bf91a0 (patch)
treef45f74ff00483f0a1e9e3c6d24514b2ab62b7cca /core.lv2/manifest.ttl
parent13856a8d90cf0a76c11e897eda37e5f51b5bc172 (diff)
downloadlv2-673c2fa8e710c94b1ce250ec7b01d183d2bf91a0.tar.xz
Add OWL types.
Fix lv2:minimum, lv2:maximum, and lv2:minimum (definition did not match the reality of their usage) (Spec bug found with Pellet). Move project description metadata to manifest. Remove invalid (non-DL) OWL restrictions, and use of Turtle collection syntax (there is at least one broken implementation in the wild that fails to parse this). LV2 is now almost, but not quite, a valid OWL DL Ontology.
Diffstat (limited to 'core.lv2/manifest.ttl')
-rw-r--r--core.lv2/manifest.ttl32
1 files changed, 28 insertions, 4 deletions
diff --git a/core.lv2/manifest.ttl b/core.lv2/manifest.ttl
index 454a0c5..c4f134d 100644
--- a/core.lv2/manifest.ttl
+++ b/core.lv2/manifest.ttl
@@ -1,8 +1,32 @@
-@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://lv2plug.in/ns/lv2core>
- a lv2:Specification ;
+ a doap:Project , lv2:Specification ;
lv2:minorVersion 3 ;
lv2:microVersion 2 ;
- rdfs:seeAlso <lv2.ttl> .
+ rdfs:seeAlso <lv2.ttl> ;
+ doap:license <http://usefulinc.com/doap/licenses/mit> ;
+ doap:name "LV2" ;
+ doap:homepage <http://lv2plug.in> ;
+ doap:created "2004-04-21" ;
+ doap:shortdesc "An audio plugin interface specification" ;
+ doap:programming-language "C" ;
+ doap:release [
+ doap:revision "3.2" ;
+ doap:created "2011-03-17"
+ ] ;
+ doap:maintainer [
+ a foaf:Person ;
+ foaf:name "Steve Harris" ;
+ foaf:homepage <http://plugin.org.uk/> ;
+ rdfs:seeAlso <http://plugin.org.uk/swh.xrdf>
+ ] , [
+ a foaf:Person ;
+ foaf:name "David Robillard" ;
+ foaf:homepage <http://drobilla.net/> ;
+ rdfs:seeAlso <http://drobilla.net/drobilla.rdf>
+ ] .
+