summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-25[1.8.x] Updated trove classifier to beta.1.8b1Tim Graham
2015-02-25[1.8.x] Bumped version to 1.8 beta 1.Tim Graham
2015-02-25[1.8.x] Fixed #24411 -- Avoided dict key/method clash in admin delete views.Tim Graham
Backport of 47b35b1844b2adc167e64674824873991e9c4c2b from master
2015-02-24[1.8.x] Fixed #24391 -- Made BoundField.value() cache callable values.Michael Angeletti
Backport of 65441bbdb02427655869c42791a0bc5a9c631292 from master
2015-02-24[1.8.x] Reverted "Fixed #24325 -- Documented change in ModelForm.save() ↵Tim Graham
foreign key access." This reverts commit 0af3822dc362b6253bda1c9699466dd0bbbf6066. It's obsoleted by refs #24395. Backport of d298b1ba5043eaa40f3f4bebe3c7634b359ba34b from master
2015-02-24[1.8.x] Fixed #24395 -- Ensured inline ModelsForms have an updated related ↵Stanislas Guerra
instance. Backport of 4c2f546b55c029334d22e69bb29db97f9356faa3 from master
2015-02-24[1.8.x] Cleaned up template directory handling in template tests.Preston Timmons
Backport of 8e129b42ad9c9adca599228ae2ad68271fa46d44 from master
2015-02-24[1.8.x] Combined TemplateTests and TemplateRegressionTests.Preston Timmons
Backport of 32c108a221c54a4f680afe32175d70b5d2e92593 from master
2015-02-24[1.8.x] Moved test_token_smart_split into ParserTests.Preston Timmons
Backport of 25a0b5cdcd5e70a6563116639a477b915ee5784e from master
2015-02-24[1.8.x] Moved ifchanged tests into syntax_tests/test_if_changed.py.Preston Timmons
Backport of 3d8fee605184d8ffa47a32546298b52b52d7a087 from master
2015-02-24[1.8.x] Moved cache tests into syntax_tests/test_cache.py.Preston Timmons
Backport of f6d087b628a61a7b036cc468328497082031dc8e from master
2015-02-24[1.8.x] Moved RequestContextTests into test_context.Preston Timmons
Backport of 250a3d199310a954a95fb1ffa4915f0e51ba1767 from master
2015-02-24[1.8.x] Moved TemplateTagLoading cases into test_custom.Preston Timmons
Backport of ff67ce5076c1f4d3dc32fd755a1b65d3310c6cb1 from master
2015-02-24[1.8.x] Moved include tests into syntax_tests/test_include.py.Preston Timmons
Backport of 06ffc764a9b2d2521e6a574d279b66ad411cc65c from master
2015-02-24[1.8.x] Moved ssi tests into syntax_tests/test_ssi.py.Preston Timmons
Backport of 441a47e1efd46001ca454b80e0d5f8c5ea4e235b from master
2015-02-24[1.8.x] Cleaned up template loader tests.Tim Graham
Backport of 1827aa902481cd80d2fb154e7b073f139936d5fc from master
2015-02-24[1.8.x] Fixed typos in flatpages_tests comments.Nik Nyby
Backport of 2be6b526568aaaae5353a4a600a085d3c2135363 from master
2015-02-23[1.8.x] Normalized usage of the tempfile module.Aymeric Augustin
Specifically stopped using the dir argument. Backport of a8fe12417f778a76837f8e4f8503779f52a396ba from master
2015-02-23[1.8.x] Guaranteed removal of temporary files during tests.Aymeric Augustin
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 934400759de817471ff37d736686201d7ae34e82 from master
2015-02-23[1.8.x] Fixed #23762 -- clarified CACHE_MIDDLEWARE_ANONYMOUS_ONLY ↵Kenneth Kam
deprecation in docs Backport of e83aba0e2cce16cd1b32d1c172239a4e20867e95 from master
2015-02-23[1.8.x] Fixed #24377 -- Fixed model inline formsets with primary key's that ↵Tim Graham
have defaults. Backport of 1306cd1e8acfb13602ee8dc40993b2505cd7523b from master
2015-02-23[1.8.x] Broke long lines in code examples.Ian Lee
The website only renders code blocks at 96 chars, and therefore long code lines get wrapped. Manually breaking the lines prevents the wrapping from occurring. Backport of 00fbd8fd527fd6ee0319361bf194cd51a1ac1bfb from master
2015-02-23[1.8.x] Added formats for the Azerbaijani locale.Emin Mastizada
Backport of dda2a3cf4cc29d01de180f66d19441f300732e52 from master
2015-02-23[1.8.x] Fixed #24381 -- removed ForeignObjectRel opts and to_optsAnssi Kääriäinen
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 f95122e541df5bebb9b5ebb6226b0013e5edc893 from master
2015-02-23[1.8.x] Fixed #24366 -- Optimized traversal of large migration dependency ↵Marten Kenbeek
graphs. 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 78d43a5e1064b63db1c486516c4263ef1c4c975c from master
2015-02-23Fixed signature of BaseDatabaseOperations.date_interval_sql()Michael Manfre
Backport of 7fa7dd48c4 from master
2015-02-22[1.8.x] Fixed a few uses of Template that relied on a default engine.Aymeric Augustin
Refs #24389. Backport of 556a748 from master
2015-02-22[1.8.x] Updated tutorial to use explicit relative imports.Tim Graham
Backport of b2f331dc68ec3c5a34285f7af9614e4178e9a371 from master
2015-02-22[1.8.x] Corrected sqlmigrate output in tutorial 1.Tim Graham
Backport of ff5e47e7a4a638a30424331222e0abdb60842ddd from master
2015-02-22[1.8.x] Fixed #24371 -- Cautioned against trying to switch databases.Tim Graham
Backport of 7901eccf2e591447850be00011a7bb556a3c53f2 from master
2015-02-22[1.8.x] Fixed #24389 -- Isolated the CSRF view from the TEMPLATES setting.Aymeric Augustin
Thanks uranusjr for the report and analysis. Backport of 88a5f17 from master
2015-02-22[1.8.x] Fixed #24358 -- Corrected code-block directives for console sessions.Sean Wang
Backport of eba6dff581aa8bd6a1c08456e83e68ad09ae4ec3 from master
2015-02-21[1.8.x] Fixed #24376 -- added verbose_name arg to UUIDFieldMichael Angeletti
Backport of ea3168dc6ced391d848c511a14cfcecfeac9d401 from master
2015-02-21[1.8.x] Removed obsolete reference to media directory.Aymeric Augustin
Backport of 787dd6519a791f210dc8275eaf2fd41454bf9670 from master
2015-02-21[1.8.x] Removed workaround for SVN limitations.Aymeric Augustin
In addition to simplifying the code, this reduces the number of writes. Backport of bd059e3f8c6311dcaf8afe5e29ef373f7f84cf26 from master
2015-02-21[1.8.x] [1.8.x] Avoided collecting admin static files in tests.Aymeric Augustin
This makes the staticfiles tests 2.5 times faster. Backport of 2bb5b0e09863df65756fe0050406163cb70750f1 from master Backport of bd059e3f8c6311dcaf8afe5e29ef373f7f84cf26 from master
2015-02-21[1.8.x] Removed TestServeAdminMedia.Aymeric Augustin
It should have been removed when the ADMIN_MEDIA_PREFIX setting was deprecated. Backport of 1d9d39fa1c60896e31360d5f8d6b972979ee7c95 from master
2015-02-21Removed zombie file again.Loic Bistuer
Refs 5355baf6c770ac1e5c7f7a4f86ef95042f76b8b4.
2015-02-21Fixed a couple of allow_migrate routers in tests.Loic Bistuer
This reverts commit 88e6fbb2e341657cb5365b9b78fb44e3c7065d2d.
2015-02-20[1.8.x] Fixed typo in django/db/models/fields/files.py comment.Don Kirkby
Backport of 99a1bbf9853e0b06385d7f221a90828e6c060132 from master
2015-02-20[1.8.x] Fixed #24341 -- Added specific error messages to RangeField subclassesforesmac
Backport of 1d1d5d1c315e0e58f02a7f2a07b56ed20b09c087 from master
2015-02-20[1.8.x] Removed a non-obvious side-effect of assigning Context.template.Aymeric Augustin
Explicit is better than implicit. Backport of 51b606f from master
2015-02-20Silenced a deprecation warning in commands_sql test.Tim Graham
2015-02-20Removed an inadvertently added test directory.Tim Graham
2015-02-20[1.8.x] Fixed #24328 -- cleaned up Options._get_fields() implementationAnssi Kääriäinen
Backport of bad5f262bf4a17f157808ec1aa225ba9c94c1eee from master
2015-02-20[1.8.x] Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer
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 bed504d70bede3431a213203c13a33905d6dbf77 from master
2015-02-20[1.8.x] Fixed #23932 -- Added how-to on migrating unique fields.Andrei Kulakov
Backport of 1f9e44030e9c5300b97ef7b029f482c53a66f13b from master
2015-02-20[1.8.x] Fixed typo in path to is_safe_url()Tim Graham
Backport of dd0b487872de4e3ff966da51e3610bac996e44f0 from master
2015-02-20[1.8.x] Fixed #24373 -- Added run_validators to ArrayField.Marc Tamlyn
Thanks to DavidMuller for the report. Backport of c490e410af from master
2015-02-20[1.8.x] Update converters to take a consistent set of parameters.Marc Tamlyn
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 32d4db66b9 from master