Building wiki on top of a restful application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:46:53Z http://stackoverflow.com/feeds/question/907454 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/907454/building-wiki-on-top-of-a-restful-application 0 Building wiki on top of a restful application LiorH 2009-05-25T17:16:50Z 2009-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#907473 0 Answer by Charlie Martin for Building wiki on top of a restful application Charlie Martin 2009-05-25T17:24:44Z 2009-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#907533 0 Answer by Peter Stuifzand for Building wiki on top of a restful application Peter Stuifzand 2009-05-25T17:51:25Z 2009-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#907808 0 Answer by jmucchiello for Building wiki on top of a restful application jmucchiello 2009-05-25T19:33:13Z 2009-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#1005287 0 Answer by Colas Nahaboo for Building wiki on top of a restful application Colas Nahaboo 2009-06-17T05:43:16Z 2009-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>