the problem is not the escaping (which is correct, + must be escaped) the problem is thta web2py urls do not allow non-alphanumeric chars.
On Aug 5, 6:17 am, Jurgis Pralgauskis <jurgis.pralgaus...@gmail.com> wrote: > Hello, > > when I construct URL like this > URL(r=request, f='some_fun', args =['C++']) > > it converts 'C++' to '/C%2B%2B' (urllib.quote()) > but page shows 'Invalid request' > > is it possible to have some general escape mechanizm, not to run into > similar problems? > > Thanks in advance