On Thu, 2006-05-11 at 08:23 +0100, Steve Harris wrote:
> On Wed, May 10, 2006 at 01:46:38 -0400, Dave Robillard wrote:
> > On Wed, 2006-05-10 at 10:12 +0100, Steve Harris wrote:
> > > http://plugin.org.uk/ladspa2/
> > >
> > > Changed name of the port shortname property to "symbol", which hopefully
> > > implies more the right thing.
> > >
> > > Added Rate before Control and Audio port names to hopefully make thier
> > > menaing clearer for people who may not come from a LADSPA background.
> > >
> > > This is just fiddling really, so I think it's starting to settle down.
> >
> > To say this is a nitpick is an understatement, but I like
> > "ladspa:ControlRateInputPort" over "ladspa:InputControlRatePort". More
> > normal and englishey.
>
> If you send me a patch to the schema I'l apply it and fix the amp. Youre
> right, it looks better.
(attached)
-DR-
--- ladspa-2.ttl 2006-05-09 14:01:51.000000000 -0400
+++ ladspa-2.ttl.new 2006-05-11 14:23:09.000000000 -0400
@@ -47,8 +47,8 @@
In order for it to be used by a host it must have at least the following
properties:
- rdf:type (where object is exactly one of :InputControlRatePort,
- :OutputControlRatePort, :InputAudioRatePort or :OututAudioRatePort)
+ rdf:type (where object is exactly one of :ControlRateInputPort,
+ :ControlRateOutputPort, :AudioRateInputPort or :OututAudioRatePort)
:datatype
:index
:shortname
@@ -67,7 +67,7 @@
:AudioRatePort a rdfs:Class ;
rdfs:subClassOf :Port .
-:InputControlRatePort a rdfs:Class ;
+:ControlRateInputPort a rdfs:Class ;
rdfs:label "Input control port" ;
rdfs:subClassOf :ControlRatePort ;
rdfs:subClassOf :InputPort ;
@@ -78,7 +78,7 @@
Plugins will read values from this pointer during thier run method.
""" .
-:OutputControlRatePort a rdfs:Class ;
+:ControlRateOutputPort a rdfs:Class ;
rdfs:label "Output control port" ;
rdfs:subClassOf :ControlRatePort ;
rdfs:subClassOf :OutputPort ;
@@ -89,7 +89,7 @@
Plugins will write values to this pointer during thier run method.
""" .
-:InputAudioRatePort a rdfs:Class ;
+:AudioRateInputPort a rdfs:Class ;
rdfs:label "Input audio port" ;
rdfs:subClassOf :AudioRatePort ;
rdfs:subClassOf :InputPort ;
@@ -100,7 +100,7 @@
Plugins will read values from this array during thier run method.
""" .
-:OutputAudioRatePort a rdfs:Class ;
+:AudioRateOutputPort a rdfs:Class ;
rdfs:label "Output audio port" ;
rdfs:subClassOf :AudioRatePort ;
rdfs:subClassOf :OutputPort ;