Description
Hi
Part of my project is an application where a bunch of rss feeds are loaded.
This flash application gets the rsslinks from an xml file with this structure:
<channels>
<channel name="BBC" url="http://www.bbc.co.uk">
<description>This is the BBC feeds list</description>
<feeds>
<feed name="BBC Top Story 1" url="http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml1">
<description>Top Story News</description>
<tags>BBC, Top Story, International</tags>
<pubdate>11/02/2010 13:23</pubdate>
</feed>
<feed name="BBC Top Story 2" url="http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml2">
<description>Top Story News</description>
<tags>BBC, Top Story, International</tags>
<pubdate>11/02/2010 13:23</pubdate>
</feed>
</feeds>
</channel>
<channel name="VTM" url="http://www.bbc.co.uk">
<description>This is the BBC feeds list</description>
<feeds>
<feed name="BBC Top Story 3" url="http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml">
<description>Top Story News</description>
<tags>BBC, Top Story, International</tags>
<pubdate>11/02/2010 13:23</pubdate>
</feed>
...
</feeds>
</channel>
</channels>
So the result will be a bunch of rss feeds categorised per feedname
and feeds are categorised per channel.