[Checkins] SVN: Zope3/branches/3.3/src/zope/app/debugskin/error_debug.pt Do not blindly call exception classes or arbitrary objects inserted here.

Philipp von Weitershausen philikon at philikon.de
Thu May 25 13:49:12 EDT 2006


Log message for revision 68278:
  Do not blindly call exception classes or arbitrary objects inserted here.
  

Changed:
  U   Zope3/branches/3.3/src/zope/app/debugskin/error_debug.pt

-=-
Modified: Zope3/branches/3.3/src/zope/app/debugskin/error_debug.pt
===================================================================
--- Zope3/branches/3.3/src/zope/app/debugskin/error_debug.pt	2006-05-25 16:33:00 UTC (rev 68277)
+++ Zope3/branches/3.3/src/zope/app/debugskin/error_debug.pt	2006-05-25 17:49:12 UTC (rev 68278)
@@ -5,12 +5,12 @@
 
   <h3 i18n:translate="">
     Error type: 
-    <tal:span tal:replace="view/error_type" i18n:name="error_type"/>
+    <tal:span tal:replace="nocall:view/error_type" i18n:name="error_type"/>
   </h3>
 
   <h5 i18n:translate="">
     Error object: 
-    <tal:span tal:replace="view/error_object" i18n:name="error_object"/>
+    <tal:span tal:replace="nocall:view/error_object" i18n:name="error_object"/>
   </h5>
 
   <pre class="traceback" style="font-size:small;">
@@ -21,4 +21,3 @@
 </div>
 </body>
 </html>
-



More information about the Checkins mailing list