summaryrefslogtreecommitdiff
path: root/django/template/base.py
Commit message (Expand)AuthorAgeFilesLines
* [1.6.x] Fixed #17778 -- Prevented class attributes on context from resolving ...Tim Graham2013-08-151-1/+4
* Fixed #20650 -- Fixed {% filter %} incorrectly accepting 'escape' as argumentBaptiste Mispelon2013-06-251-0/+1
* Replaced an antiquated pattern.Aymeric Augustin2013-05-171-1/+1
* Remove leading underscore from a function that's all growed up now.Carl Meyer2013-02-251-2/+2
* Fixed #19829 -- Fixed index lookups for NumPy arrays in templates.Julien Phalip2013-02-141-1/+1
* Fixed #19819 - Improved template filter errors handling.Michael van Tellingen2013-02-141-1/+8
* Replaced some smart_xxx by force_xxx equivalentClaude Paroz2012-08-301-3/+3
* [py3] Made __repr__ return str with Python 3Claude Paroz2012-08-121-2/+2
* [py3] Refactored __unicode__ to __str__.Aymeric Augustin2012-08-121-1/+3
* [py3] Removed redundant __str__ methods.Aymeric Augustin2012-08-121-3/+0
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-6/+6
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-1/+1
* [py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin2012-07-221-1/+1
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-1/+2
* Fixed #14502 again -- saner verbatim closing tokenChris Beaven2012-06-191-7/+2
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-4/+4
* Fixed #14502 -- Added a verbatim template tag.Aymeric Augustin2012-06-071-2/+14
* Replaced foo.next() by next(foo).Claude Paroz2012-05-101-1/+1
* Fixed #4746 -- Allowed spaces around filter separator.Aymeric Augustin2012-04-301-1/+1
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-3/+3
* Fixed #17992 -- Added a public API for localtime.Aymeric Augustin2012-04-291-3/+3
* Made a tiny performance improvement in the template system's Parser.parse() -...Adrian Holovaty2012-01-281-3/+4
* Made a small optimization to the template lexer. There's no need to calculate...Adrian Holovaty2012-01-271-11/+7
* Fixed #3100 -- Added support for arguments on intermediate tag tokens.Aymeric Augustin2011-12-091-5/+5
* Fixed #16787 -- Restored the ability to {% load %} template tags libraries wi...Aymeric Augustin2011-11-211-3/+17
* Fixed #17255 -- Removed "as" prefix from new timezone template filter names f...Jannis Leidel2011-11-181-3/+3
* Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin2011-11-181-1/+6
* Fixed #17135 -- Made it possible to use decorators (like stringfilter) on tem...Aymeric Augustin2011-10-301-8/+21
* Fixed #14806 -- Added support for contextual translations to the `trans` and ...Julien Phalip2011-10-191-2/+6
* Remove several more relative imports.Alex Gaynor2011-10-171-1/+3
* Simplify some code to have one loop, rather than two.Alex Gaynor2011-10-111-3/+4
* Change some string literals to be unicode, because:Alex Gaynor2011-10-111-1/+1
* Fixed #13956 -- Enabled `*args` and `**kwargs` support for `simple_tag`, `inc...Julien Phalip2011-09-271-185/+375
* Make a comment more accurate.Alex Gaynor2011-09-101-1/+3
* Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel2011-07-131-2/+0
* Fixed #11989 -- Allow passing a Template instance to inclusion_tag. Thanks to...Jannis Leidel2011-06-111-1/+3
* Fixed #12847 -- Added name parameter to simple_tag, assignment_tag and inclus...Jannis Leidel2011-06-111-8/+11
* Fixed #14262 -- Added new assignment_tag as a simple way to assign the result...Jannis Leidel2011-05-031-0/+60
* Replaced old-style with new-style decorator syntax.Jannis Leidel2011-05-011-2/+2
* Fixed #15070 -- Also pass current_app and use_l10n in inclusion_tags. Thanks,...Jannis Leidel2011-04-281-1/+5
* Fixed #15791 - method to signal that callable objects should not be called in...Luke Plant2011-04-191-1/+3
* Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty2011-03-281-3/+4
* Fixed #15157 -- Modified evaluation of literals surrounded by _(' and ')' in ...Ramiro Morales2011-01-261-2/+2
* Fixed #7153 -- _resolve_lookup now does a better job of resolving callables a...Chris Beaven2010-12-191-38/+29
* Fixed #14908 -- Added a 'takes_context' argument to simple_tag. Thanks to Jul...Russell Keith-Magee2010-12-191-12/+31
* Fixed #12201 -- Added a lineno attibute to template Token so e.g. we can repo...Ramiro Morales2010-12-041-0/+4
* Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...Russell Keith-Magee2010-11-271-0/+1005