summaryrefslogtreecommitdiff
path: root/django/template/base.py
AgeCommit message (Expand)Author
2026-02-10Fixed #36903 -- Fixed further NameErrors when inspecting functions with defer...93578237
2025-12-01Fixed #36712 -- Evaluated type annotations lazily in template tag registration.Jacob Walls
2025-09-12Refs #35667 -- Cached Django file prefixes for warnings.Adam Johnson
2025-09-04Refs #36559, #35667 -- Used skip_file_prefixes in PartialTemplate.source warn...farhan
2025-09-03Fixed #36559 -- Respected verbatim and comment blocks in PartialTemplate.source.farhan
2025-09-03Refs #36559 -- Ran template partial source tests in debug mode only.farhan
2025-08-14Fixed #36410 -- Added support for Template Partials to the Django Template La...farhan
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-06-18Fixed #36465, Refs #35816 -- Disallowed '+' and '-' characters in template va...haileyajohnson
2025-04-17Fixed #28050 -- Added template name to TemplateSyntaxError.farhan
2025-03-11Fixed #35816 -- Handled parsing of scientific notation in DTL. (#19213)haileyajohnson
2024-11-28Fixed #35897 -- Removed unnecessary escaping in template's get_exception_info().Klaas van Schelven
2024-10-10Fixed #35789 -- Improved the error message raised when the tag must be first ...ekinertac
2024-09-17Fixed #35735 -- Enabled template access to methods and properties of classes ...Fabian Braun
2023-10-02Fixed #34883 -- Allowed template tags to set extra data on templates.Carlton Gibson
2023-08-02Removed unneeded escapes in regexes.Mariusz Felisiak
2023-05-18Avoided parallel assignment in template classes.Adam Johnson
2023-02-08Refs #7430 -- Removed broken Template.__iter__().Anders Hovmöller
2022-05-20Fixed #33653 -- Fixed template crash when calling methods for built-in types ...cheng
2022-02-16Removed unused Node.__iter__().Keryn Knight
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-02-03Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak
2022-02-02Fixed #33474 -- Added __slots__ to Variable and FilterExpression.Keryn Knight
2022-01-07Avoided isinstance(…, Variable) calls in FilterExpression.resolve().Keryn Knight
2021-08-25Refs #32919 -- Simplified Lexer.create_token() by reorganizing blocks.Chris Jerdonek
2021-08-25Refs #32919 -- Added assertion for token start in Lexer.create_token().Chris Jerdonek
2021-08-09Fixed #33002 -- Made DebugLexer.tokenize() more closely parallel Lexer.tokeni...Chris Jerdonek
2021-08-09Refs #33002 -- Renamed variable from bit to token_string in Lexer.tokenize().Chris Jerdonek
2021-08-09Refs #33002 -- Optimized Lexer.tokenize() by skipping computing lineno when n...Chris Jerdonek
2021-08-09Fixed #32990 -- Simplified and optimized tag regex.Greg Twohig
2021-08-05Refs #32986 -- Moved TRANSLATOR_COMMENT_MARK to django.utils.translation.temp...Chris Jerdonek
2021-08-05Fixed #32986 -- Removed unneeded str.find() call in Lexer.create_token().Chris Jerdonek
2021-08-02Fixed #32919 -- Optimized lexing & parsing of templates.Keryn Knight
2021-07-02Fixed #28935 -- Fixed display of errors in extended blocks.cammil
2021-06-11Fixed #32824 -- Improved performance of NodeList.render().Keryn Knight
2021-06-07Fixed #32814 -- Improved performance of TextNode.Keryn Knight
2021-03-17Refs #24121 -- Added __repr__() to Origin and Template.Tiago Honorato
2021-02-26Refs #24121 -- Added __repr__() to FilterExpression, Lexer, Parser, and Token.David Smith
2020-05-11Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne
2019-12-10Used Signature API instead of deprecated inspect.getcallargs().Baptiste Mispelon
2019-12-10Used full module import for inspect in template/base.py.Baptiste Mispelon
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-10-09Improved performance of django.template.base.Parser.Alex Gaynor
2019-10-02Fixed some typos in comments and docs.Min ho Kim
2019-09-24Removed some outdated backwards compatibility imports and misleading comments.Mads Jensen
2019-05-07Removed unnecessary line in DebugLexer.tokenize().sanchjat
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