[Zope-Checkins] CVS: Zope/lib/python/Products/PythonScripts - standard.py:1.8

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


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

Modified Files:
	standard.py 
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/PythonScripts/standard.py 1.7 => 1.8 ===
--- Zope/lib/python/Products/PythonScripts/standard.py:1.7	Wed Nov 28 10:51:05 2001
+++ Zope/lib/python/Products/PythonScripts/standard.py	Wed Aug 14 11:46:58 2002
@@ -27,10 +27,12 @@
                        'dollars_and_cents', 'structured_text',
                        'sql_quote', 'html_quote', 'url_quote',
                        'url_quote_plus', 'newline_to_br',
-                       'thousands_commas')
+                       'thousands_commas', 'url_unquote',
+                       'url_unquote_plus')
 from DocumentTemplate.DT_Var import special_formats, \
  whole_dollars, dollars_and_cents, structured_text, sql_quote, \
- html_quote, url_quote, url_quote_plus, newline_to_br, thousands_commas
+ html_quote, url_quote, url_quote_plus, newline_to_br, thousands_commas, \
+ url_unquote, url_unquote_plus
 
 from Globals import HTML
 from AccessControl.DTML import RestrictedDTML