hmmm, I just thought of a nice one:

Comparing the current Atom atom head element

     <head>
       <title>Example Feed</title>
       <link href="http://example.org/"/>
       <updated>2003-12-13T18:30:02Z</updated>
       <author>
         <name>John Doe</name>
       </author>
     </head>

with my first attempt at a resembling RDF version

On 9 Nov 2004, at 16:03, Henry Story wrote:

        <head rdf:parseType="Resource">
                        <title>Example Feed</title>
                        <link rdf:resource="http://example.org/"/>
                        <updated 
rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime";
                                >2003-12-13T18:30:02Z</updated>
                        <author rdf:parseType="Resource">
                                        <name>John Doe</name>
                </author>
        </head>


and comparing in particular
        <link href="http://example.org/"/>
and
<link rdf:resource="http://example.org/"/>

what if we made atom:href a subproperty of rdf:resource?

then the current atom link syntax would be good rdf!

Henry Story



Reply via email to