Brian Smith wrote:

Here is a corrected example:

> Example:
> 
> <feed>
>   <link rel='category-schemes'
>         type='application/atom+xml'
>         href='http://example.org/categories/schemes.feed'/>
>   ...
>   <entry>
>     <!-- Notice that no extensions are being used! -->
>     <category scheme='http://example.org/categories/tags'
>                 term='http://example.org/categories/tags/holiday'
>               label='Holiday'</category>
>     ...
>   </entry>
> </feed>               
> 
> <feed>
>   <link rel='self'
>         href='http://example.org/categories/schemes.feed'/>
>   ...
>   <entry>
>      <id>http://example.org/categories/tags</id>
>      <title>Tags</title>
>      <content type='application/atom+xml'
>               href='http://example.org/categories/tags.feed'/>
>      ...
>   </entry>
> </feed>
> 
> <feed>
>   <id>http://example.org/categories/tags</id>
>   <link rel='self'
>         href='http://example.org/categories/tags.feed'/>
>   ...
>   <entry>
>     <id>http://example.org/categories/tags/holiday</id>
>     <link rel='self'
>           href='http://example.org/categories/tags/holidays.entry'/>
>     <title>Holidays</title>
>     <content type='application/atom+xml'
>              href='http://example.org/categories/tags/holidays.feed'/>
>     ...
>   </entry>
> </feed>

- Brian

Reply via email to