[Zope-Checkins] CVS: Zope/lib/python/Products/OFSP/help - dtml-var.stx:1.8

Chris McDonough chrism@zope.com
Wed, 14 Aug 2002 11:47:29 -0400


Update of /cvs-repository/Zope/lib/python/Products/OFSP/help
In directory cvs.zope.org:/tmp/cvs-serv25172/Products/OFSP/help

Modified Files:
	dtml-var.stx 
Log Message:
Added 'url_unquote' and 'url_unquote_plus' modifiers to DTML as
well as made these functions available in PythonScripts via
the 'standard' module.


=== Zope/lib/python/Products/OFSP/help/dtml-var.stx 1.7 => 1.8 ===
--- Zope/lib/python/Products/OFSP/help/dtml-var.stx:1.7	Tue Apr 17 20:24:44 2001
+++ Zope/lib/python/Products/OFSP/help/dtml-var.stx	Wed Aug 14 11:46:58 2002
@@ -85,6 +85,12 @@
     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_plus -- like url_unquote, but also replace "+"
+    characters with spaces.
+
     sql_quote -- Converts single quotes to pairs of single
     quotes. This is needed to safely include values in SQL strings.