Martin Duerst wrote:
> But does <el1>foo</el1> apply to entry2?
I would argue that it does not. Since entry2 contains a <head/>
element, all entry-level "inheritance" should be from that <head/> entry --
not from the feed's <head/>. The mere presence of <head/> should re-route
*ALL* inheritance, not just inheritance of the elements which appear in the
<head/>.
Imagine the following:
<feed>
<head>
<author>Tom Bombadil</author>
<copyright>The Fellowship</copyright>
</head>
<entry/>
<entry>
<head>
<author>Sauron</author>
</head>
<content>...</content>
<entry/>
</feed>
Since the entry contains a <head/>, it should NOT inherit author,
copyright or anything else from the feed's head.
bob wyman