summaryrefslogtreecommitdiff
path: root/django/template
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34518 -- Fixed crash of random() template filter with an empty list.David Sanders2023-04-261-1/+4
* Refs #34482 -- Reverted "Fixed #32969 -- Fixed pickling HttpResponse and subc...Mariusz Felisiak2023-04-121-7/+8
* Fixed #34427 -- Improved error message when context processor does not return...David Sanders2023-03-291-1/+9
* Fixed #34363 -- Fixed floatformat crash on zero with trailing zeros.Panagiotis H.M. Issaris2023-02-221-1/+2
* Refs #7430 -- Removed broken Template.__iter__().Anders Hovmöller2023-02-081-4/+0
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-015-5/+0
* Fixed #34272 -- Fixed floatformat crash on zero with trailing zeros to zero d...David Wobrock2023-01-191-1/+1
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Fixed #34220 -- Moved csrf_input_lazy, csrf_token_lazy imports to the toplevel.rajdesai242023-01-061-2/+1
* Fixed #34098 -- Fixed loss of precision for Decimal values in floatformat fil...Vlastimil Zíma2022-10-241-1/+1
* Fixed #33864 -- Deprecated length_is template filter.Nick Pope2022-07-231-0/+7
* Fixed #32969 -- Fixed pickling HttpResponse and subclasses.Anv3sh2022-06-201-8/+7
* Normalized imports of functools.wraps.Aymeric Augustin2022-05-251-3/+3
* Fixed #33653 -- Fixed template crash when calling methods for built-in types ...cheng2022-05-201-7/+10
* Fixed #33639 -- Enabled cached template loader in development.Carlton Gibson2022-04-191-2/+1
* Fixed #33628 -- Ignored directories with empty names in autoreloader check fo...Manel Clos2022-04-111-2/+2
* Removed unused Node.__iter__().Keryn Knight2022-02-161-3/+0
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-072-8/+15
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-0725-615/+847
* Fixed #33473 -- Fixed detecting changes by autoreloader in .py files inside t...Hrushikesh Vaidya2022-02-031-0/+2
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-035-23/+32
* Fixed #33474 -- Added __slots__ to Variable and FilterExpression.Keryn Knight2022-02-021-0/+5
* Fixed CVE-2022-22818 -- Fixed possible XSS via {% debug %} template tag.Markus Holtermann2022-02-011-3/+6
* Simplified @stringfilter decorator and Library with unwrap().Baptiste Mispelon2022-01-102-20/+14
* Avoided isinstance(…, Variable) calls in FilterExpression.resolve().Keryn Knight2022-01-071-1/+2
* Fixed CVE-2021-45116 -- Fixed potential information disclosure in dictsort te...Florian Apolloner2022-01-041-5/+17
* Optimized django.template.autoreload.get_template_directories() a bit.Adam Johnson2021-12-211-2/+3
* Refs #32290 -- Optimized construct_relative_path() by delay computing has_quo...Keryn Knight2021-12-081-4/+4
* Fixed #33302 -- Made element_id optional argument for json_script template fi...Baptiste Mispelon2021-11-221-2/+2
* Refs #32987 -- Refactored out get_template_tag_modules().Daniel Fairhead2021-10-201-10/+19
* Used Path.read_text() in jinja2.get_exception_info().Mariusz Felisiak2021-09-271-2/+1
* Refs #32355 -- Used @functools.lru_cache as a straight decorator.Mariusz Felisiak2021-09-272-2/+2
* Fixed #30086, Refs #32873 -- Made floatformat template filter independent of ...Mariusz Felisiak2021-09-081-9/+31
* Refs #32919 -- Simplified Lexer.create_token() by reorganizing blocks.Chris Jerdonek2021-08-251-21/+27
* Refs #32919 -- Added assertion for token start in Lexer.create_token().Chris Jerdonek2021-08-251-3/+3
* Fixed #33036 -- Made simple_tag()/inclusion_tag() with takes_context raise Te...Matt Westcott2021-08-191-1/+1
* Fixed #33002 -- Made DebugLexer.tokenize() more closely parallel Lexer.tokeni...Chris Jerdonek2021-08-091-13/+21
* Refs #33002 -- Renamed variable from bit to token_string in Lexer.tokenize().Chris Jerdonek2021-08-091-4/+4
* Refs #33002 -- Optimized Lexer.tokenize() by skipping computing lineno when n...Chris Jerdonek2021-08-091-1/+1
* Fixed #32990 -- Simplified and optimized tag regex.Greg Twohig2021-08-091-6/+4
* Refs #32986 -- Moved TRANSLATOR_COMMENT_MARK to django.utils.translation.temp...Chris Jerdonek2021-08-051-1/+0
* Fixed #32986 -- Removed unneeded str.find() call in Lexer.create_token().Chris Jerdonek2021-08-051-3/+1
* Fixed #32919 -- Optimized lexing & parsing of templates.Keryn Knight2021-08-023-11/+26
* Fixed #28935 -- Fixed display of errors in extended blocks.cammil2021-07-021-2/+11
* Fixed #32824 -- Improved performance of NodeList.render().Keryn Knight2021-06-111-9/+4
* Refs #24121 -- Added __repr__() to AdminForm, BlockContext, BlockTranslateNod...saeedblanchette2021-06-101-0/+6
* Fixed #32814 -- Improved performance of TextNode.Keryn Knight2021-06-071-0/+9
* Refs #24121 -- Added __repr__() to Engineabhiabhi942021-06-011-0/+20
* Fixed #32744 -- Normalized to pathlib.Path in autoreloader check for template...Hasan Ramezani2021-05-261-2/+5
* Refs #24121 -- Added __repr__() to Origin and Template.Tiago Honorato2021-03-171-0/+9