Changes between Initial Version and Version 1 of Ticket #36000, comment 10


Ignore:
Timestamp:
Mar 8, 2025, 5:52:57 PM (6 months ago)
Author:
Ahmed Nassar

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36000, comment 10

    initial v1  
    1 I've submitted a pull request for this ticket:
    2 https://github.com/django/django/pull/19240
     1I've updated the PR with improved documentation and fixed all sphinx-build warnings:
    32
    4 The PR adds URLIZE_ASSUME_HTTPS setting to control the default protocol in urlize(), improving security by defaulting to HTTPS.
     3Changes made:
     4- Added detailed documentation for urlize() function in docs/ref/utils.txt
     5- Fixed sphinx-build warnings related to function references
     6- Added proper parameter descriptions following Django's style
     7- Included a practical example showing function usage
     8- Followed Django's documentation guidelines
     9- All documentation now builds without warnings
     10
     11Documentation improvements:
     12- Added :param: descriptions for all parameters
     13- Added clear return value description
     14- Added working code example
     15- Fixed cross-references between template filter and utility function
     16- Maintained consistent documentation style
     17
     18The PR now includes:
     191. URLIZE_ASSUME_HTTPS setting implementation
     202. Deprecation warning for http:// default
     213. Complete test coverage
     224. Comprehensive documentation
     235. Release notes
     24
     25PR: https://github.com/django/django/pull/19240
     26
     27All checks are passing and the documentation builds cleanly. Ready for review.
Back to Top