changeset 152:3ec175bf5249

* fix typos, add a remark about descriptor naming
author cannam
date Tue, 24 Jun 2008 15:38:28 +0000
parents 58f4d399a85d
children 2282b572c386
files examples/vamp-example-plugins:spectralcentroid.n3 rdf/generator/template-generator.cpp rdf/vamp.n3
diffstat 3 files changed, 13 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/examples/vamp-example-plugins:spectralcentroid.n3	Tue Jun 24 09:35:38 2008 +0000
+++ b/examples/vamp-example-plugins:spectralcentroid.n3	Tue Jun 24 15:38:28 2008 +0000
@@ -1,6 +1,6 @@
 @prefix rdfs:     <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .
-@prefix vamp:     <http://www.purl.org/ontology/vamp/> .
+@prefix vamp:     <http://purl.org/ontology/vamp/> .
 @prefix vampex:   <http://www.purl.org/ontology/vamp/examples/> .
 @prefix plugbase: <http://purl.org/ontology/vamp/examples/> .
 @prefix owl:      <http://www.w3.org/2002/07/owl#> .
--- a/rdf/generator/template-generator.cpp	Tue Jun 24 09:35:38 2008 +0000
+++ b/rdf/generator/template-generator.cpp	Tue Jun 24 15:38:28 2008 +0000
@@ -131,7 +131,7 @@
     vamp:min_value       "+to_string(p.minValue)+" ;\n\
     vamp:max_value       "+to_string(p.maxValue)+" ;\n\
     vamp:unit           \""+p.unit+"\" ;\n\
-    vamo:quantize_step   "+to_string(p.quantizeStep)+"  ;\n\
+    vamp:quantize_step   "+to_string(p.quantizeStep)+"  ;\n\
     vamp:default_value   "+to_string(p.defaultValue)+" ;\n\
     vamp:value_names     (";
 
--- a/rdf/vamp.n3	Tue Jun 24 09:35:38 2008 +0000
+++ b/rdf/vamp.n3	Tue Jun 24 15:38:28 2008 +0000
@@ -4,12 +4,9 @@
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
 @prefix foaf: <http://xmlns.com/foaf/0.1/>.
 @prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#>.
-@prefix list: <http://www.w3.org/2000/10/swap/list#>.
 @prefix dc: <http://purl.org/dc/elements/1.1/>.
-@prefix mo: <http://purl.org/ontology/mo/>.
 @prefix event: <http://purl.org/NET/c4dm/event.owl#>.
 @prefix af: <http://purl.org/ontology/af/>.
-@prefix tl: <http://purl.org/NET/c4dm/timeline.owl#>.
 @prefix vamp: <http://purl.org/ontology/vamp/>.
 @prefix :         <> .
 
@@ -195,6 +192,16 @@
 
 ##### Plugin properties
 
+
+##!!!
+## cc --
+## I think parameter_descriptor and output_descriptor should be simply
+## called parameter and output respectively, and vamp:Transform should
+## be included in the domain of vamp:output because transforms need to
+## be able to specify an output as well as a plugin.
+
+##!!! lacking plugin version?
+
 vamp:parameter_descriptor
 	a rdf:Property;
 	a owl:ObjectProperty;
@@ -575,7 +582,7 @@
 	rdfs:range vamp:PluginProgram;
 	.
 
-vamp:program
+vamp:configuration
 	a rdf:Property;
 	a owl:ObjectProperty;
 	a owl:FunctionalProperty;