rss

Conversion from RSS to RDF

Hi, I don't quite understand RDF, but I am looking to convert RSS feeds from places like yahoo and google into RDF format to display on a website. Any advice/help would be greatly appreciated. Thanks! Update: it seems I need to understand XSTL and stuff like that. ...

how to get xml file from google rss

let's say I want to get the xml file from google rss for Apple. I am pretty new to RSS and XML so I would appreciate any help. Thanks! ...

How do I create an extra RSS item element that contains HTML using PyRSS2Gen?

I'm using PyRSS2Gen to generate an RSS feed. I've succeeded in extending it to add an extra element to each item in the RSS feed: class FullRSSItem(PyRSS2Gen.RSSItem): def __init__(self, **kwargs): if 'content' in kwargs: self.content = kwargs['content'] del kwargs['content'] else: ...

Best way to consume an RSS feed

I'm currently working on an ASP.NET Website where I want to retrieve data from an RSS feed. I can easily retrieve the data I want and get it to show in i.e. a Repeater control. My problem is, that the blog (Wordpress) that I'm getting the RSS from uses \n for linebreaks which I obviously can't use in HTML. I need to replace these \n wit...

RSS/JSON reader with jquery (convert to plug-in?)

I am using Yahoo pipes to create a feed for a website. I cobbled together from examples online a decent rss feed reader, then I started adding bells and whistles to it. I get a visual error when I click the next link to quickly. Also there seems to be a script error that happens on ie8, but I don't use it so I cannot verify. It looks lik...

How to add line break character on my widget's javascript for Nokia WRT?

Hi guys If anybody like me is using Nokia WRT Plug-in for Visual Studio... I've created on Visual Studio a Rss Reader Widget. Now I'm customizing it, trying to add line breaks in rss tag called "< description>". I'm trying many codes like with no luck: "Fist line\u000dSecond line" "Fist line\u000dSecond line" "Fist line\nSecond li...

getting RSS feeds on website

Hi, I had this code that I wrote last year and it returns RSS feeds for some term I enter: <html> <body> <form name="form" action="search.php" method="get"> <input type="text" name="q" /> <input type="submit" name="Submit" value="Search" /> </form> <?php require_once "RSS.php"; // want to parse the $row[1] variable to get out...

Rss feed operation timed out

I am trying to load the digg favorites rss items. But getting error as operation timed out. Please let me know if anyone have solved this issue before. Public Shared Function HasRssItems() As Boolean Dim doc As New XmlDocument doc.Load("http://digg.com/users/Lovelezz/history/favorites.rss") Return doc.SelectN...

Split an RSS feed into separate feeds

I'm trying to find a way to split a single RSS feed into separate feeds based on keyword matches. Yahoo Pipes was my first thought, but I couldn't find a way to do it. Although Pipes has a split module, there is only one output module available for any pipe. So I can't see how I would ever get more than one feed from a pipe. The whole ...

Feedly.com development and feed parser

Is http://feedly.com built using PHP, Java, or some other language/framework? I have googled for some information on it, and saw that it uses JSON/REST extensively. But, I am not sure as to what feed parser is used to render images and videos into the application so elegantly, ie: ...

How to Display Videos inside RSS Feed

Hi, I have a blog and all posts (i.e. this post) have videos in hidden div. I want to display this videos in my [RSS feed.] But not regular blog view.4 By the way i'm using Wordpress. How i can do it? Thanks. ...

Updating a rss-feed continuously

I'm creating a bot in PHP that continuously updates an RSS-feed and gathers information. Every loop takes around 0.1 sec but sometimes it takes up to 9 sec to finish the cycle. Why does this happen and is there a way around the problem? I need the bot to be as fast as possible as I'm trying to beat another bot that has the same purpose ...

tips on creating RSS/XML easily in python

I have a list if these 3 items: title and link and a html based description and I am looking for a library or external tool which can be fed these 3 items and create a rss xml page. Does such a thing exist? ...

How to authenticate an RSS feed

Basecamp uses HTTP authentication for its RSS feeds but this means that Google Reader, Bloglines and Firefox/Safari RSS don't work. Is it possible to secure an RSS feed but still allow access from these popular readers? ...

How do I create an Atom representation with Restlet?

I want to create atom xml representations for my REST resources using Restlet. Should I (can I?) use ROME or just use the Atom extension for Restlet? What's the best way to go about this? Thanks in advance. ...

problem (IE8) inserting 'alternate rss link ' in "head" section fails. (Succeeds in Firefox 3.5)

We wish to use jquery/javascript to add 'alternate link rss' elements in the section of a resulting html document, i.e. so the orange 'rss' icon shows up on the right side of the browser's url-bar (aka "awesome bar" in FF) Such an approach simplifies adding the 'subscribe' links in the section. Each chunk of the page could add rss lin...

Good alternative to SQL access on iPhone

I am working on an app for a business that is essentially a catalog. The client has a website that uses a MySQL database, but he doesn't want that to be used by the app. His website offers RSS feeds, but I don't think that this would be a good idea. The app is supposed to be searchable based on a number of (optional) factors and show det...

How to parse encoding data from the rss feed?

i am parsing rss feed.But i cantable to parse encoding data from thee rss feed.How to parse encoding data from the rss feed? ...

Does anyone have an XSD for Media RSS?

I realize there is no official one and I have the latest XSD that is posted to the http://tech.groups.yahoo.com/group/rss-media/ group. I am wondering if anyone reading this has generated a working XSD off of the most recent spec (1.5)? http://video.search.yahoo.com/mrss ...

atom feed xmlns attribute messes up AS3's XML-parsing?

Wanna see something interesting? var xml:XML = XML(<feed><entry /><entry /><entry /></feed>); trace(xml.entry.length()) // returns 3 Makes sense, right? Now let's add this attribute... var xml:XML = XML(<feed xmlns="http://www.w3.org/2005/Atom"&gt;&lt;entry /><entry /><entry /></feed>); trace(xml.entry.length()) // returns 0 We...