From 2e66052ff3a4dfc2394389f908470ad80f67563b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 19 Oct 2010 03:32:32 +0000 Subject: Fix namespace prefixes. --- ext/message.lv2/message.ttl | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ext/message.lv2/message.ttl b/ext/message.lv2/message.ttl index 172041a..60ec021 100644 --- a/ext/message.lv2/message.ttl +++ b/ext/message.lv2/message.ttl @@ -19,14 +19,14 @@ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR # OTHER DEALINGS IN THE SOFTWARE. -@prefix message: . -@prefix atom: . -@prefix doap: . -@prefix foaf: . -@prefix lv2: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . +@prefix msg: . +@prefix atom: . +@prefix doap: . +@prefix foaf: . +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . a lv2:Specification ; @@ -48,7 +48,7 @@ href="http://lv2plug.in/ns/ext/uri-map">LV2 URI Map extension, and the """ . -message:MessageType a rdfs:Class ; +msg:MessageType a rdfs:Class ; rdfs:label "LV2 Message Type" ; rdfs:comment """ Base class for all types of LV2 Message. @@ -59,16 +59,16 @@ interpret the meaning of messages (e.g. which components are present). A message in memory is simply an atom:Dict with at least one rdf:type that is a rdfs:subClassOf -message:MessageType. The definitions of various message types define what +msg:MessageType. The definitions of various message types define what other key/value pairs can be expected in the message. """ . -cmd:ControlPort a rdfs:Class ; +msg:ControlPort a rdfs:Class ; rdfs:label "Control Port" ; rdfs:subClassOf lv2:Port ; rdfs:comment """ An input port used to control a plugin instance. A plugin has -at most 1 cmd:ControlPort. A ControlPort is always an lv2:InputPort. Hosts +at most 1 msg:ControlPort. A ControlPort is always an lv2:InputPort. Hosts can send messages to the control port in order to investigate or manipulate a plugin instance (possibly on behalf of a UI or another plugin instance). @@ -80,12 +80,12 @@ of the port buffer contents (likely candidates are or ev:EventPort). """ . -cmd:ResponsePort a rdfs:Class ; +msg:ResponsePort a rdfs:Class ; rdfs:label "Response Port" ; rdfs:subClassOf lv2:Port ; rdfs:comment """ An output port used to notify the host about changes to a plugin instance -or respond to messages send to its cmd:ControlPort. A plugin has at most +or respond to messages send to its msg:ControlPort. A plugin has at most 1 StatusPort. A StatusPort is always an lv2:OutputPort. Any response to a command sent to the CommandPort of the plugin will appear in the StatusPort output. The plugin may also emit other messages (i.e. the contents of a -- cgit v1.2.1