summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-19Fixed MySQL failing test introduced by c86a9b6Loic Bistuer
2013-06-19Fixed broken reference in documentation.Baptiste Mispelon
2013-06-18Fixed #14930 -- values_list() failure on qs ordered by extra columnFlorian Hahn
Thanks lsaffre for the report and simon29, vicould, and Florian Hahn for the patch. Some changes done by committer.
2013-06-18Merge pull request #1281 from loic/ticket6903Aymeric Augustin
Fixed #6903 - Preserved admin changelist filters.
2013-06-19Fixed #6903 - Preserve admin changelist filters after saving or deleting an ↵Loic Bistuer
object
2013-06-18Merge pull request #1280 from erikr/improve-password-reset2Aymeric Augustin
Fixed #20079 -- Improved security of password reset tokens
2013-06-18Fixed #20079 -- Improve security of password reset tokensErik Romijn
2013-06-18Fixed #20593 -- Allow blank passwords in check_password() and set_password()Erik Romijn
2013-06-18Fixed #20618 -- Fixed regression in `BoundField.label_tag`.Baptiste Mispelon
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵Loic Bistuer
fields
2013-06-18Refactored ValidationError to allow persisting error params and error codes ↵Loic Bistuer
as the exception bubbles up
2013-06-18Fixed #20615 -- Added trove classifiers for major Python versions.Aymeric Augustin
2013-06-17Added myself to the commiters list.Baptiste Mispelon
2013-06-17Fixed #20614 -- Typo in documentation.Baptiste Darthenay
2013-06-16Fixed #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-16Fixed #20583 -- ORM always uses setup_joins() for join generationAnssi 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-15Adjusted the docs to reflect when the checksetup command was added.Daniel Lindsley
2013-06-15Fixed #20606 -- Fixed 'for' example in template tag docsClaude Paroz
Thanks batisteo for the report.
2013-06-15Worked around Python 3.3 modified exception reprClaude Paroz
Refs #20599.
2013-06-15Fixed #20599 -- Changed wording of ValueError raised by _load_libraryJaap 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-14Fixed #20604 - Fixed file example in docs.Tim Graham
Thanks Chris Lasher for the report.
2013-06-14Added missing docs for the checksetup command.Daniel Lindsley
2013-06-14Fixed #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-14Merge pull request #1271 from batisteo/ticket-20565Marc Tamlyn
Fixed #20565 -- Added template examples for GCBV.
2013-06-14Merge pull request #1272 from chicheng/addition-http-status-codesMarc Tamlyn
Fixed #20598 -- Add new HTTP status codes defined in rfc6585
2013-06-14Fixed #20548 -- Removed all PendingDeprecationWarnings from django test suiteMarc Tamlyn
2013-06-14Fixed #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-14Fixed #20289 -- pickling of dynamic modelsAnssi Kääriäinen
2013-06-14Added cache to available_apps in cache testsAnssi Kääriäinen
2013-06-14Fixed python 3.2 compat.Florian Apolloner
2013-06-14Fixed #20528 -- regression in select_related join promotionAnssi 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-14Fixed #20598 -- Add new HTTP status codes defined in rfc6585CHI Cheng
428, 429, 431 and 511
2013-06-14Fixed #15273 -- Extend RedirectView to allow reversal by name.Marc Tamlyn
Thanks to @DrMeers for the report and @ludwigkraatz for the initial patch.
2013-06-14Fixed #17076 -- When reversing a URL fails, inform the user which patterns ↵Wilfred Hughes
were tried.
2013-06-14Merge 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-14Remove incorrect CONTENT_TYPE header from GET and HEAD requestsTom Christie
2013-06-13Added a ``checksetup`` management command for verifying Django compatibility.Daniel Lindsley
2013-06-13Added release notes for auth views being reversed by name, not by path.Tim Graham
Refs #20532
2013-06-13Fixed #20000 -- Allowed ModelForm meta overrides for label, help_text and ↵Loic Bistuer
error_messages
2013-06-13Fixed #20594 -- Add validation to models.SlugField.Baptiste Mispelon
Thanks carbonXT for the report.
2013-06-13Merge pull request #1265 from dbrgn/mixin_orderMarc Tamlyn
Fixed order of base classes in CBV mixin docs
2013-06-13Fixed order of base classes in CBV mixin docsDanilo Bargen
2013-06-12Warned 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-12Fixed #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-12Merge pull request #1259 from Wilfred/masterTim Graham
Simplified a formset example in the docs
2013-06-12Merge pull request #1262 from batisteo/ticket-20591Marc Tamlyn
Fixed #20591: added version in docs for utils.module_loading.import_by_path
2013-06-12Fixed #20591: added version in docs for utils.module_loading.import_by_path.Baptiste Darthenay
2013-06-11Revert "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-11Added docs subdir to gitignoreClaude Paroz
To be able to build translated documentation, docs/locale should be a symbolic link to the django-docs-translations/translations directory.
2013-06-11Fixed #20462 - Fixed sqlite regex lookups for null values and non-string fields.Axel Haustant