feed

MongoDB RSS Feed Entries, Embed the Entries in the Feed Object?

I am saving a reference to an RSS Feed in MongoDB, each Feed has an ever growing list of Entries. As I'm designing my schema, I'm concerned about this statement from the MongoDB Schema Design - Embed vs. Reference Documentation: If the amount of data to embed is huge (many megabytes), you may read the limit on size of a single o...

Zend_Feed_Reader Not supported Schema

Hello, I'm using Zend FW and wanted to make a feed reader. I did the following: $feed = Zend_Feed_Reader::import('feed://blog.lookup.cl/?feed=rss2'); $data = array( 'title' => $feed->getTitle(), 'link' => $feed->getLink(), 'dateModified' => $feed->getDateModified(), 'description' => $...

custom rss feed suddenly does not work anymore

I just don't understand what's happening, I haven't change anything to the site for a few months but now suddenly the rss feed doesn't work anymore. I create a php file with the following code: header('Content-type: text/xml'); include("config/config.inc.php"); $result = mysqli_query($link, "SELECT * FROM tutorials ORDER BY tutor...

How to make a live stream redirector?

So I have a local URL like http://localhost:port/ with live video stream in it. I need to send it over TCP to http://any_address:AnyPort/ how to do such thing in WPF, C#? CODE WANTED!) ...

Build ATOM Feed Reader for ADO.net DATA Services feed

Hi, I have built an ADO.net data services to expose data in a SQL server database as XML. What I want to be able to do is create a feed reader for this ATOM feed in .net or may be a user control which subscribes to this URI based ATOM Feed from ADO.net data service & publishes the latest information on our website ...

Is there a way to programmatically extract the feed of a podcast from the iTunes page?

From an iTunes page, like http://itunes.apple.com/us/podcast/this-week-in-tech-mp3-edition/id73329404, is there a way to extract the corresponding feed address? In this case it would be http://leoville.tv/podcasts/twit.xml. I know that if you open on iTunes you can extract it manually, but I want to do it programmatically. There's a lin...

How to use YQL to merge 2 RSS feeds sorted by pubDate?

Seeing that YQL is being promoted as a good way to do things, I was curious as to how to use YQL to fetch and merge 2 different feeds into one (sorted by pubDate). It's pretty trivial to fetch 2 feeds but it turns out that the feeds are just concatenated together and not merged. Here's the sample code. select channel.title,channel.li...

Showing full body from an RSS feed using Feeds module in Drupal 6.x

Alright, so this is my problem: I'm using the Feeds module to create nodes from an RSS feed. My problem is that feeds doesn't allow you to select 'body' in 'sources' (under Create nodes -> mappings in the left-side menu). I googled this quite a bit but cant find any solution to this problem. Any help would be very much appreciated. ...

any rss feed lib for gae..

i want enable rss for gae on my site . and did you know the simple way to do this ? thanks this is a example i searched: class FeedHandler(BaseRequestHandler): def get(self,tags=None): blogs = Weblog.all().filter('entrytype =','post').order('-date').fetch(10) last_updated = datetime.datetime.now() if blog...

Embed feedback element in rss or atom that does not change the view on click

I am developing a filtering proxy for feeds (rightload.info). A key UI element is a link or equivalent embedded in each entry that allows the user to express an opinion such as "like" or "dislike". A design goal was to support the largest number of feeds and feed readers (and browsers since the most popular feed readers are web based). T...

Problem on feed’s publish dates on “feed view” and “source view”

Can any one please let me know, why some times the RSS feed’s publish dates <pubDate> is not match with it's feed view and source view ...

getting list of people who follows you on friendfeed with ff-api

is there any way to getting list of people who follows you on friendfeed with ff-api? ...

Reading custom values in Ebay RSS feed (XML::RSS module)

I've spent entirely way too long trying to figure this out. I'm using XML:RSS and Perl to read / parse an Ebay RSS feed. Within the area, I see these entries: <rx:BuyItNowPrice xmlns:rx="urn:ebay:apis:eBLBaseComponents">1395</rx:BuyItNowPrice> <rx:CurrentPrice xmlns:rx="urn:ebay:apis:eBLBaseComponents">1255</rx:CurrentPrice> Howeve...

Best way to find latest Feed posted

Can any one please let me know, that i need to receive feeds which are posted recently OR Please make sure if the feed is posted, should it be shown in the first position? ...

Images and links not showing up in feeds published using Feedburner?

The images and links added to the description of my RSS feeds are not showing up in the feeds I'm publishing through Feedburner, but if I subscribe to the raw feed(example.com/feeds.xml) the image and links are published appropriately in the feeds. I don't see any problem in the format of my feeds. Does feedburner need a special format? ...

Cannot get the name of the author from a SyndicationFeed object

The Name property of the SyndicationPerson object is always null. The name of the author is presented in the Email property ! So, actually i can get it, but why it is presented in the Email property? The problem has nothing to do with the feeds, i checked the raw data and it's perfectly ok. Seriously, what's wrong? ...

RSS Feed parser library in Java

Is there any Java helper utils/libraries available for parsing Rss/Atom feed? I checked RSSUtils but it looks like outdated. ...

which jquery plugin can do the dynamic smooth vertical menu scroll?

ok i'm new to jquery, but how can i do a feed like the one at twitter.com where they have the "top tweets" update with the latest tweet by scrolling the whole menu down just enough space to allow the new item to fade into the top spot? easy to do? do i need a plugin? i looked around and what i don't want is just a carousal type plugin...

Parsing google feed with linq to xml

Hi I'm trying to parse XML feed that I get via Google Contacts API with LINQ 2 XML. That's what feed looks like: <feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:gContact="http://schemas.google.com/contact/2008" xmlns:batch="http://schemas.google.com/gdata/batch" xmlns:gd="http:...

Model inheritance and RSS Feed framework

I'm using model inheritance to manage a multiple models queryset: from django.db import models from django.contrib.sites.models import Site from django.contrib.auth.models import User from imagekit.models import ImageModel import datetime class Entry(models.Model): date_pub = models.DateTimeField(default=datetime.datetime.now) ...