Re: First Public Working Draft for "RDF/A Primer 1.0"

One comment:  The example of the foaf information suggests:

>  Specifically, Terri's markup yields the following RDF triples:
>
><> foaf:name "Jo Lambda"^^rdf:XMLLiteral ;
>    foaf:mbox <mailto:jo.lambda@example.org> ;
>    foaf:phone "+1 777 888 9999"^^rdf:XMLLiteral .

However, there is confusion between the web page (<>) and the
primary subject of the page.  It is Joe, not Joe's home page,
which has name address and telephone number.

<> means "this document", not "the subject of this document".

You can get from one to the other. For example maybe the spec should
read:

>[ is foaf:primarySubject of <>]
>    foaf:name "Jo Lambda"^^rdf:XMLLiteral ;
>    foaf:mbox <mailto:jo.lambda@example.org> ;
>    foaf:phone "+1 777 888 9999"^^rdf:XMLLiteral .

or equally well

><>!foaf:primarySubject
>
>    foaf:name "Jo Lambda"^^rdf:XMLLiteral ;
>    foaf:mbox <mailto:jo.lambda@example.org> ;
>    foaf:phone "+1 777 888 9999"^^rdf:XMLLiteral .

Tim BL

Received on Tuesday, 14 March 2006 16:58:27 UTC