Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/template/base.py
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed spelling of compatibility.Tim Graham2013-11-091-1/+1
* Fixed #17529 -- get_template_from_string default argument...Unai Zalakain2013-11-081-2/+1
* Fixed the remaining E302 violations int eh django packageAlex Gaynor2013-11-031-0/+26
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+4
* Merge pull request #1848 from rayashmanjr/masterAlex Gaynor2013-11-021-5/+5
|\
| * Correct flake8 violation E261Ray Ashman Jr2013-11-021-5/+5
* | Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+1
|/
* Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol2013-10-181-1/+1
* Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol2013-10-181-1/+1
* Fixed #7557 -- Added type checking to Variable initializa...Tim Graham2013-09-191-0/+3
* Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor2013-09-101-2/+2
* Simplify FilterExpression.args_checkCurtis Maloney2013-09-091-24/+7
* Fix #20745: Don't silence TypeError raised inside templates.Baptiste Mispelon2013-09-081-5/+8
* Fixed #16096 -- Added origin attribute to template instan...Preston Timmons2013-09-061-0/+1
* Fixed #20989 -- Removed useless explicit list comprehensi...Simon Charette2013-08-301-3/+3
* Fixed #17778 -- Prevented class attributes on context fro...Tim Graham2013-08-121-1/+4
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
* Deprecated django.utils.importlibClaude Paroz2013-07-291-1/+1
* Fixed #20650 -- Fixed {% filter %} incorrectly accepting ...Baptiste Mispelon2013-06-251-0/+1
* Replaced an antiquated pattern.Aymeric Augustin2013-05-171-1/+1
* Remove leading underscore from a function that's all grow...Carl Meyer2013-02-251-2/+2
* Fixed #19829 -- Fixed index lookups for NumPy arrays in t...Julien Phalip2013-02-151-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 com...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 syste...Adrian Holovaty2012-01-281-3/+4
* Made a small optimization to the template lexer. There's ...Adrian Holovaty2012-01-281-11/+7
* Fixed #3100 -- Added support for arguments on intermediat...Aymeric Augustin2011-12-091-5/+5
* Fixed #16787 -- Restored the ability to {% load %} templa...Aymeric Augustin2011-11-211-3/+17
* Fixed #17255 -- Removed "as" prefix from new timezone tem...Jannis Leidel2011-11-181-3/+3
* Added support for time zones. Thanks Luke Plant for the r...Aymeric Augustin2011-11-181-1/+6
* Fixed #17135 -- Made it possible to use decorators (like ...Aymeric Augustin2011-10-301-8/+21
* Fixed #14806 -- Added support for contextual translations...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 fo...Julien Phalip2011-09-271-185/+375