summaryrefslogtreecommitdiff
path: root/django/template/__init__.py
AgeCommit message (Expand)Author
2010-03-22[1.1.X] Fixed #12554 again: Corrected regression in silencing attribute looku...Karen Tracey
2010-03-20[1.1.X] Fixed #12554: Silence exceptions that have specified silent_variable_...Karen Tracey
2010-03-08[1.1.X] Fixed #11461: Ensured complete traceback is available on the debug pa...Karen Tracey
2010-03-02[1.1.X] Fixed #6510 -- Refactored the way child nodes are found in template n...Russell Keith-Magee
2010-02-27[1.1.X] Fixed #12981 -- Removed some stray tabs. Thanks to loewis for the rep...Karen Tracey
2010-02-26[1.1.X] Fixed #5971 - Fixed inconsistent behaviour of the TokenParser when pa...Jannis Leidel
2010-02-23[1.1.X] Fixed #12070. Fixed a case where var._whatever wasn't raising a Templ...Joseph Kocherhans
2009-04-11Fixed #10369 -- Fixed auto-escaping inside "tran" and "blocktrans" tags.Malcolm Tredinnick
2009-04-10Fixed #9315 -- Handle spaces in URL tag arguments.Malcolm Tredinnick
2009-03-25Template filters now pass numerical arguments through as numbers.Malcolm Tredinnick
2009-03-23Added consistent support for double- and single-quote delimiters in templates.Malcolm Tredinnick
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...Jacob Kaplan-Moss
2009-01-16Fixed #10014 -- Don't crash when using debug template tag inside a block node...Malcolm Tredinnick
2008-08-31Fixed #7027: template tags now corectly break tokens around strings marked fo...Jacob Kaplan-Moss
2008-08-15Fixed #5270 -- Allow template tags and filters to accept an emtpy string, pat...Gary Wilson Jr
2008-06-06Fixed #7293 -- Corrected some doctests strings internal to the template modul...Russell Keith-Magee
2008-03-17Fixed #5884 -- Added better display error handling for template variables.Malcolm Tredinnick
2008-02-05Tweaked [7082] and [7084] a little bit to also allow comment nodes prior to t...Malcolm Tredinnick
2008-02-04Fixed #5124 -- Added a reasonable error when "extends" is not the first templ...Malcolm Tredinnick
2007-12-22Negligible changes to django.template -- removed a useless docstring, convert...Adrian Holovaty
2007-12-22Removed lexer_factory() and parser_factory() functions in django.template, si...Adrian Holovaty
2007-12-22Removed a comment in django/template/__init__.py that suggests we would do 'c...Adrian Holovaty
2007-12-22Negligible formatting changes to django/template/__init__.py -- fixed some sp...Adrian Holovaty
2007-12-22Changed an '== None' to 'is None' in Template.__init__()Adrian Holovaty
2007-12-22Moved the various Debug classes in django.template to a new module, debug.py,...Adrian Holovaty
2007-11-30Fixed #6057 -- Mark rendered template output as safe for auto-escaping purposes.Malcolm Tredinnick
2007-11-28Fixed #5890 -- fixed the far edge-case of allowing constant strings insideMalcolm Tredinnick
2007-11-17Fixed #5945 -- Treat string literals in template filter arguments as safeMalcolm Tredinnick
2007-11-17Fixed #4713 -- Fixed handling of _() in template tag arguments. Based onMalcolm Tredinnick
2007-11-14Implemented auto-escaping of variable output in templates. Fully controllable...Malcolm Tredinnick
2007-09-21Fixed #3453: introduced a new template variable resolution system by Brian Ha...Jacob Kaplan-Moss
2007-09-15Fixed #3036 -- Fixed some doctest strings that were failing. Thanks to pterk ...Russell Keith-Magee
2007-09-14Fixed #5445: added some compatibility code for the lack of __iter__ in Jython...Jacob Kaplan-Moss
2007-07-07Fixed #4772 -- Fixed reverse URL creation to work with non-ASCII arguments.Malcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-22Backed out the changes in [5482] for a bit whilst some more investigation intoMalcolm Tredinnick
2007-06-17Trivial formatting changes.Malcolm Tredinnick
2007-06-17Fixed #4565 -- Changed template rendering to use iterators, rather thanMalcolm Tredinnick
2007-05-24Fixed #4378 -- Fixed a broken format string.Malcolm Tredinnick
2007-05-08Fixed #3753 -- Allow optional display of invalid variable name inMalcolm Tredinnick
2007-04-28Fixed #4180 -- Fixed docstring typo noticed by Gary Wilson.Malcolm Tredinnick
2007-04-28Fixed #4176 -- Fixed unintended change introduced in [5104]. Thanks,Malcolm Tredinnick
2007-04-27Minor tweak. Removed unnecessary argument default.Malcolm Tredinnick
2007-04-27Fixed #4164, #4171 -- Reworked some of the template lexer logic to ensure weMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-25Fixed #3948 -- Added some extra relevant information to FilterExpressionMalcolm Tredinnick
2007-03-09Fixed #3670 -- Fixed template argument parsing so that it understands negativeMalcolm Tredinnick
2007-02-27Fixed #3465: template variable lookups like {{ foobar.13 }} now (correctly) f...Jacob Kaplan-Moss
2007-02-23Fixed #3558: [4558] broken in Python 2.3; this fixes that breakage. Thanks fo...Jacob Kaplan-Moss
2007-02-23Fixed #343: filters that take strings now handle non-strings correctly. Thank...Jacob Kaplan-Moss