[Zope-Checkins] SVN: Zope/branches/2.12/ Fix several template errors in SiteErrorLog (chameleon compatibility)
Wichert Akkerman
wichert at wiggy.net
Sat May 15 02:51:46 EDT 2010
Log message for revision 112324:
Fix several template errors in SiteErrorLog (chameleon compatibility)
Changed:
U Zope/branches/2.12/doc/CHANGES.rst
U Zope/branches/2.12/src/Products/SiteErrorLog/www/main.pt
-=-
Modified: Zope/branches/2.12/doc/CHANGES.rst
===================================================================
--- Zope/branches/2.12/doc/CHANGES.rst 2010-05-15 06:47:53 UTC (rev 112323)
+++ Zope/branches/2.12/doc/CHANGES.rst 2010-05-15 06:51:46 UTC (rev 112324)
@@ -44,6 +44,8 @@
Bugs Fixed
++++++++++
+- Fix several template errors in SiteErrorLog (chameleon compatibility).
+
- LP #267820: Fix bad except clause in the ``sequence_sort`` method of
the ``<dtml-in>`` tag.
Modified: Zope/branches/2.12/src/Products/SiteErrorLog/www/main.pt
===================================================================
--- Zope/branches/2.12/src/Products/SiteErrorLog/www/main.pt 2010-05-15 06:47:53 UTC (rev 112323)
+++ Zope/branches/2.12/src/Products/SiteErrorLog/www/main.pt 2010-05-15 06:51:46 UTC (rev 112324)
@@ -85,7 +85,7 @@
>
<span tal:content="entry/type">AttributeError</span>:
<span tal:define="value entry/value"
- tal:content="python: len(value) < 70 and value or value[:70] + '...'">
+ tal:content="python: len(value) < 70 and value or value[:70] + '...'">
Application object has no attribute "zzope"</span>
</a>
</td>
@@ -93,7 +93,7 @@
tal:attributes="href string:${context/absolute_url}/forgetEntry?id=${entry/id}"
><img title="Forget this entry" src="/misc_/SiteErrorLog/ok.gif" border="0"
tal:attributes="src string:${request/BASEPATH1}/misc_/SiteErrorLog/ok.gif"
- ></a></td>
+ /></a></td>
</tr>
</table>
More information about the Zope-Checkins
mailing list