how to display RSS feeds as HTML? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:54:08Z http://stackoverflow.com/feeds/question/98308 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html 1 how to display RSS feeds as HTML? Gastoni 2008-09-19T00:23:46Z 2009-10-08T10:44:31Z <p>How do I display a News RSS feeds from a web site into another web site?</p> <p>I don't need to program or process anything, just take the information from one place and display it in the other.</p> <p>Probably I want this to be done on the client side, So I guess it would need to be a javascript solution.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98319#98319 0 Answer by Clint Ecker for how to display RSS feeds as HTML? Clint Ecker 2008-09-19T00:25:20Z 2008-09-19T00:25:20Z <p>It depends on if you want to do it server side, client-side (javascript), in some sort of widget, et cetera. Your question really isn't detailed enough to give a good answer.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98321#98321 0 Answer by Joel Coehoorn for how to display RSS feeds as HTML? Joel Coehoorn 2008-09-19T00:25:29Z 2008-09-19T00:25:29Z <p>It depends on what your programming environment is. I know you can some nice controls to handle it all for you in ASP.Net, for example, and I'm sure other environments have their way to do it. An XML Style Sheet would work pretty well, too.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98324#98324 0 Answer by mopoke for how to display RSS feeds as HTML? mopoke 2008-09-19T00:25:59Z 2008-09-19T00:25:59Z <p>Depends what language your website is written in. There are tools for PHP to consume RSS and display them as HTML. There are likely modules for most popular languages.</p> <p>Or if you want a client-side solution, you could try a JavaScript tool such as <a href="http://www.rss-to-javascript.com/" rel="nofollow">http://www.rss-to-javascript.com/</a></p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98325#98325 0 Answer by Dan for how to display RSS feeds as HTML? Dan 2008-09-19T00:26:03Z 2008-09-19T00:26:03Z <p>Depends what language you're using. Typically you'd find yourself a prebuild RSS parser to do the hard work for you, but if there's nothing available, it'd be pretty easy to roll your own with an XML parser.</p> <p>(Now, if there's no XML parser available, you may have a bit of work ahead of you :))</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98327#98327 7 Answer by Eric Lathrop for how to display RSS feeds as HTML? Eric Lathrop 2008-09-19T00:26:56Z 2008-09-19T00:26:56Z <p>You can use XSLT to translate the RSS to HTML: <a href="http://www.dotnetjunkies.ddj.com/Tutorial/9FB56D07-4052-458C-B247-37C9E4B6D719.dcik" rel="nofollow">Translating RSS With XSLT</a></p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98328#98328 0 Answer by ConroyP for how to display RSS feeds as HTML? ConroyP 2008-09-19T00:26:57Z 2008-09-19T00:32:27Z <p>You can do it server-side, by fetching the feed, parsing it yourself and outputting whichever you'd like. This can be done using <a href="http://www.iredale.net/p/by-permalink/44F4CFBC-EACB-11DC-88B7-4DEB6225452B/" rel="nofollow">XSLT</a>, or if you really want to have some fun, you could read the file in, process it in your dev language of choice (<a href="http://magpierss.sourceforge.net/" rel="nofollow">MagpieRSS</a> is good for this in PHP), and treat it the same way you would regular site content.</p> <p>Alternatively, you can do it client-side with some javascript - you can even get <a href="http://www.labnol.org/internet/tools/embed-rss-feeds-add-html-websites-javascript/2515/" rel="nofollow">Google gadgets to do all of the work for you</a>!</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98330#98330 1 Answer by Nouveau for how to display RSS feeds as HTML? Nouveau 2008-09-19T00:27:11Z 2008-09-19T00:27:11Z <p>Depending on the language you're working in, either with an XLST transformation or by writing your own code looping over the RSS and creating HTML.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98332#98332 1 Answer by Glenn Slaven for how to display RSS feeds as HTML? Glenn Slaven 2008-09-19T00:27:29Z 2008-09-19T00:27:29Z <p><a href="http://www.decafbad.com/twiki/bin/view/Main/RssDisplay" rel="nofollow">RSSDisplay</a> does it in perl. Not sure if that's the sort of thing you're after. Alternatively you can <a href="http://www.dotnetjunkies.ddj.com/Tutorial/9FB56D07-4052-458C-B247-37C9E4B6D719.dcik" rel="nofollow">do it with XSLT</a> if you roll that way</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98335#98335 0 Answer by jjohn for how to display RSS feeds as HTML? jjohn 2008-09-19T00:28:09Z 2008-09-19T00:28:09Z <p>Do you need to program a solution? Which programming languages do you know? Perl can do this pretty efficiently with XML::RSS. You can also do this with XSLT processing if you want to stay firmly in the XML/HTML camp.</p> <p>If programming isn't what you're after, you can use an RSS reader, like the one built into Firefox.</p> <p>Perhaps you can add a bit more context to your question?</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98341#98341 0 Answer by Charles Graham for how to display RSS feeds as HTML? Charles Graham 2008-09-19T00:30:19Z 2008-09-19T00:30:19Z <p>Don't most RSS feeds get rendored in most web browsers as is? Example: blog.stackoverflow.com.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98361#98361 0 Answer by icco for how to display RSS feeds as HTML? icco 2008-09-19T00:33:57Z 2008-09-19T00:33:57Z <p>If you plan on using PHP with your HTML, <a href="http://simplepie.org/" rel="nofollow">SimplePie</a> is amazingly easy.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98364#98364 0 Answer by Dori for how to display RSS feeds as HTML? Dori 2008-09-19T00:34:34Z 2008-09-19T00:34:34Z <p>As others have said, there are a lot of different ways to do this. If you're looking for something server-side and don't want to reinvent the wheel, take a look at this list of <a href="http://www.newsonfeeds.com/faq/aggregators#Aggregators_that_require_web_server_installation" rel="nofollow">aggregators that require web server installation</a>.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/100868#100868 2 Answer by Mladen Mihajlovic for how to display RSS feeds as HTML? Mladen Mihajlovic 2008-09-19T10:03:54Z 2008-09-19T10:03:54Z <p>One other option: <a href="http://code.google.com/apis/ajaxfeeds/" rel="nofollow">Google's Ajax Feeds</a>. Basically all you need to do is include a javascript script on your page and a placeholder div and it should display the feed using AJAX.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/867889#867889 0 Answer by Itai for how to display RSS feeds as HTML? Itai 2009-05-15T10:23:02Z 2009-05-15T10:23:02Z <p>The google Ajax is nice. Thanks.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/867908#867908 0 Answer by miceuz for how to display RSS feeds as HTML? miceuz 2009-05-15T10:28:07Z 2009-05-15T10:28:07Z <p>i guess you want a javascript solution, maybe you want to <a href="http://stackoverflow.com/questions/226663/parse-rss-with-jquery">parse rss with jquery</a>?</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/869210#869210 0 Answer by Adi for how to display RSS feeds as HTML? Adi 2009-05-15T15:02:46Z 2009-05-15T15:02:46Z <p>Use a tool like <a href="http://www.rssinclude.com" rel="nofollow">www.rssinclude.com</a>. Embed the feed using either Javascript (easy!) or as static HTML using PHP, ASP or any other server side scripting.</p> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/1537023#1537023 0 Answer by paulmorriss for how to display RSS feeds as HTML? paulmorriss 2009-10-08T10:44:31Z 2009-10-08T10:44:31Z <p>I use <a href="http://feed2js.org" rel="nofollow">feed2js</a>. It's free and has a wide variety of options.</p>