Packaged from revision 89 in Subversion; download at
http://django-registration.googlecode.com/files/registration-0.3.tar.gz
- Changed `register` and `activate` views to accept
`template_name` keyword argument for selecting a custom template.
- Changed `register` view to accept `form_class` keyword
argument specifying the form to use.
- BACKWARDS-INCOMPATIBLE CHANGE: Changed
`RegistrationManager.create_inactive_user` to use a template for
the subject of the activation email.
- BACKWARDS-INCOMPATIBLE CHANGE: Removed the `tos` field from
`RegistrationForm`; if you were relying on it, switch to using
`RegistrationFormTermsOfService` instead.
- BACKWARDS-INCOMPATIBLE CHANGE: The activation email template now
receives the current `Site` object as the context variable
`site`, and the `current_site` variable, which only held the
domain, is no longer available.
- Added script `bin/delete_expired_users.py` with instructions on
how to use it as a cron job to clean up expired/inactive accounts.
- Marked strings for translation and added `locale` directory so
that translations can be added.
- Updated to deal with merge of Django's Unicode branch into trunk;
now using Unicode-aware functions everywhere.