Question

I've got an application developed on top of DokuWiki. I'd like to provide a 'News' page providing the latest updates from the internal RSS feed, some other feeds maintained in Serendipity and potentially other locations.

Although its trivial to attach feed parsers to each one individually, I'd like to aggregate this into a single list (possibly a single RSS feed).

Both the DokuWiki and Serendipity servers are not connected to the internet - so I can't use an external service for this - looking for code.

Anybody got any ideas?

TIA

C.

Was it helpful?

Solution

DokuWiki already comes with the SimplePie feed aggregation library so you can use that without the need for any additional libraries. Some tips on how to merge two feeds can be found in their documentation:

OTHER TIPS

Basically speaking, you'll have to :

  • Fetch the entries from both feeds
  • Merge them into an array of entries
  • Create a new feed, with your own headers, and containing those entries.


A couple of tools that could probably help :

And you might want to take a look at padraic / ZFPlanet : it's an aggregator -- there are probably some ideas in there that could help you get started ;-)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top