| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-28 | Fixed E125 pep8 warnings | Christopher Medrela | |
| 2013-11-26 | Fixed #21355 -- try importing _imaging from PIL namespace first. | Richard Xia | |
| 2013-11-24 | Fixed #21500 -- Removed imports of deprecated utils.importlib | Baptiste Mispelon | |
| 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-20 | Fixed #21458 -- Made check_for_language more resistant to malformed input. | Baptiste Mispelon | |
| Thanks to Sergey Sorokin for the report and to Bouke Haarsma for the review. | |||
| 2013-11-19 | Use `classmethod` as a decorator. | xuxiang | |
| 2013-11-15 | Fixed the use of the -ise suffix, where -ize is prefered | Alex Gaynor | |
| 2013-11-12 | Fixed typo in lru_cache.py; refs #21351. | Vajrasky Kok | |
| 2013-11-11 | Flake8 fixes -- including not runnign flake8 over a backported file | Alex Gaynor | |
| 2013-11-11 | Fixed #21420 once more. | Aymeric Augustin | |
| 2013-11-11 | Fixed #9523 -- Restart runserver after compiling apps translations | Bouke Haarsma | |
| Django also uses locales provided by apps, which also might change. Also when i18n is disabled, there is no need for watching translation files. | |||
| 2013-11-11 | Fixed #21420 -- Autoreloader on BSD with Python 3. | Aymeric Augustin | |
| Thanks Bouke Haarsma for the report. | |||
| 2013-11-11 | Fix syntax error under Python 3.2. | Aymeric Augustin | |
| 2013-11-11 | Fixed #21351 -- Replaced memoize with Python's lru_cache. | Bouke Haarsma | |
| Replaced the custom, untested memoize with a similar decorator from Python's 3.2 stdlib. Although some minor performance degradation (see ticket), it is expected that in the long run lru_cache will outperform memoize once it is implemented in C. Thanks to EvilDMP for the report and Baptiste Mispelon for the idea of replacing memoize with lru_cache. | |||
| 2013-11-08 | Fixed #5849 -- Strip whitespace from blocktrans | Bouke Haarsma | |
| Add the trimmed option to the blocktrans tag to trim any newlines and whitespace from its content. This allows the developer to indent the blocktrans tag without adding new lines and whitespace to the msgid in the PO file. Thanks to mpessas for the initial patch and Dmitri Fedortchenko for the report. | |||
| 2013-11-06 | flake8 fixes | Alex Gaynor | |
| 2013-11-06 | Distinguish between browser-deprecated locales and internally | Baptiste Mispelon | |
| deprecated ones. Thanks to bouke for pointing this out. | |||
| 2013-11-05 | Fix python2 breakage caused by e5e044da87800feb6ef63fef1765d8c05022d926. | Baptiste Mispelon | |
| 2013-11-05 | Fixed #18419 -- Full backwards compatibility for old language codes | Bouke Haarsma | |
| Improved documentation about zh-* deprecation and upgrade path. Thanks to Baptiste Mispelon for the code reviews. | |||
| 2013-11-05 | Flake8 fixes | Alex Gaynor | |
| 2013-11-04 | Fixed python3 breakage introduced by c0a2388a1c4ead1afaec98e4ebc953a772ca3849. | Baptiste Mispelon | |
| 2013-11-04 | Fixed #18149 -- Changed language codes for Chinese | Bouke Haarsma | |
| Language codes for Chinese are zh_Hans (Simplified) and zh_Hant (Traditional). Added support for browsers that still send the deprecated language codes. Thanks to Olli Wang for the report. | |||
| 2013-11-04 | Merge pull request #1821 from Bouke/tickets/14170 | Aymeric Augustin | |
| #14170 -- Reset i18n cache when settings changed | |||
| 2013-11-04 | Updated the set of watched files after each request. | Aymeric Augustin | |
| Otherwise the kqueue-based autoreloader may not see changes to files that weren't imported when the server started. Thanks Bouke Haarsma for the report and Loïc Bistuer for locating the problem. | |||
| 2013-11-04 | Simplify (and very very slightly speed up) the pbkdf2 implementation | Alex Gaynor | |
| 2013-11-03 | Fixed all E226 violations | Alex Gaynor | |
| 2013-11-03 | Fixed #14170 -- Reset i18n cache when settings change | Bouke Haarsma | |
| 2013-11-02 | Correct flake8 E302 violations | Ray Ashman Jr | |
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | More attacking E302 violators | Alex Gaynor | |
| 2013-11-02 | Fixed flake8 E241 | Boryslav Larin | |
| 2013-11-02 | Merge pull request #1848 from rayashmanjr/master | Alex Gaynor | |
| Correct flake8 violation E261 | |||
| 2013-11-02 | Correct flake8 violation E261 | Ray Ashman Jr | |
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-11-02 | Fixed #9523 -- Restart runserver after translation MO files change | Bouke Haarsma | |
| Thanks to Krzysztof Kulewski for the initial patch. | |||
| 2013-11-01 | Fixed spelling ("dependant" -> "dependent") | Tim Graham | |
| Dependent means reliant on. A dependant is a person like a child or spouse. Thanks Andrew Wilcox for the report. | |||
| 2013-11-01 | Improved resource limits handling in the kqueue autoreloader. | Aymeric Augustin | |
| Refs #21356. Thanks Loïc. | |||
| 2013-10-31 | Reduce the set of events that trigger a reload. | Aymeric Augustin | |
| This seems to avoid multiple reloads. | |||
| 2013-10-30 | Add instant autoreload on platforms supporting kqueue. | Aymeric Augustin | |
| 2013-10-30 | Fixed #9722 - used pyinotify as change detection system when available | Unai Zalakain | |
| Used pyinotify (when available) to replace the "pool-every-one-second" mechanism in `django.utils.autoreload`. Thanks Chris Lamb and Pascal Hartig for work on the patch. | |||
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-26 | Fixed #21335 -- Use importlib from python3 when using python3 | Andrey Antukh | |
| 2013-10-26 | Fixed up some more flake8 violations (this particular violation still has ↵ | Alex Gaynor | |
| many occurrences in the tests/ dir so it can't be removed from setup.cfg yet) | |||
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-22 | Fixed E221 pep8 warnings. | Tim Graham | |
| 2013-10-22 | Fixed #5789 -- Changed LocaleMiddleware session variable to '_language'. | Bouke Haarsma | |
| The old 'django_language' variable will still be read from in order to migrate users. The backwards-compatability shim will be removed in Django 1.8. Thanks to jdunck for the report and stugots for the initial patch. | |||
| 2013-10-21 | Fixed #21275 -- Fixed a serializer error when generating migrations for ↵ | Loic Bistuer | |
| contrib.auth. The migration serializer now looks for a deconstruct method on any object. | |||
| 2013-10-21 | Fixed #21253 -- PBKDF2 with cached HMAC key | Florian Apolloner | |
| This gives a 2x speed increase compared to the existing implementation. Thanks to Steve Thomas for the initial patch and Tim Graham for finishing it. | |||
| 2013-10-21 | Fixed E227 pep8 warnings | Tim Graham | |
