RssEditor doesn't properly parse rss feed urls with & in the URL
#1
This RssFeeds.xml file is reported as invalid, but it gets properly displayed by the RSS ticker in XBMC:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rssfeeds>
  <set id="1">
    <feed updateinterval="15">http://pipes.yahoo.com/pipes/pipe.run?_id=ce8bf48032103b52faa7f62093aaee5e&_render=rss</feed>
    <feed updateinterval="30">http://feeds.feedburner.com/xbmc</feed>
  </set>
</rssfeeds>

This file is considered valid, but doesn't show the first feed

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rssfeeds>
  <set id="1">
    <feed updateinterval="15">http://pipes.yahoo.com/pipes/pipe.run?_id=ce8bf48032103b52faa7f62093aaee5e&amp;_render=rss</feed>
    <feed updateinterval="30">http://feeds.feedburner.com/xbmc</feed>
  </set>
</rssfeeds>

I didn't look where the bug lies, but it looks like it's related to named entity parsing of the XML file.
Reply

Logout Mark Read Team Forum Stats Members Help
RssEditor doesn't properly parse rss feed urls with & in the URL0