- remove old moderation view in favor of editable admin fields (requires Django 1.1)
- added a moderation_reason field
- always use auto_moderator if set, ignoring GATEKEEPER_ENABLE_AUTOMODERATION
- reformat emails
- add _gatekeeper attribute on GatekeeperQuerySet (for third party apps)
- BUGFIX: flag queries failing on postgres due to cast
- BUGFIX: import_unmoderated always found 0 objects to import
- use GatekeeperManager for related access
- BUGFIX: wrong id for link in moderation list
- BUGFIX: fix GH #1, SQL error in trying to moderate objects with a generic fk
addition of flagging
- new fields on ModeratedObject
- small changes to the admin
- new GATEKEEPER_STATUS_ON_FLAG setting
addition of custom manager and properties added to registered models
removal of gatekeeper.approved/rejected/pending (replaced by new filters on QuerySets)
ModeratedObject field names changed
- status - moderation_status
- moderation_by - moderated_status_by
- moderation_date - moderation_status_date
BUGFIX: use DEFAULT_FROM_EMAIL for sending mail (was hardcoded address)
BUGFIX: ModeratedObjectManager.get_for_instance
- initial release, moderation and admin integration