On Fri, May 21, 2010 at 6:21 PM, danielle davout
<danielle.dav...@gmail.com> wrote:
> in column.py of  zc.table = 0.8.0
> there is
>
>    def cell_formatter(self, value, item, formatter):
>        return unicode(value).replace('&', '&amp;') \
>                              .replace('<', '&lt;') \
>                              .replace('>', '&gt;')
> where in zc.table = 0.5 it was


Not sure what the bug is, but in any case &lt; and others should not
be used as they are not XHTML compatible. Instead, unicode character
entities like &#60; should be used.

-Mikko

>
>    def cell_formatter(self, value, item, formatter):
>        return unicode(value)
>
> --
> GetPaid for Plone: http://www.plonegetpaid.com (overview info) | 
> http://code.google.com/p/getpaid (code and issue tracker)
> You received this message because you are subscribed to the Google Groups 
> "getpaid-dev" group.
> To post to this group, send email to getpaid-dev@googlegroups.com
> To unsubscribe from this group, send email to 
> getpaid-dev+unsubscr...@googlegroups.com
>
> For more options, visit this group at
> http://groups.google.com/group/getpaid-dev?hl=en?hl=en
>



-- 
Mikko Ohtamaa
mFabrik - Freedom Delivered.

Web site - http://mfabrik.com
Mobile site - http://mfabrik.mobi
Blog - http://blog.mfabrik.com

-- 
GetPaid for Plone: http://www.plonegetpaid.com (overview info) | 
http://code.google.com/p/getpaid (code and issue tracker)
You received this message because you are subscribed to the Google Groups 
"getpaid-dev" group.
To post to this group, send email to getpaid-dev@googlegroups.com
To unsubscribe from this group, send email to 
getpaid-dev+unsubscr...@googlegroups.com

For more options, visit this group at
http://groups.google.com/group/getpaid-dev?hl=en?hl=en

Reply via email to