Hi, I'm all for supporting international flash messages, but for
applications relying on the old web2py.js (or even web2py_ajax.js) the
message appear urlencoded.
That's because
*var
flash=**decodeURIComponent(**xhr.getResponseHeader('web2py-component-flash'**)**);
*expects an encoded flash message (done in main.py in trunk) but if it isn't
(encoded, e.g. using the 1.99.7 version)
the old line transforming web2py-component-flash header gets the "raw"
urlencoded message.... i.e. shows "form%20accepted"
instead of "form accepted".
Maybe a message stating that web2py.js or web2py_ajax.js of old apps needs to
be overwritten by the one in welcome
for web2py 2.0.0 will prevent angry users :P