My favorites | Sign in
Project Logo
                
Feeds:
People details
Project owners:
  benjaoming
Project committers:
brycelampe

Contents

Introduction

Hierarchical, relational Wiki with permission system, revision control and file attachments. Much similar to Trac Wiki, but as opposed mainly to Media Wiki, tries not to put everything in one field, but has dynamic fields such as "related articles" (a property yet to be expanded, but thanks to our lovely Django, it's gonna be a breeze).

The application is made to be easy to integrate with existing websites. But you should keep in mind when extending and possibly overwriting models etc. that your version will become hard to update. This is relevant because simple-wiki is still under development.

Features

Help!

Please join the team or send patches! There's lots of room for improvements. See current issues for full inspiration or add your own.

One of the main features to be added, is search functionality.

Currently, contributions from people with JS and CSS experience are very appreciated. The frontend should have a better look-and-feel, still maintaining the general purpose. For instance by implementing a new frontend in JQuery.

Translations are not very handy at the moment, since many of the default messages are not properly worked out, and new messages will be added.

Requirements

Installation

$ svn checkout http://django-simple-wiki.googlecode.com/svn/trunk/ django-simple-wiki
$ svn export django-simple-wiki PATH_TO_DJANGO_PROJECT/simplewiki

Any subsequent updates can be made with svn up from the checkout dir, adding --force to the subversion export command. But beware that this overwrites any changes you have made to the source code.

To setup simple-wiki, add the following line to your urls.py. Please note, that simplewiki does not currently support installation in root directory (see issue 2). Also note the trailing slash.

    (r'^wiki/', include('simplewiki.urls')),

You need to create a symbolic link to the media files, that simple-wiki uses and make the attachment directory writable:

$ cd YOUR_MEDIA_ROOT
$ ln -s PATH_TO_DJANGO_PROJECT/simplewiki/media simplewiki
$ chmod 777 simplewiki/attachments

Demo

A demo can be found here: wikidemo.overtag.dk









Hosted by Google Code