Commit ea39f634 authored by R. David Murray's avatar R. David Murray

Clarify what unquote does, following the python.org docs.

parent b48643bb
...@@ -85,11 +85,11 @@ var: Inserts a variable ...@@ -85,11 +85,11 @@ var: Inserts a variable
url_quote_plus -- URL quotes character, like 'url_quote' but also url_quote_plus -- URL quotes character, like 'url_quote' but also
converts spaces to plus signs. converts spaces to plus signs.
url_unquote -- convert HTML character entities in strings back to url_unquote -- Converts HTML '%xx' escapes into their single
their real values. character values (ie: undoes the effects of url_quote).
url_unquote_plus -- like url_unquote, but also replace "+" url_unquote_plus -- Like url_unquote, but also replaces '+'
characters with spaces. characters with spaces (ie: undoes the effects of url_quote_plus).
sql_quote -- Converts single quotes to pairs of single sql_quote -- Converts single quotes to pairs of single
quotes. This is needed to safely include values in SQL strings. quotes. This is needed to safely include values in SQL strings.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment