[web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-14 Thread Jurgis Pralgauskis
On Aug 5, 3:41 pm, mdipierro mdipie...@cs.depaul.edu wrote: the problem is not the escaping (which is correct, + must be escaped) the problem is thta web2py urls do not allow non-alphanumeric chars. but for arguments there seems to be no need for such restriction, or is there? maybe

[web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-14 Thread mdipierro
On Aug 14, 5:55 am, Jurgis Pralgauskis jurgis.pralgaus...@gmail.com wrote: On Aug 5, 3:41 pm, mdipierro mdipie...@cs.depaul.edu wrote: the problem is not the escaping (which is correct, + must be escaped) the problem is thta web2py urls do not allow non-alphanumeric chars. but for

Re: [web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-14 Thread Jonathan Lundell
On Aug 14, 2010, at 6:10 AM, mdipierro wrote: On Aug 14, 5:55 am, Jurgis Pralgauskis jurgis.pralgaus...@gmail.com wrote: On Aug 5, 3:41 pm, mdipierro mdipie...@cs.depaul.edu wrote: the problem is not the escaping (which is correct, + must be escaped) the problem is thta web2py urls do not

[web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-14 Thread mdipierro
perhaps app level regex validation config? On Aug 14, 11:04 am, Jonathan Lundell jlund...@pobox.com wrote: On Aug 14, 2010, at 6:10 AM, mdipierro wrote: On Aug 14, 5:55 am, Jurgis Pralgauskis jurgis.pralgaus...@gmail.com wrote: On Aug 5, 3:41 pm, mdipierro mdipie...@cs.depaul.edu wrote:

Re: [web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-14 Thread Jonathan Lundell
On Aug 14, 2010, at 10:53 AM, mdipierro wrote: perhaps app level regex validation config? We need to first do standards-based URL parsing and decoding, and then apply validation as a subsequent step. One option would be to accept anything that's legal in a URL; the app would do its own

[web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-05 Thread mdipierro
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

Re: [web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-05 Thread Phyo Arkar
can do with post right? On Thu, Aug 5, 2010 at 6:11 PM, mdipierro mdipie...@cs.depaul.edu wrote: 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

[web2py] Re: is it possible to pass string C++ as URL argument?

2010-08-05 Thread mdipierro
post or get, yes On Aug 5, 8:53 am, Phyo Arkar phyo.arkarl...@gmail.com wrote: can do with post right? On Thu, Aug 5, 2010 at 6:11 PM, mdipierro mdipie...@cs.depaul.edu wrote: the problem is not the escaping (which is correct, + must be escaped) the problem is thta web2py urls do not allow