| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-19 | Updated some other external links in the docs | Claude Paroz | |
| 2014-12-19 | Used https for most *.python.org links | Claude Paroz | |
| 2014-12-17 | Fixed display of lists after website redesign | Markus Holtermann | |
| Thanks Brian Jacobel for the report. refs django/djangoproject.com#197 | |||
| 2014-12-15 | Fixed #23822 -- Added support for serializing model managers in migration | Markus Holtermann | |
| Thanks to Shai Berger, Loïc Bistuer, Simon Charette, Andrew Godwin, Tim Graham, Carl Meyer, and others for their review and input. | |||
| 2014-12-13 | Updated advice on six.moves.range/xrange; refs #23812. | Tim Graham | |
| 2014-12-12 | Fixed #23982 -- Added doc note on generating Python 2/3 cross-compatible ↵ | Carl Meyer | |
| migrations. Thanks Luke Plant for the report, and Tim Graham, Simon Charette, and Markus Holtermann for review and discussion. | |||
| 2014-12-11 | Fixed incorrect filter name in docs/topics/i18n/translation.txt. | Yohan Boniface | |
| 2014-12-06 | Cleaned up a note in docs/topics/db/sql.txt. | wrwrwr | |
| 2014-12-05 | Fixed #23955 -- Corrected formset fields in topic guide. | Young Yang | |
| 2014-12-05 | Fixed #23957 -- Started deprecation toward requiring session verification. | Tim Graham | |
| Thanks Carl Meyer for review. | |||
| 2014-12-04 | Fixed #23911 -- Added support for buffer file uploads in the test client | Thomas Tanner | |
| 2014-12-03 | Fixed typo in aggregation docs link. | Tim Graham | |
| 2014-12-03 | Fixed a typo in aggregation docs. | Benjamin Bach | |
| 2014-12-03 | Documented a current limitation of multiple table annotation; refs #10060. | Benjamin Bach | |
| 2014-12-03 | Fixed #20392 -- Added TestCase.setUpTestData() | Thomas Chaumeny | |
| Each TestCase is also now wrapped in a class-wide transaction. | |||
| 2014-11-28 | Fixed #23910 -- Added reply_to parameter to EmailMessage | Martin Blech | |
| Thanks to Berker Peksag and Tim Graham for the review and suggestions. | |||
| 2014-11-27 | Added notes on registering signals in ready() and using dispatch_uid. | wrwrwr | |
| Refs #23641. | |||
| 2014-11-27 | Fixed typo in docs/topics/forms/modelforms.txt. | wrwrwr | |
| 2014-11-27 | Fixed #14664 -- Logged a warning if MiddlewareNotUsed is raised in DEBUG mode. | Berker Peksag | |
| 2014-11-27 | Fixed #23847 -- Improved the email_check example in the auth documentation. | Berker Peksag | |
| 2014-11-24 | Fixed #23742 -- Added an option to reverse tests order. | wrwrwr | |
| This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review. | |||
| 2014-11-24 | Updated testing documentation following 498ae3a36069e2d | Thomas Chaumeny | |
| - commit/rollback are no longer replaced by nop - the warning about not using TestCase when testing transactional behavior belongs to TestCase section, not TransactionTestCase | |||
| 2014-11-24 | Fixed #23543 -- Added docs on testing management command output. | Danilo Bargen | |
| 2014-11-23 | Fixed #23900 -- Added missing imports in code example. | Kevin Ndung'u | |
| The Preventing header injection example included classes that are not imported. Thanks to Collin Anderson and Berker Peksağ for the reviews. | |||
| 2014-11-23 | Deprecated dirs argument to override TEMPLATE_DIRS. | Aymeric Augustin | |
| Cancels 2f0566fa. Refs #4278. | |||
| 2014-11-22 | Avoided rewrapping Contexts in render_to_response. | Aymeric Augustin | |
| This change preserves backwards-compatibility for a very common misuse of render_to_response which even occurred in the official documentation. It fixes that misuse wherever it happened in the code base and docs. Context.__init__ is documented as accepting a dict and nothing else. Since Context is dict-like, Context(Context({})) could work to some extent. However, things get complicated with RequestContext and that gets in the way of refactoring the template engine. This is the real rationale for this change. | |||
| 2014-11-21 | Fixed #23778 -- Added a doc section on using the Django runner for reusable ↵ | Stanislas Guerra | |
| apps. | |||
| 2014-11-21 | Fixed #21753 -- Raised exception when both `form_class` and `fields` are ↵ | Berker Peksag | |
| specified. | |||
| 2014-11-17 | Fix malformed note directives. | Carl Meyer | |
| 2014-11-17 | Fix link target markup | Éric Araujo | |
| This markup for a code block is redundant with the code-block directive below, and blocks the following line from working as link target. | |||
| 2014-11-16 | Merge pull request #3524 from nmundar/ticket_23690 | Marc Tamlyn | |
| Fixed #23690 - fixed examples of manual rendering of form fields | |||
| 2014-11-15 | Fixed #21363 -- Added datetime.timedelta support to TimestampSigner.unsign(). | Berker Peksag | |
| 2014-11-15 | Added a new GeoJSON serialization format for GeoDjango | Claude Paroz | |
| Thanks Reinout van Rees for the review. | |||
| 2014-11-15 | Fixed #23793 -- Clarified password reset behavior in auth docs | Yigit Guler | |
| 2014-11-15 | Fixed #14030 -- Allowed annotations to accept all expressions | Josh Smeaton | |
| 2014-11-15 | Fixed #23690 - fixed examples of manual rendering of form fields | nmundar | |
| Documentation for rendering form fields manually is now updated to use fields id_for_label instead of hardcoded values with additional mention of label_tag for alternative generation of complete label tag. | |||
| 2014-11-15 | Fixed #22407 -- Added AdminEmailHandler.send_mail(). | Berker Peksag | |
| 2014-11-13 | Removed thread customizations of six which are now built-in. | Tim Graham | |
| 2014-11-11 | Fixed spelling errors in docs. | Tim Graham | |
| 2014-11-11 | Fixed #23750 -- Allowed core.checks.register to be used as a function | averybigant | |
| 2014-11-04 | Added missing docs to DiscoverRunner for keepdb option; refs #20550. | Tim Graham | |
| 2014-11-04 | Added a warning about nonexistent FK constraints when unmigrated apps depend ↵ | Tim Graham | |
| on migrated ones. Thanks NotSqrt for the report; refs #23741. | |||
| 2014-11-03 | Fixed versionchanged indentation in docs/. | Berker Peksag | |
| 2014-11-03 | Fixed #21281 -- Made override_settings act at class level when used as a ↵ | Thomas Chaumeny | |
| TestCase decorator. | |||
| 2014-11-03 | Moved CSRF docs out of contrib. | Thomas Chaumeny | |
| 2014-11-01 | Fixed #23744 -- Fixed typo in selenium testing example. | Tim Graham | |
| Thanks djbug for the report. | |||
| 2014-10-31 | Added a warning about direct settings manipulation in tests. | Tim Graham | |
| Thanks Thomas Chaumeny for the initial patch. | |||
| 2014-10-30 | Fixed #23656 -- Made FormMixin.get_form's form_class argument optional. | Simon Charette | |
| Thanks Tim Graham for the review. | |||
| 2014-10-30 | Fixed #23735 -- Clarified that admindocs must be enabled to view template ↵ | Tim Graham | |
| tag libraries in admin. Thanks Aymeric Augustin for the report. | |||
| 2014-10-30 | Fixed #23734 -- Replaced striptags in template filter overview since it has ↵ | Tim Graham | |
| security implications. Thanks Aymeric Augustin for the suggestion. | |||
