index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
template
/
base.py
Age
Commit message (
Expand
)
Author
2013-06-25
Fixed #20650 -- Fixed {% filter %} incorrectly accepting 'escape' as argument
Baptiste Mispelon
2013-05-17
Replaced an antiquated pattern.
Aymeric Augustin
2013-02-25
Remove leading underscore from a function that's all growed up now.
Carl Meyer
2013-02-14
Fixed #19829 -- Fixed index lookups for NumPy arrays in templates.
Julien Phalip
2013-02-14
Fixed #19819 - Improved template filter errors handling.
Michael van Tellingen
2012-08-30
Replaced some smart_xxx by force_xxx equivalent
Claude Paroz
2012-08-12
[py3] Made __repr__ return str with Python 3
Claude 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-19
Fixed #14502 again -- saner verbatim closing token
Chris Beaven
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-06-07
Fixed #14502 -- Added a verbatim template tag.
Aymeric Augustin
2012-05-10
Replaced foo.next() by next(foo).
Claude Paroz
2012-04-30
Fixed #4746 -- Allowed spaces around filter separator.
Aymeric Augustin
2012-04-29
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2012-04-29
Fixed #17992 -- Added a public API for localtime.
Aymeric Augustin
2012-01-28
Made a tiny performance improvement in the template system's Parser.parse() -...
Adrian Holovaty
2012-01-27
Made a small optimization to the template lexer. There's no need to calculate...
Adrian Holovaty
2011-12-09
Fixed #3100 -- Added support for arguments on intermediate tag tokens.
Aymeric Augustin
2011-11-21
Fixed #16787 -- Restored the ability to {% load %} template tags libraries wi...
Aymeric Augustin
2011-11-18
Fixed #17255 -- Removed "as" prefix from new timezone template filter names f...
Jannis Leidel
2011-11-18
Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.
Aymeric Augustin
2011-10-30
Fixed #17135 -- Made it possible to use decorators (like stringfilter) on tem...
Aymeric Augustin
2011-10-19
Fixed #14806 -- Added support for contextual translations to the `trans` and ...
Julien Phalip
2011-10-17
Remove several more relative imports.
Alex Gaynor
2011-10-11
Simplify some code to have one loop, rather than two.
Alex Gaynor
2011-10-11
Change some string literals to be unicode, because:
Alex Gaynor
2011-09-27
Fixed #13956 -- Enabled `*args` and `**kwargs` support for `simple_tag`, `inc...
Julien Phalip
2011-09-10
Make a comment more accurate.
Alex Gaynor
2011-07-13
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...
Jannis Leidel
2011-06-11
Fixed #11989 -- Allow passing a Template instance to inclusion_tag. Thanks to...
Jannis Leidel
2011-06-11
Fixed #12847 -- Added name parameter to simple_tag, assignment_tag and inclus...
Jannis Leidel
2011-05-03
Fixed #14262 -- Added new assignment_tag as a simple way to assign the result...
Jannis Leidel
2011-05-01
Replaced old-style with new-style decorator syntax.
Jannis Leidel
2011-04-28
Fixed #15070 -- Also pass current_app and use_l10n in inclusion_tags. Thanks,...
Jannis Leidel
2011-04-19
Fixed #15791 - method to signal that callable objects should not be called in...
Luke Plant
2011-03-28
Removed a bunch more Python 2.4 workarounds now that we don't support that ve...
Adrian Holovaty
2011-01-26
Fixed #15157 -- Modified evaluation of literals surrounded by _(' and ')' in ...
Ramiro Morales
2010-12-19
Fixed #7153 -- _resolve_lookup now does a better job of resolving callables a...
Chris Beaven
2010-12-19
Fixed #14908 -- Added a 'takes_context' argument to simple_tag. Thanks to Jul...
Russell Keith-Magee
2010-12-04
Fixed #12201 -- Added a lineno attibute to template Token so e.g. we can repo...
Ramiro Morales
2010-11-27
Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...
Russell Keith-Magee