| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-10-25 | [1.5.x] Sphinx conf to 1.5 alpha 1.1.5a1 | James Bennett | |
| 2012-10-25 | [1.5.x] Make 1.5 alpha release notes consistent with previous pre-release ↵ | James Bennett | |
| versions. | |||
| 2012-10-25 | [1.5.x] We actually only support 3.2+ on Py3k. | James Bennett | |
| 2012-10-25 | [1.5.x] Bump version information and classifiers for 1.5 alpha release. | James Bennett | |
| 2012-10-25 | Tweaked tense of URL tag changes for clarity | Preston Holmes | |
| 2012-10-25 | Added release notes for Django 1.5 alpha 1. | Jacob Kaplan-Moss | |
| Also updated 1.5-proper release notes a bit. | |||
| 2012-10-25 | Fixed regression caused by #19102 | Anssi Kääriäinen | |
| 2012-10-25 | Fixed #19187 -- Raise consistent error from qs.values().delete() | Anssi Kääriäinen | |
| 2012-10-25 | Added docstring to DeleteQuery.delete_qs() | Anssi Kääriäinen | |
| 2012-10-25 | Fixed #19102 -- Fixed fast-path delete for modified SELECT clause cases | Anssi Kääriäinen | |
| There was a bug introduced in #18676 which caused fast-path deletes implemented as "DELETE WHERE pk IN <subquery>" to fail if the SELECT clause contained additional stuff (for example extra() and annotate()). Thanks to Trac alias pressureman for spotting this regression. | |||
| 2012-10-25 | Fixed #18796 -- Refactored conversion to bytes in HttpResponse | Aymeric Augustin | |
| Thanks mrmachine for the review. | |||
| 2012-10-24 | Remove a case that is no longer reachable in encodings.py. | Alex Gaynor | |
| This case was originally designed to handle Exception's which didn't gracefully support coercing themselves to unicode. However, because it lives in the `else` case of `if hasattr(s, '__unicode__'):` we can be sure it's no longer reachable in djanog anymore, because since Python 2.5 exception has subclassed object, which means Exception objects always have an __unicode__ method. | |||
| 2012-10-24 | Fixed #9471 - Expanded ModelAdmin.raw_id_fields docs; thanks adroffne for ↵ | Tim Graham | |
| the suggestion. | |||
| 2012-10-24 | Removed a function that is already fully implemented by a base class. | Alex Gaynor | |
| 2012-10-24 | Fixed #13222 -- Made HttpResponse iterable once | Aymeric Augustin | |
| response.content can be accessed many times as desired, and always returns the same result. iter(response) works only once and consumes the iterator. | |||
| 2012-10-24 | Fixed #6527 -- Provided repeatable content access | Aymeric Augustin | |
| in HttpResponses instantiated with iterators. | |||
| 2012-10-24 | Fixed a DeprecationWarning under Python 3. | Aymeric Augustin | |
| 2012-10-24 | Fixed #19176 -- Typo in copy-pasted error message. | Aymeric Augustin | |
| Thanks maxirobaina for the report. | |||
| 2012-10-23 | Fixed #19088 -- Always escape % inside blocktrans tag | Claude Paroz | |
| Thanks vlinhart for the report and Łukasz Rekucki for the patch. | |||
| 2012-10-22 | Fixed #19164 -- Fixed diffsettings command broken in fix for #18545. | Carl Meyer | |
| Thanks Mario César for the report and draft patch. | |||
| 2012-10-23 | Reverted 6a64822bf4632707212314a25a843c862bdb3874. | Aymeric Augustin | |
| This commit caused every test that does two or more assertContains to fail, because of #6527. It also made HttpResponse non-pickleable. Refs #13222. | |||
| 2012-10-22 | Merge pull request #460 from JanBednarik/ticket_19162 | Aymeric Augustin | |
| Fixed #19162 -- Wrong indentation. | |||
| 2012-10-22 | Fixed #13222 -- Repeated iteration of HttpResponse | Aymeric Augustin | |
| Thanks teepark for the report and grahamd for his insights. | |||
| 2012-10-22 | Fixed #19162 -- Wrong indentation. | Jan Bednařík | |
| 2012-10-22 | Cleaned up i18n regression tests | Claude Paroz | |
| 2012-10-22 | Fixed #19157 -- Removed test-only string from translatable strings | Claude Paroz | |
| Thanks Alexey Boriskin for the report. Refs #18240. | |||
| 2012-10-21 | Removed inaccurate statement from the StreamingHttpResponse docs. | Aymeric Augustin | |
| Iterators will be closed for both regular and streaming responses; this shouldn't be described as a difference. | |||
| 2012-10-21 | Added tests for conditional_content_removal. | Aymeric Augustin | |
| Refs #7581. Thanks mrmachine. | |||
| 2012-10-21 | Cleaned up the the http module. Moved all of the code from __init__.py to ↵ | Alex Gaynor | |
| request.py, response.py and utils.py | |||
| 2012-10-21 | Merge pull request #457 from JanBednarik/ticket_19142 | Claude Paroz | |
| Fixed #19142 -- Language codes can include numbers (RFC 3066) | |||
| 2012-10-21 | Added 1.4.2 release notes | Preston Holmes | |
| 2012-10-21 | Updated error message for bad database engine | Preston Holmes | |
| removing typo in the process. Thanks to Carlos Palol for the catch. Closes pull 450 | |||
| 2012-10-20 | Merge pull request #444 from mitar/patch-2 | Alex Gaynor | |
| Allow reversed iteration over SortedDict. | |||
| 2012-10-21 | Fixed #19142 -- Language codes can include numbers (RFC 3066). | Jan Bednařík | |
| 2012-10-20 | Merge pull request #456 from JanBednarik/ticket_19151 | Alex Gaynor | |
| Fixed #19151 -- Added missing methods to EmptyQuerySet. | |||
| 2012-10-21 | Fixed #19151 -- Added missing methods to EmptyQuerySet. | Jan Bednařík | |
| Added values() and values_list() methods to EmptyQuerySet. | |||
| 2012-10-20 | Used @override_settings in several tests. | Aymeric Augustin | |
| 2012-10-20 | Fixed #13869 - Warned that QuerySet.iterator() doesn't affect DB driver ↵ | Tim Graham | |
| caching; thanks jtiai for the suggestion. | |||
| 2012-10-20 | Fixed #7581 -- Added streaming responses. | Aymeric Augustin | |
| Thanks mrmachine and everyone else involved on this long-standing ticket. | |||
| 2012-10-20 | Fixed arguments for get_inline_instances example; refs #17856 | Tim Graham | |
| 2012-10-20 | Used FakePayload in requests tests | Claude Paroz | |
| 2012-10-20 | Fixed #17856 -- Passed obj to get_inline_instances | Aymeric Augustin | |
| Thanks ybon, quinode and sjaensch for the patch, and Tim Graham for the review. | |||
| 2012-10-20 | Fixed #19094 -- Improved FakePayload to support write, len and string input | Claude Paroz | |
| Thanks Ondrej Slinták for the suggestion. | |||
| 2012-10-20 | Fixed #5611 -- Restricted accepted content types in parsing POST data | Claude Paroz | |
| Thanks paulegan for the report and Preston Holmes for the review. | |||
| 2012-10-20 | Fixed #17006 - Documented ModelAdmin get_form() and get_formsets() | Tim Graham | |
| 2012-10-20 | Removed custom WSGIRequestHandler.get_environ | Claude Paroz | |
| We probably historically customized it for good reasons, but currently, the differences with upstream Python are not significant any longer. Also fixes #19075 for which a test has been added. | |||
| 2012-10-20 | Separated GIS installation docs in sections | Claude Paroz | |
| 2012-10-20 | Fixed #19150 -- Added validation for USERNAME_FIELD being included in ↵ | Russell Keith-Magee | |
| REQUIRED_FIELDS. Thanks to Chris Pagnutti for the suggestion. | |||
| 2012-10-20 | Fixed #19133 -- Corrected regression in form handling for user passwords. | Russell Keith-Magee | |
| Thanks to pressureman for the report, and to Preston Holmes for the draft patch. | |||
| 2012-10-19 | Fixed #17388 - Noted in the custom model field docs that field methods need ↵ | Tim Graham | |
| to handle None if the field may be null. | |||
