rss

jQuery XML/RSS Scrape Problems

I'm using this script to scrape from an rss feed to view on another website: $.ajax({ url: "http://www.thriveafricastore.com/rss.php?type=rss", type: "GET", success: function(d) { $('item', d).each(function() { var $item = $(this); var title = $item.find('title').text(); ...

Displaying content from an RSS feed in an iphone app

I have seen some tutorials on the subject, but they all go half into it and then leave a person wondering. How can I stream an rss feed into an iphone app. I know the xml should be read in, parsed etc. But then I am not sure how to display the information I need like, images, embedded videos etc. If someone could just point me in t...

Aggregating from various sources

It could be a project well beyond my skills right now but I've got around one full month to spend on it so I think I can do it. What I want to build is this: Gather news about a specific subject from various sources. Easy, right? Just get the rss feeds and display them on a page. Well, I want something more advanced: Duplicates removed a...

iPhone SDK - Problem Parsing XML from RSS feed

I made an RSS reader that gets a feed from blogspot. The text from the story, title, etc. works fine. But the images posted inthe feed show up as links instead of an image. How can I display the images? ...

Help building RSS reader in Java

For a class project, I'm trying to write a simple RSS reader for my Java class. I am trying to walk the DOM tree just to get the experience doing it although I know there are better more efficient ways and tools. I have a ReaderObject that gets the basic title, link, description, and a List to hold RSSItem objects that have the instan...

Image parsing in rss in android

Hi, I am trying to parse RSS feeds from a news website but I am unable to fetch the images from the rss feeds. Can someone suggest me some easy implementation for parsing RSS feeds with images in Android. ...

Syndication format for describing threaded comments?

How to describe comments tree with Atom/RSS? ...

Is there a more current way to fix the error encountered when parsing a DateTime value in the XML?

As you can see in this question http://stackoverflow.com/questions/210375/problems-reading-rss-with-c-and-net-3-5 There is a problem when trying to read some Rss Feeds that express their date differently. I have tried the workaround posted there but I am not that experienced and I am trying it on Windows Phone 7. My main difficulty i...

RSS feed in PHP

Hello I want to do my own RSS field in my php website. so what is a flow for that . How to develop that. after that i want that Bookmark in firfox functionality also. Kindly guide me . ...

I want to create an RSS feed that is customizable

I want to create a dropdown of RSS feeds and users can pick and choose the feeds they want and a custom feed would be created. Is this possible using straight up HTML and java script or do I need a server technology. There are 7 separate feeds so the possible combinations are 7! - far too many for me to individually code into if stateme...

NSRequest vs initWithURL

Should I use initWithURL or NSRequest to download an XML file when using NSXMLParser? I'm downloading a feed and I'd like to get progress information for my download. ...

rss rome create entries with <content:encoded /> tag

Hi all! Where can i find a simple tutorial on how to generate <content:encoded /> tags in an rss using rome? I've been reading throug their documentation but it is only about read and parse from a feed. And their javadoc is minimal... Thank you! Udo. ...

Atom namespace with php simplexml

This is my RSS template that I load into my simplexml object. I want to change the <?xml version="1.0" encoding="utf-8"?> <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> <channel> <atom:link href="link" rel="self" type="application/rss+xml" /> <title></title> <link></link> <description><...

How to offer extended RSS feed to premium users?

I would like to provide extended RSS content (extended with unmoderated comments, for example) to premium users (moderators). Would it be possible to somehow authenticate readers of feeds other than attaching a personal token string to the RSS URL? Granted, this way a curious person only needs to steal an RSS link like this (much like ...

Change the language on a SmartCast podcast using yahoo pipes?

The SmartCast function in FeedBurner is powerful and easy to use, I can do a quick podcast using any blog platform, instead of using other software. But, it's so dumb to put in the generated XML, without asking, this: </item> <language>en-us</language> So, iTunes and others podcast indexers thinks that my podcast is in english languag...

Use Reg Expression to reformat image in RSS feed

I am creating some RSS feeds using PHP (5.2) from a MySQL db specifically for an iPhone app I am making through AppMakr. They are taken from articles on a website which contain images embedded in them, however in the feeds they don't look great. What I want to try and do is whenever there is an image surround it in <p> so they are on th...

When implementing an RSS feed, how do you handle its update frequency?

I'm writing an RSS feed. Let's say it's for a list of entries as in a blog. How do I handle updating the feed? I mean, let's assume that The feed always displays the last 10 entries. If someone subscribes now, he'll get the last 10 entries (1..10)... what if there are for example 2 new articles, and then what will his feed reader do? Bec...

How to mark "seen" RSS entries?

So I have played with the idea of making a specialized RSS-reader for some time now, but I have never gotten around to it. I have several project that could benefit from reading feeds in one way or another. One project for this is an RSS-bot for an IRC-channel I'm on. But I havent quite wrapped my mind around how I can "mark as read" a ...

RSS feeds security

Hey all We are thinking to implement RSS feeds at the company i work with as a form of banking /transaction alerts to users. Does anyone know if this has been done in e-banking apps? Anyone knows any possible security threats? any articels, havent found that much on the net ...

get RSS where there is none

Sorry for the long title and perhaps confusing half good now as we come. I'm asking advice or guidance on how I can get an RSS feed from a page that does not have RSS enabled by default. But that is not the problem itself. The problem is when on that page I am asked to enter a username and password. Well so otherwise would be the thing....