简体   繁体   中英

How to produce a merged RSS feed (from DokuWiki and Serendipity)

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.

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 ;-)

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:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM