ISSUE-87: @src bug in Section 5.3 of Syntax

ISSUE-87: @src bug in Section 5.3 of Syntax 

http://www.w3.org/2006/07/SWD/track/issues/87

Raised by: Ben Adida
On product: RDFa

"
5.3. Chaining

The first code example

<div about="http://dbpedia.org/resource/Albert_Einstein">
  ...
  <img rel="foaf:depiction"
src="http://en.wikipedia.org/wiki/Image:Albert_Einstein_Head.jpg" />

seems to indicate that a triple

<http://dbpedia.org/resource/Albert_Einstein>
  foaf:depiction
  <http://en.wikipedia.org/wiki/Image:Albert_Einstein_Head.jpg> .

should be created. But according to section 5.5 step 5 and section 6.1.1.3 the
rel attribute would have to be on the div element, not the img element. The
example as is IMHO creates an incomplete triple

<http://en.wikipedia.org/wiki/Image:Albert_Einstein_Head.jpg>
  foaf:depiction
  ? .
"

by Johannes Koch in:

http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2008Feb/0116.html

Probable Resolution: fix the text of the spec to use @rel in the parent DIV.

Received on Tuesday, 26 February 2008 16:24:06 UTC