- 26 Haz, 2013 2 kayıt (commit)
-
-
Andrew Clark yazdı
Thanks to noirbizarre for the report and initial patch.
-
Loic Bistuer yazdı
Thanks to Keryn Knight for the report.
-
- 25 Haz, 2013 6 kayıt (commit)
-
-
Baptiste Mispelon yazdı
Thanks to grzesiof for the report and to loic84 and Alex Gaynor for the review.
-
Simon Charette yazdı
Those methods were only used by `contrib.admin` internally and exclusively related to `contrib.auth`. Since they were undocumented but used in the wild the raised deprecation warning point to an also undocumented alternative that lives in `contrib.auth`. Also did some PEP8 and other cleanups in the affected modules.
-
Javier Mansilla yazdı
Thanks jimmylam@ for the suggestion.
-
Tim Graham yazdı
-
Daniel Izquierdo yazdı
-
Russell Keith-Magee yazdı
This is to allow future compatibility with work that is ongoing in the 2013 GSoC.
-
- 24 Haz, 2013 5 kayıt (commit)
-
-
Aymeric Augustin yazdı
In Django < 1.6, override_settings restores the settings module that was active when the override_settings call was executed, not when it was run. This can make a difference when override_settings is applied to a class, since it's executed when the module is imported, not when the test case is run. In addition, if the settings module for tests is stored alongside the tests themselves, importing the settings module can trigger an import of the tests. Since the settings module isn't fully imported yet, class-level override_settings statements may store a reference to an incorrect settings module. Eventually this will result in a crash during test teardown because the settings module restored by override_settings won't the one that was active during test setup. While Django should prevent this situation in the future by failing loudly in such dubious import sequences, that change won't be backported to 1.5 and 1.4. However, these versions received the "allowed hosts" patch and they're prone to "AttributeError: 'Settings' object has no attribute '_original_allowed_hosts'". To mitigate this regression, this commits stuffs _original_allowed_hosts on a random module instead of the settings module. This problem shouldn't occur in Django 1.6, see #20290, but this patch will be forward-ported for extra safety. Also tweaked backup variable names for consistency. Forward port of 02619227 from stable/1.5.x. Conflicts: django/test/utils.py
-
Tim Graham yazdı
-
Baptiste Mispelon yazdı
Thanks to Tim Graham for the report and review.
-
Baptiste Mispelon yazdı
Thanks to Michal Sládek for the report and initial patch, and to loic84 for the review.
-
Simon Meers yazdı
-
- 23 Haz, 2013 1 kayıt (commit)
-
-
SusanTan yazdı
-
- 22 Haz, 2013 9 kayıt (commit)
-
-
Baptiste Mispelon yazdı
The code examples should now work correctly. The `get_context_data` method in the examples was changed when necessary to adopt a singular style (get context with super(...), add the extra keys to the dict then return it). Thanks to Remco Wendt for the initial report and to Tim Graham for the review.
-
Remco Wendt yazdı
-
Ramiro Morales yazdı
Thanks naktinis for the report and initial patch.
-
Simon Charette yazdı
-
Andrew Godwin yazdı
Fixed #20587 -- Made convert_values handle None values
-
Gilberto Gonçalves yazdı
-
Marc Tamlyn yazdı
Fixed #18872 -- Added prefix to FormMixin
-
Gilberto Gonçalves yazdı
Thanks @ibustama for the initial patch and dragonsnaker for opening the report.
-
Claude Paroz yazdı
BaseModelFormSet.forms is now a cached property instead of being populated in the __init__ method. This behaviour also matches an example in the documentation. Thanks Thomasz Swiderski for the report and Simon Charette for the review.
-
- 21 Haz, 2013 4 kayıt (commit)
-
-
Tim Graham yazdı
Thanks claudep for the catch and bmispelon for the research.
-
James Bennett yazdı
-
Baptiste Mispelon yazdı
Thanks to ndokos for the report.
-
Oliver Beattie yazdı
Refactored override_settings to store the underlying settings._wrapped value seen at runtime, not instantiation time.
-
- 20 Haz, 2013 6 kayıt (commit)
-
-
Tim Graham yazdı
Thanks colinnkeenan@ for the report.
-
Simon Charette yazdı
This attribute is only allowed on inputs of type "text", "search", "url", "tel", "email", or "password". Thanks to yoyoma for the report and @bmispelon for the review.
-
Tim Graham yazdı
-
Harm Geerts yazdı
-
Baptiste Mispelon yazdı
-
Russell Keith-Magee yazdı
Thanks to kux for the report, and Russ Webber for the patch.
-
- 19 Haz, 2013 7 kayıt (commit)
-
-
Alex Gaynor yazdı
Itty bitty typo fix.
-
Christian Metts yazdı
"deletes" was missing it's last e.
-
Loic Bistuer yazdı
Thanks to Keryn Knight for the initial report and reviews, and to tomask for the original patch.
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
Fixed failing test on MySQL since c86a9b63
-
Loic Bistuer yazdı
-
Baptiste Mispelon yazdı
-