| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-01 | Removed unused model option "admin" | Tim Graham | |
| 2013-07-31 | Fixed #20649 -- Allowed blank field display to be defined in the initial ↵ | Alex Couper | |
| list of choices. | |||
| 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-31 | Fixed #19987 -- Disabled host validation when DEBUG=True. | Will Hardy | |
| The documentation promises that host validation is disabled when DEBUG=True, that all hostnames are accepted. Domains not compliant with RFC 1034/1035 were however being validated, this validation has now been removed when DEBUG=True. Additionally, when DEBUG=False a more detailed SuspiciousOperation exception message is provided when host validation fails because the hostname is not RFC 1034/1035 compliant. | |||
| 2013-07-31 | Fixed #20826 -- Moved Manager.raw() and Manager._insert() to the QuerySet class. | Loic Bistuer | |
| 2013-07-31 | Fixed #15624 -- Made sure aggregations are present in SELECT | Florian Hahn | |
| 2013-07-31 | Added field.attname to Options.name_map | Anssi Kääriäinen | |
| The change also removed allow_explicit_fk from sql/query.py. | |||
| 2013-07-31 | Fixed #20348 -- Consistently handle Promise objects in model fields. | Tai Lee | |
| All Promise objects were passed to force_text() deep in ORM query code. Not only does this make it difficult or impossible for developers to prevent or alter this behaviour, but it is also wrong for non-text fields. This commit changes `Field.get_prep_value()` from a no-op to one that resolved Promise objects. All subclasses now call super() method first to ensure that they have a real value to work with. | |||
| 2013-07-31 | Fixed #20793 -- Added Last-Modified header to sitemaps. | Julian Bez | |
| 2013-07-31 | Fixed #20819 -- Return 404 instead of 500 error when ``staticfiles`` view is ↵ | Tai Lee | |
| used in production. | |||
| 2013-07-30 | Fixed #20806 -- Cached loader caches find_template | Gavin Wahl | |
| The cached template loader should cache find_template in addition to load_template. | |||
| 2013-07-30 | Fixed #10491 -- Allowed passing lazy objects to HttpResponseRedirect. | Baptiste Mispelon | |
| Thanks liangent for the report. | |||
| 2013-07-30 | Added support for IPython.start_ipython in shell | MinRK | |
| IPython 1.0 introduces an actual stable public API function for starting a normal (non-embedded) IPython session. This is an official public API, which is promised to survive implementation changes. | |||
| 2013-07-30 | Updated flatpages tests to override CSRF_FAILURE_VIEW. | Kirill Zaitsev | |
| 2013-07-30 | Fixed a test that could fail depending on PASSWORD_HASHERS. | Aymeric Augustin | |
| Thanks Claude. Refs #20760. | |||
| 2013-07-30 | Fixed #19877 -- Added `--no-color` option to `BaseCommand` to avoid using ↵ | Jose L. Patino | |
| output styles. | |||
| 2013-07-30 | Implement allow_migrate for migration operations | Andrew Godwin | |
| 2013-07-30 | Rename allow_syncdb to allow_migrate | Andrew Godwin | |
| 2013-07-30 | Rename pre_ and post_syncdb to *_migrate, with aliases from old names | Andrew Godwin | |
| 2013-07-30 | Updated some minified admin javascript files. | Julien Phalip | |
| 2013-07-30 | Fixed #19082 -- Enabled admin field pre-population for existing objects. | Julien Phalip | |
| Thanks to msaelices and d1ffuz0r for the initial patch and tests. | |||
| 2013-07-30 | Fixed #20785 -- Corrected exception caught for Oracle LIKE operator detection | Shai Berger | |
| The code that tests to see which LIKE expressions to use now runs using non-error-wrapped cursor, so cx_Oracle exceptions need to be caught rather than Django DatabaseErrors. Thanks Trac user ludo for report and initial patch. | |||
| 2013-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-07-29 | Fixed #14850 -- Cleaned up duplicate code in admin formset handling. | Tim Graham | |
| Thanks apollo13 for the report and review. | |||
| 2013-07-29 | Deprecated django.utils.importlib | Claude Paroz | |
| This was a shim for pre-Python 2.7 support. | |||
| 2013-07-29 | Fixed #20817 -- Added html_message parameter to django.core.mail.send_mail() | Justin Michalicek | |
| 2013-07-29 | Fixed #18213 -- Allowed empty fixtures (emit a warning rather than raising ↵ | Przemek Lewandowski | |
| an exception). | |||
| 2013-07-28 | Simplified smart_urlquote and added some basic tests. | Florian Apolloner | |
| 2013-07-27 | Fixed #11195 -- Added CSS classes to the changelist cells to allow style ↵ | Julien Phalip | |
| customizations. Thanks to akaihola, Ramiro Morales and vdboor for their work on the patch. | |||
| 2013-07-27 | Fixed a number of minor misspellings. | Julien Phalip | |
| 2013-07-27 | Fixed #18511 -- Cleaned up admin password reset template titles. | Serge G. Spaolonzi | |
| 2013-07-26 | Fixed #20805 -- Removed an extra colon beside checkboxes in the admin. | Tim Graham | |
| Thanks CollinAnderson for the report. | |||
| 2013-07-26 | Fix Python 3 support | Andrew Godwin | |
| 2013-07-26 | Fix "OK" alignment in migrate output | Andrew Godwin | |
| 2013-07-26 | Add --fake option to migrate | Andrew Godwin | |
| 2013-07-26 | Fix timezone warnings if USE_TZ=True | Andrew Godwin | |
| 2013-07-26 | Prettier imports | Andrew Godwin | |
| 2013-07-26 | Use new transaction API in syncdb section of migrate | Andrew Godwin | |
| 2013-07-26 | Remove nasty error message checking hack | Andrew Godwin | |
| 2013-07-26 | Updated contrib.admin to use Email/URLInputs; refs #16630 | Tim Graham | |
| 2013-07-26 | Fixed related model lookup regression | Anssi Kääriäinen | |
| It has been possible to use models of wrong type in related field lookups. For example pigs__in=[a_duck] has worked. Changes to ForeignObject broke that. It might be a good idea to restrict the model types usable in lookups. This should be done intentionally, not accidentally and without any consideration for deprecation path. | |||
| 2013-07-26 | Fixed #20625 -- Chainable Manager/QuerySet methods. | Loic Bistuer | |
| Additionally this patch solves the orthogonal problem that specialized `QuerySet` like `ValuesQuerySet` didn't inherit from the current `QuerySet` type. This wasn't an issue until now because we didn't officially support custom `QuerySet` but it became necessary with the introduction of this new feature. Thanks aaugustin, akaariai, carljm, charettes, mjtamlyn, shaib and timgraham for the reviews. | |||
| 2013-07-25 | Fixed #20679 -- Corrected CachedFilesMixin.post_process docstring. | Tim Graham | |
| Thanks bmispelon for the report. | |||
| 2013-07-25 | Add test for creating M2Ms | Andrew Godwin | |
| 2013-07-25 | Fixed ._meta.pk_index() virtual field failure | Anssi Kääriäinen | |
| 2013-07-25 | Add tests for the migrate command and fix a bug they exposed | Andrew Godwin | |
| 2013-07-24 | Fixed #20766 -- Deprecated FastCGI support. | Tim Graham | |
| 2013-07-24 | Fixed #14300 -- Fixed initial SQL location if models is a package. | Tim Graham | |
| Thanks al_the_x for the report and fheinz for the draft patch. | |||
| 2013-07-23 | Fixed #10284 -- ModelFormSet.save(commit=False) no longer deletes objects | Tim Graham | |
| Thanks laureline.guerin@ and Wedg. | |||
| 2013-07-23 | Fixed #20761 -- Reworded ForeignKey default error message | ersran9 | |
