# # configuration file for RDFtoTable which describes the table # to create from the contributions RDF data. # # $Id: contributions-table.n3,v 1.2 2005-04-07 13:53:57 chris-dollin Exp $ # @prefix rdf: . @prefix rdfs: . @prefix tt: . @prefix dc: . @prefix ct: . ct:contributions tt:columns ( ct:Name ct:Description ct:Licence ct:Creator ct:Link ) . ct:Name tt:displays ([tt:property dc:name]) ; rdfs:label "name" . ct:Description tt:displays ([tt:property dc:description]) ; rdfs:label "description" . ct:Creator tt:displays ([tt:property dc:creator]) ; rdfs:label "creator" . ct:Licence tt:displays ([tt:property ct:licence]); rdfs:label "licence" . ct:Link tt:displays ([tt:literal ""] [tt:property ct:linkTitle] [tt:literal '']) ; rdfs:label "for download see" .