summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2014-12-19Updated some other external links in the docsClaude Paroz
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-12-17Fixed display of lists after website redesignMarkus Holtermann
Thanks Brian Jacobel for the report. refs django/djangoproject.com#197
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus 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-13Updated advice on six.moves.range/xrange; refs #23812.Tim Graham
2014-12-12Fixed #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-11Fixed incorrect filter name in docs/topics/i18n/translation.txt.Yohan Boniface
2014-12-06Cleaned up a note in docs/topics/db/sql.txt.wrwrwr
2014-12-05Fixed #23955 -- Corrected formset fields in topic guide.Young Yang
2014-12-05Fixed #23957 -- Started deprecation toward requiring session verification.Tim Graham
Thanks Carl Meyer for review.
2014-12-04Fixed #23911 -- Added support for buffer file uploads in the test clientThomas Tanner
2014-12-03Fixed typo in aggregation docs link.Tim Graham
2014-12-03Fixed a typo in aggregation docs.Benjamin Bach
2014-12-03Documented a current limitation of multiple table annotation; refs #10060.Benjamin Bach
2014-12-03Fixed #20392 -- Added TestCase.setUpTestData()Thomas Chaumeny
Each TestCase is also now wrapped in a class-wide transaction.
2014-11-28Fixed #23910 -- Added reply_to parameter to EmailMessageMartin Blech
Thanks to Berker Peksag and Tim Graham for the review and suggestions.
2014-11-27Added notes on registering signals in ready() and using dispatch_uid.wrwrwr
Refs #23641.
2014-11-27Fixed typo in docs/topics/forms/modelforms.txt.wrwrwr
2014-11-27Fixed #14664 -- Logged a warning if MiddlewareNotUsed is raised in DEBUG mode.Berker Peksag
2014-11-27Fixed #23847 -- Improved the email_check example in the auth documentation.Berker Peksag
2014-11-24Fixed #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-24Updated testing documentation following 498ae3a36069e2dThomas 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-24Fixed #23543 -- Added docs on testing management command output.Danilo Bargen
2014-11-23Fixed #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-23Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin
Cancels 2f0566fa. Refs #4278.
2014-11-22Avoided 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-21Fixed #23778 -- Added a doc section on using the Django runner for reusable ↵Stanislas Guerra
apps.
2014-11-21Fixed #21753 -- Raised exception when both `form_class` and `fields` are ↵Berker Peksag
specified.
2014-11-17Fix malformed note directives.Carl Meyer
2014-11-17Fix 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-16Merge pull request #3524 from nmundar/ticket_23690Marc Tamlyn
Fixed #23690 - fixed examples of manual rendering of form fields
2014-11-15Fixed #21363 -- Added datetime.timedelta support to TimestampSigner.unsign().Berker Peksag
2014-11-15Added a new GeoJSON serialization format for GeoDjangoClaude Paroz
Thanks Reinout van Rees for the review.
2014-11-15Fixed #23793 -- Clarified password reset behavior in auth docsYigit Guler
2014-11-15Fixed #14030 -- Allowed annotations to accept all expressionsJosh Smeaton
2014-11-15Fixed #23690 - fixed examples of manual rendering of form fieldsnmundar
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-15Fixed #22407 -- Added AdminEmailHandler.send_mail().Berker Peksag
2014-11-13Removed thread customizations of six which are now built-in.Tim Graham
2014-11-11Fixed spelling errors in docs.Tim Graham
2014-11-11Fixed #23750 -- Allowed core.checks.register to be used as a functionaverybigant
2014-11-04Added missing docs to DiscoverRunner for keepdb option; refs #20550.Tim Graham
2014-11-04Added a warning about nonexistent FK constraints when unmigrated apps depend ↵Tim Graham
on migrated ones. Thanks NotSqrt for the report; refs #23741.
2014-11-03Fixed versionchanged indentation in docs/.Berker Peksag
2014-11-03Fixed #21281 -- Made override_settings act at class level when used as a ↵Thomas Chaumeny
TestCase decorator.
2014-11-03Moved CSRF docs out of contrib.Thomas Chaumeny
2014-11-01Fixed #23744 -- Fixed typo in selenium testing example.Tim Graham
Thanks djbug for the report.
2014-10-31Added a warning about direct settings manipulation in tests.Tim Graham
Thanks Thomas Chaumeny for the initial patch.
2014-10-30Fixed #23656 -- Made FormMixin.get_form's form_class argument optional.Simon Charette
Thanks Tim Graham for the review.
2014-10-30Fixed #23735 -- Clarified that admindocs must be enabled to view template ↵Tim Graham
tag libraries in admin. Thanks Aymeric Augustin for the report.
2014-10-30Fixed #23734 -- Replaced striptags in template filter overview since it has ↵Tim Graham
security implications. Thanks Aymeric Augustin for the suggestion.