1

I am wondering whether this can be achieved by using Yahoo Pipes?

  1. fetch two RSS feeds
  2. compare item.title fields of both feeds
  3. replace item.content with combined content of item.content fields if found similar item.title
n0n4m3
  • 21
  • 3

1 Answers1

1

Yes it is possible but will need to involve a subpipe (pipe2 called from pipe1)...

Pipe2- This will takes a string input item title... Will "get Feed2"... filter off items whose title not equal to input item title... return the matching item.

Pipe1 - this will "get Feed1" and loop through all the items passing item title to Pipe2... the result from pipe2, if any, will be in node as loop:anything... add content from there to the content of feed1

Drawback: Theoretically feed2 will be called n number of times where 'n' is number of items in feed1... practically Yahoo pipes use cache so should not be a problem...

Jalaj Jha
  • 109
  • 1
  • I am scratching my head... I would really appreciate if you could draw sample pipe. I tried all possible variants and could not make it work. – n0n4m3 Nov 26 '11 at 00:35
  • Just tried again with a fresh head and it works exactly as I wanted! **bold**Thank you so much! – n0n4m3 Nov 26 '11 at 19:58
  • sorry didn't notice your request on time... feeling good that it helped you – Jalaj Jha Nov 29 '11 at 04:25