Thomas Broyer wrote:
> When PlanetBar and PlanetFoo republish a feed from Baz, they should
> "move" the entry metadata into an atom:source element.
This is actually what we do at PubSub today. You may not be aware
that the atom:source element is modeled on the ps:source-feed element that
we have been publishing in our Atom feeds since last June.
Into every entry we publish at PubSub, we put in something like the
following:
<ps:source-feed>
<title><![CDATA[Scoble's Link Blog]]></title>
<link rel='alternate' type='text/html'
href='http://scobleizer.com/linkblog'/>
<link rel='alternate' type='text/xml'
href='http://scobleizer.com/linkblog/feed/'/>
</ps:source-feed>
The text/html alternate and the title are taken from the feed
element of the source feed. The text/xml link indicates the URI of the feed
we read (this isn't normally in the Feed metadata...). (Yes, I know it
probably should be "application/xml" and would ideally be specific as to
type since we know it is RSS or Atom, etc. But, that's not the point of this
discussion.).
bob wyman