summaryrefslogtreecommitdiff
path: root/docs/ref/unicode.txt
AgeCommit message (Collapse)Author
2025-08-28Fixed #36570 -- Removed unnecessary :py domain from documentation roles.SaJH
Signed-off-by: SaJH <wogur981208@gmail.com>
2025-08-25Refs #36485 -- Rewrapped docs to 79 columns line length.David Smith
Lines in the docs files were manually adjusted to conform to the 79 columns limit per line (plus newline), improving readability and consistency across the content.
2025-08-25Refs #36485 -- Removed unnecessary parentheses in :meth: and :func: roles in ↵David Smith
docs.
2024-03-06Fixed broken links and redirects in docs.Mariusz Felisiak
2023-03-01Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2023-02-10Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson
Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
2022-11-10Updated documentation and comments for RFC updates.Nick Pope
- Updated references to RFC 1123 to RFC 5322 - Only partial as RFC 5322 sort of sub-references RFC 1123. - Updated references to RFC 2388 to RFC 7578 - Except RFC 2388 Section 5.3 which has no equivalent. - Updated references to RFC 2396 to RFC 3986 - Updated references to RFC 2616 to RFC 9110 - Updated references to RFC 3066 to RFC 5646 - Updated references to RFC 7230 to RFC 9112 - Updated references to RFC 7231 to RFC 9110 - Updated references to RFC 7232 to RFC 9110 - Updated references to RFC 7234 to RFC 9111 - Tidied up style of text when referring to RFC documents
2022-03-29Updated Oracle docs links to Oracle 21c.Mariusz Felisiak
2022-03-29Updated various links to HTTPS and new locations.Mariusz Felisiak
2021-10-08Improved docs regarding UTF-8 support with Apache and mod_wsgi.Nick Frazier
2021-01-19Fixed #32357 -- Dropped support for PostgreSQL 9.6 and PostGIS 2.3.Mariusz Felisiak
2020-04-15Used :rfc: role in various docs.Mariusz Felisiak
2019-03-29Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
2019-02-07Updated Oracle docs links to Oracle 18c.Mariusz Felisiak
2019-02-06Refs #27753 -- Favored force/smart_str() over force/smart_text().Aymeric Augustin
2018-10-24Removed a useless sentence in docs/ref/unicode.txt.Hemanth V. Alluri
2018-10-15Fixed #29817 -- Deprecated settings.FILE_CHARSET.Jon Dufresne
2018-10-04Refs #27778 -- Removed "The database API" section from "Unicode data" docs.Jon Dufresne
Support for passing bytestrings to the database API was removed in 301de774c21d055e9e5a7073e5bffdb52bc71079.
2018-10-03Corrected docs to say that all templates are text strings.Jon Dufresne
Support for bytestring templates was removed in 3a148f958dddd97c1379081118c30fbede6b6bc4.
2017-11-01Refs #23919 -- Replaced doc references to django.utils.http.urlquote() and ↵Tim Graham
urlquote_plus() with standard library alternatives. Follow up to fee42fd99ee470528858c2ccb3621135c30ec262.
2017-05-14Refs #28196 -- Removed mentions of bytestrings for EmailMessageClaude Paroz
With Python 3, there are no more reasons to special-case EmailMessage arguments which should be plain strings.
2017-02-09Fixed #26005 -- Fixed some percent decoding cases in uri_to_iri().Chronial
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python ↵Claude Paroz
equivalents Thanks Tim Graham for the review.
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2016-10-31Updated Oracle docs links to Oracle 12c.Mariusz Felisiak
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-09-30Updated links to the current version of MySQL docs.Tim Graham
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
The smart_* version should only be used when a lazy string should keep its lazy status.
2016-01-11Added missing period to "etc.".pp
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-11-14Fixed #17686, refs #17816 -- Added "Files" section to Unicode topic.Florian Demmer
Thanks Fako Berkers for help with the patch.
2015-09-18Made assorted improvements to the Oracle documentation.Mariusz Felisiak
2015-03-12Fixed wrong operator in iri_to_uri() docsldrumm
2014-10-16Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi
Thanks Loic Bistuer for helping in shaping the patch and Claude Paroz for the review.
2014-08-02Updated MySQL links to version 5.6.Tim Graham
2014-04-21Corrected the section identifier for MySQL unicode reference.Matt Lauber
2014-03-22Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-07-03Fixed #20691 -- Added a note for __str__() vs. __unicode__() and Python 3.Tim Graham
Thanks garrison for the suggestion.
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-03-18Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin
2013-02-19Updated a couple admonitions to use the warning directive.Tim Graham
2012-11-22Fixed #18974 - Warned against using models.permalinkTim Graham
Thanks dstufft for the draft patch.
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
* Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str.
2012-06-07Fixed #18363 -- Added Python 3 compatibility layer.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Alex Gaynor, kezabelle, YorikSar for the review.
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
This is a preparation for unicode literals general usage in Django (Python 3 compatibility).