diff options
author | David Robillard <d@drobilla.net> | 2012-07-29 03:33:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-07-29 03:33:39 +0000 |
commit | ac211a0df9bc5a3b968975085d8b74467ac393c6 (patch) | |
tree | d4d3705c3d30f33ff82e0e1ae72768f21106a38f /lv2/lv2plug.in/ns/ext | |
parent | 8bca7b6598d21c811a5cc8477b2ad1e77614806b (diff) | |
download | lv2-ac211a0df9bc5a3b968975085d8b74467ac393c6.tar.xz |
Use more precise domain and range for EventPort properties.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/event/event.ttl | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/lv2/lv2plug.in/ns/ext/event/event.ttl b/lv2/lv2plug.in/ns/ext/event/event.ttl index 971fce2..e413a53 100644 --- a/lv2/lv2plug.in/ns/ext/event/event.ttl +++ b/lv2/lv2plug.in/ns/ext/event/event.ttl @@ -18,11 +18,13 @@ <../../meta/meta.ttl> ; doap:release [ doap:revision "1.7" ; - doap:created "2012-07-02" ; + doap:created "2012-07-28" ; dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Make event iterator gracefully handle optional ports." + ] , [ + rdfs:label "Use more precise domain and range for EventPort properties." ] ] ] , [ @@ -153,7 +155,7 @@ event types whether or not this property is present. ev:supportsEvent a rdf:Property ; - rdfs:domain lv2:Port ; + rdfs:domain ev:EventPort ; rdfs:range rdfs:Class ; rdfs:label "Supports event type" ; rdfs:comment """ @@ -174,7 +176,8 @@ ev:generic property for that port is also set. ev:inheritsEvent a rdf:Property ; - rdfs:domain lv2:Port ; + rdfs:domain ev:EventPort , + lv2:OutputPort ; rdfs:range lv2:Port ; rdfs:label "Inherits event type" ; rdfs:comment """ @@ -186,7 +189,8 @@ connecting an input, but this property should be set whenever it applies. ev:supportsTimeStamp a rdf:Property ; - rdfs:domain lv2:Port ; + rdfs:domain ev:EventPort , + lv2:InputPort ; rdfs:range rdfs:Class ; rdfs:label "Supports time stamp type" ; rdfs:comment """ @@ -197,7 +201,8 @@ event buffer with a time stamp type that isn't supported by the port. ev:generatesTimeStamp a rdf:Property ; - rdfs:domain lv2:Port ; + rdfs:domain ev:EventPort , + lv2:OutputPort ; rdfs:range rdfs:Class ; rdfs:label "Outputs time stamp type" ; rdfs:comment """ @@ -214,7 +219,8 @@ struct, if it is non-NULL. ev:inheritsTimeStamp a rdf:Property ; - rdfs:domain lv2:Port ; + rdfs:domain ev:EventPort , + lv2:OutputPort ; rdfs:range lv2:Port ; rdfs:label "Inherits time stamp type" ; rdfs:comment """ |