- 08 Şub, 2014 3 kayıt (commit)
-
-
Tim Graham yazdı
Thanks Zach Smith for the patch.
-
Claude Paroz yazdı
Thanks keturn for the reporti, Chris Medrela for details and Tim Graham for the review. Refs #19915.
-
Loic Bistuer yazdı
Overriding the error messages now works for both unique fields, unique_together and unique_for_date. This patch changed the overriding logic to allow customizing NON_FIELD_ERRORS since previously only fields' errors were customizable. Refs #20199. Thanks leahculver for the suggestion.
-
- 07 Şub, 2014 1 kayıt (commit)
-
-
Chris Wilson yazdı
Thanks Aymeric Augustin and Simon Charette for reviews.
-
- 06 Şub, 2014 6 kayıt (commit)
-
-
Jacob Kaplan-Moss yazdı
-
Jacob Kaplan-Moss yazdı
-
Vajrasky Kok yazdı
MySQL does allow primary key with value 0. It only forbids autoincrement primary key with value 0. Thanks Claude Paroz for the report.
-
Christopher Medrela yazdı
Thanks jordan at aace.org for the suggestion.
-
Vajrasky Kok yazdı
-
Tim Graham yazdı
-
- 05 Şub, 2014 9 kayıt (commit)
-
-
Loic Bistuer yazdı
Refs #20625.
-
Alex Gaynor yazdı
-
Baptiste Mispelon yazdı
-
Baptiste Mispelon yazdı
This reverts commit 2ee447fb. That commit introduced a regression (#21882) and didn't really do what it was supposed to: while it did delay the evaluation of lazy objects passed to mark_safe(), they weren't actually marked as such so they could end up being escaped twice. Refs #21882.
-
Baptiste Mispelon yazdı
-
Loic Bistuer yazdı
-
Florian Apolloner yazdı
Refs #21952
-
Anssi Kääriäinen yazdı
-
Marc Tamlyn yazdı
-
- 04 Şub, 2014 7 kayıt (commit)
-
-
Alex Gaynor yazdı
-
Carl Meyer yazdı
Thanks Michael Manfre for the report.
-
Claude Paroz yazdı
Refs #21911. Now that we have a more traditional login form, we don't need any more a special field telling us we are dealing with the login form.
-
Claude Paroz yazdı
Historically, the Django admin used to pass through the request from an unauthorized access to the login view directly. Now we are using a proper redirection, which is also preventing inadvertantly changing data when POSTing login data to an admin view when user is already authorized. Thanks Marc Tamlyn and Tim Graham for the reviews.
-
Claude Paroz yazdı
Refs #21911.
-
Anssi Kääriäinen yazdı
Made sure Django treats case .filter(NOT (a AND b)) the same way as .filter((NOT a OR NOT b)) for join promotion.
-
Tim Graham yazdı
Thanks Siecje.
-
- 03 Şub, 2014 3 kayıt (commit)
-
-
Claude Paroz yazdı
-
David Fischer yazdı
-
Tim Graham yazdı
-
- 02 Şub, 2014 11 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
Michael Manfre yazdı
-
Alex Gaynor yazdı
Fix regress added to migrations.test_operations.test_alter_field_pk_fk
-
Michael Manfre yazdı
-
Alex Gaynor yazdı
-
Thomas Grainger yazdı
-
Claude Paroz yazdı
Fixed regression introduced by fabc678f. Thanks Michael Manfre for the report.
-
Aymeric Augustin yazdı
Fixed #21751 -- Explicitly closed cursors.
-
Michael Manfre yazdı
This commit touchs various parts of the code base and test framework. Any found usage of opening a cursor for the sake of initializing a connection has been replaced with 'ensure_connection()'.
-
Michael Manfre yazdı
Updated SQLUpdateCompiler.execute_sql to match the behavior described in the docstring; the 'first non-empty query' will now include all queries, not just the main and first related update. Added CURSOR and NO_RESULTS result_type constants to make the usages more self documenting and allow execute_sql to explicitly close the cursor when it is no longer needed.
-
Aymeric Augustin yazdı
Thanks Russell for the advice.
-