| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-22 | Stopped iterating on INSTALLED_APPS. | Aymeric Augustin | |
| Used the app cache's get_app_configs() method instead. | |||
| 2013-12-20 | Fixed #21639 -- Implemented RenderContext.__getitem__ | Alex Hill | |
| It's now consistent with RenderContext.get. | |||
| 2013-12-17 | Removed superfluous models.py files. | Aymeric Augustin | |
| Added comments in the three empty models.py files that are still needed. Adjusted the test runner to add applications corresponding to test labels to INSTALLED_APPS even when they don't have a models module. | |||
| 2013-12-10 | Fixed E124 pep8 warnings. | Loic Bistuer | |
| 2013-11-30 | Refs #21230 -- removed direct settings manipulation from template tests | Unai Zalakain | |
| 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 #21460 -- Reenabled proper template precedence in find_template | Pablo Martín | |
| Refs #20806. Thanks Unai Zalakain for the review. | |||
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | Fixing E302 Errors | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed flake8 E241 | Boryslav Larin | |
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-26 | Fix all violators of E231 | Alex Gaynor | |
| 2013-10-23 | Fixed #20945 -- Allowed cache tag to use a specific cache. | Curtis Maloney | |
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-22 | Fixed #21307 -- Moved TransRealMixin to django.test.utils. | Ramiro Morales | |
| 2013-10-21 | Removed some direct settings manipulations in tests; refs #21230. | Bouke Haarsma | |
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-19 | Removed unused local variables in tests. | Tim Graham | |
| 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-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-10-05 | Fixed #21161 -- Timezone-related tests on Windows. | Aymeric Augustin | |
| Thanks Xelnor for the patch. | |||
| 2013-09-19 | Fixed #7557 -- Added type checking to Variable initialization. | Tim Graham | |
| Thanks tobias for the suggestion and boblefrag and saz for work on the patch. | |||
| 2013-09-18 | Fixed #4278 -- Added a dirs parameter to a few functions to override ↵ | Berker Peksag | |
| TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion. | |||
| 2013-09-10 | Prevented arbitrary file inclusion with {% ssi %} tag and relative paths. | Tim Graham | |
| Thanks Rainer Koirikivi for the report and draft patch. This is a security fix; disclosure to follow shortly. | |||
| 2013-09-09 | Refactored code and tests that relied on django.utils.tzinfo. | Aymeric Augustin | |
| Refs #17262. | |||
| 2013-09-09 | Simplify FilterExpression.args_check | Curtis Maloney | |
| 2013-09-08 | Fix #20745: Don't silence TypeError raised inside templates. | Baptiste Mispelon | |
| Thanks to robin for the report and claudep for the review. | |||
| 2013-09-06 | Fixed #16096 -- Added origin attribute to template instances. | Preston Timmons | |
| Thanks jdunck for the suggestion. | |||
| 2013-09-05 | Took advantage of django.utils.six.moves.urllib.*. | Aymeric Augustin | |
| 2013-08-30 | Fixed #20989 -- Removed useless explicit list comprehensions. | Simon Charette | |
| 2013-08-30 | Improved {% include %} implementation | Curtis Maloney | |
| Merged BaseIncludeNode, ConstantIncludeNode and Include node. This avoids raising TemplateDoesNotExist at parsing time, allows recursion when passing a literal template name, and should make TEMPLATE_DEBUG behavior consistant. Thanks loic84 for help with the tests. Fixed #3544, fixed #12064, fixed #16147 | |||
| 2013-08-29 | Fixed #7116 -- Optimize RequestContext construction | Curtis Maloney | |
| 2013-08-29 | Fixed #17356 -- Allowed {% include %} to render compiled templates | Curtis Maloney | |
| Reviewed by Loic Bistuer and Tim Graham. | |||
| 2013-08-26 | Fixed #20693 -- Add timezone support to built-in time filter. | Warren Smith | |
| Modified django.utils.dateformat module, moving __init__() method and timezone-related format methods from DateFormat class to TimeFormat base class. Modified timezone-related format methods to return an empty string when timezone is inappropriate for input value. | |||
| 2013-08-26 | Added further fixes, tests for #19949/f33db5a09a. | Ramiro Morales | |
| Thanks Susan Tan. Refs #19949. | |||
| 2013-08-24 | Fixed 19949 -- Cached template loader now caches TemplateDoesNotExist | SusanTan | |
| Thanks @timgraham and @jdunck for the code reviews and Kronuz for bug report and initial patch. | |||
| 2013-08-14 | Fixed #20709 -- Allowed {% widthratio %} to accept an "as" parameter. | Jonathan Slenders | |
| Thanks clay.evil@ for the suggestion. | |||
| 2013-08-12 | Fixed #17778 -- Prevented class attributes on context from resolving as ↵ | Tim Graham | |
| template variables. Thanks KyleMac for the report, regebro for the patch, and Aymeric for the test. | |||
| 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-27 | Fixed a number of minor misspellings. | Julien Phalip | |
| 2013-07-25 | Fixed handling of template loader tests. | Carl Meyer | |
| Previously, the CachedLoaderTests were never run at all. | |||
| 2013-07-17 | Allowed Context.push to behave as a context mananger. | Curtis Maloney | |
| Thanks Loic Bistuer for the review. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
| 2013-06-29 | Advanced deprecation warnings for Django 1.7. | Aymeric Augustin | |
| 2013-06-25 | Fixed #20650 -- Fixed {% filter %} incorrectly accepting 'escape' as argument | Baptiste Mispelon | |
| Thanks to grzesiof for the report and to loic84 and Alex Gaynor for the review. | |||
| 2013-06-06 | Fixed #20502 (again) -- More i18n cache flush in tests | Claude Paroz | |
| Thanks Timo Graham for noticing the failures. | |||
