Commit be54ab8d authored by Yusei Tahara's avatar Yusei Tahara

Output more information.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18269 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent eda5912e
...@@ -67,13 +67,26 @@ ...@@ -67,13 +67,26 @@
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string encoding="cdata"><![CDATA[ <value> <string encoding="cdata"><![CDATA[
from Products.PythonScripts.standard import html_quote\n
\n
result = \'\'\n
error_message = None\n
try:\n try:\n
return context.asStrippedHTML()\n result = context.asStrippedHTML()\n
if result:\n
return result\n
if not context.hasBaseData():\n
error_message = context.Base_translateString("This document is not converted yet.")\n
except Exception, e:\n except Exception, e:\n
from Products.ERP5Type.Log import log\n from Products.ERP5Type.Log import log\n
log("asStrippedHTML", str(e))\n log("asStrippedHTML", str(e))\n
error_message = context.Base_translateString("Preview Error.")\n error_message = "%s %s" % (context.Base_translateString("Preview Error:"),\n
return \'<div class="error">%s</div>\' % error_message\n str(e))\n
\n
if error_message is not None:\n
return \'<div class="error">%s</div>\' % html_quote(error_message)\n
\n
return result\n
]]></string> </value> ]]></string> </value>
...@@ -118,14 +131,18 @@ except Exception, e:\n ...@@ -118,14 +131,18 @@ except Exception, e:\n
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
<value> <value>
<tuple> <tuple>
<string>Products.PythonScripts.standard</string>
<string>html_quote</string>
<string>result</string>
<string>None</string>
<string>error_message</string>
<string>_getattr_</string> <string>_getattr_</string>
<string>context</string> <string>context</string>
<string>Exception</string> <string>Exception</string>
<string>e</string> <string>e</string>
<string>Products.ERP5Type.Log</string> <string>Products.ERP5Type.Log</string>
<string>log</string> <string>log</string>
<string>str</string> <string>str</string>
<string>error_message</string>
</tuple> </tuple>
</value> </value>
</item> </item>
......
763 764
\ No newline at end of file \ No newline at end of file
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