Re: [web2py] Re: äöå in the address bar....

2010-10-21 Thread Jason Brower
It was my understanding that you called it as such... request.vars.variable_name So I want it so I can set the variable_name and it would respond with it's contents. BR, Jason On Wed, 2010-10-20 at 22:47 -0700, Jonathan Lundell wrote: On Oct 20, 2010, at 10:34 PM, Jason Brower wrote: That

Re: [web2py] Re: äöå in the address bar....

2010-10-21 Thread Jonathan Lundell
On Oct 21, 2010, at 1:51 AM, Jason Brower wrote: It was my understanding that you called it as such... request.vars.variable_name So I want it so I can set the variable_name and it would respond with it's contents. request.vars is basically a Python dict, and subject to its rules. So you

Re: [web2py] Re: äöå in the address bar....

2010-10-21 Thread Kenneth Lundström
Isn´t there a special character code for space to, like for åäö? Kenneth This gets me pretty close! I can't put spaces in the field... is there a way to do that? In the end I will be parsing by space for a search feature I am trying to implement. Best Regards, Jason Brower On Thu,

Re: [web2py] Re: äöå in the address bar....

2010-10-21 Thread Jonathan Lundell
On Oct 21, 2010, at 9:55 AM, Jason Brower wrote: This gets me pretty close! I can't put spaces in the field... is there a way to do that? In the end I will be parsing by space for a search feature I am trying to implement. I'd have to look at the code (don't have time right now), but you

Re: [web2py] Re: äöå in the address bar....

2010-10-21 Thread Jonathan Lundell
On Oct 21, 2010, at 10:01 AM, Jonathan Lundell wrote: On Oct 21, 2010, at 9:55 AM, Jason Brower wrote: This gets me pretty close! I can't put spaces in the field... is there a way to do that? In the end I will be parsing by space for a search feature I am trying to implement. I'd have to

Re: [web2py] Re: äöå in the address bar....

2010-10-21 Thread Jason Brower
In terms of the spaces screwing things up I hadd the javascript call replace the 's with _ and then on the server I convert it back. THANKS, Jason On Thu, 2010-10-21 at 10:21 -0700, Jonathan Lundell wrote: On Oct 21, 2010, at 10:01 AM, Jonathan Lundell wrote: On Oct 21, 2010, at 9:55 AM,

[web2py] Re: äöå in the address bar....

2010-10-20 Thread Jason Brower
For example, if I put... http://127.0.0.1:8000/furniture/default/results/sdfsafsdfa%C3%A4%C3%A4% C3%A4 It will not work and tells me I have an invalid controller. http://127.0.0.1:8000/furniture/default/results/sdfsafs Works. Any solution for this? BR, Jason Brower On Wed, 2010-10-20 at 20:52

Re: [web2py] Re: äöå in the address bar....

2010-10-20 Thread Jason Brower
That works, but how do I load that data? On Wed, 2010-10-20 at 19:57 -0700, Jonathan Lundell wrote: On Oct 20, 2010, at 7:52 PM, Jason Brower wrote: For example, if I put... http://127.0.0.1:8000/furniture/default/results/sdfsafsdfa%C3%A4%C3% A4%C3%A4 It will not work and tells me I

Re: [web2py] Re: äöå in the address bar....

2010-10-20 Thread Jonathan Lundell
On Oct 20, 2010, at 10:34 PM, Jason Brower wrote: That works, but how do I load that data? What do you want to do with it? It should show up in request.vars, I think. On Wed, 2010-10-20 at 19:57 -0700, Jonathan Lundell wrote: On Oct 20, 2010, at 7:52 PM, Jason Brower wrote: For example,