userdata/RssFeeds.xml

From XBMC
Jump to: navigation, search

The RssFeeds.xml file within the XBMC/userdata folder contains the RSS feeds which are displayed by XBMC.

Feeds are contained within sets and to have multiple feeds you can just add the feed to the relevent set.

You can also have multiple sets, but note that most skins use by default only the first set. So, if you want to display the other sets as well, you will need to edit the skin XML. See details in the RSS feed Control page for more information on adding these feeds to a skin.

This is an example of a feed set:

<xml>
<set id="1" rtl="false">
  <feed updateinterval="30">http://feeds.feedburner.com/Tacos</feed>
</set>
</xml>

Contents

1 Examples

Here is an example of a full file with mutiple sets and feeds:

<xml>

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<rssfeeds>

  <set id="1">
   <feed updateinterval="30">http://www.sky.com/skynews/rss/article/0,,30200-1-100,00.xml</feed>
   <feed updateinterval="30">http://www.sky.com/skynews/rss/article/0,,30100-1-100,00.xml</feed>
   <feed updateinterval="30">http://www.sky.com/skynews/rss/article/0,,31500-1-100,00.xml</feed>
   <feed updateinterval="30">http://www.sky.com/skynews/rss/article/0,,30400-1-100,00.xml</feed>
   <feed updateinterval="30">http://www.sky.com/skynews/rss/article/0,,91059-1-100,00.xml</feed>
 </set>

 <set id="2">
   <feed updateinterval="30">http://rss.cnn.com/rss/cnn_topstories.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_world.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_us.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_allpolitics.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_law.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_tech.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_space.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_health.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_showbiz.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_travel.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_education.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_freevideo.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_offbeat.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_mostpopular.rss</feed>
   <feed updateinternal="30">http://rss.cnn.com/rss/cnn_latest.rss</feed>
 </set>

 <set id="3">
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/main.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/national.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/world.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/rss/public_eye.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/politics.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/scitech.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/health.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/entertainment.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/business.rss</feed>
   <feed updateinternal="30">http://www.cbsnews.com/feeds/rss/opinion.rss</feed>
 </set>

</rssfeeds>
</xml>

2 XML Tags

set
id
rtl
feed
updateinterval

3 Other Questions

Q. What is RSS \ what is a RSS feed
A. RSS is a format for syndicating news and the content of news-like sites, including major news sites like Wired, news-oriented community sites like Slashdot, and personal weblogs. But it's not just for news. Pretty much anything that can be broken down into discrete items can be syndicated via RSS: the “recent changes” page of a wiki, a changelog of CVS checkins, even the revision history of a book. Once information about each item is in RSS format, an RSS-aware program can check the feed for changes and react to the changes in an appropriate way.
See the full article on xml.com
Q. Is RSS 2.0 supported?
A. RSS 2.0 is supported
Q. Can you change the scroll speed
A. You cannot modify it directly in the RssFeeds.xml file, however you can do this in the skin itself with the <scrollspeed> attribute. See RSS feed Control for details.
Q. Can you have more than one feed (in the same place)
A. Yes, just add another feed in the same set.
Q. Can you make the RSS feed update faster
A. Yes, change the value for updateinterval (minutes)
Q. Are other formats supported.
A. No only .xml is currently supported
Q. I can't play this feed ....
A. There seems to be a problem with feeds with no extension (no “.xml” on the end) make sure you check this.
Q. I don't have a RSS feed in XBMC
A. Can you access IMDb? Yes, then home.xml is configured incorrectly. If not, then your network settings are wrong. Make sure you set the <defaultgateway>-</defaultgateway>correctly if you go through a router.

4 More Feeds

NB: These feeds have not been verified...

4.1 CBS News

Top Stories: http://www.cbsnews.com/feeds/rss/main.rss
US: http://www.cbsnews.com/feeds/rss/national.rss
World: http://www.cbsnews.com/feeds/rss/world.rss
Public Eye: http://www.cbsnews.com/rss/public_eye.rss
Politics: http://www.cbsnews.com/feeds/rss/politics.rss
Sci-Tech: http://www.cbsnews.com/feeds/rss/scitech.rss
Health Watch: http://www.cbsnews.com/feeds/rss/health.rss
Entertainment: http://www.cbsnews.com/feeds/rss/entertainment.rss
Business: http://www.cbsnews.com/feeds/rss/business.rss
Opinion: http://www.cbsnews.com/feeds/rss/opinion.rss

4.2 BBC News

UK Edition: http://news.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss091.xml
World Edition: http://news.bbc.co.uk/rss/newsonline_world_edition/front_page/rss091.xml

4.3 New York Times

http://partners.userland.com/nytRss/nytHomepage.xml

4.4 Daily Ramblings (Hilarious)

http://dailyramblings.com/index.xml

4.5 Political Wire

http://politicalwire.com/headlines.xml

Personal tools
Namespaces
Variants
Actions
Navigation
Wiki help
Google Search
Toolbox