rss

how to dynamically read RSS using jquery?

hello. i want to read multiple RSS feeds using jquery, i'm trying to write a flexible function that will just take the RSS URL and it will output only its TITLE AND IMAGE how to do that for multiple RSS URLs ? ...

Feedparser-basics how to

I'm very new to Feedparser and have returned to Python after a long break so would appreciate any help. I've tried the docs, which are very good, but I'm still slightly lagging. How would I get Feedparser to take an rss feed and from that get the title and description of the first 10 items and label each item independently so that they...

Exceptions with DateTime parsing in RSS feed in C#

I'm trying to parse Rss2, Atom feeds using SyndicationFeedFormatter and SyndicationFeed objects. But I'm getting XmlExceptions while parsing DateTime field like pubDate and/or lastBuildDate. Wed, 24 Feb 2010 18:56:04 GMT+00:00 does not work Wed, 24 Feb 2010 18:56:04 GMT works So, it's throwing due to the timezone field. As a ...

internal RSS feed not working with webClient object

As part of our application, we need to download a RSS feed. Our client's have an internal RSS feed which works fine with IE/Firefox but doesn't work with our application. The application try to download from a url. I am not sure what exactly wrong here: RssChannelDom DownloadChannelDom(string url) { RssChannelDom dom = null; S...

RSS feed captions

How can I read the captions of a RSS feed from a given website? I have to use either Magpie or PHP. ...

RSS time format to human readable format

I'm using MagpieRSS to parse some Craigslist feeds. The problem is the publish dates for craigslist posts are in this format: 2010-02-25T18:09:38-06:00 How can I convert that to Thursday, February 25, 2010 6:09 PM using php? ...

Modify Wordpress rss feed

Hi all, I want to change my rss feed. But can't get it done. I have an idea to implement this, just modify the tag and make it as follows: <description><![CDATA[<img src="http://www.site.com/thumbnail-40x40.jpg"/&gt; Lorem Ipsum Lorem ipsum Lorem Ipsum Lorem ipsum Lorem Ipsum Lorem ipsum Lorem Ipsum Lorem ipsum Lorem Ipsum Lorem ipsu...

Delaying a Jquery function until Ajax is completely loaded

I am using a plugin that uses jquery to pull an rss feed, and displays it after the content loads. I wanted to use jScrollPane so I can have custom scrollbars. WithjScrollPane, it loads the scrollbars on pageload, but because the rssreader loads content with ajax, the scrollbars aren't applied (it takes 4 seconds to load the rss conte...

How do I flag unread items of an RSS Feed?

I'm trying to do a RSS reader but I have no idea on how to identify the unread items. For example what should I do when I refresh my list to prevent having duplicates? ...

Supporting PubSubHubbub with PyRSS2Gen?

I'm using PyRSS2Gen to generate a RSS feed and I'm trying to support PubSubHubbub, but I need to add link elements that break RSS. Here's what should work without requiring a rewrite as Atom: <atom:link rel="hub" href="http://example.hub.com" xmlns:atom="http://www.w3.org/2005/Atom"&gt; <atom:link rel="self" href="http://example.com" x...

RSS screen scraper

Can anyone point me towards a ready made RSS screen scraper, preferably in Python in order to get full text RSS feeds? ...

Problem with feedburner proxy link giving a 404

Hi, there. I have a strange problem with the feedproxy link that feedburner builds using my feed. In my feed I have the following link: http://www.SOMEHOST.com/news/?key=680B3D50093A6A002E42140A321A2A5C0B683E0A7607517665567D And the link that feedburner builds is: http://feedproxy.google.com/~r/alertSNIRSS/~3/t8NvmYL6DVY/268286 After...

PHP: Parse text for RSS-feed?

Hello First, I'm not looking a way to parse an RSS-feed. I am creating an rss-feed myself, but now I've got a problem. I'm putting some text to description (obvisiously), but it gives me errors of some unallowed chars (for example "&"). Is there a way to remove all these chars or should I parse every char manually? Also, in my feed fi...

Rome RSS - Disable Validation in Rome RSS

In my application ROME api tries to validate the feed against and DTD in W3C and after some time it fails since W3C blocks that IP. Is there a way that I can disable XML feed validation in ROME? RSS XML validation is not neccessary since we get the feed from a well reputed company ...

Wordpress Blog RSS Feed Problems

Hello all, I have been posting on my blog http://www.prashantraju.com/ since Jan 2010 however for some reason when I subscribe to my feed http://www.prashantraju.com/feed (which is redirected to http://feeds.feedburner.com/AnalyseThis) it doesn't show my latest post? Can anyone help? Thanks in advance. ...

how to get feed of all new products from amazon

Amazon exposes RSS feeds for new products with a certain tag, such as http://www.amazon.com/rss/tag/blu-ray/new They also expose new popular products with http://www.amazon.com/gp/new-releases/books Is there a way to get a feed of all new products, regardless of tag and popularity? ...

Looking for simple/easy PHP-based Feed Parser

i am looking for a simple implementation of an PHP-based feed parser. it doesn't have to be extremely robust, flexible, or fast. easy setup and use is more important, it's for a student assignment. the goal is to consume feeds, and to wrap entries and their fields into simple HTML structures. ease of use really is the most important issu...

Display thumbnail pictures from googlenews RSS

I want to display some thematic news in my (php) site news column. Let's say the site theme is "elevators" and I use GoogleNews already filtered rss: http://news.google.com/news/search?aq=f&amp;pz=1&amp;cf=all&amp;ned=us&amp;hl=en&amp;q=elevators Now, in the rss preview I can see in a lot of news with thumbnail pictures. I use simpl...

Generate custom RSS/Atom feed with SyndicationFeedFormatter made from XML

I have followed this article and implemented my service and I can open the web browser and see the test data being published. I would like to create a custom formatted response, as for my needs this will not be published to the internet and it's an isolated feed that other devices on the local network could read to get the data I'm publ...

Writing to a non-unique div with Javascript

Hi everyone, <div class="aList"> <div class="theTitle"></div> <div class="theContent"></div> </div> I'm building a multi-feed RSS reader for school. aList is the div that encompasses each individual feed (the amount of feeds will fluctuate). theTitle is the div that will be filled with the attribute of the current feed. Additional...