sw-bcard.n3 756 Bytes
# 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"
 ].