From 7eb82046bc311a49ec2348ef70d03c609d29dbee Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Dec 2006 16:51:30 +0000 Subject: Update to doap/foaf maintainer data. Changed supportedHostFeature to optionalHostFeature. git-svn-id: http://svn.drobilla.net/lad/slv2@210 a436a847-0d15-0410-975c-d299462d15a1 --- data/lv2.ttl | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'data/lv2.ttl') diff --git a/data/lv2.ttl b/data/lv2.ttl index 8862483..a152045 100644 --- a/data/lv2.ttl +++ b/data/lv2.ttl @@ -31,16 +31,27 @@ @prefix doap: . @prefix foaf: . -<> doap:license . - -<> doap:release [ doap:Version - [ doap:revision "0.9" ; doap:created "2006-07-24" ] ] . - -<> doap:maintainer [ foaf:Person - [ foaf:name "Steve Harris" ; - rdfs:seeAlso "http://inanna.ecs.soton.ac.uk/swh.xrdf" ] ] . - - +<> a doap:Project ; + doap:license ; + doap:name "LV2" ; + doap:homepage ; + doap:created "2004-04-21" ; + doap:shortdesc "LV2 is an audio processing plugin specification" ; + doap:programming-language "C" ; + doap:release [ + doap:revision "0.9" ; + doap:created "2006-07-24" + ] ; + doap:maintainer [ + a foaf:Person ; + foaf:name "Steve Harris" ; + foaf:homepage ; + rdfs:seeAlso + ] , [ + a foaf:Person ; + foaf:name "Dave Robillard" ; + rdfs:seeAlso + ]. ################## ## Plugin Class ## @@ -184,7 +195,6 @@ A language tag MUST NOT be used on this property. The plugin author MUST change the plugin URI if a port symbol is changed. """ . -# FIXME: This isn't really fundamental like :index and :symbol :name a rdf:Property ; rdfs:domain :Port ; rdfs:label "name" ; @@ -269,14 +279,14 @@ Value conforming to the 32bit IEEE-754 floating point specification.""". rdfs:label "Host feature" ; rdfs:comment "A host feature which a plugin may use (possibly require).". -:supportedHostFeature a rdf:Property ; +:optionalHostFeature a rdf:Property ; rdfs:domain :Plugin ; rdfs:range :HostFeature ; - rdfs:label "Supported (optional) host feature" ; + rdfs:label "Optional host feature" ; rdfs:comment """ Signifies that a plugin is able to make use of a certain host feature. -The plugin MUST NOT fail to instantiate if a supported (but not required) -host feature is not present.""" . +The plugin MUST NOT fail to instantiate if an optional host feature is +not present.""" . :requiredHostFeature a rdf:Property ; rdfs:domain :Plugin ; -- cgit v1.2.1