| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-14 | Fixed #20565 -- Added template examples for GCBV. | Baptiste Darthenay | |
| Thanks to David Reitter for the report, and to Marc Tamlyn and Baptiste Mispelon for the review. | |||
| 2013-06-14 | Fixed #15273 -- Extend RedirectView to allow reversal by name. | Marc Tamlyn | |
| Thanks to @DrMeers for the report and @ludwigkraatz for the initial patch. | |||
| 2013-06-13 | Added a ``checksetup`` management command for verifying Django compatibility. | Daniel Lindsley | |
| 2013-06-13 | Added release notes for auth views being reversed by name, not by path. | Tim Graham | |
| Refs #20532 | |||
| 2013-06-13 | Fixed #20000 -- Allowed ModelForm meta overrides for label, help_text and ↵ | Loic Bistuer | |
| error_messages | |||
| 2013-06-13 | Fixed order of base classes in CBV mixin docs | Danilo Bargen | |
| 2013-06-12 | Warned that `request_finished` isn't sent by some buggy setups. | Jaap Roes | |
| Older versions of uWSGI and Sentry's middleware do not adhere to the WSGI spec and cause the `request_finished` signal to never fire. Added notes to the appropriate places in the docs. Fixed #20537. | |||
| 2013-06-12 | Fixed #20579 -- Improved TransactionTestCase.available_apps. | Aymeric Augustin | |
| Also moved its documentation to the 'advanced' section. It doesn't belong to the 'overview'. Same for TransactionTestCase.reset_sequences. When available_apps is set, after a TransactionTestCase, the database is now totally empty. post_syncdb is fired at the beginning of the next TransactionTestCase. Refs #20483. | |||
| 2013-06-12 | Merge pull request #1259 from Wilfred/master | Tim Graham | |
| Simplified a formset example in the docs | |||
| 2013-06-12 | Fixed #20591: added version in docs for utils.module_loading.import_by_path. | Baptiste Darthenay | |
| 2013-06-11 | Fixed #20500 - Updated flatpages URLconf example to work with APPEND_SLASH. | Tim Graham | |
| Thanks josh.23.french@. | |||
| 2013-06-11 | FormSet.forms is an iterable, so just iterate over it | Wilfred Hughes | |
| 2013-06-10 | Fixed #20578 - Typo in BaseFormSet module name | Tim Graham | |
| 2013-06-10 | Fixed #18134 -- BoundField.label_tag now includes the form's label_suffix | Gabe Jackson | |
| There was an inconsistency between how the label_tag for forms were generated depending on which method was used: as_p, as_ul and as_table contained code to append the label_suffix where as label_tag called on a form field directly did NOT append the label_suffix. The code for appending the label_suffix has been moved in to the label_tag code of the field and the HTML generation code for as_p, as_ul and as_table now calls this code as well. This is a backwards incompatible change because users who have added the label_suffix manually in their templates may now get double label_suffix characters in their forms. | |||
| 2013-06-10 | Merge pull request #1255 from camilonova/patch-2 | Tim Graham | |
| Made URL patterns consistent in docs/ref/contrib/flatpages.txt | |||
| 2013-06-10 | Added TransactionTestCase.available_apps. | Aymeric Augustin | |
| This can be used to make Django's test suite significantly faster by reducing the number of models for which content types and permissions must be created and tables must be flushed in each non-transactional test. It's documented for Django contributors and committers but it's branded as a private API to preserve our freedom to change it in the future. Most of the credit goes to Anssi. He got the idea and did the research. Fixed #20483. | |||
| 2013-06-09 | Fixed #19875 - Added warnings regarding DEBUG=False and empty ALLOWED_HOSTS | Tim Graham | |
| 2013-06-09 | Fixed #20567 - Documented BoundField.id_for_label. | Tim Graham | |
| Thanks littlepig for the suggestion. | |||
| 2013-06-09 | Update media.txt | Kenny Rachuonyo | |
| Fixed typo: froms -> forms | |||
| 2013-06-08 | Update flatpages.txt | Camilo Nova | |
| Fixed typo | |||
| 2013-06-08 | Allow build of translated documentation | Claude Paroz | |
| 2013-06-08 | Update submitting-patches.txt | russkel | |
| Few quick fixes to the terminology in order to match what is used on the Django Trac at the moment. | |||
| 2013-06-06 | Explained that timezone.now() always returns times in UTC. | Jacob Kaplan-Moss | |
| The docs were ambiguous about the time zone for now(), leading people to assume that it would be the current time zone rather that UTC. | |||
| 2013-06-06 | Merge pull request #1245 from oinopion/list_select_related | Marc Tamlyn | |
| Fixed #19080 -- Fine-grained control over select_related in admin | |||
| 2013-06-05 | Fixed #19080 -- Fine-grained control over select_related in admin | Tomek Paczkowski | |
| 2013-06-05 | Proofed the 1.6 release notes | Tim Graham | |
| 2013-06-04 | Fixed #18924 -- Made test.Client.logout send user_logged_out signal. | Tim Graham | |
| Thanks awsum for the suggestion and Pavel Ponomarev and Florian Hahn for the patch. | |||
| 2013-06-04 | Fixed #17601 -- expose underlying db exceptions under py2 | James Aylett | |
| Use __cause__ to expose the underlying database exceptions even under python 2. | |||
| 2013-06-03 | Fixed #20545 - Made class-based view MRO lists consistent. | Tim Graham | |
| Thanks wim@ for the suggestion. | |||
| 2013-06-03 | Fixed #20552 -- Corrected release notes reference to name of new test ↵ | Russell Keith-Magee | |
| discovery runner. | |||
| 2013-06-01 | Fixed #18388 - Added InlineModelAdmin.get_max_num hook. | Tim Graham | |
| Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch. | |||
| 2013-06-01 | Fixed #20543 - Typo in db model fields docs. | Tim Graham | |
| Thanks i.amber.jain@ for the report. | |||
| 2013-06-01 | Fixed #18169 -- NoReverseMatch not silenced if from block.super | Anssi Kääriäinen | |
| 2013-05-31 | Fixed #20166 - Corrected TEST_DEPENDENCIES example in testing docs. | Tim Graham | |
| Thanks czambran. | |||
| 2013-05-31 | Fixed #20326 - Corrected form wizard get_form() example. | Tim Graham | |
| Thanks tris@ for the report. | |||
| 2013-05-31 | Fixed #20515 - Clarified note regarding translator comments. | Tim Graham | |
| Thanks wim@ for the suggestion. | |||
| 2013-05-31 | Fixed #20511 -- Corrected link about isolation levels in databases docs | Claude Paroz | |
| Thanks tinodb for the report. | |||
| 2013-05-31 | Merge pull request #1232 from fusionbox/normalize_email | Claude Paroz | |
| Fixed #20531 -- Don't hard-code class names when calling static methods | |||
| 2013-05-30 | Tweak caching decorators/utility functions xrefs. | Ramiro Morales | |
| 2013-05-30 | Fixed #19425 - Added InlineModelAdmin.get_extra hook. | Tim Graham | |
| Thanks dave@ for the suggestion and Rohan Jain for the patch. | |||
| 2013-05-30 | Fixed #16856 - Added a way to clear select_related. | Tim Graham | |
| Thanks Carl for the suggestion and David Cramer for the patch. | |||
| 2013-05-29 | Fixed regroup example. | Gavin Wahl | |
| Chicago was missing. | |||
| 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-28 | Fixed #20525 -- Added versionadded for clearsessions. | Tim Graham | |
| Thanks wiml@. | |||
| 2013-05-28 | Fixed #20484 -- Added model validation for GenericIPAddressField | Tim Graham | |
| GenericIPAddressField must not allow blank for NOT NULL fields Thanks Erik Romijn. | |||
| 2013-05-28 | Fixed #20523 - Incorrect form field for FilePathField. | Tim Graham | |
| Thanks sane4ka.sh@ for the report. | |||
| 2013-05-28 | Fixed #20228 - Documented unique_for_date and exclude behavior. | Tim Graham | |
| Thanks Deepak Thukral for the patch. | |||
| 2013-05-28 | Fixed #20513 - Expanded docs on QuerySet caching. | Tim Graham | |
| Thanks seddonym. | |||
| 2013-05-27 | Fixed #20503 - Moved doctest utilities in with the rest of the deprecated ↵ | Carl Meyer | |
| test code. The ``DocTestRunner`` and ``OutputChecker`` were formerly in ``django.test.testcases``, now they are in ``django.test.simple``. This avoids triggering the ``django.test._doctest`` deprecation message with any import from ``django.test``. Since these utility classes are undocumented internal API, they can be moved without a separate deprecation process. Also removed the deprecation warnings specific to these classes, as they are now covered by the module-level warning in ``django.test.simple``. Thanks Anssi for the report. Refs #17365. | |||
| 2013-05-27 | Fixed #11603 - Added django.test.SimpleTestCase.assertFormsetError | Tim Graham | |
| Thank-you Martin Green for the patch. | |||
