Re: review MT draft

a while ago, the only way I could make sense out of reification was

  <rdf:Statement rdf:about="http://example.org/stuff#S1">
    <rdf:subject>http://example.org/stuff#sky</rdf:subject>
    <rdf:predicate>http://example.org/stuff#color"</rdf:predicate>
    <rdf:object>http://example.org/stuff#blue</rdf:object>
  </rdf:Statement>

or in --ntriples

<http://example.org/stuff#S1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
  <http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> .
<http://example.org/stuff#S1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate>
  "http://example.org/stuff#color" .
<http://example.org/stuff#S1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject>
  "http://example.org/stuff#sky" .
<http://example.org/stuff#S1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#object>
  "http://example.org/stuff#blue" .

which is strange, no?

OK, I was completely wrong according to M&S, but at least I got
convinced about use/mention bugs/issues and I fully agree with DanC
[[
  the rdf:subject of "Mary likes Bob"
  should be a word that starts with M,
  not a female person.
]]

--
Jos

PS sorry about this quick answer, but I'm overwhelmed by other
   "bugs" (such as the wrong interpretation of cached resource expiration...)

Received on Thursday, 24 January 2002 09:21:33 UTC