summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-14 16:21:35 +0000
committerDavid Robillard <d@drobilla.net>2007-09-14 16:21:35 +0000
commit3297e8ba6767ca5dea8d399e8b17bd610fc8bb26 (patch)
tree1d97ed8440e67d12dceb0f240bbe36d3d823cbdb
parent79392630a6c5eee13297878e62619f05395b6177 (diff)
downloadlilv-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
-rw-r--r--data/lv2core.lv2/lv2.ttl17
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