Hi Eric,

* Eric Scheid <[EMAIL PROTECTED]> [2006-01-16 05:20]:
>then you're not going to like what I was thinking of doing ...
>posting <atom:category /> chunks to an APP/media collection,
>such that the media collection entry might look like this (no
>typos this time, I hope)...
>
><entry>
>    ...
>    <content type="application/atom+xml">
>        <category .../>
>    </content>
></entry>
>
>Thus, in the same sense I might have elsewhere a collection of
>images, I have here a collection of atom categories.

That doesn’t even work, because this is invalid:

    <entry>
        <!-- ... -->
        <content type="application/atom+xml">
            <category .../>
            <category .../>
            <category .../>
        </content>
    </entry>

An atom:content with an XML media type MUST have exactly one
child element, so you can’t do that. You need to wrap those
categories in something. The manifest choice is atom:entry…

Which just so happens to be a valid root element for
`application/atom+xml`. Of course, you’re pulling in an entire
train of metadata elements at that point, which will probably be
completely redundant, so whether that is any help I don’t know.

Regards,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

Reply via email to