Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Normalized imports of functools.wraps. | Aymeric Augustin | 2022-05-25 | 1 | -2/+2 |
| | | | | | @wraps is 10 times more common than @functools.wraps. Standardize to the most common version. | ||||
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -13/+18 |
| | |||||
* | Made test_once a keyword argument in template_tests.utils.setup(). | Jon Dufresne | 2020-05-21 | 1 | -4/+4 |
| | | | | | Replaces the kwargs.get(...) pattern. Helps avoid typos by providing a better error message in case of misuse. | ||||
* | Refs #23919, #27778 -- Removed obsolete mentions of unicode. | Vytis Banaitis | 2017-01-26 | 1 | -1/+1 |
| | |||||
* | Refs #23919 -- Removed misc references to Python 2. | Tim Graham | 2017-01-21 | 1 | -1/+1 |
| | |||||
* | Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage. | Tim Graham | 2017-01-20 | 1 | -2/+1 |
| | | | These functions do nothing on Python 3. | ||||
* | Refs #23919 -- Stopped inheriting from object to define new style classes. | Simon Charette | 2017-01-19 | 1 | -3/+3 |
| | |||||
* | Refs #23919 -- Removed python_2_unicode_compatible decorator usage | Claude Paroz | 2017-01-18 | 1 | -4/+0 |
| | |||||
* | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | 2017-01-18 | 1 | -4/+0 |
| | |||||
* | Fixed #27140 -- Prevented template rendering from hiding a property's TypeError. | Tim Graham | 2016-08-31 | 1 | -0/+4 |
| | |||||
* | Refs #24022 -- Removed the ssi tag per deprecation timeline. | Tim Graham | 2015-09-23 | 1 | -3/+0 |
| | |||||
* | Fixed #17085, #24783 -- Refactored template library registration. | Preston Timmons | 2015-05-21 | 1 | -39/+7 |
| | | | | | | * Converted the ``libraries`` and ``builtins`` globals of ``django.template.base`` into properties of the Engine class. * Added a public API for explicit registration of libraries and builtins. | ||||
* | Cleaned up template loader tests. | Preston Timmons | 2015-02-24 | 1 | -0/+1 |
| | |||||
* | Sorted imports with isort; refs #23860. | Tim Graham | 2015-02-06 | 1 | -2/+1 |
| | |||||
* | Fixed #23913 -- Deprecated the `=` comparison in `if` template tag. | Ola Sitarska | 2015-01-11 | 1 | -1/+6 |
| | |||||
* | Deprecated TEMPLATE_STRING_IF_INVALID. | Aymeric Augustin | 2014-12-28 | 1 | -8/+8 |
| | |||||
* | Isolated template tests from Django settings. | Aymeric Augustin | 2014-12-28 | 1 | -25/+32 |
| | |||||
* | Cleaned up the django.template namespace. | Aymeric Augustin | 2014-12-28 | 1 | -4/+6 |
| | | | | | | | | | Since this package is going to hold both the implementation of the Django Template Language and the infrastructure for Multiple Template Engines, it should be untied from the DTL as much as possible within our backwards-compatibility policy. Only public APIs (i.e. APIs mentioned in the documentation) were left. | ||||
* | Fixed #23958 -- Rewrote filter tests as unit tests. | Preston Timmons | 2014-12-06 | 1 | -0/+206 |