Create a wiki on top of a nice application
Does anyone know of a wiki engine that can be built on top of a RESTful application? I have a soothing app that provides a document resource, I want the wiki engine to use the REST API to save documents instead of storing them in the DB. I am also open to suggestions for open source wiki mechanisms that can be easily modified to support such functionality.
a source to share
Since Wikis was originally designed to run in a standard browser and most browsers didn't support anything other than GET and POST, REST is not a concept used in the wiki world. However, currently some wikis (foswiki is a fork of the TWiki community, for example) provide you with the REST API http://foswiki.org/System/CommandAndCGIScripts#rest ).
But you want the opposite: a wiki with a custom backend (storage) that can be plugged in on top of a REST storage service. As a wikis with a pluggable backend, I only know pmwiki http://www.pmwiki.org/wiki/PmWiki/PmWiki and foswiki (open fork of TWiki) http://foswiki.org .
a source to share