[Zope-Checkins] CVS: Zope/lib/python/Products/OFSP/help - dtml-var.stx:1.9
R. David Murray
bitz@bitdance.com
Wed, 14 Aug 2002 12:36:33 -0400
Update of /cvs-repository/Zope/lib/python/Products/OFSP/help
In directory cvs.zope.org:/tmp/cvs-serv31954
Modified Files:
dtml-var.stx
Log Message:
Clarify what unquote does, following the python.org docs.
=== Zope/lib/python/Products/OFSP/help/dtml-var.stx 1.8 => 1.9 ===
--- Zope/lib/python/Products/OFSP/help/dtml-var.stx:1.8 Wed Aug 14 11:46:58 2002
+++ Zope/lib/python/Products/OFSP/help/dtml-var.stx Wed Aug 14 12:36:33 2002
@@ -85,11 +85,11 @@
url_quote_plus -- URL quotes character, like 'url_quote' but also
converts spaces to plus signs.
- url_unquote -- convert HTML character entities in strings back to
- their real values.
+ url_unquote -- Converts HTML '%xx' escapes into their single
+ character values (ie: undoes the effects of url_quote).
- url_unquote_plus -- like url_unquote, but also replace "+"
- characters with spaces.
+ url_unquote_plus -- Like url_unquote, but also replaces '+'
+ characters with spaces (ie: undoes the effects of url_quote_plus).
sql_quote -- Converts single quotes to pairs of single
quotes. This is needed to safely include values in SQL strings.