summaryrefslogtreecommitdiffstats
path: root/bundles
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-29 20:34:32 +0000
committerDavid Robillard <d@drobilla.net>2012-12-29 20:34:32 +0000
commit79275fc579c0dbe1ce4ca109edb95f2c1e0802a5 (patch)
tree72bb18ea61f485c47514a511dd3067c57aa2fb4b /bundles
parent9bdf223f830d3b430563e96d93efc073b1882e96 (diff)
downloadingen-79275fc579c0dbe1ce4ca109edb95f2c1e0802a5.tar.gz
ingen-79275fc579c0dbe1ce4ca109edb95f2c1e0802a5.tar.bz2
ingen-79275fc579c0dbe1ce4ca109edb95f2c1e0802a5.zip
"edge" => "arc".
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4897 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'bundles')
-rw-r--r--bundles/StereoInOut.ingen/StereoInOut.ttl2
-rw-r--r--bundles/ingen.lv2/ingen.ttl26
2 files changed, 14 insertions, 14 deletions
diff --git a/bundles/StereoInOut.ingen/StereoInOut.ttl b/bundles/StereoInOut.ingen/StereoInOut.ttl
index 6052ce0f..3a01992f 100644
--- a/bundles/StereoInOut.ingen/StereoInOut.ttl
+++ b/bundles/StereoInOut.ingen/StereoInOut.ttl
@@ -10,7 +10,7 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<>
- ingen:edge [
+ ingen:arc [
ingen:head <audio_out_1> ;
ingen:tail <audio_in_1>
] , [
diff --git a/bundles/ingen.lv2/ingen.ttl b/bundles/ingen.lv2/ingen.ttl
index d4de601a..6613d122 100644
--- a/bundles/ingen.lv2/ingen.ttl
+++ b/bundles/ingen.lv2/ingen.ttl
@@ -134,40 +134,40 @@ ingen:prototype
The object which this block is an instance of, or derived from.
""" .
-ingen:Edge
+ingen:Arc
a owl:Class ;
- rdfs:label "Edge" ;
+ rdfs:label "Arc" ;
rdfs:comment """
-A connection between two ports. Graphs have a set of edges which
-define how its component blocks and ports are connected. An Edge MUST
+A connection between two ports. Graphs have a set of arcs which
+define how its component blocks and ports are connected. An Arc MUST
have exactly one ingen:tail and exactly one ingen:head property.
""" .
-ingen:edge
+ingen:arc
a owl:ObjectProperty ;
rdfs:domain ingen:Graph ;
- rdfs:range ingen:Edge ;
- rdfs:comment "An edge contained in this graph." .
+ rdfs:range ingen:Arc ;
+ rdfs:comment "An arc contained in this graph." .
ingen:tail
a owl:ObjectProperty ,
owl:FunctionalProperty ;
- rdfs:domain ingen:Edge ;
+ rdfs:domain ingen:Arc ;
rdfs:range lv2:Port ;
rdfs:label "tail" ;
- rdfs:comment "The source/sending port of this edge" .
+ rdfs:comment "The source/sending port of this arc" .
ingen:head
a owl:ObjectProperty ,
owl:FunctionalProperty ;
- rdfs:domain ingen:Edge ;
+ rdfs:domain ingen:Arc ;
rdfs:range lv2:Port ;
rdfs:label "head" ;
- rdfs:comment "The destination/receiving/sink port of this edge" .
+ rdfs:comment "The destination/receiving/sink port of this arc" .
ingen:incidentTo
a owl:ObjectProperty ,
owl:FunctionalProperty ;
- rdfs:domain ingen:Edge ;
+ rdfs:domain ingen:Arc ;
rdfs:label "incident to" ;
- rdfs:comment "A special property used to describe any edge incident to a port or block. This is never saved in graph files, but is used in the control protocol to completely disconnect a Block or Port." .
+ rdfs:comment "A special property used to describe any arc incident to a port or block. This is never saved in graph files, but is used in the control protocol to completely disconnect a Block or Port." .