- From: Aaron Swartz <me@aaronsw.com>
- Date: Fri, 22 Jun 2001 08:00:15 -0500
- To: Fernanda Hembecker <fernanda@ppgia.pucpr.br>
- Cc: www-rdf-interest <www-rdf-interest@w3.org>
On Friday, June 22, 2001, at 07:55 AM, Fernanda Hembecker wrote:
> This RDF example is at RDF Model and Syntax Specification (7.3 -
> Non-Bynary Relations). I have just added it at the <head> of an
> HTML page.
> If you submitt it to Netscape 6, the result will be "200 This
> is a test".
Thank you for the example. You seem to have forgotten a starting
<HEAD> tag. Netscape should ignore content in the document HEAD.
If it doesn't, please let me know and I will file a bug report.
As a workaround, you can replace:
<rdf:Description rdf:about="John Smith">
<n:weight rdf:parseType="Resource">
<rdf:value> 200 </rdf:value> <!-- this
value appear
at the HTML page -->
<n:units
rdf:resource="http://www.nist/gov/units/Pounds">
</n:weight>
with
<rdf:Description rdf:about="John Smith">
<n:weight>
<rdf:Description rdf:value="200">
<n:units rdf:resource="http://www.nist/gov/units/Pounds">
</rdf:Description>
</n:weight>
</rdf:Description>
--
[ "Aaron Swartz" ; <mailto:me@aaronsw.com> ; <http://www.aaronsw.com/> ]
Received on Friday, 22 June 2001 09:00:17 UTC