From 4985c77f6c10df405cce02861fe885d131644b83 Mon Sep 17 00:00:00 2001
From: David Robillard
An unsigned 32-bit integer mapped from a URI (e.g. with LV2_URID_Map).
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. log:Entry a rdfs:Class ; + rdfs:label "Log Entry" ; lv2:documentation """A log entry. Subclasses of this class can be passed to LV2_Log_Log methods to describe the nature of the log message.
""" . 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 """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 """
A method for modifying the properties of an object.
@@ -252,6 +253,7 @@ patch:Response patch:Set a rdfs:Class ; + rdfs:label "Set" ; rdfs:subClassOf patch:Request , [ a owl:Restriction ; -- cgit v1.2.1