summaryrefslogtreecommitdiff
path: root/django/template/base.py
AgeCommit message (Expand)Author
2013-02-15[1.5.x] Fixed #19829 -- Fixed index lookups for NumPy arrays in templates.Julien Phalip
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-12[py3] Made __repr__ return str with Python 3Claude Paroz
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-12[py3] Removed redundant __str__ methods.Aymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-19Fixed #14502 again -- saner verbatim closing tokenChris Beaven
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-06-07Fixed #14502 -- Added a verbatim template tag.Aymeric Augustin
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-04-30Fixed #4746 -- Allowed spaces around filter separator.Aymeric Augustin
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #17992 -- Added a public API for localtime.Aymeric Augustin
2012-01-28Made a tiny performance improvement in the template system's Parser.parse() -...Adrian Holovaty
2012-01-27Made a small optimization to the template lexer. There's no need to calculate...Adrian Holovaty
2011-12-09Fixed #3100 -- Added support for arguments on intermediate tag tokens.Aymeric Augustin
2011-11-21Fixed #16787 -- Restored the ability to {% load %} template tags libraries wi...Aymeric Augustin
2011-11-18Fixed #17255 -- Removed "as" prefix from new timezone template filter names f...Jannis Leidel
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-10-30Fixed #17135 -- Made it possible to use decorators (like stringfilter) on tem...Aymeric Augustin
2011-10-19Fixed #14806 -- Added support for contextual translations to the `trans` and ...Julien Phalip
2011-10-17Remove several more relative imports.Alex Gaynor
2011-10-11Simplify some code to have one loop, rather than two.Alex Gaynor
2011-10-11Change some string literals to be unicode, because:Alex Gaynor
2011-09-27Fixed #13956 -- Enabled `*args` and `**kwargs` support for `simple_tag`, `inc...Julien Phalip
2011-09-10Make a comment more accurate.Alex Gaynor
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-11Fixed #11989 -- Allow passing a Template instance to inclusion_tag. Thanks to...Jannis Leidel
2011-06-11Fixed #12847 -- Added name parameter to simple_tag, assignment_tag and inclus...Jannis Leidel
2011-05-03Fixed #14262 -- Added new assignment_tag as a simple way to assign the result...Jannis Leidel
2011-05-01Replaced old-style with new-style decorator syntax.Jannis Leidel
2011-04-28Fixed #15070 -- Also pass current_app and use_l10n in inclusion_tags. Thanks,...Jannis Leidel
2011-04-19Fixed #15791 - method to signal that callable objects should not be called in...Luke Plant
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-01-26Fixed #15157 -- Modified evaluation of literals surrounded by _(' and ')' in ...Ramiro Morales
2010-12-19Fixed #7153 -- _resolve_lookup now does a better job of resolving callables a...Chris Beaven
2010-12-19Fixed #14908 -- Added a 'takes_context' argument to simple_tag. Thanks to Jul...Russell Keith-Magee
2010-12-04Fixed #12201 -- Added a lineno attibute to template Token so e.g. we can repo...Ramiro Morales
2010-11-27Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...Russell Keith-Magee