Re: Fwd: Syndication model convergence and RDF

PS. Looking good, although rather verbose. It rather suggests having
an alternate, less explicit version. I'm not really sure of the
purpose of feedInstance either.

Why not collapse e.g.  (random chunk):

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xml:base="http://djpowell.net/tmp/"
xmlns:atom="http://purl.org/atom/ns#draft-ietf-atompub-format-05"
xmlns:atomrdf="http://djpowell.net/schemas/atomrdf/0.1-EXPERIMENTAL/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

<atomrdf:Feed rdf:about="http://example.org/feed">
<atomrdf:feedInstance>
<atomrdf:FeedInstance>

<atomrdf:link>
<atomrdf:Link>
<atomrdf:rel rdf:resource="http://www.iana.org/assignments/relation/alternate"/>
<atomrdf:linkHref rdf:resource="http://example.org/"/>
</atomrdf:Link>
</atomrdf:link>

</atomrdf:FeedInstance>
</atomrdf:feedInstance>
</atomrdf:Feed rdf:about="http://example.org/feed">

</rdf:RDF>

down to:

<atomrdf:Feed rdf:about="http://example.org/feed"
xml:base="http://djpowell.net/tmp/"
xmlns:atom="http://purl.org/atom/ns#draft-ietf-atompub-format-05"
xmlns:atomrdf="http://djpowell.net/schemas/atomrdf/0.1-EXPERIMENTAL/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

<atomrdf:link rdf:parseType="Resource">
<atomrdf:rel rdf:resource="http://www.iana.org/assignments/relation/alternate"/>
<atomrdf:linkHref rdf:resource="http://example.org/"/>
</atomrdf:link>

</atomrdf:Feed>

Cheers,
Danny.



On Thu, 3 Feb 2005 21:23:53 +0100, Danny Ayers <danny.ayers@gmail.com> wrote:
> Thanks David - will blog ;-)
> 
> 
> On Thu, 3 Feb 2005 20:05:02 +0000, David Powell <djpowell@djpowell.net> wrote:
> >
> > > [2] http://www.imc.org/atom-syntax/mail-archive/msg12615.html
> >
> > I've now made a page for my Atom RDF mapping:
> >
> > http://djpowell.net/atomrdf/0.1/
> >
> > --
> > Dave
> >
> >
> 
> --
> 
> http://dannyayers.com
> 


-- 

http://dannyayers.com

Received on Thursday, 3 February 2005 20:38:55 UTC