* Brendan Taylor <[EMAIL PROTECTED]> [2007-03-09 21:50]: > He has an XSLT which transforms del.icio.us into Atom [1]; (the > important bit of) the entries it produces look like this: > > <entry> > <title>The Atom Syndication Format</title> > <summary>An alternative to RSS2.</summary> > <link href="http://www.ietf.org/rfc/rfc4287"/> > <category term="rfc"/> > </entry> > > (I was thinking along the same lines, but using content/@src > instead of link/@href.) > > But he (and now I) is not entirely happy with this solution.
For the purpose of discussion, here’s how I’d do that now: <entry> <title>The Atom Syndication Format</title> <link href="http://del.icio.us/url/longhashvaluehere"/> <link rel="related" href="http://www.ietf.org/rfc/rfc4287"/> <content type="xhtml"><div xmlns="..."> <a href="http://www.ietf.org/rfc/rfc4287"/>The Atom Syndication Format</a>: An alternative to RSS2. </div></content> <category term="rfc"/> </entry> It bugs me to repeat the link in the content, but the all-around absence of support for `related` links requires this sort of hack to make the feed useful with today’s aggregators. Even then, such a feed would not be useful as a Live Bookmark in Firefox. Regards, -- Aristotle Pagaltzis // <http://plasmasturm.org/>