summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2015-01-16Fixed #24143 -- Encouraged use of Http404 messages for debugging.Keryn Knight
2015-01-12Fixed #24124 -- Changed context_processors in the default settings.pyCollin Anderson
2015-01-12Fixed #24118 -- Added --debug-sql option for tests.Marc Tamlyn
Added a --debug-sql option for tests and runtests.py which outputs the SQL logger for failing tests. When combined with --verbosity=2, it also outputs the SQL for passing tests. Thanks to Berker, Tim, Markus, Shai, Josh and Anssi for review and discussion.
2015-01-10Wrote main documentation for templates.Aymeric Augustin
2015-01-10Moved doc on the DTL's syntax to the ref/ section.Aymeric Augustin
This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL.
2015-01-10Fixed #22583 -- Allowed RunPython and RunSQL to provide hints to the db router.Loic Bistuer
Thanks Markus Holtermann and Tim Graham for the review.
2015-01-06Fixed #24083 -- Corrected is_bound nature in forms topic docsClaude Paroz
Thanks ajenhl Trac user for the report.
2015-01-05Fixed #23861 -- Added an API to deprecate model fields.Tim Graham
Thanks Markus Holterman and Berker Peksag for review.
2015-01-03Fixed #23749 -- Documented how to use the database alias in RunPython.Alfred Perlstein
Thanks Markus Holtermann for review and feedback.
2015-01-02Updated six to 1.9.0.Tim Graham
2015-01-02Added return value to Signal.disconnect().Andriy Sokolovskiy
2015-01-01Removed doc note about PasswordResetForm requiring an integer PK.Tim Graham
This limitation was lifted in refs #14881.
2014-12-30Fixed #12118 -- Added shared cache support to SQLite in-memory testing.Andriy Sokolovskiy
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_DIRS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_LOADERS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_STRING_IF_INVALID.Aymeric Augustin
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin
dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
2014-12-28Moved context_processors from django.core to django.template.Aymeric Augustin
2014-12-27Fixed #24056 -- Fixed syntax highlighting in topics/testing/tools.txt.Tim Graham
2014-12-24Fixed #24041 -- Documented effect of changing a model instance's primary key.Helen Sherwood-Taylor
2014-12-24Fixed #22461 -- Added if-unmodified-since support to the condition decorator.Thomas Tanner
2014-12-23Fixed #24035 -- Clarified docs on CACHE_MIDDLEWARE_KEY_PREFIX vs KEY_PREFIXFrankie Robertson
2014-12-22Fixed #23959 -- Clarified when checks automatically run.Alexander Schulze
2014-12-20Correct scoping of savepoint exampleDavid Cramer
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.