diff options
| author | Unai Zalakain <unai@gisa-elkartea.org> | 2014-10-31 17:43:34 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-11-03 07:59:19 -0500 |
| commit | c548c8d0d1112d2c4bace2eebf73ede35300d842 (patch) | |
| tree | a0d8e3089302139c6a24b6262d37ab2eb55fb4c8 /docs/ref/utils.txt | |
| parent | d3db878e4beff057400dd780c24f3601a5d31f95 (diff) | |
Fixed #18456 -- Added path escaping to HttpRequest.get_full_path().
Diffstat (limited to 'docs/ref/utils.txt')
| -rw-r--r-- | docs/ref/utils.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 4c7368f687..b32f0a838b 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -298,6 +298,13 @@ The functions defined in this module share the following properties: Returns an ASCII string containing the encoded result. +.. function:: escape_uri_path(path) + + .. versionadded:: 1.8 + + Escapes the unsafe characters from the path portion of a Uniform Resource + Identifier (URI). + ``django.utils.feedgenerator`` ============================== |
