rss

What's a good way to mix RSS feeds using Python?

SimplePie lets you merge feeds together: http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date Is there anything like this in the Python world? The Universal Feed Parser documentation doesn't say anything about merging multiple feeds together. ...

Yahoo Pipes - Return items in a feed by range?

There exists an RSS feed with over 1000 items. I want to create a Yahoo Pipes RSS feed that returns a subset of the feed's items, specified by the index of the first and last item. For example, I could pass in first=500 and last=600, and the Pipe will return an RSS feed with only the 500th through 600th itemd in the source feed. Is th...

problem with rss feed and cdata

I have a problem with an rss feed. When i do <title>This is a title </title> The title appears nicely in the feed But when i ddo $title = "this is a tilte"; <title><![CDATA['$title']]></title> The title doesn't appear at all. It still doesn't work. I generate my rss feed dynamicly and it looks like this: $item_template=" ...

Should I store it in an array, or what?

Hello, I am making an application (iPhone app) which gets information (jokes) from an RSS feed, then populates the tableView. Now, would I take the RSS and store it in an array then populate the tableView, or what? And how do I receive information from an RSS feed? Thanks! ...

RSS/Atom parsing library for .Net

Hi, I'm trying to find a library that can read a given RSS/Atom feed, and that can guess its format and abstract it as a list of items. The idea is to build a simple RSS reader that could take any feed. I know PHP has a few libraries doing just that, but I can't find any .Net version. ...

rss feeds list(free).

I need to have a complete list of feeds provided by all of sites or list of sites which have rss feeds on their site. Searched on google a lot, but couldn't find out how to get that list. ...

DomDocument failing to add a "link" element for RSS feed

I am trying to create an RSS feed in PHP using DomDocument but every time I try to make a node like http://domain.com the script fails $oDomDocument = new DOMDocument( "1.0", "iso-8859-1" ); // Create the root now $oRootNode = $oDomDocument->createElement( "rss" ); $oRootNode->setAttribute( "version", "2.0" ); $oDomDocument->appendChil...

Does MySQL collation type need to match PHP page charset type?

I have started debugging my RSS feed because it has some strange characters in it (i.e. the missing-character glyph). I started with two excellent beginner resources: The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets: http://www.joelonsoftware.com/articles/Unicode.html Chara...

Is this the right place to call the RSS building function?

Is this the right place to call the function that builds the RSS? its for a reddit type of site. function save() { /* Here we do either a create or update operation depending on the value of the id field. Zero means create, non-zero update */ if(!get_magic_quot...

Repost: Creating a RSS feed with PHP

I asked how to do this before but it seems I needed to put more code to really get an answer. I have a reddit type site, and I am trying to create a rss feed this is the code, but I get a Fatal error: Uncaught exception 'Exception' with message 'Query failed' Here its the code: <?php require_once($_SERVER['DOCUMENT_ROOT'].'/config.php...

what is the best way to keep updated on all programming blogs?

i have multiple computers and i want to keep track of all the blogs that i read without having to manually go to each to "poll" and find out if there are updates. I know my browser has local built in RSS fields but i am often on multiple computers. is there an online way to keeping track of all subscriptions of blogs so i can get alert...

Create ASP.NET Syndication Feeds with SqlConnection and VB.NET

This seems to be a great article by Scott Mitchell for creating syndicated feeds in ASP.NET 3.5. The problem for me is that it uses C# and Linq, which I'm not as sharp on at the current time. http://dotnetslackers.com/articles/aspnet/How-to-create-a-syndication-feed-for-your-website.aspx Does anyone know where an example might exist f...

How can I restructure this RSS feed?

I'm working with an RSS feed structured like this: Title string1 string2 I'd like to somehow alter the feed on the fly so that it looks like this: Title Title (string2) basically, I'd like to move the title string down into the RSS item description, next to second string in the RSS item. Right now the feed is pretty standard, tit...

Dynamic RSS Feed in c#

What would be a good way to create a dynamic RSS Feed? Currently, I have coded a function that is able to create a static file, but I am just curious what the best method of running this at certain times/days would be? For example, I create an RSS feed that lists all the items that occur today, and I would like it to populate at 12:01 ...

Service for feed converting (version problem).

Hello there, I have made an application (for my self) for feeds reading, using SyndicationFeed, and the problem is that it supports just Atom 1.0 and RSS 2.0. I have bunch of feeds which are RSS 0.92 version and so... So my question is: Is there any service which I can use for converting RSS 0.92 to RSS 2.0 or Atom 1.0. Someone told...

Building a RSS feed with links embedded

Edit: I have this line: $comments = "http://www.kiubbo.com/index.php?action=comments&amp;param=".$articles[$index]-&gt;getId(); And if I put it here it works out in the title tag, but not on the link or guid tags. fwrite ($fp, "<item>\n"); fwrite ($fp, " <title>$title</title>\n"); fwrite ($fp, " <link>$comments</link>\n"); fwrite ($...

Is an apostraphy allowed to appear unencoded in the content occurring between start and end XML tags?

In an attempt to write an RSS reader I ran into problems with the .NET XML Reader throwing an exception if an unencoded apostraphy appeared between the start and end tags found in an RSS feed. I am wonderring, is the XMLReader in .NET 2.0 not completely standards compliant? Or did I run into someone's buggy implementation of a feed gene...

I want to store instant messages I get on AIM into a hashtable collection in C#.

Can someone provide me some C#.NET code/insight? I'm working on a windows service that logs my instant messages on AIM. Conversations are stored in a XML file, (which also serves as an RSS Feed)... If i get an instant message that says, blog_on - i want it to log my instant messages to the XML file. blog_off - i want it to not log ...

Rails library to process an RSS/ATOM feed?

What's a good solution to parse an RSS/ATOM feed and present the content in a Rails view? ...

Generate Media RSS (MRSS) feed in ASP.NET 3.5

IN .NET 3.5 I know of the System.ServiceModel.Syndication classes which can create Atom 1.0 and RSS 2.0 rss feeds. Does anyone know of a way to easily generate yahoo's Media RSS in ASP.Net? I am looking for a free and fast way to generate an MRSS feed. ...