Building wiki on top of a restful application - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T03:46:53Zhttp://stackoverflow.com/feeds/question/907454http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/907454/building-wiki-on-top-of-a-restful-application0Building wiki on top of a restful applicationLiorH2009-05-25T17:16:50Z2009-06-17T05:43:16Z
<p>Does anybody know a wiki engine that can be built on top of a RESTful application?
I have a restful application, that exposes a document resource,
I want the wiki engine to use the REST API to persist the documents, instead of saving them to a DB.
I am also open for suggestions of an open-source wiki engines that can be easily modified to support such functionality.</p>
http://stackoverflow.com/questions/907454/building-wiki-on-top-of-a-restful-application/907473#9074730Answer by Charlie Martin for Building wiki on top of a restful applicationCharlie Martin2009-05-25T17:24:44Z2009-05-25T17:24:44Z<p>Okay, this is a puzzler. Wikis in general are more or less the canonical example of a RESTful approach. The page name names a resource. What do you want that isn't in, eg, Twiki?</p>
http://stackoverflow.com/questions/907454/building-wiki-on-top-of-a-restful-application/907533#9075330Answer by Peter Stuifzand for Building wiki on top of a restful applicationPeter Stuifzand2009-05-25T17:51:25Z2009-05-25T17:51:25Z<p>While you could try to find a wiki that can use a REST backend, it may be better to write a small wiki yourself. Because even though a your backend has REST interface, that doesn't mean you can put some other application in front of it.</p>
http://stackoverflow.com/questions/907454/building-wiki-on-top-of-a-restful-application/907808#9078080Answer by jmucchiello for Building wiki on top of a restful applicationjmucchiello2009-05-25T19:33:13Z2009-05-25T19:33:13Z<p>dokuwiki does not use a database. It is a filesystem based wiki. I don't know its internal code structure but you might be able to use it as your base.</p>
http://stackoverflow.com/questions/907454/building-wiki-on-top-of-a-restful-application/1005287#10052870Answer by Colas Nahaboo for Building wiki on top of a restful applicationColas Nahaboo2009-06-17T05:43:16Z2009-06-17T05:43:16Z<p>As Wikis were originally designed to work in a standard browser, and most browsers did not support anything except GET and POST, REST is not a concept used a lot on the wiki world. However, nowadays, some wikis (foswiki - the community fork of TWiki for instance) provide you a REST API to it <a href="http://foswiki.org/System/CommandAndCGIScripts#rest" rel="nofollow">http://foswiki.org/System/CommandAndCGIScripts#rest</a> ). </p>
<p>But you need the opposite: a wiki with a customizable backend (storage) that could be plugged on top of a REST storage service. As wikis with a pluggable backend, I know only of pmwiki <a href="http://www.pmwiki.org/wiki/PmWiki/PmWiki" rel="nofollow">http://www.pmwiki.org/wiki/PmWiki/PmWiki</a> and foswiki (the open fork of TWiki) <a href="http://foswiki.org" rel="nofollow">http://foswiki.org</a>.</p>