Skip to content

Commit

Permalink
added support for reST
Browse files Browse the repository at this point in the history
  • Loading branch information
zopyx committed Apr 13, 2003
1 parent 6028567 commit b38452c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,22 @@
"import Products.PythonScripts.standard"
"""

__version__='$Revision: 1.12 $'[11:-2]
__version__='$Revision: 1.13 $'[11:-2]

from AccessControl import ModuleSecurityInfo, getSecurityManager
security = ModuleSecurityInfo()

security.declarePublic('special_formats', 'whole_dollars',
'dollars_and_cents', 'structured_text',
'restructured_text',
'sql_quote', 'html_quote', 'url_quote',
'url_quote_plus', 'newline_to_br',
'thousands_commas', 'url_unquote',
'url_unquote_plus', 'urlencode')
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, \
url_unquote, url_unquote_plus
url_unquote, url_unquote_plus, restructured_text
from urllib import urlencode

from Globals import HTML
Expand Down

0 comments on commit b38452c

Please sign in to comment.