| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-29 | Do not allow FileSystemStorage.delete to receive an empty name | Claude Paroz | |
| Refs #20660. | |||
| 2013-06-29 | Fixed #20660 -- Do not try to delete an unset FieldFile | Claude Paroz | |
| Thanks stanislas.guerra at gmail.com for the report and Baptiste Mispelon for the review. | |||
| 2013-06-29 | Removed django.contrib.auth.views.password_reset_confirm_uidb36() view to ↵ | Ramiro Morales | |
| finish its accelerated deprecation schedule. | |||
| 2013-06-29 | Removed comment from setup.cfg which broke newer wheel versions. | Florian Apolloner | |
| 2013-06-29 | More import removals | Claude Paroz | |
| Following the series of commits removing deprecated features in Django 1.7, here are some more unneeded imports removed and other minor cleanups. | |||
| 2013-06-29 | Removed obsolete comment. Refs #20079. | Aymeric Augustin | |
| Thanks Gavin Wahl. | |||
| 2013-06-29 | Fixed 1.6 release notes. | Florian Apolloner | |
| 2013-06-28 | Removed django.utils.encoding.StrAndUnicode class, deprecated in Django 1.5. | Ramiro Morales | |
| 2013-06-28 | Made GeoDjango GeometryField stop accepting a 'null' keyword argument as per ↵ | Ramiro Morales | |
| its deprecation in 1.5. | |||
| 2013-06-28 | Removed insert(), value_for_insert() SortedDict methods deprecated in Django ↵ | Ramiro Morales | |
| 1.5. | |||
| 2013-06-28 | Removed 'mimetype' arguments from a few places, as per deprecation TL. | Ramiro Morales | |
| This includes HttpResponse and co. __init__() methods, django.shortcuts.render_to_response() and the index(), sitemap() sitemap app views. | |||
| 2013-06-28 | Removed 'depth' .select_related() argument as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed custom profile model functionality as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Stop auto-correcting string INSTALLED_APPS, TEMPLATE_DIRS settings, as per ↵ | Ramiro Morales | |
| deprecation TL. | |||
| 2013-06-28 | Removed 'cleanup' management command as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed django.utils.itercompat.product() as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed django.utils.simplejson as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed daily_cleanup.py script as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed AuthenticationForm.check_for_test_cookie() as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Removed warnings level handling code as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Added missing deprecation note for model permission methods. | Simon Charette | |
| refs #20642. | |||
| 2013-06-28 | Fix Python 3 support | Andrew Godwin | |
| 2013-06-28 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/__init__.py django/db/models/fields/related.py tests/field_deconstruction/tests.py | |||
| 2013-06-28 | Ported over Field.deconstruct() from my schema alteration branch. | Andrew Godwin | |
| This is to help other ongoing branches which would benefit from this functionality. | |||
| 2013-06-28 | Updated FAQ to reflect official Python 3 support | Claude Paroz | |
| 2013-06-28 | Updated FAQ entry about python 3 | Claude Paroz | |
| 2013-06-28 | Master is now pre-1.7. | Jacob Kaplan-Moss | |
| 2013-06-28 | Fixed missing slash in reusable apps tutorial. | Baptiste Mispelon | |
| 2013-06-28 | Support 'pyformat' style parameters in raw queries, Refs #10070 | Shai Berger | |
| Add support for Oracle, fix an issue with the repr of RawQuerySet, add tests and documentations. Also added a 'supports_paramstyle_pyformat' database feature, True by default, False for SQLite. Thanks Donald Stufft for review of documentation. | |||
| 2013-06-27 | Prevented running some admin_view tests twice. | Tim Graham | |
| 2013-06-27 | Fixed #20664 -- Fixed a bug with raw_id_fields on Python 3. | Tim Graham | |
| Thanks jefftriplett for the report. | |||
| 2013-06-27 | Fixed #20571 -- Added an API to control connection.needs_rollback. | Aymeric Augustin | |
| This is useful: - to force a rollback on the exit of an atomic block without having to raise and catch an exception; - to prevent a rollback after handling an exception manually. | |||
| 2013-06-27 | Merge pull request #1312 from kenbolton/klb/docs | Marc Tamlyn | |
| Fix typo | |||
| 2013-06-27 | Fix typo | Ken Bolton | |
| 2013-06-27 | Fixed #20244: PermissionsMixin now defines a related_query_name for M2Ms | Andrew Godwin | |
| 2013-06-27 | Docs for related_query_name | Andrew Godwin | |
| 2013-06-27 | Merge pull request #1311 from loic/ticket20619_take2 | Andrew Godwin | |
| Fixed missing initializations in WSGIRequest. Refs #20619 | |||
| 2013-06-27 | Fixed LOGGING setting docs | Claude Paroz | |
| 2013-06-27 | Add related_query_name to ForeignKey/M2M. Refs #20244 | Andrew Godwin | |
| 2013-06-27 | Fixed #20590: Documented new test case ordering | Andrew Godwin | |
| 2013-06-27 | Fixed #20541 -- don't raise db signals twice when creating superuser | Anton Baklanov | |
| 2013-06-27 | Fixed #20665 -- Missing backslash in sitemaps documentation | Baptiste Mispelon | |
| Thanks to roman for the report. | |||
| 2013-06-26 | Merge pull request #1309 from treyhunner/patch-1 | Simon Charette | |
| Add missing preposition in documentation. | |||
| 2013-06-26 | Add missing preposition in documentation | Trey Hunner | |
| 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-26 | Merge pull request #1308 from loic/ticket20462 | Tim Graham | |
| Fixed #20462 - Replaced the str() cast introduced in 273dc55 by force_text() | |||
| 2013-06-26 | Fixed #20462 - Replaced the str() cast introduced in 273dc55 by force_text() | Loic Bistuer | |
| 2013-06-26 | Fixed #20462 -- null/non-string regex lookups are now consistent | Andrew Clark | |
| Thanks to noirbizarre for the report and initial patch. | |||
| 2013-06-26 | Fixed #20658 -- Fixed bad reST formatting and missing parentheses in the ↵ | Loic Bistuer | |
| docs for CBV mixins Thanks to Keryn Knight for the report. | |||
| 2013-06-26 | Fixed missing initializations in WSGIRequest. Refs #20619 | Loic Bistuer | |
