Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
FeedReader
FeedReader
0
Comments
It also crashes a lot whenever odd UNICODE is present - any chance this could be redone using Magpie RSS?
All of those *escaped* HTML characters render as code.
http://www.crazyontap.com/rss.php
<item> <title><marquee>OK so script probably doesn't make it through</title> <link>http://www.crazyontap.com/topic.php?TopicId=21750&Posts=7</link> <description><![CDATA[<strong>muppet: </strong>So assuming they got THAT right, does THIS work? <br /> <br />Hmm..]]></description> <pubDate>15 Aug 07 12:37:52 GMT</pubDate> </item> <item> <title><script language="Javascript">alert("eat me blah!")</script></title> <link>http://www.crazyontap.com/topic.php?TopicId=21748&Posts=11</link> <description><![CDATA[<strong>arg!: </strong>BOO-YA!]]></description> <pubDate>15 Aug 07 11:27:37 GMT</pubDate> </item> <item> <title>It's time to go to bed.</title> <link>http://www.crazyontap.com/topic.php?TopicId=21747&Posts=0</link> <description><![CDATA[<strong>Ward: </strong>Just got home from Oregon about 20 minutes ago. Gotta be at work in 4 hours, can't sleep in today. Oh well, the Oregon coast is a blast.]]></description> <pubDate>15 Aug 07 11:20:03 GMT</pubDate> </item> <item> <title><span style="font-size: 84pt;">Good morning Blah!</title> <link>http://www.crazyontap.com/topic.php?TopicId=21746&Posts=26</link> <description><![CDATA[<strong>muppet: </strong>How's it shakin?]]></description> <pubDate>15 Aug 07 11:18:33 GMT</pubDate> </item>
P.S. the text area isn't coloured white...
//seperate feeds with a |
$Context->Dictionary["FeedReader.URI"] ="http://myfeed.com/feed1.rss|http://myfeed.com/feed2.rss"
Line 318
/****************************************************************************** ATTACH LIST
******************************************************************************************/
if (in_array($Context->SelfUrl, array("categories.php", "index.php", "post.php")) && $Context->Session->UserID > 0) {
$uris = $Context->GetDefinition("FeedReader.URI");
$uris = explode('|',$uris);
foreach ($uris as $uri){
$frr = new FeedReaderRender($uri, $Context->GetDefinition("FeedReader.CacheTTL"));
$frr->attachToList();
}
}