A Django app that provides generic per-object-permissions for Django's auth app and helpers to create custom permission checks.
Find a file
2009-07-10 19:12:54 +02:00
example Fixes issue #2 - Adds ability to pass non-lookup parameters in decorator to permission check. 2009-07-10 15:55:25 +02:00
src/authority Make sure the form validation says something about the super user having perms. 2009-07-10 19:12:54 +02:00
.hgignore Updates to hgignore 2009-06-08 12:06:29 +02:00
AUTHORS initial checkin with buildout and some other default files 2009-06-08 11:58:38 +02:00
bootstrap.py initial checkin with buildout and some other default files 2009-06-08 11:58:38 +02:00
buildout.cfg Add an alternative Django 1.0.2 section to the buildout. Use django-debug-toolbar's released version instead of latest development version. 2009-07-03 15:34:42 +02:00
LICENSE Added setup.py and LICENSE 2009-06-08 12:06:14 +02:00
MANIFEST.in Updated setup.py and manifest template 2009-07-10 01:09:42 +02:00
README test commit 2009-07-07 13:13:19 +02:00
setup.py Updated setup.py and manifest template 2009-07-10 01:09:42 +02:00

================
django-authority
================

This is a Django app for per-object-permissions that includes a bunch of
helpers to create custom permission checks.

To get the example project running do:

- Bootstrap the buildout by running::

    python bootstrap.py

- Get the required packages by running::

    bin/buildout

- Sync the database::

    bin/django syncdb

- Run the development server and visit the admin at http://127.0.0.1:8000/admin/::

    bin/django runserver

Now create a flatage and open it to see some of the templatetags in action.
Full docs coming soon.

Please use http://bitbucket.org/jezdez/django-authority/issues/ for issues and bug reports.