On Sun, 9 Jan 2005 10:59:01 -0800, S. Mike Dierken <[EMAIL PROTECTED]> wrote:
> >
> > <feed xmlns...>
> >    <head>
> >        <link href="http://example.org/feed"/>
> > ...
> >    </head>
> >    <entry>
> >       <id>http://example.org/entry</id>
> >       <link rel="related" href="http://example.org/feed"; />
> > ...
> >    </entry>
> > </feed>
> >
> > If resources are view as nodes, then http://example.org/feed has two
> > parents. The containment tree is violated.
> 
> I'm pretty sure the discussion was related to the content of a single XML
> document instance, rather than to resources distributed across a network.
> Once a piece of software traverses outside of an XML document instance, it
> is no longer containment.

How about something like:

<feed xmlns...>
...
   <entry>
      <id>http://example.org/entryA</id>
      <link rel="next" href="http://example.org/entryB"; />
...
   </entry>
   <entry>
      <id>http://example.org/entryB</id>
      <link rel="previous" href="http://example.org/entryA"; />
...
   </entry>
</feed>

Cheers,
Danny.

-- 

http://dannyayers.com

Reply via email to