can you try replace
response.flash = 'Erro na inserção'
with
response.flash = 'Erro na inserção'.encode('utf8')
On May 4, 5:39 am, Iceberg <[email protected]> wrote:
> Hi there,
>
> I just noticed that, component's non-ascii response.flash does not
> show well in IE7, IE8, Firefox 3.0.19.
>
> def visit_me():
> return {'':LOAD('default', 'component.load', ajax=True)}
> def component():
> response.flash = 'Erro na inserção'
> return {'':'Testing'}
>
> But Chrome 11.x is fine.
>
> So I guess that means the flash string is properly transfered to
> client but, for some reason its encoding is not properly indicated
> therefore incorrectly handled.
>
> Is this a bug? Is there any workaround?
>
> Regards,
> Iceberg