Using the category tag in RSS 2.0:
<category domain="http://mysite.example.com/tags">
Science and Technology
</category>
How would I provide an additional URL to the page that shows all of the items in that category?
Since the spec doesn't appear cover this, would it be safe to invent a new attribute in my own namespace, like this:
<category domain="http://mysite.example.com/tags"
myns:category-url="http://mysite.example.com/tags/scitech/">
Science and Technology
</category>
Then at the top of the document:
<rss version="2.0" xmlns:myns="http://mysite.example.com/namespace/">
Is it OK to extend RSS in this way? Are any aggregators or implementations out there in the wild likely to break? Or is there an existing mechanism for linking to a category page that I should be using instead?
I'm interested in seeing how this would be done in Atom as well, but I need a solution for RSS 2.0.