- 24 Şub, 2015 2 kayıt (commit)
-
-
Tim Graham yazdı
Backport of 1827aa90 from master
-
- 23 Şub, 2015 9 kayıt (commit)
-
-
Aymeric Augustin yazdı
Specifically stopped using the dir argument. Backport of a8fe1241 from master
-
Aymeric Augustin yazdı
Dropped the DJANGO_TEST_TEMP_DIR environment variable. Before this change, proper removal depended on the developer passing dir=os.environ['DJANGO_TEST_TMP_DIR'] to tempfile functions. Backport of 93440075 from master
-
Kenneth Kam yazdı
Backport of e83aba0e from master
-
Tim Graham yazdı
Backport of 1306cd1e from master
-
Emin Mastizada yazdı
Backport of dda2a3cf from master
-
Anssi Kääriäinen yazdı
These cached properies were causing problems with pickling, and in addition they were confusingly defined: field.rel.model._meta was not the same as field.rel.opts. Instead users should use field.rel.related_model._meta inplace of field.rel.opts, and field.rel.to._meta in place of field.rel.to_opts. Backport of f95122e5 from master
-
Marten Kenbeek yazdı
Switched from an adjancency list and uncached, iterative depth-first search to a Node-based design with direct parent/child links and a cached, recursive depth-first search. With this change, calculating a migration plan for a large graph takes several seconds instead of several hours. Marked test `migrations.test_graph.GraphTests.test_dfs` as an expected failure due to reaching the maximum recursion depth. Backport of 78d43a5e from master
-
Michael Manfre yazdı
Backport of 7fa7dd48 from master
-
- 22 Şub, 2015 6 kayıt (commit)
-
-
Aymeric Augustin yazdı
Refs #24389. Backport of 556a7487 from master
-
Tim Graham yazdı
Backport of b2f331dc from master
-
Tim Graham yazdı
Backport of ff5e47e7 from master
-
Tim Graham yazdı
Backport of 7901eccf from master
-
Aymeric Augustin yazdı
Thanks uranusjr for the report and analysis. Backport of 88a5f17d from master
-
- 21 Şub, 2015 8 kayıt (commit)
-
-
Michael Angeletti yazdı
Backport of ea3168dc from master
-
Aymeric Augustin yazdı
Backport of 787dd651 from master
-
Aymeric Augustin yazdı
In addition to simplifying the code, this reduces the number of writes. Backport of bd059e3f from master
-
Aymeric Augustin yazdı
This makes the staticfiles tests 2.5 times faster. Backport of 2bb5b0e0 from master Backport of bd059e3f from master
-
Aymeric Augustin yazdı
It should have been removed when the ADMIN_MEDIA_PREFIX setting was deprecated. Backport of 1d9d39fa from master
-
Loic Bistuer yazdı
Refs 5355baf6.
-
Loic Bistuer yazdı
This reverts commit 88e6fbb2.
-
Don Kirkby yazdı
Backport of 99a1bbf9 from master
-
- 20 Şub, 2015 12 kayıt (commit)
-
-
Aymeric Augustin yazdı
Explicit is better than implicit. Backport of 51b606f7 from master
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Anssi Kääriäinen yazdı
Backport of bad5f262 from master
-
Loic Bistuer yazdı
The new signature enables better support for routing RunPython and RunSQL operations, especially w.r.t. reusable and third-party apps. This commit also takes advantage of the deprecation cycle for the old signature to remove the backward incompatibility introduced in #22583; RunPython and RunSQL won't call allow_migrate() when when the router has the old signature. Thanks Aymeric Augustin and Tim Graham for helping shape up the patch. Refs 22583. Conflicts: django/db/utils.py Backport of bed504d7 from master
-
Andrei Kulakov yazdı
Backport of 1f9e4403 from master
-
Tim Graham yazdı
Backport of dd0b4878 from master
-
Marc Tamlyn yazdı
Thanks to DavidMuller for the report. Backport of c490e410 from master
-
Marc Tamlyn yazdı
As suggested by Anssi. This has the slightly strange side effect of passing the expression to Expression.convert_value has the expression passed back to it, but it allows more complex patterns of expressions. Backport of 32d4db66 from master
-
Marc Tamlyn yazdı
Joint effort between myself, Josh, Anssi and Shai. Conflicts: django/db/models/query.py tests/model_fields/models.py Backport of 4755f8fc from master.
-
Alex Vidal yazdı
Backport of e467919c from master
- 19 Şub, 2015 3 kayıt (commit)
-
-
Aymeric Augustin yazdı
This opens more possibilities, like accessing context.template.origin. It also follows the chain of objects instead of following a shortcut. Backport of 1bfcc950 from master
-
Claude Paroz yazdı
Workaround for http://bugs.python.org/issue20747. In some corner cases, Python 2 inserts a newline in a header value despite `maxlinelen` passed in Header constructor. Thanks Tim Graham for the review. Backport of efb1f99f from master.
-
Shai Berger yazdı
Thanks Joris Benschop for the report, and Tim Graham for the tests. Backport of ceadc94f from master
-