| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-01 | Fixed #20543 - Typo in db model fields docs. | Tim Graham | |
| Thanks i.amber.jain@ for the report. | |||
| 2013-05-31 | Fixed #20166 - Corrected TEST_DEPENDENCIES example in testing docs. | Tim Graham | |
| Thanks czambran. | |||
| 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-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 #20523 - Incorrect form field for FilePathField. | Tim Graham | |
| Thanks sane4ka.sh@ for the report. | |||
| 2013-05-28 | Fixed #20513 - Expanded docs on QuerySet caching. | Tim Graham | |
| Thanks seddonym. | |||
| 2013-05-27 | Fixed #11603 - Added django.test.SimpleTestCase.assertFormsetError | Tim Graham | |
| Thank-you Martin Green for the patch. | |||
| 2013-05-27 | Patch for ticket #20506 - documentation type | yishaibeeri | |
| 2013-05-25 | Fixed #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-23 | Fixed #20316 - Clarified transaction behavior of TestCase. | Tim Graham | |
| Thanks uberj@ for the report and lolek09 for the patch. | |||
| 2013-05-23 | Fixed comments for translators example in the i18n documentation | Panagiotis H.M. Issaris | |
| The documentation regarding adding a comment for translators was confusing as the example contained mismatching tags. | |||
| 2013-05-20 | Fixed #20471 - Typos in topics/forms/formsets.txt | Tim Graham | |
| 2013-05-20 | Fixed #20403 -- Ignore forms marked for deletion when validating max_num. | Ryan Kaskel | |
| 2013-05-19 | Changed 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-19 | Fixed #20183 - Clarified docs assumption that certain objects exist in database. | Tim Graham | |
| Thanks Tomasz Jaskowski for the patch. | |||
| 2013-05-19 | add missing imports to the examples in the 'Forms' | leandrafinger | |
| 2013-05-19 | Add missing imports and models to the examples in internationalization and ↵ | Silvan Spross | |
| localization documentation | |||
| 2013-05-19 | Fixed some line wrapping, refs #20233 | Tim Graham | |
| 2013-05-19 | Fixed a rest mistake I introduced in d5ce2ff. | Aymeric Augustin | |
| 2013-05-19 | Improve cookie based session backend docs. | Marc Tamlyn | |
| Note the don't require sessions to be in installed apps. | |||
| 2013-05-19 | Merge pull request #1145 from postrational/ticket_20233 | Andrew Godwin | |
| Fixed #20233 - Full custom user model example isn't really full | |||
| 2013-05-19 | refs #20233 - Full custom user model example isn't really full | postrational | |
| Addition and fix for custom user model example documentation. https://code.djangoproject.com/ticket/20233 | |||
| 2013-05-19 | Merge pull request #1129 from frog32/master | Marc Tamlyn | |
| Add needed Imports to the Documentation | |||
| 2013-05-18 | Fixed #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-18 | Add missing imports and models to the examples in the view layer documentation | Silvan Spross | |
| 2013-05-18 | Add missing imports and models to the examples in the the model layer ↵ | Marc Egli | |
| documentation | |||
| 2013-05-18 | Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecated | Łukasz Langa | |
| 2013-05-18 | Fixed #20335 - Documented the {% language %} template tag. | Tim Graham | |
| Thanks bmispelon for the suggestion and djangsters for the patch. | |||
| 2013-05-18 | Fixed #20444 -- Cookie-based sessions does not include a remote code ↵ | Erik Romijn | |
| execution-warning | |||
| 2013-05-18 | Fixed #9595 -- Allow non-expiring cache timeouts. | Jacob Burch | |
| Also, streamline the use of 0 and None between cache backends. | |||
| 2013-05-18 | Fixed #13546 -- Easier handling of localize field options in ModelForm | Erik Romijn | |
| 2013-05-17 | Tidy up some of the transaction documentation. | Marc Tamlyn | |
| 2013-05-17 | Fixed #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-16 | small typo, example pk=27 but description pk=24 | Stefan hr Berder | |
| 2013-05-15 | Improved the timezone middleware example slightly. | Aymeric Augustin | |
| This change avoids having the timezone leak from a request to the next. | |||
| 2013-05-15 | Fixed #20165 - Updated testing example to use django.test.TestCase. | Tim Graham | |
| Thanks Lorin Hochstein. | |||
| 2013-05-13 | Recommend using the bcrypt library instead of py-bcrypt | Donald 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-13 | Merge pull request #1053 from makto/patch-1 | Tim Graham | |
| Fixed #20394 - Clarified argument of get_user in docs | |||
| 2013-05-13 | Fixed #20398 - Added language selection code to example in documentation | Tim Graham | |
| Thanks ggbaker for the suggestion and Simeon Visser for the patch. | |||
| 2013-05-12 | Updated test failure example. | Ramiro Morales | |
| 2013-05-11 | Update customizing.txt | zhongqi | |
| 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-10 | Fixed #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-10 | Fixed #20385 -- Typo in files docs. | Aymeric Augustin | |
| 2013-05-09 | Fixed #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-07 | Python 2.5 is not relevant to master. | Carl Meyer | |
| 2013-05-07 | Remove outdated ForeignKey manager documentation. | Mike Fogel | |
| 2013-05-06 | Fixed #20177 - Corrected docs for django.test.utils.setup_test_environment. | Tim Graham | |
| Thanks vlad.london.uk@ for the report. | |||
| 2013-05-06 | Fixed #20274 - Added some clarifying section headings in the test docs. | Tim Graham | |
