| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-04 | Fixed #21911 -- Made admin views redirect to login when needed | Claude Paroz | |
| 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. | |||
| 2014-02-02 | Ensure cursors are closed when no longer needed. | Michael Manfre | |
| 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()'. | |||
| 2013-12-28 | Fixed #20346 -- Made cache middleware vary on the full URL. | ijl | |
| Previously, only the URL path was included in the cache key. Thanks jamey for the suggestion. | |||
| 2013-12-23 | Imported override_settings from its new location. | Aymeric Augustin | |
| 2013-11-24 | flake8 fixes | Alex Gaynor | |
| 2013-11-24 | Properly closed cache connections at the end of the request. | Florian Apolloner | |
| This only affects the new cache api and not the deprecated get_cache. Refs #21012 | |||
| 2013-11-24 | Fixed flake8 error (5 space identation!!!) | Alex Gaynor | |
| 2013-11-24 | Don't fail if there is no memcached backend active. | Florian Apolloner | |
| 2013-11-24 | Fixed regression from ffc37e2343a93cf6d44247e20cd263b41f931716. | Florian Apolloner | |
| This (hopefully) ensures that the cache are created the same way as before the offending commit. | |||
| 2013-11-24 | Randomized KEY_PREFIX in caches test to prevent failures during parallel ↵ | Florian Apolloner | |
| testruns. | |||
| 2013-11-23 | Don't fail if cPickle doesn't exist. | Florian Apolloner | |
| Today is not my day :( | |||
| 2013-11-23 | Follow up to e112654fc81ddb3fbffbb8382b004d69367a85fe | Florian Apolloner | |
| Actually comitted the code now :þ | |||
| 2013-11-23 | Fixed #21200 -- Consistantly raise errors across all cache backends. | Florian Apolloner | |
| Thanks to tchaumeny for the patch. | |||
| 2013-11-23 | A handful of flake8 fixes | Alex Gaynor | |
| 2013-11-23 | Allowed running the test suite without memcached (!) | Aymeric Augustin | |
| 2013-11-23 | Fixed #21012 -- New API to access cache backends. | Curtis Maloney | |
| Thanks Curtis Malony and Florian Apolloner. Squashed commit of the following: commit 3380495e93f5e81b80a251b03ddb0a80b17685f5 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 14:18:07 2013 +0100 Looked up the template_fragments cache at runtime. commit 905a74f52b24a198f802520ff06290a94dedc687 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 14:19:48 2013 +0100 Removed all uses of create_cache. Refactored the cache tests significantly. Made it safe to override the CACHES setting. commit 35e289fe9285feffed3c60657af9279a6a2cfccc Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 12:23:57 2013 +0100 Removed create_cache function. commit 8e274f747a1f1c0c0e6c37873e29067f7fa022e8 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Nov 23 12:04:52 2013 +0100 Updated docs to describe a simplified cache backend API. commit ee7eb0f73e6d4699edcf5d357dce715224525cf6 Author: Curtis Maloney <curtis@tinbrain.net> Date: Sat Oct 19 09:49:24 2013 +1100 Fixed #21012 -- Thread-local caches, like databases. | |||
| 2013-11-22 | Fixed some flake8 issues | Alex Gaynor | |
| 2013-11-21 | Fixed #21476 -- Cache tests make an incorrect use of `HttpRequest` | Unai Zalakain | |
| Using `django.test.client.RequestFactory` solves the problem and cleans up all the `get_request` mess. | |||
| 2013-11-07 | Fixed a couple flake8 warnings. | Tim Graham | |
| 2013-11-07 | Fixed #20536 -- rewrite of the file based cache backend | Jaap Roes | |
| * Safer for use in multiprocess environments * Better random culling * Cache files use less disk space * Safer delete behavior Also fixed #15806, fixed #15825. | |||
| 2013-11-03 | Fixed all E226 violations | Alex Gaynor | |
| 2013-11-02 | PEP8 cleanup | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-26 | Fix all violators of E231 | Alex Gaynor | |
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21268 -- Fixed E303 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21285 -- Fixed E121,E122 pep8 warnings | Alasdair Nicol | |
| 2013-10-14 | Fixed #21266 -- Fixed E201,E202 pep8 warnings. | Larry O'Neill | |
| 2013-10-14 | Fixed #15888 -- Made tablename argument of createcachetable optional | Claude Paroz | |
| Thanks Aymeric Augustin for the report and the documentation and Tim Graham for the review. | |||
| 2013-10-11 | Fixed assorted flake8 errors. | Tim Graham | |
| 2013-10-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-09-19 | Fixed #21125 -- Removed support for cache URI syntax | Curtis Maloney | |
| 2013-09-08 | Removed some more unused local vars | Alex Gaynor | |
| 2013-08-09 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt | |||
| 2013-07-30 | Rename allow_syncdb to allow_migrate | Andrew Godwin | |
| 2013-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-07-01 | Fixed a few more imports of django.utils.unittest. | Aymeric Augustin | |
| One import per line please! Refs #20680. | |||
| 2013-06-29 | Advanced deprecation warnings for Django 1.7. | Aymeric Augustin | |
| 2013-06-14 | Added cache to available_apps in cache tests | Anssi Kääriäinen | |
| 2013-06-10 | Defined available_apps in relevant tests. | Aymeric Augustin | |
| Fixed #20483. | |||
| 2013-05-21 | Use assertIsInstance in tests. | Marc Tamlyn | |
| Gives much nicer errors when it fails. | |||
| 2013-05-18 | Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecated | Łukasz Langa | |
| 2013-05-18 | Fixed #9595 -- Allow non-expiring cache timeouts. | Jacob Burch | |
| Also, streamline the use of 0 and None between cache backends. | |||
| 2013-02-27 | [py3] Always fed hashlib with bytes. | Łukasz Langa | |
| 2013-02-26 | Renamed some tests and removed references to modeltests/regressiontests. | Florian Apolloner | |
| 2013-02-26 | Merged regressiontests and modeltests into the test root. | Florian Apolloner | |
