diff options
author | David Robillard <d@drobilla.net> | 2016-07-29 19:41:19 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-07-29 19:43:43 -0400 |
commit | 50a6edb088ead6d8f6287aeca55e4d704add61a2 (patch) | |
tree | 71a14257ba1ea107f8f454544b30bce7e4c4ec90 /tests/empty.ingen/empty.ttl | |
parent | 9ff60e9058080ccbea85eee603642a577dd258cf (diff) | |
download | ingen-50a6edb088ead6d8f6287aeca55e4d704add61a2.tar.gz ingen-50a6edb088ead6d8f6287aeca55e4d704add61a2.tar.bz2 ingen-50a6edb088ead6d8f6287aeca55e4d704add61a2.zip |
Save bundled graphs to graph.ttl by default
This avoids a lot of hassle with filename construction and renaming,
while ensuring that the internal structure of any graph bundle is the
same.
Diffstat (limited to 'tests/empty.ingen/empty.ttl')
-rw-r--r-- | tests/empty.ingen/empty.ttl | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/empty.ingen/empty.ttl b/tests/empty.ingen/empty.ttl deleted file mode 100644 index aaaf6087..00000000 --- a/tests/empty.ingen/empty.ttl +++ /dev/null @@ -1,41 +0,0 @@ -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix atom: <http://lv2plug.in/ns/ext/atom#> . -@prefix patch: <http://lv2plug.in/ns/ext/patch#> . -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix ingen: <http://drobilla.net/ns/ingen#> . -@prefix lv2: <http://lv2plug.in/ns/lv2core#> . -@prefix lv2ev: <http://lv2plug.in/ns/ext/event#> . -@prefix midi: <http://lv2plug.in/ns/ext/midi#> . -@prefix owl: <http://www.w3.org/2002/07/owl#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . - -<control_in> - ingen:polyphonic false ; - atom:bufferType atom:Sequence ; - lv2:index 0 ; - lv2:name "Control" ; - lv2:portProperty lv2:connectionOptional ; - lv2:symbol "control_in" ; - a atom:AtomPort , - lv2:InputPort . - -<control_out> - ingen:polyphonic false ; - atom:bufferType atom:Sequence ; - lv2:index 1 ; - lv2:name "Control" ; - lv2:symbol "control_out" ; - a atom:AtomPort , - lv2:OutputPort . - -<> - ingen:polyphony 1 ; - <http://lv2plug.in/ns/extensions/ui#ui> ingen:GraphUIGtk2 ; - lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ; - lv2:port <control_in> , - <control_out> ; - lv2:symbol "empty" ; - doap:name "empty" ; - a ingen:Graph , - lv2:Plugin . |