[web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
I am trying to get a json response from 2 URL's and showing in on a results page. I'm getting an error saying that the page I'm redirecting to in order to show the json data is not defined but this only happens with one of the url's being contacted. I'm probably not being very clear with this

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread Richard Vézina
Maybe you should encode your bing url. Richard On Thu, Jul 5, 2012 at 4:05 PM, adohertyd adoher...@hotmail.com wrote: I am trying to get a json response from 2 URL's and showing in on a results page. I'm getting an error saying that the page I'm redirecting to in order to show the json data

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
No tried that and got 'unsupported format character 'A' at index 7' On Thursday, 5 July 2012 21:08:20 UTC+1, Richard wrote: Maybe you should encode your bing url. Richard On Thu, Jul 5, 2012 at 4:05 PM, adohertyd wrote: I am trying to get a json response from 2 URL's and showing in on a

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread Bruce Wade
I am assuming by your error inside results.html you have a variable defined as results however you are passing a tuple blekkoresults, bingresults we would need to see results.html On Thu, Jul 5, 2012 at 1:16 PM, adohertyd adoher...@hotmail.com wrote: No tried that and got 'unsupported format

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
This is my results.html, all of it :) {{extend 'layout.html'}} {{=results}} On Thursday, 5 July 2012 21:20:59 UTC+1, Bruce Wade wrote: I am assuming by your error inside results.html you have a variable defined as results however you are passing a tuple blekkoresults,bingresults we would

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread Bruce Wade
Ok exactly it is complaining that {{=results}} does not exist. Reneed to return dict(results=something) from your results action in your controller On Thu, Jul 5, 2012 at 1:23 PM, adohertyd adoher...@hotmail.com wrote: This is my results.html, all of it :) {{extend 'layout.html'}}

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
Thanks Bruce will try that. Why does 'return blekkoresults' work though? On Thursday, 5 July 2012 21:24:53 UTC+1, Bruce Wade wrote: Ok exactly it is complaining that {{=results}} does not exist. Reneed to return dict(results=something) from your results action in your controller On Thu,

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread Bruce Wade
It shouldn't look at your javascript console, if you are using ajax to call this. On Thu, Jul 5, 2012 at 1:30 PM, adohertyd adoher...@hotmail.com wrote: Thanks Bruce will try that. Why does 'return blekkoresults' work though? On Thursday, 5 July 2012 21:24:53 UTC+1, Bruce Wade wrote: Ok

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
Yeah it works now. Thanks very much Bruce much appreciated. Still have quite a bit to learn about all of this stuff. On Thursday, 5 July 2012 21:32:10 UTC+1, Bruce Wade wrote: It shouldn't look at your javascript console, if you are using ajax to call this. On Thu, Jul 5, 2012 at 1:30 PM,

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread Bruce Wade
No problem, I have ran into that problem when I was first learning :D On Thu, Jul 5, 2012 at 1:34 PM, adohertyd adoher...@hotmail.com wrote: Yeah it works now. Thanks very much Bruce much appreciated. Still have quite a bit to learn about all of this stuff. On Thursday, 5 July 2012 21:32:10

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
Bruce, One more thing, if I want to output the 2 sets of json data, how do I do it? return dict(results=bingresult...) I want to link the 3 results now On Thursday, 5 July 2012 21:35:44 UTC+1, Bruce Wade wrote: No problem, I have ran into that problem when I was first learning :D On Thu,

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread Bruce Wade
return dict(results_1=first_results, results_2=second_results, results_n=n_results) # You can have as many return values in the dictionary that you want. (Maybe there is a limit but I have no idea what it is) The dictionary names/keys can be whatever you want to call them. Then in your

Re: [web2py] Redirect not working can't find issue

2012-07-05 Thread adohertyd
Brilliant that has made life so much easier. Thanks again Bruce On Thursday, 5 July 2012 21:46:48 UTC+1, Bruce Wade wrote: return dict(results_1=first_results, results_2=second_results, results_n=n_results) # You can have as many return values in the dictionary that you want. (Maybe there