- From: <jos.deroo.jd@belgium.agfa.com>
- Date: Sun, 27 May 2001 16:42:45 +0100
- To: jos.deroo.jd@belgium.agfa.com
- Cc: aswartz@upclink.com, danbri@w3.org, fmanola@mitre.org, w3c-rdfcore-wg@w3.org
(forgot RDF/xml notation)
>Now if DanBri writes in "a-danb-uri"
> { :TestCases :utility :high } :targetOf :sw. (2)
which could be like
//////////////
<!-- Processed by Id: cwm.py,v 1.48 2001/05/26 17:28:07 timbl Exp -->
<!-- using base file:/n3/danb.n3-->
<rdf:RDF xmlns="file:/n3/danb.n3#"
xmlns:log="http://www.w3.org/2000/10/swap/log#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description>
<log:is rdf:parseType="log:Quote">
<rdf:Description rdf:about="#TestCases">
<utility rdf:resource="#high"/>
</rdf:Description>
</log:is>
<targetOf rdf:resource="#sw"/>
</rdf:Description>
</rdf:RDF>
\\\\\\\\\\\\\\
or (flat) like
//////////////
<!-- Processed by Id: cwm.py,v 1.48 2001/05/26 17:28:07 timbl Exp -->
<!-- using base file:/n3/danb.n3-->
<rdf:RDF xmlns="file:/n3/danb.n3#"
xmlns:log="http://www.w3.org/2000/10/swap/log#"
xmlns:n3="http://www.w3.org/2000/10/swap/model.n3#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#_formula">
<log:forSome rdf:resource="#_s1"/>
</rdf:Description>
<rdf:Description rdf:about="#_g0">
<n3:statement rdf:resource="#_s1"/>
</rdf:Description>
<rdf:Description rdf:about="#_s1">
<n3:predicate rdf:resource="#utility"/>
<n3:subject rdf:resource="#TestCases"/>
<n3:object rdf:resource="#high"/>
</rdf:Description>
<rdf:Description rdf:about="#_formula">
<log:forSome rdf:resource="#_s2"/>
</rdf:Description>
<rdf:Description rdf:about="#_formula">
<n3:statement rdf:resource="#_s2"/>
</rdf:Description>
<rdf:Description rdf:about="#_s2">
<n3:predicate rdf:resource="#targetOf"/>
<n3:subject rdf:resource="#_g0"/>
<n3:object rdf:resource="#sw"/>
</rdf:Description>
</rdf:RDF>
\\\\\\\\\\\\\\
Which one should we take as default?
Can we easily de-flat? I mean come to
//////////////
@prefix : <#>.
{ :TestCases :utility :high } :targetOf :sw.
\\\\\\\\\\\\\\
--
Jos De Roo, AGFA http://www.agfa.com/w3c/jdroo/
Received on Sunday, 27 May 2001 10:43:30 UTC