diff options
author | David Robillard <d@drobilla.net> | 2007-09-14 16:21:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-09-14 16:21:35 +0000 |
commit | 3297e8ba6767ca5dea8d399e8b17bd610fc8bb26 (patch) | |
tree | 1d97ed8440e67d12dceb0f240bbe36d3d823cbdb /data/lv2core.lv2/lv2.ttl | |
parent | 79392630a6c5eee13297878e62619f05395b6177 (diff) | |
download | lilv-3297e8ba6767ca5dea8d399e8b17bd610fc8bb26.tar.gz lilv-3297e8ba6767ca5dea8d399e8b17bd610fc8bb26.tar.bz2 lilv-3297e8ba6767ca5dea8d399e8b17bd610fc8bb26.zip |
Updated lv2.ttl
git-svn-id: http://svn.drobilla.net/lad/slv2@706 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'data/lv2core.lv2/lv2.ttl')
-rw-r--r-- | data/lv2core.lv2/lv2.ttl | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/data/lv2core.lv2/lv2.ttl b/data/lv2core.lv2/lv2.ttl index c842489..33184c6 100644 --- a/data/lv2core.lv2/lv2.ttl +++ b/data/lv2core.lv2/lv2.ttl @@ -1,5 +1,5 @@ # RDF Schema for LV2 plugins -# *** PROVISIONAL Revision 2007-08-03 *** +# *** PROVISIONAL Revision 1.0beta5 (2007-09-14) *** # # This document describes the classes and properties that are defined by the # core LV2 specification. See <http://lv2plug.in> for more information. @@ -49,8 +49,8 @@ See http://lv2plug.in/docs for more details. doap:shortdesc "An audio processing plugin specification" ; doap:programming-language "C" ; doap:release [ - doap:revision "1.0beta4" ; - doap:created "2007-08-03" + doap:revision "1.0beta5" ; + doap:created "2007-09-14" ] ; doap:maintainer [ a foaf:Person ; @@ -151,6 +151,16 @@ conforming to the 32bit IEEE-754 floating point specification. """ . +################################### +# Mandatory Plugin RDF:Properties # +################################### + +:port a rdf:Property ; + rdfs:domain :Plugin ; + rdfs:range :Port ; + rdfs:label "port" ; + rdfs:comment "Relates a Plugin to the Ports it contains" . + ################################## # Optional Plugin RDF:Properties # @@ -290,6 +300,7 @@ hosts SHOULD always check this before attempting to instantiate a plugin #################### :Property a rdfs:Class ; + rdfs:subClassOf rdf:Property ; rdfs:label "Property" ; rdfs:comment """ An LV2 Property. A host MUST NOT ignore the presence of a Property |