Metadata-Version: 1.1
Name: mezzanine-wiki
Version: 0.3
Summary: Wiki app for Mezzanine content management platform.
Home-page: UNKNOWN
Author: Landon Wark
Author-email: lando.wark@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Description: ========
        Overview
        ========
        
        Wiki application for Mezzanine.
        
        Features:
        
        - markdown syntax with [[Wiki links]] extension
        - page history and diff viewing
        
        Requirements:
        
        - Mezzanine >= 4.2.3
        - markdown
        - diff-match-patch
        
        
        =========
        Mezzanine
        =========
        
        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://mezzanine.jupo.org
        
        http://github.com/stephenmcd/mezzanine
        
        
        ===========
        This Fork
        ===========
        
        This fork borrows heavily from the original project https://github.com/dfalk/mezzanine-wiki.
        Essentially the only changes are: updating the views to Class based, removing South
        as the db and tweaking the urls.
        
        ===========
        Quick start
        ===========
        
        1. Activate your virtualenv (if applicable). Install mezzanine-wiki with "pip install mezzanine-wiki":
        
        2. Add "mezzanine_wiki" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'mezzanine_wiki',
            )
            
        3. Add "mezzanine_wiki.WikiPage" to SEARCH_MODEL_CHOICES setting like this:
        
            SEARCH_MODEL_CHOICES = ('pages.Page', 'blog.BlogPost', 'mezzanine_wiki.WikiPage')
        
        4. Include the wiki URLconf in your project urls.py like this::
        
            url(r'^wiki/', include('mezzanine_wiki.urls')),
        
        5. Run `python manage.py migrate` to create the wiki models.
        
        6. Restart server.
        
        6. Visit /wiki/ to use the wiki. 
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
