1236
|
1 @prefix ch: <http://light9.bigasterisk.com/theater/piedmont/channel/> .
|
|
2 @prefix dmx: <http://light9.bigasterisk.com/dmx/> .
|
|
3 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
4 @prefix l9: <http://light9.bigasterisk.com/> .
|
|
5 @prefix log: <http://www.w3.org/2000/10/swap/log#>.
|
|
6 @prefix string: <http://www.w3.org/2000/10/swap/string#>.
|
|
7
|
|
8 @prefix prep: <http://light9.bigasterisk.com/prepStatements/> .
|
|
9
|
|
10 {
|
|
11 [prep:name ?name; prep:output ?c] .
|
|
12
|
|
13 ch: log:uri ?channelNamespace .
|
|
14 (?channelNamespace ?name) string:concatenation ?uriString .
|
|
15 ?chanUri log:uri ?uriString .
|
|
16 } => {
|
|
17 ?chanUri a l9:Channel; rdfs:label ?name; l9:output ?c .
|
|
18 } .
|