summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2013-06-04Fixed #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-01Fixed #20543 - Typo in db model fields docs.Tim Graham
Thanks i.amber.jain@ for the report.
2013-05-31Fixed #20166 - Corrected TEST_DEPENDENCIES example in testing docs.Tim Graham
Thanks czambran.
2013-05-31Merge pull request #1232 from fusionbox/normalize_emailClaude Paroz
Fixed #20531 -- Don't hard-code class names when calling static methods
2013-05-30Tweak caching decorators/utility functions xrefs.Ramiro Morales
2013-05-29Don't hard-code class names when calling static methodsGavin 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-28Fixed #20523 - Incorrect form field for FilePathField.Tim Graham
Thanks sane4ka.sh@ for the report.
2013-05-28Fixed #20513 - Expanded docs on QuerySet caching.Tim Graham
Thanks seddonym.
2013-05-27Fixed #11603 - Added django.test.SimpleTestCase.assertFormsetErrorTim Graham
Thank-you Martin Green for the patch.
2013-05-27Patch for ticket #20506 - documentation typeyishaibeeri
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
2013-05-23Fixed #20316 - Clarified transaction behavior of TestCase.Tim Graham
Thanks uberj@ for the report and lolek09 for the patch.
2013-05-23Fixed comments for translators example in the i18n documentationPanagiotis H.M. Issaris
The documentation regarding adding a comment for translators was confusing as the example contained mismatching tags.
2013-05-20Fixed #20471 - Typos in topics/forms/formsets.txtTim Graham
2013-05-20Fixed #20403 -- Ignore forms marked for deletion when validating max_num.Ryan Kaskel
2013-05-19Changed API to disable ATOMIC_REQUESTS per view.Aymeric Augustin
A decorator is easier to apply to CBVs. Backwards compatibility isn't an issue here, except for people running on a recent clone of master. Fixed a few minor problems in the transactions docs while I was there.
2013-05-19Fixed #20183 - Clarified docs assumption that certain objects exist in database.Tim Graham
Thanks Tomasz Jaskowski for the patch.
2013-05-19add missing imports to the examples in the 'Forms'leandrafinger
2013-05-19Add missing imports and models to the examples in internationalization and ↵Silvan Spross
localization documentation
2013-05-19Fixed some line wrapping, refs #20233Tim Graham
2013-05-19Fixed a rest mistake I introduced in d5ce2ff.Aymeric Augustin
2013-05-19Improve cookie based session backend docs.Marc Tamlyn
Note the don't require sessions to be in installed apps.
2013-05-19Merge pull request #1145 from postrational/ticket_20233Andrew Godwin
Fixed #20233 - Full custom user model example isn't really full
2013-05-19refs #20233 - Full custom user model example isn't really fullpostrational
Addition and fix for custom user model example documentation. https://code.djangoproject.com/ticket/20233
2013-05-19Merge pull request #1129 from frog32/masterMarc Tamlyn
Add needed Imports to the Documentation
2013-05-18Fixed #20004 -- Moved non DB-related assertions to SimpleTestCase.Ramiro Morales
Thanks zalew for the suggestion and work on a patch. Also updated, tweaked and fixed testing documentation.
2013-05-18Add missing imports and models to the examples in the view layer documentationSilvan Spross
2013-05-18Add missing imports and models to the examples in the the model layer ↵Marc Egli
documentation
2013-05-18Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecatedŁukasz Langa
2013-05-18Fixed #20335 - Documented the {% language %} template tag.Tim Graham
Thanks bmispelon for the suggestion and djangsters for the patch.
2013-05-18Fixed #20444 -- Cookie-based sessions does not include a remote code ↵Erik Romijn
execution-warning
2013-05-18Fixed #9595 -- Allow non-expiring cache timeouts.Jacob Burch
Also, streamline the use of 0 and None between cache backends.
2013-05-18Fixed #13546 -- Easier handling of localize field options in ModelFormErik Romijn
2013-05-17Tidy up some of the transaction documentation.Marc Tamlyn
2013-05-17Fixed #20426 -- Added some extra info to the auth forms.Florian Apolloner
Thanks to Joel Hansson for the suggestion and Curtis Maloney for the initial patch.
2013-05-16small typo, example pk=27 but description pk=24Stefan hr Berder
2013-05-15Improved the timezone middleware example slightly.Aymeric Augustin
This change avoids having the timezone leak from a request to the next.
2013-05-15Fixed #20165 - Updated testing example to use django.test.TestCase.Tim Graham
Thanks Lorin Hochstein.
2013-05-13Recommend using the bcrypt library instead of py-bcryptDonald Stufft
* py-bcrypt has not been updated in some time * py-bcrypt does not support Python3 * py3k-bcrypt, a port of py-bcrypt to python3 is not compatible with Django * bcrypt is supported on all versions of Python that Django supports
2013-05-13Merge pull request #1053 from makto/patch-1Tim Graham
Fixed #20394 - Clarified argument of get_user in docs
2013-05-13Fixed #20398 - Added language selection code to example in documentationTim Graham
Thanks ggbaker for the suggestion and Simeon Visser for the patch.
2013-05-12Updated test failure example.Ramiro Morales
2013-05-11Update customizing.txtzhongqi
The origin statement "which could be ... or whatever" **misguides** many newbies like me. In fact, the ``login`` function in ``contrib.auth`` stores ``user.pk`` in session, then ``get_user`` function in ``contrib.auth`` gets ``user.pk`` in session and then passes it to your custom ``get_user`` as ``user_id``. Which means, ``user_id`` prarameter in your custom ``get_user`` has to be the primary key of ``User`` object, too.
2013-05-10Fixed #17365, #17366, #18727 -- Switched to discovery test runner.Carl Meyer
Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
2013-05-10Fixed #20385 -- Typo in files docs.Aymeric Augustin
2013-05-09Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵Luke Plant
added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
2013-05-07Python 2.5 is not relevant to master.Carl Meyer
2013-05-07Remove outdated ForeignKey manager documentation.Mike Fogel
2013-05-06Fixed #20177 - Corrected docs for django.test.utils.setup_test_environment.Tim Graham
Thanks vlad.london.uk@ for the report.
2013-05-06Fixed #20274 - Added some clarifying section headings in the test docs.Tim Graham