sw-bcard.n3
756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Some knowledge about the world.
@prefix : <#>.
:w :staff :d.
:d a :Person; :name "Dan\\nConnolly".
:w a :Organization; :tla "W3C".
# Rules for making a diagram...
@prefix g: <http://www.w3.org/2001/02pd/gv#>.
@prefix log: <http://www.w3.org/2000/10/swap/log#>.
@prefix u: <http://www.w3.org/2000/01/rdf-schema#>.
:staff a g:EdgeProperty; g:label "Technical Staff".
this log:forAll :n, :str.
{ :n a :Person; :name :str } log:implies { :n g:label :str }.
{ :n a :Organization; :tla :str }
log:implies { :n g:label :str;
g:style "filled";
g:color "blue";
g:fontcolor "white";
g:fontsize "20" }.
# bookkeeping...
<> g:digraph
[ g:hasNode :d, :w;
# g:label "$Revision: 1.4 $ of $Date: 2002/05/03 20:25:36 $";
# g:rankdir "LR"
].