summaryrefslogtreecommitdiff
path: root/django/template/base.py
AgeCommit message (Expand)Author
2018-08-01Fixed typos in comments and docs.luz.paz
2018-07-31Fixed #29617 -- Fixed Template crash if template_string is lazy.Dražen Odobašić
2018-05-25Fixed #29400 -- Fixed crash in custom template filters that use decorated fun...Ryan Rubin
2018-05-10Replaced TOKEN_* constants by TokenType enums.Claude Paroz
2018-03-24Removed unnecessary variable in Lexer.create_token().Mads Jensen
2017-10-21Fixed #28730 -- Fixed loss of precision for large integer literals in templatesClaude Paroz
2017-09-28Simplified various __eq__() methods.Mads Jensen
2017-08-23Removed unneeded iter() calls.Sergey Fedoseev
2017-04-27Replaced django.utils.inspect.getargspec() with inspect.getfullargspec().Alexander Allakhverdiyev
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-17Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-02-06Fixed #27783 -- Switched VariableDoesNotExist.__str__() to repr() context.Ryan O’Hara
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Removed unused variables that are overwritten.Mads Jensen
2017-01-21Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).Mariusz Felisiak
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #24046 -- Removed mark_for_escaping() per deprecation timeline.Tim Graham
2017-01-17Refs #25466 -- Removed aliases for LoaderOrigin and StringOrigin.Tim Graham
2016-12-20Fixed #27584 -- Fixed display of render time template errors.Preston Timmons
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-08-31Fixed #27140 -- Prevented template rendering from hiding a property's TypeError.Tim Graham
2016-05-10Fixed #24046 -- Deprecated the "escape" half of utils.safestring.Tim Graham
2016-05-09Refs #24046 -- Removed redundant condition in render_value_in_context()Tim Graham
2016-04-09Fixed #26403 -- Removed translated content in "Invalid block tag" message.amureki
2016-01-26Fixed #25848 -- Set template origin on each node.Preston Timmons
2015-12-03Fixed #25825 -- Implemented __ne__() for template OriginJaap Roes
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-11-26Fixed a typo in the template Parser.parse docstring.Jaap Roes
2015-10-05Fixed #25423 -- Made error message for unknown template tag more helpful.Pindi Albert
2015-09-29Fixed #25466 -- Added backwards compatibility aliases for LoaderOrigin and St...Tim Graham
2015-09-23Refs #22933 -- Removed template.resolve_variable() per deprecation timeline.Tim Graham
2015-09-21Refs #18773 -- Improved template variable exception logging message.Nick Johnson
2015-09-15Fixed #25404 -- Added line numbers to TemplateSyntaxError strings.Dave Smith
2015-08-12Fixed #24257 -- Corrected i18n handling of percent signs.Doug Beck
2015-07-06Removed some u string prefixes in code comments.Tim Graham
2015-07-06Removed unused variable template.base.ALLOWED_VARIABLE_CHARS.Tim Graham
2015-06-30Used %r in the TextNode repr to show newlines better.Ned Batchelder
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-06-15Fixed #24979 -- Removed usage of inspect.getargspec().Tim Graham
2015-05-21Fixed #17085, #24783 -- Refactored template library registration.Preston Timmons
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-05-06Moved engine-related exceptions to django.template.exceptions.Preston Timmons