A super simple wiki app written in Python using the Django Framwork
Project description
django-wakawka is a super simple wiki system written in Python using the Django framework. A sample installation is available under:
http://wakawaka.mahner.org/
Log in with the username admin and the password admin.
Installation:
Put wakawaka to your INSTALLED_APPS in your settings.py within your django project.
Add (r’^wiki/’, include(‘wakawaka.urls’)), to your urls.py.
That’s all. Wakawaka has no other dependencies than Django 1.0 (or Django 1.1, currently known as trunk)
Configuration:
Wakawaka takes care of Django’s permission system. Grant your users always a pair of wikipage and revision permissions either what they should do. (Adding, changing or deleting WikiPages)
Optional Configuration:
The name of your first wiki page is defined as WikiIndex. You can change this by adding a setting WAKAWAKA_DEFAULT_INDEX to your settings.py. Example:
WAKAWAKA_DEFAULT_INDEX = 'Home'
Words that are written in CamelCase (a pair of one upper letter followed by n lower letters) are automatically treated as internal wiki links. You can change this behaviour by adding a setting WAKAWAKA_SLUG_REGEX to your settings.py. This holds a regular expression of the wiki name format. Default:
WAKAWAKA_SLUG_REGEX = r'((([A-Z]+[a-z]+){2,})(/([A-Z]+[a-z]+){2,})*)'
Attachments:
Wakawaka does not provide the ability to store file attachments to wiki pages. To do so, have a look on the side project django-attachments which provides a unobstrusive way to add attachments to models.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-wakawaka-0.1.1.tar.gz
.
File metadata
- Download URL: django-wakawaka-0.1.1.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 783873f1bee58164347709b6721365383085d748ce5c435cef4099a615f87e9b |
|
MD5 | 020249cdb118aec345e4a1c2f4bc4e9f |
|
BLAKE2b-256 | 9be8726855b3c8d320c37fa575f15e994bd39858527c1d58fb321e09b2c267f1 |