pubsubhubbub

Something like pubsubhubbub that does not depend on google app engine

I am looking for something like pubsubhubbub that does not depend on google app engine to run. What I need is a tool that can track for me a big very large number of rss or atom feeds and issue events when they are updated. ...

PHP: Pubsubhubbub and realtime information (for Subscriber)

Hi all, I started now with Pubsubhubbub (and all about realtime things), but I having trouble with the Subscriber option. I'm trying to develop a webapp in PHP to: Subscribe a RSS (previously Published) to the Hub (http://pubsubhubbub.appspot.com/); Read notifications (updates) from the Hub for the subscription; without succeed!!! :(...

historical data modelling literature, methods and techniques

Howdy, Last year we launched http://tweetMp.org.au - a site dedicated to Australian politics and twitter. Late last year our politician schema needed to be adjusted because some politicians retired and new politicians came in. Changing our db required manual (SQL) change, so I was considering implementing a CMS for our admins to make...

Supporting PubSubHubbub with PyRSS2Gen?

I'm using PyRSS2Gen to generate a RSS feed and I'm trying to support PubSubHubbub, but I need to add link elements that break RSS. Here's what should work without requiring a rewrite as Atom: <atom:link rel="hub" href="http://example.hub.com" xmlns:atom="http://www.w3.org/2005/Atom"&gt; <atom:link rel="self" href="http://example.com" x...

Getting pubsubhubbub hub working

I have followed the instructions found at code.google.com/p/pubsubhubbub/wiki/DeveloperGettingStartedGuide , however when I start the hub I get some warnings (http://pastie.org/853356), and when I point my browser to localhost:8080 I get a nasty exceptions.AttributeError thrown in my face ( http://pastie.org/853357 ) in browser & console...

Pubsubhubbub on Rails. How to extract the raw POST body contents from the POST request?

I am having trouble setting up a pubsub enabled subscriber app using rails. I have currently subscribed to the open hub pubsubhubbub.appspot.com and am receiving pings to my application's endpoint. (as of now i have created a counter which increments everytime the end point is pinged). But i am not able to understand as to how to extract...

chat application: pubsubhubbub vs xmpp

I'm unsure on the best stack to build a chat application. Currently I'm thinking of two main options: facebook tornado cons: does not use the main chat protocol xmpp but pubsubhubbub pros: i really like its simplicity for development (webserver + webframework); pubsubhubbub also seems simpler as a protocol than xmpp; and i know python...

Is it a good idea to implement chatroom like functionality via pubsubhub

Hi , Actually I want something between chatroom and stackoverflow ie users can ask questions and in my application generally many users will be on the same webpage now others can see the question in realtime and answer the same in realtime ie kind of chatroom type app. I want to implement it via pubsubhub any suggestions ideas if this ...

pubsubhubbub link with Project Rome

I want to use Project Rome to create an RSS feed, using the code from the tutorial as base. I would like to add a pubsubhubbub discovery link, but there doesn't seem to be a general way to do so. I can use a Link object if I create an atom feed (which I don't want to limit myself to), or I can just add foreign markup, like this: // imp...

Anyone know of an Erlang pubsubhubbub subscriber client?

Anyone know of an Erlang pubsubhubbub subscriber client? ...

PubSubHubBub Hubs

Hi, I'm currently building a live web application based upon the PubSubHubBub protocol. However, I encountered several issues. First, I'm in search of a hub application that I can run on my server. There are several applications, but most of them are not mature yet, or they don't support the 0.3 spec. The official google hub runs on th...

Where to do an HTTP request when a model changes and be able to send a url to access it with the request

I'm trying to implement a PuSH Publisher on rails. To do that I need to send an HTTP POST request to another server (a PuSH Hub) when my model updates and one of the parameters is a url to my feed (the model that changed). Where in rails (in the MVC) am I able to do this request when my model changes and can build the url to the changed...

Event search in subhub using lat/lon

Is there any sample php code to search event in subhub api using latitude and longitude value ...

Existing pubsubhubbub ajax proxy/bridge? (Like Google Feeds API v2 with Push)

I'm looking for a server side component, preferably java, that will allow me to subscribe to pubsubhubbub feeds through javascript. I understand that subscribers are server side applications in the standard rest/pubsubhubbub format, but Google seems to have created a ajax bridge that looks quite handy. Unfortunately, I'm dealing with da...

PubSub basics - lots of followers scenario?

Hi, I have a web app where users can follow one another. When one user publishes some action, I'd like that action to appear in the feeds of followers. A simple approach might be keeping a feed.xml file for each user, which is updated like: UserA is followed by UserB, UserC. UserA publishes some content. Update UserB, User...

Real time updates display like friend feed or twitter top tweets

Hello Everyone, I am using pubsubhubbub to receive the recent updates on the feed. As soon as callback url receives the update, it should displayed in the web page like friend feed or twitter top tweets (content will move down as soon as new content arrives). Is there any library to do this? Jquery? Callback url receives the updates i...

How to implement PubSubHubBub?

I am wondering how to implement PubSubHubBub in a PHP site.I don't understand it.Can you explain me? I don't get the idea. The publisher notifies the subscriber and the subscriber - my site? <?php // simple example for the PHP pubsubhubbub Subscriber // as defined at http://code.google.com/p/pubsubhubbub/ // written by Josh Fraser ...

Looking for open source javascript implementations of the pubhubsubbub protocol

What are the javascript open source implementations of the pubsubhubbub protocol publishing side first ...

How to request hubkey for pubsubhubbub

"Subscriber Usage: Up to to 1,000 feeds, for more usage request a HubKey." Source: http://www.rssmicro.com/pubsubhubbub.web How to request that HubKey? ...

How to use Superfeedr with PHP

Hello world!, I'm working on a project that parse a lot of RSS feeds, and I just discover Superfeedr it has a poor documentation in how to use their PubSubHubbub API with PHP. Please can anyone give me a good tutorial or an example how to use it to subscribe to any feed? Thank you, ...