| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-19 | Fixed MySQL failing test introduced by c86a9b6 | Loic Bistuer | |
| 2013-06-19 | Fixed broken reference in documentation. | Baptiste Mispelon | |
| 2013-06-18 | Fixed #14930 -- values_list() failure on qs ordered by extra column | Florian Hahn | |
| Thanks lsaffre for the report and simon29, vicould, and Florian Hahn for the patch. Some changes done by committer. | |||
| 2013-06-18 | Merge pull request #1281 from loic/ticket6903 | Aymeric Augustin | |
| Fixed #6903 - Preserved admin changelist filters. | |||
| 2013-06-19 | Fixed #6903 - Preserve admin changelist filters after saving or deleting an ↵ | Loic Bistuer | |
| object | |||
| 2013-06-18 | Merge pull request #1280 from erikr/improve-password-reset2 | Aymeric Augustin | |
| Fixed #20079 -- Improved security of password reset tokens | |||
| 2013-06-18 | Fixed #20079 -- Improve security of password reset tokens | Erik Romijn | |
| 2013-06-18 | Fixed #20593 -- Allow blank passwords in check_password() and set_password() | Erik Romijn | |
| 2013-06-18 | Fixed #20618 -- Fixed regression in `BoundField.label_tag`. | Baptiste Mispelon | |
| 2013-06-18 | Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵ | Loic Bistuer | |
| fields | |||
| 2013-06-18 | Refactored ValidationError to allow persisting error params and error codes ↵ | Loic Bistuer | |
| as the exception bubbles up | |||
| 2013-06-18 | Fixed #20615 -- Added trove classifiers for major Python versions. | Aymeric Augustin | |
| 2013-06-17 | Added myself to the commiters list. | Baptiste Mispelon | |
| 2013-06-17 | Fixed #20614 -- Typo in documentation. | Baptiste Darthenay | |
| 2013-06-16 | Fixed #20464 -- Added a `total_error_count` method on formsets. | Baptiste Mispelon | |
| Thanks to frog32 for the report and to Tim Graham for the review. | |||
| 2013-06-16 | Fixed #20583 -- ORM always uses setup_joins() for join generation | Anssi Kääriäinen | |
| There were a couple of places which used Query.join() directly. By using setup_joins() in these places the code is more DRY, and in addition there is no need to directly call field.get_joining_columns() unless the field is the given join_field from get_path_info(). This makes it easier to make sure a ForeignObject subclass generates joins correctly in all cases. | |||
| 2013-06-15 | Adjusted the docs to reflect when the checksetup command was added. | Daniel Lindsley | |
| 2013-06-15 | Fixed #20606 -- Fixed 'for' example in template tag docs | Claude Paroz | |
| Thanks batisteo for the report. | |||
| 2013-06-15 | Worked around Python 3.3 modified exception repr | Claude Paroz | |
| Refs #20599. | |||
| 2013-06-15 | Fixed #20599 -- Changed wording of ValueError raised by _load_library | Jaap Roes | |
| The _load_library method on BasePasswordHasher turns ImportErrors into ValueErrors, this masks ImportErrors in the algorithm library. Changed it to a clearer worded error message that includes the ImportError string. | |||
| 2013-06-14 | Fixed #20604 - Fixed file example in docs. | Tim Graham | |
| Thanks Chris Lasher for the report. | |||
| 2013-06-14 | Added missing docs for the checksetup command. | Daniel Lindsley | |
| 2013-06-14 | Fixed #20603 -- Made the test suite faster. | Aymeric Augustin | |
| By avoiding to run syncdb with the full set of test models. Thanks Anssi for the idea. | |||
| 2013-06-14 | Merge pull request #1271 from batisteo/ticket-20565 | Marc Tamlyn | |
| Fixed #20565 -- Added template examples for GCBV. | |||
| 2013-06-14 | Merge pull request #1272 from chicheng/addition-http-status-codes | Marc Tamlyn | |
| Fixed #20598 -- Add new HTTP status codes defined in rfc6585 | |||
| 2013-06-14 | Fixed #20548 -- Removed all PendingDeprecationWarnings from django test suite | Marc Tamlyn | |
| 2013-06-14 | Fixed #20565 -- Added template examples for GCBV. | Baptiste Darthenay | |
| Thanks to David Reitter for the report, and to Marc Tamlyn and Baptiste Mispelon for the review. | |||
| 2013-06-14 | Fixed #20289 -- pickling of dynamic models | Anssi Kääriäinen | |
| 2013-06-14 | Added cache to available_apps in cache tests | Anssi Kääriäinen | |
| 2013-06-14 | Fixed python 3.2 compat. | Florian Apolloner | |
| 2013-06-14 | Fixed #20528 -- regression in select_related join promotion | Anssi Kääriäinen | |
| The join used by select_related was incorrectly INNER when the query had an ORed filter for nullable join that was trimmed away. Fixed this by forcing the join type to LOUTER even when a join was trimmed away in ORed queries. | |||
| 2013-06-14 | Fixed #20598 -- Add new HTTP status codes defined in rfc6585 | CHI Cheng | |
| 428, 429, 431 and 511 | |||
| 2013-06-14 | Fixed #15273 -- Extend RedirectView to allow reversal by name. | Marc Tamlyn | |
| Thanks to @DrMeers for the report and @ludwigkraatz for the initial patch. | |||
| 2013-06-14 | Fixed #17076 -- When reversing a URL fails, inform the user which patterns ↵ | Wilfred Hughes | |
| were tried. | |||
| 2013-06-14 | Merge pull request #1270 from ↵ | Marc Tamlyn | |
| tomchristie/remove-incorrect-content-type-test-client Remove incorrect CONTENT_TYPE header from GET and HEAD requests | |||
| 2013-06-14 | Remove incorrect CONTENT_TYPE header from GET and HEAD requests | Tom Christie | |
| 2013-06-13 | Added a ``checksetup`` management command for verifying Django compatibility. | Daniel Lindsley | |
| 2013-06-13 | Added release notes for auth views being reversed by name, not by path. | Tim Graham | |
| Refs #20532 | |||
| 2013-06-13 | Fixed #20000 -- Allowed ModelForm meta overrides for label, help_text and ↵ | Loic Bistuer | |
| error_messages | |||
| 2013-06-13 | Fixed #20594 -- Add validation to models.SlugField. | Baptiste Mispelon | |
| Thanks carbonXT for the report. | |||
| 2013-06-13 | Merge pull request #1265 from dbrgn/mixin_order | Marc Tamlyn | |
| Fixed order of base classes in CBV mixin docs | |||
| 2013-06-13 | Fixed order of base classes in CBV mixin docs | Danilo Bargen | |
| 2013-06-12 | Warned that `request_finished` isn't sent by some buggy setups. | Jaap Roes | |
| Older versions of uWSGI and Sentry's middleware do not adhere to the WSGI spec and cause the `request_finished` signal to never fire. Added notes to the appropriate places in the docs. Fixed #20537. | |||
| 2013-06-12 | Fixed #20579 -- Improved TransactionTestCase.available_apps. | Aymeric Augustin | |
| Also moved its documentation to the 'advanced' section. It doesn't belong to the 'overview'. Same for TransactionTestCase.reset_sequences. When available_apps is set, after a TransactionTestCase, the database is now totally empty. post_syncdb is fired at the beginning of the next TransactionTestCase. Refs #20483. | |||
| 2013-06-12 | Merge pull request #1259 from Wilfred/master | Tim Graham | |
| Simplified a formset example in the docs | |||
| 2013-06-12 | Merge pull request #1262 from batisteo/ticket-20591 | Marc Tamlyn | |
| Fixed #20591: added version in docs for utils.module_loading.import_by_path | |||
| 2013-06-12 | Fixed #20591: added version in docs for utils.module_loading.import_by_path. | Baptiste Darthenay | |
| 2013-06-11 | Revert "Fixed #20462 - Fixed sqlite regex lookups for null values and ↵ | Tim Graham | |
| non-string fields." This reverts commit 64041f0e6e7a773574d7cde978d16305200004ea. lookup.tests.LookupTests.test_regex_non_string fails under Postgres. We should also try to rewrite the test using an existing model. | |||
| 2013-06-11 | Added docs subdir to gitignore | Claude Paroz | |
| To be able to build translated documentation, docs/locale should be a symbolic link to the django-docs-translations/translations directory. | |||
| 2013-06-11 | Fixed #20462 - Fixed sqlite regex lookups for null values and non-string fields. | Axel Haustant | |
