summaryrefslogtreecommitdiff
path: root/django/template/defaultfilters.py
AgeCommit message (Expand)Author
2011-03-03Fixed #11206 -- Ensure that the floatformat template filter doesn't switch to...Ramiro Morales
2011-01-26Fixed #13828 -- DRY'd up the dictsort(reversed) filters, will speed them up a...Alex Gaynor
2011-01-24Fixed #14240 -- Enabled localization for the filesize filter. Thanks to David...Russell Keith-Magee
2011-01-02Fixed #2986 -- Made the JavaScript code that drives related model instance ad...Ramiro Morales
2010-11-27Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...Russell Keith-Magee
2010-09-13Fixed #13765 - 'safe' parameter for urlencode filterLuke Plant
2010-09-13Fixed #12965 - unordered_list template filter fails when given a non-iterable...Luke Plant
2010-08-16Fixed #14002 -- Modified filesize filter to ensure strings are translatable. ...Russell Keith-Magee
2010-08-14Fixed #14002 -- Updated filesize filter to support terabyte and petabyte file...Russell Keith-Magee
2010-08-07Fixed #11021 -- Clarified newline stripping behavior in the truncatewords and...Russell Keith-Magee
2010-08-03Fixed #11377: the template join filter now correctly escapes the joiner, too.Jacob Kaplan-Moss
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-03-15Fixed #13114 -- Modified escapejs to produce output that is JSON compliant. T...Russell Keith-Magee
2010-02-22Fixed #11687: the `add` filter is now less failsome when faced with things th...Jacob Kaplan-Moss
2010-02-13Fixed #11944 -- Improved exception handling for the filesizeformat filter. Th...Russell Keith-Magee
2010-01-01Fixed #12472 - Correctly show TimeFields values when using locale-aware forma...Jannis Leidel
2009-12-22Fixed #7980 - Improved i18n framework to support locale aware formatting (dat...Jannis Leidel
2009-12-12Fixed #11972: Corrected title filter handling of numbers followed by letters....Karen Tracey
2009-10-12Fixed #11993: fixed the the `floatformat` filter on `NaN` values in Python 2....Jacob Kaplan-Moss
2009-04-12Fixed #10675 -- Added unicode paragraph and line-sep handling to escapejs.Malcolm Tredinnick
2009-04-02Fixed #9520: make the date filter fail silently for non-date values. Thanks, ...Jacob Kaplan-Moss
2009-03-31Fixed #10513: floatformat now works with floatish things, not just real float...Jacob Kaplan-Moss
2009-03-30Fixed #8462 -- Made `length` and `length_is` template filters fail silently w...Gary Wilson Jr
2009-03-02Fixed #9701 -- Added a "safeseq" template filter.Malcolm Tredinnick
2008-11-15Fixed a bug introduced in r9422.Malcolm Tredinnick
2008-11-15Fixed #6948 -- The join filter was escaping the literal value that wasMalcolm Tredinnick
2008-11-08Fixed #5748 -- Made floatformat filter round properly on all platforms and ha...Karen Tracey
2008-10-28Fixed #8966 -- Changed is_safe for length_is filter to False, since its retur...Karen Tracey
2008-08-26Fixed #7201 -- Fixed the timeuntil filter to work correctly with timezone-awareMalcolm Tredinnick
2008-08-26Fixed #7177 -- Added extra robustness to the escapejs filter so that allMalcolm Tredinnick
2008-08-25Fixed #7743: Reverted [8483], which was itself a reversion of [8481], after c...Russell Keith-Magee
2008-08-23Reverted [8481] and [8482] while we work out what is going on with #8453 and ...Russell Keith-Magee
2008-08-23Fixed #7443: Corrected a long standing mistake in the timesince/timeuntil fil...Russell Keith-Magee
2008-03-20FIxed #6513 -- Handle overflows better in the floatformat filter. It's notMalcolm Tredinnick
2008-02-25Fixed #5701 -- Fixed decorators to take the name, attributes, and docstring o...Gary Wilson Jr
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 ( {{"<"|firs...Malcolm Tredinnick
2007-12-19Fixed #6239 -- Fixed an auto-escaping problem with urlizetrunc. Thanks, Smile...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-01Edited docs/serialization.txt changes from [6645]Adrian Holovaty
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 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-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
2007-11-04Style and import fixes.Gary Wilson Jr