aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-01 05:07:13 +0000
committerDavid Robillard <d@drobilla.net>2007-02-01 05:07:13 +0000
commited85b5c7d96e40ada730614cb69776672738c87b (patch)
tree9aee0a533ae8f815e48e3fdf6a48013fe31f1f3c /data
parent822c1f64098b5d81aaa8b4c7d6f75901d9f431f2 (diff)
downloadmachina-ed85b5c7d96e40ada730614cb69776672738c87b.tar.gz
machina-ed85b5c7d96e40ada730614cb69776672738c87b.tar.bz2
machina-ed85b5c7d96e40ada730614cb69776672738c87b.zip
Partially implemented loading (from RDF files).
git-svn-id: http://svn.drobilla.net/lad/machina@272 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'data')
-rw-r--r--data/test.ttl31
1 files changed, 23 insertions, 8 deletions
diff --git a/data/test.ttl b/data/test.ttl
index 1a334b1..741d9cb 100644
--- a/data/test.ttl
+++ b/data/test.ttl
@@ -1,9 +1,24 @@
-@prefix : <http://codeson.net/ns/machina#> .
-
-<#test>
- a Machine;
- node [
- a Node;
- midiNote 60;
- duration 100;
+@prefix : <http://drobilla.net/ns/machina#> .
+
+<>
+ a :Machine;
+
+ :initialNode <#n1> ;
+ :node <#n2> ;
+
+ :edge [
+ :tail <#n1> ;
+ :head <#n2> ;
] .
+
+
+<#n1>
+ a :Node ;
+ :midiNote 60 ;
+ :duration 600 .
+
+<#n2>
+ a :Node ;
+ :midiNote 70 ;
+ :duration 700 .
+