Wiki application for Mezzanine.
Features:
- markdown syntax with [[Wiki links]] extension
- page history and diff viewing
Requirements:
- mezzanine >= 3.1
- markdown
- diff-match-patch
- south
Mezzanine is a content management platform built using the Django framework. It is BSD licensed and designed to provide both a consistent interface for managing content, and a simple, extensible architecture that makes diving in and hacking on the code as easy as possible.
Visit the Mezzanine project page to see some of the great sites people have built using Mezzanine.
http://github.com/stephenmcd/mezzanine
Add "mezzanine_wiki" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'mezzanine_wiki', )
Add "mezzanine_wiki.WikiPage" to SEARCH_MODEL_CHOICES setting like this:
SEARCH_MODEL_CHOICES = ('pages.Page', 'blog.BlogPost', 'mezzanine_wiki.WikiPage')
Include the wiki URLconf in your project urls.py like this:
url(r'^wiki/', include('mezzanine_wiki.urls')),
Run python manage.py migrate to create the wiki models.
Restart server.
Visit /wiki/ to use the wiki.