rss

How can I get a feed of NFL players and their positions and teams?

I saw a post about player stats and data. All I want is a list of NFL players. Is there an easy way to find this data for free? Will I have to scrape it off a website or do it by hand? If scraping is the route to take, can someone offer documentation, or library to help do this with php? ...

How to search Feeds?

Hi, I want to create an iPhone project which search feeds, like in google reader if we search for some word in "Add a subsciption" tab it will display all feeds related to that so we can add feeds easily. Any Idea how it can be done. Thanks in advance, ...

does requesting an rss feed count as hits to a site?

I have an iphone app which streams in a website/blogs rss feed. Will each request from an app count as a hit to the website, or how can the users be counted, other than downloads? Thanks ...

Module to parse RSS feed in Drupal?

I'm trying to simply display an RSS feed as part of my site. A user will put in an RSS URL into a CCK field and I want to take that URL and display the latest RSS results. I assume there's a module for this but I can't seem to find it. ...

How to Remove the More Info Link from RSS Feeds in Drupal 6

I need to remove the "more info" link from feeds. It appears that the link is added to the content in place of the break tag, but I see no option to disable this substitution for RSS feeds only. I am generating the feeds using a feed display in a view. Can anyone tell me how I can remove the "more info" link? Thanks. ...

A service to search for RSS feeds?

Hi, I am building an RSS Reader. Some of the existing ones out there (for example, Pulse News for iPhone/iPad) have a search box where you can search for some term (example - "sports") and it will return a list of feeds that match your search criteria. So in this example, you type in "sports", and it searches and then comes back with E...

How to get RSS Feed in to my Website using PHP

Hi all, I need to put rss feed in to my website using PHP. For example, I need to get RSS feed from the following site. http://www.ainonline.com/index.php?id=5 How can i accomplish this. As i am new bie to RSS i need some professionals help to get a deep knowledge in it. Hope u pals do... Thanks in advance... ...

PHP 1 element per category in RSS

Guys, i have something like this: $rss->feed = "http://nola.gosimian.com/rss_content.php"; if (!$rss->parse()) echo $rss->error; $column_count = 0; $i=0; while($i < 25) { $title = $rss->channel['ITEM'][$i]['TITLE']; ...

Creating a thread to asynchronously download xml for usage in UI elements

I'm making an application that grabs an RSSFeed from one location, parses it, and displays the items in a rich ListView. I've got it working synchronously, but it hangs on the initial download. I used ImageDownloader from the Google blog to asynchronously grab images to populate the ListView, but how do I go about threading the download ...

RSS Feeds and image extraction indepth

Hi all, I have spent time trying to solve this problem and this is as far as ive got. basically im trying to pull images from rss feeds. i use magpie to process the feeds as shown below.. this snippet is within a class function getImagesUrl($str) { $a = array(); $pos = 0; $topos; $init = 1; while($init) { ...

Archived Digg RSS data (or front page stories)

I am looking for an archive of Digg and other social media sites RSS feeds. I want to be able to access feeds from specific dates in the past. After a bunch of googling I've come up blank. Any ideas? ...

Multiple channels in a single RSS xml - is it ever appropriate?

A typical xml file for an RSS feed starts with an "rss" element on the outermost level, and usually has a single "channel" element within it that represents the "feed" or "channel." Is there ever a situation where it is appropriate to use multiple channels within an element, like the following? <rss> <channel> ... ...

how can i put rss feed link on my website?

i wanted to put an rss feed for a web app im creating in php, so basically w they can subscribe to a part of a website using google reader or feedburner etc ...

Understanding XML/RSS ... why won't a local copy of RSS feed display in browser?

If I visit the feed at http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/ws/RSS/topalbums/sf=143444/limit=10/xml with Firefox, it displays the feed as I would expect. But if I copy the source (view source) of this display and save it into a file like feed.xml on my local machine - it will not render the file but gives error...

How can i add image to Rss in codebehind ?

XmlTextWriter xmlRSS = new XmlTextWriter(Response.OutputStream, Encoding.UTF8); Other codes... List<RssItem> rssContents = new List<RssItem>(); get rssContents data .... foreach (RssItem item in rssContents) { xmlRSS.WriteStartElement("item"); xmlRSS.WriteElementString("title", item.Title); //How can i add image element her...

Open RSS feed link from uitableviewcell in safari instead of a new viewcontroller

I am using this http://imthi.com/blog/programming/iphone-rss-reader-application-with-source-code.php as a start for my rss reader in my app for loading news. I am trying to get it when you select a cell row it opens the link in safari instead of another viewcontroller. I am still learning how to develop for iPhone. This is what opens the...

How to create a NewsML WordPress feed

I'm trying to create a fully custom feed from my WordPress blog so that it can be ingested by a content management system that uses NewsML. You can learn about NewsML and find a NewsML validator here. My approach has been to create a WP page template that produces xml rather than HTML, described by a guy named Yoast (google him, I can't...

displaying live feeds : dailybooth live feed, twitter search result stream

What is the web technology behind displaying live feeds like twitter search results and dailybooth live feed? Can I get similar results from any RSS with some coding? ...

magpie rss and remember the milk feed url

Hi all; So, I'm working for the first time with embedding a RSS (or atom, but right now I'm trying to stick to rss) feed from my Remember the Milk account in my own website. (Eventually, there will be an at a glance dashboard style thing.) Now, like I said, this is pretty much my first time actually working with rss feeds. I've been usi...

Slow Page after parsing RSS

Any ideas on how to parse RSS feeds without massively slowing down my page? It takes a good 3 secs to load whilst it grabs the RSS from another server. ...