Kodi Community Forum
rss feeds - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: rss feeds (/showthread.php?tid=68464)



rss feeds - rflores2323 - 2010-01-25

How do I edit the RSS Feeds? I see there is an option under the skin settings however it greyed out.

I was wondering if this was functional or not? I have read the wiki and it states the all you have to do is add a rss feed like a new source. Is this all?

From wiki

The rss:// protocol was released as a supported source in XBMC Media Center 8.10 and later.

To connect to a specific RSS feed, under the music, videos, or pictures section of XBMC, add a new source. In the Sources.xml file, the source should have a URL that looks like:

Code:
<source>
  <name>RSS Feed</name>
  <path>rss://</path>
</source>



- Kieeps - 2010-01-26

look in ~/.xbmc/userdata/RssFeeds.xml

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rssfeeds>
  <!-- RSS feeds. To have multiple feeds, just add a feed to the set. You can also have multiple sets.  !-->
  <!-- To use different sets in your skin, each must be called from skin with a unique id.              !-->
  <set id="1">
    <feed updateinterval="30">http://some.feed.rss</feed>
  </set>
</rssfeeds>