Skip to content
tin edited this page Mar 31, 2015 · 2 revisions

I'm really pleased to announce the first beta release of Waliki (v0.4.1), an extensible wiki engine powered by Django and Git.

https:/mgaitan/waliki/

At a glance, Waliki has these features:

  • File based content storage.
  • UI based on Bootstrap and CodeMirror
  • Version control and concurrent edition for your content using git
  • An extensible architecture with plugins
  • reStructuredText or Markdown support, configurable per page (and it's easy to add extensions)
  • A very simple per slug ACL system
  • A nice attachments manager (that respects the page permissions)
  • Realtime collaborative edition via togetherJS
  • Wiki content embeddable in any django template (as a "dummy CMS")
  • Few helpers to migrate content (particularly from MoinMoin, using moin2git)
  • It works with Python 2.7, 3.3, 3.4 or PyPy in Django 1.5 or newer (including 1.8b1)

It's easy to create a site powered by Waliki using the preconfigured project [1] which is the same code that motorize the demo:

http://waliki.pythonanywhere.com/

But also, Waliki works as a pluggable app, being easy to integrate it in your current django site. As an example, check the new Python Argentina Community's site [2]. See the docs to see how to start.

Waliki it's inspired in Github's wikis, but it tries to be a bit smarter than many others git backed wiki engines [3] at merging changes: instead of a hard "newer wins" or "page blocking" approaches, Waliki uses git's merge facilities on each save. So, if there was another change during an edition and git can merge them automatically, it's done and the user is notified. If the merge fails, the last edition is still saved but the editor is reloaded asking the user to fix the conflict.

I'll really appreciate your feedback and help in any way.

Best regards, Martín Gaitán

[1] https:/mgaitan/waliki/tree/master/waliki_project
[2] http://python.org.ar/wiki/
[3] https://waliki.pythonanywhere.com/Git-powered-wiki-engines
Clone this wiki locally