Y! Pipes support for Prototype
Dojo did it about a month ago, they added support for Y! Pipes to dojo.io.bind. So I figured I should write a small wrapper that works like the Prototype Ajax.Request object (as I did a few months ago for Google Calendar) for Yahoo! Pipes. So here it is: YPipe Library 0.1.
To use it just find the id of the pipe you want to request, so if the URL of the pipe is something like this
http://pipes.yahoo.com/pipes/pipe.info?_id=vp9FNLji2xGA7PYxEpPZnA
then just take the bold part of it and create a new request just like this:
cal = new YPipe("vp9FNLji2xGA7PYxEpPZnA",{
onsuccess: someFunction
});
This immediately fires up the request and after completing the someFunction will be called with the first argument being the returned JSON-Object. It’s as simple as it gets
For a quick demo head over here.

