| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | Test for `ListView.page_kwarg` | Tom Christie | |
| 2012-10-25 | Fixed #18796 -- Refactored conversion to bytes in HttpResponse | Aymeric Augustin | |
| Thanks mrmachine for the review. | |||
| 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-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 | Fixed #13222 -- Repeated iteration of HttpResponse | Aymeric Augustin | |
| Thanks teepark for the report and grahamd for his insights. | |||
| 2012-10-22 | Cleaned up i18n regression tests | Claude Paroz | |
| 2012-10-21 | Added tests for conditional_content_removal. | Aymeric Augustin | |
| Refs #7581. Thanks mrmachine. | |||
| 2012-10-21 | Merge pull request #457 from JanBednarik/ticket_19142 | Claude Paroz | |
| Fixed #19142 -- Language codes can include numbers (RFC 3066) | |||
| 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-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 #7581 -- Added streaming responses. | Aymeric Augustin | |
| Thanks mrmachine and everyone else involved on this long-standing ticket. | |||
| 2012-10-20 | Used FakePayload in requests tests | Claude Paroz | |
| 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 | 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-18 | Fixed #8001 -- Made redirections after add/edit in admin customizable. | Ramiro Morales | |
| Also fixes #18310. | |||
| 2012-10-18 | Added missed poisoned host header tests | Preston Holmes | |
| 2012-10-15 | Fixed assertXMLEqual when first node was a comment | Claude Paroz | |
| 2012-10-15 | Added tests for reversed iteration over SortedDict. | Mitar | |
| 2012-10-13 | Fixed #16479 - Forms generated from formsets use ErrorList instead of ↵ | Ludovic Delaveau | |
| supplied error_class Patch with tests from charettes, updated. | |||
| 2012-10-12 | Removed country-specific localflavor tests. | Adrian Holovaty | |
| They now live in separate django-contrib-XX packages. | |||
| 2012-10-10 | Removed some uses of F() expression & and | | Anssi Kääriäinen | |
| Refs #16211 | |||
| 2012-10-10 | Fixed #18927 -- Fixed bulk_create tests when no has_bulk_insert | Michael Manfre | |
| 2012-10-10 | Moved F() '&' and '|' to .bitand() and .bitor() | Anssi Kääriäinen | |
| Done for consistency with Q() expressions and QuerySet combining. This will allow usage of '&' and '|' as boolean logical operators in the future. Refs #16211. | |||
| 2012-10-09 | Fixed test failure after IDN domain validation fix | Claude Paroz | |
| Refs #17867. The address in test_email_regexp_for_performance used to take forever (security issue), then was supposed to fail after the fix (commit 9f8287a3f). Now we are less strict with domain validation, due to new IDN domains, hence the validation of this address pass now. | |||
| 2012-10-09 | Fixed #18153 -- Reverse OneToOne lookups on unsaved instances. | Aymeric Augustin | |
| Thanks David Hatch and Anssi Kääriäinen for their inputs. | |||
| 2012-10-09 | Fixed #19095 -- invalid code in multidb tests. | Aymeric Augustin | |
| 2012-10-09 | Moved some email validation tests to validators tests | Claude Paroz | |
| 2012-10-08 | Fixed #19087 -- Ensured query's base table is never LOUTER joined | Anssi Kääriäinen | |
| This fixes a regression created by join promotion logic refactoring: 01b9c3d5193fe61b82ae8b26242a13fdec22f211 Thanks to Ivan Virabyan for the report. | |||
| 2012-10-08 | [py3] Decoded the parsed source file encoding in debug view | Claude Paroz | |
| 2012-10-06 | Removed ad-hoc support for usage of short names of built-in DB backends. | Ramiro Morales | |
| This non-standard naming was deprecated in Django 1.2. | |||
| 2012-10-06 | Added assertXML[Not]Equal assertions | Claude Paroz | |
| This is especially needed to compare XML when hash randomization is on, as attribute order may vary. Refs #17758, #19038. Thanks Taylor Mitchell for the initial patch, and Ian Clelland for review and cleanup. | |||
| 2012-10-06 | Fixed #19069 -- Improved the error message when trying to query a swapped model. | Russell Keith-Magee | |
| Thanks to Preston Holmes for the suggestion. | |||
| 2012-10-03 | Fixed #14567 -- Made ModelMultipleChoiceField return EmptyQuerySet as empty ↵ | Stephen Burrows | |
| value | |||
| 2012-10-01 | Fixed postgres rollback issue with fixture test | Preston Holmes | |
| 2012-09-30 | Fixed #9279 -- Added ignorenonexistent option to loaddata | Preston Holmes | |
| Thanks to Roman Gladkov for the initial patch and Simon Charette for review. | |||
| 2012-09-30 | Fixed #18807 -- Made 404.html and 500.html optional | Claude Paroz | |
| Thanks Aymeric Augustin for the report and Jannis Leidel for the review. | |||
| 2012-09-30 | Fixed #7936 -- Added Last-Modified header to feeds | Claude Paroz | |
| Thanks julianb for the report and the initial patch, and Roman Gladkov for working on tests. | |||
| 2012-09-29 | Fixed #18993 -- 'django' logger logs to console when DEBUG=True | Claude Paroz | |
| Thanks Preston Holmes for the review. | |||
| 2012-09-29 | Merge branch 'ticket15695' | Florian Apolloner | |
| 2012-09-28 | Fixed #18676 -- Allow fast-path deletion of objects | Anssi Kääriäinen | |
| Objects can be fast-path deleted if there are no signals, and there are no further cascades. If fast-path is taken, the objects do not need to be loaded into memory before deletion. Thanks to Jeremy Dunck, Simon Charette and Alex Gaynor for reviewing the patch. | |||
| 2012-09-28 | Added a way to check if a signal has listeners | Anssi Kääriäinen | |
| 2012-09-28 | Used get_current_site in comments feed class | Claude Paroz | |
| 2012-09-27 | Fixed #18881 -- Made the context option in {% trans %} and {% blocktrans %} ↵ | Julien Phalip | |
| accept literals wrapped in single quotes. Thanks to lanyjie for the report. | |||
