| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-28 | Fixed doc typos. | Tim Graham | |
| 2014-02-25 | Fixed docs typos. | Szczepan Cieślik | |
| 2014-02-19 | Fixed #22093 -- Made Form.Meta.fields examples consistent. | Tim Graham | |
| Thanks david-schultz at gmx.net for the suggestion. | |||
| 2014-02-13 | Fixed #21951 -- Updated docs to use __str__ for Python 3 | Alasdair Nicol | |
| Thanks Tim Graham for the report and recommendations | |||
| 2014-01-26 | Moved RequestSite and get_current_site. | Aymeric Augustin | |
| Following the app-loading refactor, these objects must live outside of django.contrib.sites.models because they must be available without importing the django.contrib.sites.models module when django.contrib.sites isn't installed. Refs #21680. Thanks Carl and Loic for reporting this issue. | |||
| 2014-01-25 | Fixed #21829 -- Added default AppConfigs. | Aymeric Augustin | |
| Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion. | |||
| 2014-01-22 | Fixed #20834 -- Described how caching of user permissions works. | Tim Graham | |
| Thanks Giggaflop and Jennifer Casavantes. | |||
| 2014-01-22 | Fixed #21726 -- Clarified that password should not be included in ↵ | Tim Graham | |
| REQUIRED_FIELDS. Thanks russellm for the report. | |||
| 2014-01-17 | Removed some unnecessary __exact operators in filters. | Tim Graham | |
| 2014-01-16 | Fixed #21727 -- Added some links to help clarify topics/auth/default.txt | Tim Graham | |
| Thanks daGrevis for the suggestion. | |||
| 2014-01-04 | Fixed #21730 -- Removed superfluous db_index in custom auth docs | Claude Paroz | |
| Thanks rafalp for the report. | |||
| 2013-11-24 | Fixed #21391 -- Allow model signals to lazily reference their senders. | Simon Charette | |
| 2013-11-07 | Removed no longer relevant word | Sylvain Bellemare | |
| 2013-11-01 | Fixed typo -- "a" user, not "an" user | Sylvain Bellemare | |
| 2013-10-30 | Fixed #21294 -- Clarified the logout next_page argument. | Tim Graham | |
| Thanks wim at go2people.nl for the report. | |||
| 2013-10-25 | Fixed #21325 -- Added missing argument to permission_required decorator. | Tim Graham | |
| 2013-10-21 | Added docs for the hasher's iteration count changes. | Tim Graham | |
| 2013-10-09 | Fixed grammar/typos in auth customization docs | Claude Paroz | |
| 2013-10-08 | Fixed #21164 -- Added documentation for issue with test users. | Russell Keith-Magee | |
| The package renaming restores the older package names (which were also the documented package names). This doesn't affect test discovery because the module in question doesn't contain any tests. Thanks to Carl for the design discussion. | |||
| 2013-09-18 | Fixed #21116 -- Made usage of manage.py in docs more consistent. | Tim Graham | |
| Thanks daniel.quattro at gmail.com for the report. | |||
| 2013-09-09 | Fixed #19885 -- cleaned up the django.test namespace | Kevin Christopher Henry | |
| * override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion. | |||
| 2013-09-06 | Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDS | Tim Graham | |
| Thanks craigbruce. | |||
| 2013-08-19 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: docs/ref/django-admin.txt | |||
| 2013-08-19 | Removed versionadded/changed annotations for 1.5 | Tim Graham | |
| 2013-08-15 | Fixed some ReST errors regarding backticks | Tim Graham | |
| 2013-08-10 | Fixed #20828 -- Allowed @permission_required to take a list of permissions | ersran9 | |
| Thanks Giggaflop for the suggestion. | |||
| 2013-08-09 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt | |||
| 2013-08-05 | Fixed #20832 -- Enabled HTML password reset email | Justin Michalicek | |
| Added optional html_email_template_name parameter to password_reset view and PasswordResetForm. | |||
| 2013-08-04 | Fixed #20855 -- Added documentation of current_app and extra_context params ↵ | Justin Michalicek | |
| to django.contrib.auth views refs #5298 and refs #8342 | |||
| 2013-07-31 | Fixed #12103 -- Added AuthenticationForm.confirm_login_allowed to allow ↵ | Tim Graham | |
| customizing the logic policy. Thanks ejucovy and lasko for work on the patch. | |||
| 2013-07-25 | More migration docs, and conversion of all easy syncdb references | Andrew Godwin | |
| 2013-07-18 | Fixed #20762 -- Clarified that add_fieldsets is not a standard ModelAdmin ↵ | Tim Graham | |
| attribute. | |||
| 2013-07-13 | Fixes grammatical error in auth docs | David Binetti | |
| Changes "An error will be raise if you try..." to "An error will be raised if you try..." | |||
| 2013-07-11 | Fixed #20730 -- Fixed "Programmatically creating permissions" error. | Tim Graham | |
| Thanks glarrain for the report. | |||
| 2013-07-05 | Fixed #20224 -- Update docs examples which mention __unicode__ | Claude Paroz | |
| Thanks Marc Tamlyn and Tim Graham for the review. | |||
| 2013-07-04 | Fixed #20134 -- Correct list of fields that UserManager requires. | Tim Graham | |
| Thanks semenov and pegler. | |||
| 2013-06-28 | Removed custom profile model functionality as per deprecation TL. | Ramiro Morales | |
| 2013-06-26 | Fixed #14881 -- Modified password reset to work with a non-integer UserModel.pk. | Tim Graham | |
| uid is now base64 encoded in password reset URLs/views. A backwards compatible password_reset_confirm view/URL will allow password reset links generated before this change to continue to work. This view will be removed in Django 1.7. Thanks jonash for the initial patch and claudep for the review. | |||
| 2013-06-19 | Fixed broken reference in documentation. | Baptiste Mispelon | |
| 2013-06-18 | Fixed #20593 -- Allow blank passwords in check_password() and set_password() | Erik Romijn | |
| 2013-05-29 | Don't hard-code class names when calling static methods | Gavin Wahl | |
| normalize_email should be called on the instance, not the class. This has the same effect normally but is more helpful to subclassers. When methods are called directly on the class, subclasses can't override them. | |||
| 2013-05-19 | Fixed some line wrapping, refs #20233 | Tim Graham | |
| 2013-05-19 | refs #20233 - Full custom user model example isn't really full | postrational | |
| Addition and fix for custom user model example documentation. https://code.djangoproject.com/ticket/20233 | |||
| 2013-05-17 | Fixed #20426 -- Added some extra info to the auth forms. | Florian Apolloner | |
| Thanks to Joel Hansson for the suggestion and Curtis Maloney for the initial patch. | |||
| 2013-05-13 | Recommend using the bcrypt library instead of py-bcrypt | Donald Stufft | |
| * py-bcrypt has not been updated in some time * py-bcrypt does not support Python3 * py3k-bcrypt, a port of py-bcrypt to python3 is not compatible with Django * bcrypt is supported on all versions of Python that Django supports | |||
| 2013-05-11 | Update customizing.txt | zhongqi | |
| The origin statement "which could be ... or whatever" **misguides** many newbies like me. In fact, the ``login`` function in ``contrib.auth`` stores ``user.pk`` in session, then ``get_user`` function in ``contrib.auth`` gets ``user.pk`` in session and then passes it to your custom ``get_user`` as ``user_id``. Which means, ``user_id`` prarameter in your custom ``get_user`` has to be the primary key of ``User`` object, too. | |||
| 2013-05-09 | Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵ | Luke Plant | |
| added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute. | |||
| 2013-04-20 | Adapted uses of versionchanged/versionadded to the new form. | Juan Catalano | |
| Refs #20104. | |||
| 2013-03-26 | Fix a missing " character in the password documentation | Donald Stufft | |
| 2013-03-26 | Fixed #20138 -- Added BCryptSHA256PasswordHasher | Donald Stufft | |
| BCryptSHA256PasswordHasher pre-hashes the users password using SHA256 to prevent the 72 byte truncation inherient in the BCrypt algorithm. | |||
