Code Monkey home page Code Monkey logo

mezzanine-wiki's Introduction

Overview

This is a wiki application for Mezzanine, a content management platform using the Django framework. Its features are:

  • markdown syntax with [[Wiki links]] extension
  • page history and diff viewing

Its current requirements are:

  • mezzanine >= 4.0
  • markdown
  • diff-match-patch

Its former requirements are:

  • south (now deprecated as of Django>=1.7)

Quick start

  1. Download or clone and run:

    python setup.py install

  2. Add "mezzanine_wiki" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'mezzanine_wiki',
    )
  3. Run the following code to create the models:

    python manage.py makemigrations mezzanine_wiki python manage.py migrate

  4. Include the wiki URLconf in your project urls.py like this:

    url(r'^wiki/', include('mezzanine_wiki.urls')),

  5. Add "mezzanine_wiki.WikiPage" to SEARCH_MODEL_CHOICES setting like this:

    SEARCH_MODEL_CHOICES = ('pages.Page', 'blog.BlogPost', 'mezzanine_wiki.WikiPage')

  6. Restart the server.
  7. At this stage, you can visit the /wiki/ url, but it will give you a "You don't have permission to add new wiki pages." It helps if you create a mock web page first (using the admin panel), and then visit /wiki/ to set up a default Main page.
  8. Finally, add a new Rich Text Page with the name "Wiki". This will add the wiki to the menu.

mezzanine-wiki's People

Contributors

ar4s avatar dfalk avatar peterkmurphy avatar sanketdiwale avatar

Watchers

 avatar

Forkers

rcooke

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.