summaryrefslogtreecommitdiff
path: root/django/templatetags
AgeCommit message (Expand)Author
2015-03-02Fixed #24372 - Replaced TokenParser usage with traditional parsing.Preston Timmons
2015-02-19Set context.template instead of context.engine while rendering.Aymeric Augustin
2015-02-12Subclassed template.Node instead of Node for consistency.Nik Nyby
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2015-01-17Removed ssi/url tags from future per deprecation timeline; refs #21939.Tim Graham
2014-12-28Cleaned up the django.template namespace.Aymeric Augustin
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-23Encapsulated TEMPLATE_STRING_IF_INVALID in Engine.Aymeric Augustin
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-03-28Fixed #22306 -- Deprecated future versions of cycle and firstof template tags.Maxime Turcotte
2014-03-21Switched {% cycle %} and {% firstof %} tags to auto-escape their variables pe...Tim Graham
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-02-16Fixed #21939 -- Deprecated loading ssi/url tags from future.Zbigniew Siciarz
2014-02-08Fixed #21417 -- Expanded TEMPLATE_STRING_IF_INVALID in blocktransClaude Paroz
2013-11-23A handful of flake8 fixesAlex Gaynor
2013-11-23Fixed #21012 -- New API to access cache backends.Curtis Maloney
2013-11-08Fixed #5849 -- Strip whitespace from blocktransBouke Haarsma
2013-11-02Fixed the remaining E302 violations int eh django packageAlex Gaynor
2013-11-02Fixed all E261 warningscoagulant
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-26Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor
2013-10-24Added missing newline in docstring; refs #20945.Tim Graham
2013-10-23Fixed #20945 -- Allowed cache tag to use a specific cache.Curtis Maloney
2013-10-11Fixed assorted flake8 errors.Tim Graham
2013-09-22Removed a few trailing backslashes.Aymeric Augustin
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-08-29Fixed #20989 -- Removed explicit list comprehension inside dict() and tuple()Tim Graham
2013-03-30Fixed #20130 -- Regression in {% cache %} template tag.Baptiste Mispelon
2013-03-19Fixed #18003 -- Preserved tracebacks when re-raising errors.konarkmodi
2013-03-03Fixed #19915 - Made blocktrans tag honor TEMPLATE_STRING_IF_INVALID.matiasb
2013-02-25Remove leading underscore from a function that's all growed up now.Carl Meyer
2013-02-24Fixed some docstrings that were raising Sphinx warnings when running the admi...Julien Phalip
2013-02-24Fixed #19253 -- Extracted template cache key building logicTomek Paczkowski
2013-02-23Merge pull request #751 from bmispelon/ticket-6271Aymeric Augustin
2013-02-23Fixed #17906 - Autoescaping {% cycle %} and {% firstof %} templatetags.Vladimir A Filonov
2013-02-23Used token.split_contents() for tokenisation in template tags accepting varia...Baptiste Mispelon
2012-10-23Fixed #19088 -- Always escape % inside blocktrans tagClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-15[py3] Always pass bytes to hashlib.md5.Florian Apolloner
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] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-07Fixed #18254 -- Added ability to the static template tags to store the result...Jannis Leidel
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-28Fixed #18393 -- Prevented blocktrans to crash when a variable name is badly f...Julien Phalip
2012-04-29Fixed #17992 -- Added a public API for localtime.Aymeric Augustin
2012-04-24Fixed #18037 -- Changed behaviour of url and ssi template tags to the new syn...Claude Paroz
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz