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
/
utils
/
safestring.py
Age
Commit message (
Expand
)
Author
2024-08-12
Fixed #35648 -- Raised NotImplementedError in SafeString.__add__ for non-stri...
Matthias Kestenholz
2022-05-25
Renamed wrapped functions to wrapper.
Aymeric Augustin
2022-02-21
Fixed #20296 -- Prevented mark_safe() from evaluating lazy objects.
Theo Alexiou
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2022-01-29
Fixed #33465 -- Added empty __slots__ to SafeString and SafeData.
Keryn Knight
2019-12-06
Fixed outdated import in django/utils/safestring.py.
Baptiste Mispelon
2019-03-28
Fixed "byte string" typo in various docs and comments.
Mariusz Felisiak
2019-02-06
Refs #27753 -- Favored SafeString over SafeText.
Tim Graham
2019-02-05
Refs #27753 -- Removed django.utils.safestring.SafeBytes.
Tim Graham
2018-07-09
Removed unneded str() calls prior to mark_safe(); simplified mark_safe().
Sergey Fedoseev
2017-02-11
Refs #27656 -- Updated django.utils docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-30
Refs #27795 -- Prevented SafeText from losing safe status on str()
Claude Paroz
2017-01-30
Refs #23919 -- Removed usage of obsolete SafeBytes class
Claude Paroz
2017-01-26
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
Vytis Banaitis
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-20
Refs #23919 -- Removed unneeded str() calls
Claude Paroz
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed six.PY2/PY3 usage
Claude Paroz
2017-01-17
Refs #24046 -- Removed mark_for_escaping() per deprecation timeline.
Tim Graham
2016-11-14
Fixed E305 flake8 warnings.
Ramin Farajpour Cami
2016-06-07
Fixed #10107 -- Allowed using mark_safe() as a decorator.
Scott Vitale
2016-05-10
Fixed #24046 -- Deprecated the "escape" half of utils.safestring.
Tim Graham
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-12-27
Fixed #23831 -- Supported strings escaped by third-party libs in Django.
Aymeric Augustin
2014-12-27
Fixed an inconsistency introduced in 547b1810.
Aymeric Augustin
2014-02-05
Revert "Fixed #20296 -- Allowed SafeData and EscapeData to be lazy"
Baptiste Mispelon
2013-11-02
Correct flake8 E302 violations
Ray Ashman Jr
2013-11-02
More attacking E302 violators
Alex Gaynor
2013-10-15
Fixed #7261 -- support for __html__ for library interoperability
Unai Zalakain
2013-10-10
Whitespace cleanup.
Tim Graham
2013-05-25
Fixed #20296 -- Allowed SafeData and EscapeData to be lazy
Baptiste Mispelon
2012-08-18
[py3] Ported django.utils.safestring.
Aymeric Augustin
2012-08-07
[py3] Ported django.utils.functional.
Aymeric Augustin
2012-07-22
[py3] Replaced unicode/str by six.text_type/bytes.
Aymeric Augustin
2007-12-02
Fixed #6071 -- Fixed another infinite recursion problem in SafeString and
Malcolm Tredinnick
2007-12-01
Fixed #6021 -- Removed some brain damage from SafeString. Not quite sure what I
Malcolm Tredinnick
2007-11-17
Fixed #5960 -- Fixed some Python 2.3 incompatibilities.
Malcolm Tredinnick
2007-11-14
Implemented auto-escaping of variable output in templates. Fully controllable...
Malcolm Tredinnick