diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom.ttl | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/log/log.ttl | 11 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/midi/midi.ttl | 1 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/patch/patch.ttl | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.ttl b/lv2/lv2plug.in/ns/ext/atom/atom.ttl index 29246f3..a336fdf 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom.ttl +++ b/lv2/lv2plug.in/ns/ext/atom/atom.ttl @@ -276,7 +276,7 @@ issues are the host's responsibility.</p> atom:URID a rdfs:Class ; rdfs:subClassOf atom:Atom ; - rdfs:label "Integer ID mapped from a URI" ; + rdfs:label "Integer URID" ; atom:cType "LV2_Atom_URID" ; lv2:documentation """ <p>An unsigned 32-bit integer mapped from a URI (e.g. with LV2_URID_Map).</p> diff --git a/lv2/lv2plug.in/ns/ext/log/log.ttl b/lv2/lv2plug.in/ns/ext/log/log.ttl index 26e18cc..60e1d3f 100644 --- a/lv2/lv2plug.in/ns/ext/log/log.ttl +++ b/lv2/lv2plug.in/ns/ext/log/log.ttl @@ -22,27 +22,32 @@ levels to suit their needs.</p> log:Entry a rdfs:Class ; + rdfs:label "Log Entry" ; lv2:documentation """ <p>A log entry. Subclasses of this class can be passed to LV2_Log_Log methods to describe the nature of the log message.</p>""" . log:Error a rdfs:Class ; + rdfs:label "Error" ; rdfs:subClassOf log:Entry ; - rdfs:comment "An error" . + rdfs:comment "An error message." . log:Note a rdfs:Class ; + rdfs:label "Note" ; rdfs:subClassOf log:Entry ; - rdfs:comment "An informative message" . + rdfs:comment "An informative message." . log:Warning a rdfs:Class ; + rdfs:label "Warning" ; rdfs:subClassOf log:Entry ; - rdfs:comment "A warning" . + rdfs:comment "A warning message." . log:Trace a rdfs:Class ; + rdfs:label "Trace" ; rdfs:subClassOf log:Entry ; lv2:documentation """ <p>A debugging trace. These entries should not be displayed during normal diff --git a/lv2/lv2plug.in/ns/ext/midi/midi.ttl b/lv2/lv2plug.in/ns/ext/midi/midi.ttl index c455596..6b8446d 100644 --- a/lv2/lv2plug.in/ns/ext/midi/midi.ttl +++ b/lv2/lv2plug.in/ns/ext/midi/midi.ttl @@ -71,6 +71,7 @@ midi:ChannelPressure midi:Chunk a rdfs:Class ; + rdfs:label "MIDI Chunk" ; rdfs:comment "A series of contiguous bytes (usually one) in a message." . midi:Clock diff --git a/lv2/lv2plug.in/ns/ext/patch/patch.ttl b/lv2/lv2plug.in/ns/ext/patch/patch.ttl index a1ff201..9599285 100644 --- a/lv2/lv2plug.in/ns/ext/patch/patch.ttl +++ b/lv2/lv2plug.in/ns/ext/patch/patch.ttl @@ -193,6 +193,7 @@ patch:Patch owl:minCardinality 1 ; owl:onProperty patch:subject ] ; + rdfs:label "Patch" ; lv2:documentation """ <p>A method for modifying the properties of an object.</p> @@ -252,6 +253,7 @@ patch:Response patch:Set a rdfs:Class ; + rdfs:label "Set" ; rdfs:subClassOf patch:Request , [ a owl:Restriction ; |