- 20 May, 2016 2 kayıt (commit)
- 19 May, 2016 7 kayıt (commit)
-
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Simon Charette yazdı
Thanks Tim for the report.
-
darius BERNARD yazdı
-
Tim Graham yazdı
-
Shai Berger yazdı
Note that the cookie is not changed every request, just the token retrieved by the `get_token()` method (used also by the `{% csrf_token %}` tag). While at it, made token validation strict: Where, before, any length was accepted and non-ASCII chars were ignored, we now treat anything other than `[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for backwards-compatibility, are accepted and replaced by 64-char ones). Thanks Trac user patrys for reporting, github user adambrenecki for initial patch, Tim Graham for help, and Curtis Maloney, Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne for reviews.
-
Tim Graham yazdı
-
- 18 May, 2016 8 kayıt (commit)
-
-
Simon Charette yazdı
Test suites besides Django's may need the same behavior.
-
Marti Raudsepp yazdı
-
Barthelemy Dagenais yazdı
-
Loïc Bistuer yazdı
-
Josh Smeaton yazdı
-
Josh Smeaton yazdı
The tests for this change are in the fix for #25774.
-
Philip Liberato yazdı
-
boaz85@gmail.com yazdı
-
- 17 May, 2016 8 kayıt (commit)
-
-
Claude Paroz yazdı
-
Simon Charette yazdı
Thanks to Tim for the extensive review.
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Florian Apolloner yazdı
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
-
Florian Apolloner yazdı
-
Tim Graham yazdı
-
Loïc Bistuer yazdı
Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify models' default and base managers. This deprecates use_for_related_fields. Old API: class CustomManager(models.Model): use_for_related_fields = True class Model(models.Model): custom_manager = CustomManager() New API: class Model(models.Model): custom_manager = CustomManager() class Meta: base_manager_name = 'custom_manager' Refs #20932, #25897. Thanks Carl Meyer for the guidance throughout this work. Thanks Tim Graham for writing the docs.
-
- 16 May, 2016 9 kayıt (commit)
-
-
Loïc Bistuer yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
Thanks Tim Graham for the review.
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Claude Paroz yazdı
Thanks Daniel Wiesmann for the report and the appropriate fixes.
-
Daniel Wiesmann yazdı
-
Tim Graham yazdı
-
Aron Podrigal yazdı
Fields inherited from abstract base classes may be overridden like any other Python attribute. Inheriting from multiple models/classes with the same attribute name will follow the MRO.
-
- 15 May, 2016 2 kayıt (commit)
-
-
Simon Charette yazdı
Thanks Markus and Tim for the review.
-
Simon Charette yazdı
Thanks Markus for your contribution and Tim for your review.
-
- 14 May, 2016 4 kayıt (commit)
-
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
This code added in 107c9f54 isn't used after 4ce7a6bc.
-