Hi,
I have same problem:

response.flash = T('Thank you for your reply!')
return
Thank%20you%20for%20your%20reply%21



gluon/main.py
                if request.cid:
                    if response.flash:
                        http_response.headers['web2py-component-flash'] = \
                            urllib2.quote(xmlescape(response.flash)\
                                              .replace('\n',''))

xmlescape(response.flash) -> Thank you for your reply!
urllib2.quote -> s=Thank you for your reply!
    return ''.join(map(quoter, s))

map(quoter, s) ->
list: ['T', 'h', 'a', 'n', 'k', 's', '%20', 'f', 'o', 'r', '%20', 'y', 'o', 
'u', 'r', '%20', 'r', 'e', 'p', 'l', 'y', '%21']

Thank%20you%20for%20your%20reply%21

Any solution?

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to