- From: Sandro Hawke <sandro@w3.org>
- Date: Fri, 10 Mar 2006 08:31:39 -0500
- To: Misha Wolf <Misha.Wolf@reuters.com>
- Cc: public-rdf-in-xhtml-tf@w3.org, semantic-web@w3.org, newsml-2@yahoogroups.com
> 1.  IIRC, RDF/XML does not support numeric terms.
As far as I understand your words, it does. See
  http://www.w3.org/TR/REC-rdf-syntax/#typedliterals
and the second approved test case at 
  http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/#tc_cert
which reads, in part:
  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
           xmlns:eg="http://example.org/">
   <rdf:Description rdf:about="http://example.org/foo">
     <eg:bar 
          rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">10</eg:bar>
   </rdf:Description>
  
  </rdf:RDF>
as parsing to:
  <http://example.org/foo> 
      <http://example.org/bar> 
      "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
Is that not support for numeric terms?
   -- sandro
Received on Friday, 10 March 2006 13:31:54 UTC