summaryrefslogtreecommitdiff
path: root/django/template
AgeCommit message (Expand)Author
2008-08-05Fixed #8031 - url tag no longer silences NoReverseMatch exceptions since this...Luke Plant
2008-08-01Fixed #3912 - Added simple type checking to template.Context.update() to help...Luke Plant
2008-07-26Fixed #4534 -- Added an "else" option to the "ifchanged" template tag.Malcolm Tredinnick
2008-06-26Fixed #7417 -- Fixed ReST error in do_if() docstring. Thanks, Richard Bell <r...Adrian Holovaty
2008-06-26Optimized {% cycle %} template tag so that it creates the Variable objects in...Adrian Holovaty
2008-06-26Fixed #6322 -- Fixed bug in 'ifchanged' template tag where it wasn't resettin...Adrian Holovaty
2008-06-18Fixed #7318 -- Cleaned up the template inheritance logic, specifically to han...Russell Keith-Magee
2008-06-06Fixed #7293 -- Corrected some doctests strings internal to the template modul...Russell Keith-Magee
2008-05-29Fixed #6430 -- Corrected the loading of templates from eggs, which was broken...Russell Keith-Magee
2008-05-29Fixed #6950 -- Modified initialization of template loaders to use a temporary...Russell Keith-Magee
2008-05-29Fixed #7301 -- Corrected minor typo in docstring. Thanks, micahcowan.Russell Keith-Magee
2008-03-20FIxed #6513 -- Handle overflows better in the floatformat filter. It's notMalcolm Tredinnick
2008-03-17Fixed #5884 -- Added better display error handling for template variables.Malcolm Tredinnick
2008-02-25Fixed #5701 -- Fixed decorators to take the name, attributes, and docstring o...Gary Wilson Jr
2008-02-05Tweaked [7082] and [7084] a little bit to also allow comment nodes prior to t...Malcolm Tredinnick
2008-02-04Fixed a simple TODO item in one error path of the "extends" tag.Malcolm Tredinnick
2008-02-04Fixed #5124 -- Added a reasonable error when "extends" is not the first templ...Malcolm Tredinnick
2008-02-04Allow whitespace prior to an "extends" tag. This allows a little more formatt...Malcolm Tredinnick
2008-01-28Fixed #6471 -- Fixed stringfilter decoration of `force_escape` filter.Gary Wilson Jr
2008-01-06Fixed #5567 -- Added a "last" filter. Based on a patch from darkpixel.Malcolm Tredinnick
2008-01-06The "first" filter can return an unsafe string for safe input ( {{"&lt;"|firs...Malcolm Tredinnick
2008-01-05Reverted 'regroup' template tag changes from [6956], as they caused bug #6271...Adrian Holovaty
2008-01-02Fixed #6295 -- Made the {% for %} tag a bit more efficient by creating a sing...Adrian Holovaty
2007-12-22Renamed 'reversed' variable to 'is_reversed' in ForLoop template tag implemen...Adrian Holovaty
2007-12-22Negligible cleanups to django.template.contextAdrian Holovaty
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-12-19Removed some reverse string craziness from the regroup template tag argument ...Gary Wilson Jr
2007-12-19Fixed #6239 -- Fixed an auto-escaping problem with urlizetrunc. Thanks, Smile...Malcolm Tredinnick
2007-12-17Small typo fixes. Thanks, jdetaeye, Ionut Ciocirlan, David Reynolds and adamv.Malcolm Tredinnick
2007-12-05Fixed #6132: note to self: when you add new template tags, you need to rememb...Jacob Kaplan-Moss
2007-12-04Fixed #4131: added an "escapejs" filter for use in JavaScript strings, and up...Jacob Kaplan-Moss
2007-12-02Fixed #4563 -- Context.pop/push/update return the top-level dictionary (the newMalcolm Tredinnick
2007-12-01Edited docs/serialization.txt changes from [6645]Adrian Holovaty
2007-11-30Fixed #6057 -- Mark rendered template output as safe for auto-escaping purposes.Malcolm Tredinnick
2007-11-29Fixed #6030 -- More robust error handling for the "float" filter. Thanks,Malcolm Tredinnick
2007-11-29Added tests and a small optimisation for [6721]. Thanks SmileyChris. Fixed #6049Malcolm Tredinnick
2007-11-28Fixed #5890 -- fixed the far edge-case of allowing constant strings insideMalcolm Tredinnick
2007-11-28Fixed an edge-case for auto-escaping: if the stringfilter decorator is used andMalcolm Tredinnick
2007-11-20Fixed #5983 -- Made iriencode filter respect safe strings. Patch fromMalcolm 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-14Content coming via {{ block.super }} is always going to be correctly escapedMalcolm Tredinnick
2007-11-14Implemented auto-escaping of variable output in templates. Fully controllable...Malcolm Tredinnick
2007-11-04`floatformat` template filter docstring changes:Gary Wilson Jr
2007-11-04Added examples to the `pluralize` template filter's docstring.Gary Wilson Jr